Function batchRunDiscrete

  • batchRunDiscrete(Model: DustModelConstructable, pars: BatchPars, timeStart: number, timeEnd: number, dt: number, nParticles: number, summary?: SummaryRule[]): Batch
  • Run a series of runs of a discrete-time model, returning a set of solutions.

    Parameters

    • Model: DustModelConstructable

      The model constructor

    • pars: BatchPars

      Parameters of the model, and information about the one to vary. Most easily generated with odin-js's batchParsRange or batchParsDisplace

    • timeStart: number

      Start of the simulation (often 0)

    • timeEnd: number

      End of the simulation (must be greater than timeStart)

    • dt: number

      The size of each step

    • nParticles: number

      The number of independent particles (replicates) to run

    • Optional summary: SummaryRule[]

      An array of summary rules to apply over stochastic traces. Defaults to just the mean.

    Returns Batch

Generated using TypeDoc