search for: follows1

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

Did you mean: follows
2018 May 31
0
Help in dynamic simulation using deSolve
Hi R help, I wanted to simulate two pool model (A&B) using deSolve package for time 0 to 12 by 1.? Initial values of the state variables are A=5, B=3. The fluxes are as follows1) Flux into A= 5 units per unit time?2) Flux from A to B= 0.33) Flux out of A=0.1?4) Flux from B to A=0.35) Flux out of B=0.3 Here is the R code I compiled to estimate the size of A and B and graph the output library(deSolve) # Define time sequence from 0 to 12 by 1 time <- seq(0,12, by=1) # Defi...