Skip to content

Commit d22d3b6

Browse files
committed
Remove StateSelection from docs
1 parent 7f1fa21 commit d22d3b6

File tree

2 files changed

+2
-30
lines changed

2 files changed

+2
-30
lines changed

docs/src/TransformationToODEs.md

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
# Transformation to ODE System
22

3-
This section provides functions to **transform DAE to ODE systems**. In particular,
3+
This section provides utility functions to **transform DAE to ODE systems**. In particular,
44

55
- to find equations that need to be differentiated, in order to transform a
66
Differential Algebraic Equations (DAEs) agebraically to
77
Ordinary Differential Equations (ODEs),
88

99
- to differentiate relevant equations analytically,
1010

11-
- to statically select ODE states and transform to ODE form.
12-
1311

1412
## Main Functions
1513

@@ -30,29 +28,3 @@ CurrentModule = ModiaBase.Differentiate
3028
derivative
3129
```
3230

33-
34-
```@meta
35-
CurrentModule = ModiaBase
36-
```
37-
38-
```@docs
39-
StateSelectionFunctions
40-
getSortedAndSolvedAST
41-
```
42-
43-
44-
## Utility Functions
45-
46-
47-
```@meta
48-
CurrentModule = ModiaBase
49-
```
50-
51-
```@docs
52-
StateCategory
53-
ResidualCategory
54-
LinearEquations
55-
LinearEquationsIteration!
56-
EquationInfo
57-
StateElementInfo
58-
```

docs/src/Tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ is linear in the iteration variable (`C.i`) and an AST is generated
202202
to build-up a linear equation system `A*C.i = b` and solve this system numerically
203203
with an LU decomposition whenever the AST is called (if the equation system has size 1,
204204
a simple division is used instead of calling a linear equation solver). Applying
205-
[`ModiaBase.getSortedAndSolvedAST`](@ref) results basically in a function
205+
`Modia.getSortedAndSolvedAST` results basically in a function
206206
`getDerivatives` that can be solved with the many ODE integrators of
207207
[DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl):
208208

0 commit comments

Comments
 (0)