Reaction
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 is0.01
.
Maximum$rate
value is99.99
.
Updated over 5 years ago