RateOfConversionNthOrderEvaluateConversionRate Method |
Represents the real solution of the nth order kinetic equation y'=k*(1-y)^n with y[t0]>=0.
Namespace: Altaxo.Calc.FitFunctions.KineticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double EvaluateConversionRate(
double x,
double t0,
double k,
double n
)
Parameters
- x Double
- The independent variable (time).
- t0 Double
- Time at which y is zero.
- k Double
- Kinetic constant (must be a positive value).
- n Double
- The order n of the kinetics equation.
Return Value
DoubleThe value y'(x) of the solution of y'=k*(1-y)^n, presuming that k is nonnegative.
See Also