isothermal_OED: Optimal Experiment Design of isothermal inactivation

Description Usage Arguments Value Examples

View source: R/OED_isothermal.R

Description

OED of microbial inactivation experiments.

Usage

1
2
isothermal_OED(model, pars, n_points, min_time, max_time, min_temp,
  max_temp, opts = NULL)

Arguments

model

character string defining the inactivation model to use.

pars

list defining the nominal model parameters.

n_points

numerical stating the number of data points.

min_time

numerical stating the lower limit for the time points.

max_time

numerical stating the upper limit for the time points.

min_temp

numerical stating the lower limit for the temperature.

max_temp

numerical stating the upper limit for the temperature.

opts

options for the MEIGO algorithm. By default, a maximum of 2000 function evaluations with local finish with the DHC algorithm (see help from MEIGO).

Value

A MEIGO object

Examples

1
2
3
4
5
6
7
pars <- list(temp_crit = 55,
n = 1.5,
k_b = 0.1)
OED <- isothermal_OED("Peleg", pars,
                            n_points=10, min_time=0, max_time=100, min_temp=52, max_temp=60,
                            opts = NULL)
OED$optim$xbest

jlpesoto/prueba documentation built on Nov. 4, 2019, 2:59 p.m.