Running Your Model

From Numerus
Revision as of 20:02, 11 March 2018 by Rsalter (talk | contribs) (Created page with "This section describes how you run a model built with Numerus's visual interface. It also describes several useful run-time features. ==Clock Settings== Once you have built a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This section describes how you run a model built with Numerus's visual interface. It also describes several useful run-time features.

Clock Settings

Once you have built a model but before you can run it as a simulation, you must first set the clock parameters. The clock settings consist of the following 4 parameters:

  • Start The time (in model time) when the simulation starts (this is usually 0).
  • End The time (in model time) when the simulation ends.
  • Dt The unit of increment (in model time) for updates.
  • Integration Method The mathematical algorithm used to update Stocks.

Numerus currently uses an abstract unit of time ("model time") that serves as the equivalent of some model-dependent real time unit (seconds, minutes, hours, days, years). You can specify a time unit in the Unit text field.

Dt, the increment, or "delta t", value, is the amount of time that elapses between State updates. For discrete models this is fixed at 1 (see below), but can be any value otherwise (0.1, 0.01, 0.05, 2, 20).

Numerus supports 3 different integration methods

Euler
Current state values are used in computations to determine the next state. Used for all discrete models.
RK2, RK4
These Runge-Kutta algorithms treat Stocks and Variables as continuous functions and reduce the error by subdividing the update interval. Simulations run slower but with more accuracy. RK4 is the preferred option of the two.
Discrete
This is not actually an integration method; rather it sets Dt to 1 and uses the Euler method. The result is a sequence of State values rather than an attempt to approximate a continuous function.