Processing math: 100%
Skip to contents

Given the reaction order n , the function returns the equation corresponding to that particular n^th^-order kinetic model. For n1: y(t)=((n1)kt+y1n0))1n1 for n=1: y(t)=y0ekt

Usage

f_gen(n)

Arguments

n

reaction order

Value

A formula object containing the equation of the selected n^th^ order kinetic model.

Examples

nc <- 2
f_gen(nc)
#> y ~ (1 * (k * t + (y0^(-1))/1))^-1
#> <environment: 0x55dce2f89c70>

f_gen(1)
#> y ~ y0 * exp(-k * t)
#> <environment: 0x55dce2c9f8b8>