
This sets the inductive linearization strategy for matrix building
Source:R/rxIndLin.R
rxIndLinStrategy.RdWhen there is more than one state in a ODE that cannot be separated this specifies how it is incorporated into the matrix exponential.
Usage
rxIndLinStrategy(strategy = c("curState", "split"))Arguments
- strategy
The strategy for inductive linearization matrix building
curStatePrefer parameterizing in terms of the current state, followed by the first state observed in the term.splitSplit the parameterization between all states in the term by dividing each by the number of states in the term and then adding a matrix term for each state.
Details
This no longer affects the conversion. The matExp() rate matrix has to be
constant in the states, and dividing any one state out of a multi-state
product always leaves a coefficient that still reads a state, so such a term
goes to the indLin() forcing whichever state is preferred. The setting is
kept so existing code keeps working.