You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/systems/ODESystem.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,16 @@ ODESystem
13
13
-`get_ps(sys)` or `parameters(sys)`: The parameters of the ODE.
14
14
-`get_iv(sys)`: The independent variable of the ODE.
15
15
-`get_u0_p(sys, u0map, parammap)` Numeric arrays for the initial condition and parameters given `var => value` maps.
16
-
-`continuous_events(sys)`: The set of continuous events in the ODE
17
-
-`discrete_events(sys)`: The set of discrete events in the ODE
16
+
-`continuous_events(sys)`: The set of continuous events in the ODE.
17
+
-`discrete_events(sys)`: The set of discrete events in the ODE.
18
+
-`alg_equations(sys)`: The algebraic equations (i.e. that does not contain a differential) that defines the ODE.
19
+
-`get_alg_eqs(sys)`: The algebraic equations (i.e. that does not contain a differential) that defines the ODE. Only returns equations of the current-level system.
20
+
-`diff_equations(sys)`: The differential equations (i.e. that contain a differential) that defines the ODE.
21
+
-`get_diff_eqs(sys)`: The differential equations (i.e. that contain a differential) that defines the ODE. Only returns equations of the current-level system.
22
+
-`has_alg_equations(sys)`: Returns `true` if the ODE contains any algebraic equations (i.e. that does not contain a differential).
23
+
-`has_alg_eqs(sys)`: Returns `true` if the ODE contains any algebraic equations (i.e. that does not contain a differential). Only considers the current-level system.
24
+
-`has_diff_equations(sys)`: Returns `true` if the ODE contains any differential equations (i.e. that does contain a differential).
25
+
-`has_diff_eqs(sys)`: Returns `true` if the ODE contains any differential equations (i.e. that does contain a differential). Only considers the current-level system.
Copy file name to clipboardExpand all lines: docs/src/systems/SDESystem.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,16 @@ sde = SDESystem(ode, noiseeqs)
19
19
-`get_unknowns(sys)` or `unknowns(sys)`: The set of unknowns in the SDE.
20
20
-`get_ps(sys)` or `parameters(sys)`: The parameters of the SDE.
21
21
-`get_iv(sys)`: The independent variable of the SDE.
22
-
-`continuous_events(sys)`: The set of continuous events in the SDE
23
-
-`discrete_events(sys)`: The set of discrete events in the SDE
22
+
-`continuous_events(sys)`: The set of continuous events in the SDE.
23
+
-`discrete_events(sys)`: The set of discrete events in the SDE.
24
+
-`alg_equations(sys)`: The algebraic equations (i.e. that does not contain a differential) that defines the ODE.
25
+
-`get_alg_eqs(sys)`: The algebraic equations (i.e. that does not contain a differential) that defines the ODE. Only returns equations of the current-level system.
26
+
-`diff_equations(sys)`: The differential equations (i.e. that contain a differential) that defines the ODE.
27
+
-`get_diff_eqs(sys)`: The differential equations (i.e. that contain a differential) that defines the ODE. Only returns equations of the current-level system.
28
+
-`has_alg_equations(sys)`: Returns `true` if the ODE contains any algebraic equations (i.e. that does not contain a differential).
29
+
-`has_alg_eqs(sys)`: Returns `true` if the ODE contains any algebraic equations (i.e. that does not contain a differential). Only considers the current-level system.
30
+
-`has_diff_equations(sys)`: Returns `true` if the ODE contains any differential equations (i.e. that does contain a differential).
31
+
-`has_diff_eqs(sys)`: Returns `true` if the ODE contains any differential equations (i.e. that does contain a differential). Only considers the current-level system.
0 commit comments