File tree Expand file tree Collapse file tree 9 files changed +18
-9
lines changed Expand file tree Collapse file tree 9 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ Construct a `BVProblem` from a ModelingToolkit `System` for boundary value probl
7
7
8
8
Beyond the arguments listed below, this constructor accepts all keyword arguments
9
9
supported by the DifferentialEquations.jl `solve` function. For a complete list
10
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
10
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
11
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
11
12
12
13
## Arguments
13
14
- `sys::System`: The ModelingToolkit system to convert (with boundary conditions)
Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ Construct a `DAEProblem` from a ModelingToolkit `System` for differential-algebr
68
68
69
69
Beyond the arguments listed below, this constructor accepts all keyword arguments
70
70
supported by the DifferentialEquations.jl `solve` function. For a complete list
71
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
71
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
72
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
72
73
73
74
## Arguments
74
75
- `sys::System`: The ModelingToolkit system to convert (differential-algebraic system)
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ Construct a `DDEProblem` from a ModelingToolkit `System` for delay differential
47
47
48
48
Beyond the arguments listed below, this constructor accepts all keyword arguments
49
49
supported by the DifferentialEquations.jl `solve` function. For a complete list
50
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
50
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
51
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
51
52
52
53
## Arguments
53
54
- `sys::System`: The ModelingToolkit system to convert (must contain delay equations)
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ Construct a `JumpProblem` from a ModelingToolkit `System` for jump processes.
7
7
8
8
Beyond the arguments listed below, this constructor accepts all keyword arguments
9
9
supported by the DifferentialEquations.jl `solve` function. For a complete list
10
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
10
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
11
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
11
12
12
13
## Arguments
13
14
- `sys::System`: The ModelingToolkit system to convert (must contain jump processes)
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ Construct a `LinearProblem` from a ModelingToolkit `System` for linear systems.
15
15
16
16
Beyond the arguments listed below, this constructor accepts all keyword arguments
17
17
supported by the LinearSolve.jl `solve` function. For a complete list
18
- and detailed descriptions, see the [LinearSolve.jl documentation](https://docs.sciml.ai/LinearSolve/stable/).
18
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
19
+ and the [LinearSolve.jl documentation](https://docs.sciml.ai/LinearSolve/stable/).
19
20
20
21
## Arguments
21
22
- `sys::System`: The ModelingToolkit system to convert (linear system)
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ Construct a `NonlinearProblem` from a ModelingToolkit `System` for nonlinear equ
63
63
64
64
Beyond the arguments listed below, this constructor accepts all keyword arguments
65
65
supported by the NonlinearSolve.jl `solve` function. For a complete list
66
- and detailed descriptions, see the [NonlinearSolve.jl documentation](https://docs.sciml.ai/NonlinearSolve/stable/).
66
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
67
+ and the [NonlinearSolve.jl documentation](https://docs.sciml.ai/NonlinearSolve/stable/).
67
68
68
69
## Arguments
69
70
- `sys::System`: The ModelingToolkit system to convert (nonlinear system)
Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ Construct an `ODEProblem` from a ModelingToolkit `System`.
78
78
79
79
Beyond the arguments listed below, this constructor accepts all keyword arguments
80
80
supported by the DifferentialEquations.jl `solve` function. For a complete list
81
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
81
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
82
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
82
83
83
84
## Arguments
84
85
- `sys::System`: The ModelingToolkit system to convert
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ Construct an `OptimizationProblem` from a ModelingToolkit `System` for optimizat
97
97
98
98
Beyond the arguments listed below, this constructor accepts all keyword arguments
99
99
supported by the Optimization.jl `solve` function. For a complete list
100
- and detailed descriptions, see the [Optimization.jl documentation](https://docs.sciml.ai/Optimization/stable/).
100
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
101
+ and the [Optimization.jl documentation](https://docs.sciml.ai/Optimization/stable/).
101
102
102
103
## Arguments
103
104
- `sys::System`: The ModelingToolkit system to convert (optimization system with cost and constraints)
Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ Construct an `SDEProblem` from a ModelingToolkit `System` with noise.
73
73
74
74
Beyond the arguments listed below, this constructor accepts all keyword arguments
75
75
supported by the DifferentialEquations.jl `solve` function. For a complete list
76
- and detailed descriptions, see the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
76
+ and detailed descriptions, see the [ModelingToolkit.jl problem building documentation](https://docs.sciml.ai/ModelingToolkit/stable/API/problems/)
77
+ and the [DifferentialEquations.jl solve documentation](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/).
77
78
78
79
## Arguments
79
80
- `sys::System`: The ModelingToolkit system to convert (must contain noise equations)
You can’t perform that action at this time.
0 commit comments