Get Reactant

$reactant = $reaction->getReactant();

Get Reacter

$reacter = $reaction->getReacter();

Get Reaction Type

$reactionType = $reaction->getType();

Get Rate Value

$rate = $reaction->getRate();

Get Weight Value

$weight = $reaction->getWeight();

Compare Reaction Type

$isOfType = $reaction->isOfType($reactionType);
$isNotOfType = $reaction->isNotOfType($reactionType);

Compare Reactant

$isToReactant = $reaction->isToReactant($reactant);
$isNotToReactant = $reaction->isNotToReactant($reactant);

Compare Reacter

$isByReacter = $reaction->isByReacter($reactant);
$isNotByReacter = $reaction->isNotByReacter($reactant);

Change Rate Value

$reaction->changeRate($rate);

πŸ“˜

Minimum $rate value is 0.01.
Maximum $rate value is 99.99.