|
| 1 | +# [DE types](@id de_types) |
| 2 | + |
| 3 | + |
| 4 | +## Discrete |
| 5 | + |
| 6 | +```@docs |
| 7 | +DiffEqBase.AbstractDiscreteFunction |
| 8 | +DiscreteFunction |
| 9 | +DiffEqBase.AbstractDiscreteProblem |
| 10 | +DiscreteProblem |
| 11 | +``` |
| 12 | + |
| 13 | +## ODE |
| 14 | + |
| 15 | +```@docs |
| 16 | +DiffEqBase.AbstractODEFunction |
| 17 | +ODEFunction |
| 18 | +DiffEqBase.AbstractODEProblem |
| 19 | +ODEProblem |
| 20 | +DiffEqBase.StandardODEProblem |
| 21 | +DiffEqBase.AbstractODESolution |
| 22 | +DiffEqBase.ODESolution |
| 23 | +DiffEqBase.AbstractODEAlgorithm |
| 24 | +DiffEqBase.AbstractODEIntegrator |
| 25 | +``` |
| 26 | + |
| 27 | +### Dynamical ODEs |
| 28 | + |
| 29 | +```@docs |
| 30 | +DynamicalODEFunction |
| 31 | +DiffEqBase.AbstractDynamicalODEProblem |
| 32 | +DynamicalODEProblem |
| 33 | +``` |
| 34 | + |
| 35 | +### Second-order ODEs |
| 36 | + |
| 37 | +```@docs |
| 38 | +DiffEqBase.AbstractSecondOrderODEProblem |
| 39 | +SecondOrderODEProblem |
| 40 | +DiffEqBase.AbstractSecondOrderODEAlgorithm |
| 41 | +DiffEqBase.AbstractSecondOrderODEIntegrator |
| 42 | +``` |
| 43 | + |
| 44 | +### Split ODEs |
| 45 | + |
| 46 | +```@docs |
| 47 | +SplitFunction |
| 48 | +DiffEqBase.AbstractSplitODEProblem |
| 49 | +SplitODEProblem |
| 50 | +``` |
| 51 | + |
| 52 | +### Steady state problems |
| 53 | + |
| 54 | +```@docs |
| 55 | +DiffEqBase.AbstractSteadyStateProblem |
| 56 | +SteadyStateProblem |
| 57 | +DiffEqBase.AbstractSteadyStateSolution |
| 58 | +DiffEqBase.SteadyStateSolution |
| 59 | +DiffEqBase.AbstractSteadyStateAlgorithm |
| 60 | +DiffEqBase.AbstractSteadyStateIntegrator |
| 61 | +``` |
| 62 | + |
| 63 | +### Boundary value problems |
| 64 | + |
| 65 | +```@docs |
| 66 | +DiffEqBase.TwoPointBVPFunction |
| 67 | +DiffEqBase.AbstractBVProblem |
| 68 | +DiffEqBase.StandardBVProblem |
| 69 | +BVProblem |
| 70 | +TwoPointBVProblem |
| 71 | +``` |
| 72 | + |
| 73 | +### Analytical problems |
| 74 | + |
| 75 | +```@docs |
| 76 | +AbstractAnalyticalProblem |
| 77 | +AnalyticalProblem |
| 78 | +DiffEqBase.AbstractAnalyticalSolution |
| 79 | +``` |
| 80 | + |
| 81 | + |
| 82 | +## SDE |
| 83 | + |
| 84 | +SDE problems are subtypes of RODE problems. |
| 85 | + |
| 86 | +```@docs |
| 87 | +DiffEqBase.AbstractSDEFunction |
| 88 | +SDEFunction |
| 89 | +DiffEqBase.AbstractSDEProblem |
| 90 | +DiffEqBase.StandardSDEProblem |
| 91 | +SDEProblem |
| 92 | +DiffEqBase.AbstractSDEAlgorithm |
| 93 | +DiffEqBase.AbstractSDEIntegrator |
| 94 | +``` |
| 95 | + |
| 96 | +### Split SDEs |
| 97 | + |
| 98 | +```@docs |
| 99 | +SplitSDEFunction |
| 100 | +DiffEqBase.AbstractSplitSDEProblem |
| 101 | +SplitSDEProblem |
| 102 | +``` |
| 103 | + |
| 104 | + |
| 105 | +## RODE |
| 106 | + |
| 107 | +```@docs |
| 108 | +DiffEqBase.AbstractRODEFunction |
| 109 | +RODEFunction |
| 110 | +DiffEqBase.AbstractRODEProblem |
| 111 | +RODEProblem |
| 112 | +DiffEqBase.AbstractRODESolution |
| 113 | +DiffEqBase.RODESolution |
| 114 | +DiffEqBase.AbstractRODEAlgorithm |
| 115 | +DiffEqBase.AbstractRODEIntegrator |
| 116 | +``` |
| 117 | + |
| 118 | + |
| 119 | +## DDE |
| 120 | + |
| 121 | +```@docs |
| 122 | +DiffEqBase.AbstractDDEFunction |
| 123 | +DDEFunction |
| 124 | +DiffEqBase.AbstractDDEProblem |
| 125 | +DDEProblem |
| 126 | +DiffEqBase.AbstractConstantLagDDEProblem |
| 127 | +DiffEqBase.AbstractDDESolution |
| 128 | +DiffEqBase.AbstractDDEAlgorithm |
| 129 | +DiffEqBase.AbstractDDEIntegrator |
| 130 | +DiffEqBase.AbstractHistoryFunction |
| 131 | +``` |
| 132 | + |
| 133 | + |
| 134 | +## SDDE |
| 135 | + |
| 136 | +```@docs |
| 137 | +DiffEqBase.AbstractSDDEFunction |
| 138 | +SDDEFunction |
| 139 | +DiffEqBase.AbstractSDDEProblem |
| 140 | +SDDEProblem |
| 141 | +DiffEqBase.AbstractConstantLagSDDEProblem |
| 142 | +DiffEqBase.AbstractSDDEAlgorithm |
| 143 | +DiffEqBase.AbstractSDDEIntegrator |
| 144 | +``` |
| 145 | + |
| 146 | + |
| 147 | +## DAE |
| 148 | + |
| 149 | +```@docs |
| 150 | +DiffEqBase.AbstractDAEFunction |
| 151 | +DAEFunction |
| 152 | +DiffEqBase.AbstractDAEProblem |
| 153 | +DAEProblem |
| 154 | +DiffEqBase.AbstractDAESolution |
| 155 | +DiffEqBase.DAESolution |
| 156 | +DiffEqBase.AbstractDAEAlgorithm |
| 157 | +DiffEqBase.AbstractDAEIntegrator |
| 158 | +``` |
| 159 | + |
| 160 | + |
| 161 | +### PDE |
| 162 | + |
| 163 | +```@docs |
| 164 | +DiffEqBase.AbstractPDEProblem |
| 165 | +PDEProblem |
| 166 | +``` |
| 167 | + |
| 168 | + |
| 169 | +## Jump problems |
| 170 | + |
| 171 | +```@docs |
| 172 | +DiffEqBase.AbstractJumpProblem |
| 173 | +``` |
| 174 | + |
| 175 | + |
| 176 | +## Noise problems |
| 177 | + |
| 178 | +```@docs |
| 179 | +DiffEqBase.AbstractNoiseProblem |
| 180 | +NoiseProblem |
| 181 | +``` |
| 182 | + |
| 183 | + |
| 184 | +## Basic problems (for testing?) |
| 185 | + |
| 186 | +### Linear |
| 187 | + |
| 188 | +```@docs |
| 189 | +DiffEqBase.AbstractLinearProblem |
| 190 | +DiffEqBase.LinearProblem |
| 191 | +DiffEqBase.AbstractLinearSolution |
| 192 | +DiffEqBase.LinearSolution |
| 193 | +DiffEqBase.AbstractLinearAlgorithm |
| 194 | +``` |
| 195 | + |
| 196 | +### Nonlinear |
| 197 | + |
| 198 | +```@docs |
| 199 | +DiffEqBase.AbstractNonlinearProblem |
| 200 | +DiffEqBase.NonlinearProblem |
| 201 | +DiffEqBase.AbstractNonlinearSolution |
| 202 | +DiffEqBase.AbstractNonlinearAlgorithm |
| 203 | +``` |
| 204 | + |
| 205 | +### Quadrature |
| 206 | + |
| 207 | +```@docs |
| 208 | +DiffEqBase.AbstractQuadratureProblem |
| 209 | +DiffEqBase.QuadratureProblem |
| 210 | +DiffEqBase.AbstractQuadratureSolution |
| 211 | +DiffEqBase.AbstractQuadratureAlgorithm |
| 212 | +``` |
| 213 | + |
| 214 | + |
| 215 | +## Sensitivity problems |
| 216 | +```@docs |
| 217 | +DiffEqBase.DESensitivity |
| 218 | +DiffEqBase.AbstractSensitivitySolution |
| 219 | +``` |
0 commit comments