Click or drag to resize

KineticsNthOrderCoreSolution Method

Represents the real solution of the nth order kinetic equation y'=-k*y^n with y[0]>=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 CoreSolution(
	double t,
	double y0,
	double k,
	double order
)

Parameters

t  Double
Time.
y0  Double
Starting value of y at t=0.
k  Double
Kinetic constant.
order  Double
The order (n in above formula) of the kinetics equation ( has to be nonnegative).

Return Value

Double
The solution if y'=-k*y^n, presuming that y0 is nonnegative.
See Also