search for: iteno

Displaying 1 result from an estimated 1 matches for "iteno".

Did you mean: steno
2011 Aug 12
1
deSolve output
...ters) { #Specifies that state an parameters is inputted as lists, hence order in the lists is important with(as.list(c(state, parameters)), #differential equation to be solved {dG = (-a*(t+i)^b)*(G) list(c(dG)) }) } # Makes sequence of times to be solved for. Start at t0 and proceed to iteno in steps of 1 day times = seq(t0, iteno, by = 1) #calls solver, to solve diffrential equation and saves results as variable THAAC THAAC = ode (y = state, times = times, func = degradation, parms = parameters) This all works fine, and output THAAC contains carbon concentrations of G at all ti...