R/simulate_basicbacteria_modelexploration.R
simulate_basicbacteria_modelexploration.Rd
This function simulates the simple bacteria model ODE for a range of parameters. The function returns a data frame containing the parameter that has been varied and the outcomes (see details).
simulate_basicbacteria_modelexploration(
B = 100,
I = 10,
g = 2,
Bmax = 1e+05,
dB = 1,
k = 1e-04,
r = 1e-04,
dI = 2,
tstart = 0,
tfinal = 300,
dt = 0.1,
samples = 10,
parmin = 2,
parmax = 10,
samplepar = "g",
pardist = "lin"
)
: Starting value for bacteria : numeric
: Starting value for immune response : numeric
: Maximum rate of bacteria growth : numeric
: Bacteria carrying capacity : numeric
: Bacteria death rate : numeric
: Bacteria kill rate : numeric
: Immune response growth rate : numeric
: Immune response decay rate : numeric
: Start time of simulation : numeric
: Final time of simulation : numeric
: Times for which result is returned : numeric
: Number of values to run between pmin and pmax : numeric
: Lower value for varied parameter : numeric
: Upper value for varied parameter : numeric
: Name of parameter to be varied : character
: spacing of parameter values, can be either 'lin' or 'log' : character
The function returns the output as a list, list element 'dat' contains the data frame with results of interest. The first column is called xvals and contains the values of the parameter that has been varied as specified by 'samplepar'. The remaining columns contain peak and steady state values of bacteria and immune response, Bpeak, Ipeak, Bsteady and Isteady. A final boolean variable 'steady' is returned for each simulation. It is TRUE if the simulation reached steady state, otherwise FALSE.
##this code illustrates how to do analyze a simple model. A simple 2 compartment ODE model (the simple bacteria model introduced in the app of that name) is simulated for different parameter values. This function runs the simple bacterial infection model for a range of parameters. The user can specify which parameter is sampled, and the simulation returns for each parameter sample the peak and final value for B and I. Also returned is the varied parameter and an indicator if steady state was reached.
The parameter dt only determines for which times the solution is returned, it is not the internal time step. The latter is set automatically by the ODE solver.
This function does not perform any error checking. So if you try to do something nonsensical (e.g. specify negative parameter values or fractions > 1), the code will likely abort with an error message.
See the shiny app documentation corresponding to this simulator function for more details on this model.
# To run the simulation with default parameters just call the function:
if (FALSE) res <- simulate_basicbacteria_modelexploration()
# To choose parameter values other than the standard one, specify them, like such:
res <- simulate_basicbacteria_modelexploration(samples=5, samplepar='dI', parmin=1, parmax=10)
# You should then use the simulation result returned from the function, like this:
plot(res$dat[,"xvals"],res$data[,"Bpeak"],xlab='Parameter values',ylab='Peak Bacteria',type='l')