Click or drag to resize

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.Kinetics
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

Double
The value y'(x) of the solution of y'=k*(1-y)^n, presuming that k is nonnegative.
See Also