aboutsummaryrefslogtreecommitdiffstats
path: root/examples/lotka_volterra/metadata.toml
blob: 7ebc215e017d108c05a805cb6a5714dd52862f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

[model]
name-en = "Lotka–Volterra equations"
description-en = "Predator-Prey Model"

[variables]

  [variables.t]
  type = 'time' # or "independent"?

  [variables.x]
  type = 'state'

  [variables.y]
  type = 'state'

  [variables.alpha]
  type = 'parameter'
  latex = '\alpha'
  unicode = 'α'

  [variables.beta]
  type = 'parameter'
  latex = '\beta'
  unicode = 'β'

  [variables.delta]
  type = 'parameter'
  latex = '\delta'
  unicode = 'δ'

  [variables.gamma]
  type = 'parameter'
  latex = '\gamma'
  unicode = 'γ'

[examples]

  [examples.mathworld]
  x = 10
  y = 5
  alpha = 1.5
  beta = 1
  gamma = 1
  t = [0, 20]