Skip to content

Commit b589933

Browse files
committed
add doc file
1 parent a826a62 commit b589933

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# ImplicitDiscreteSystem
2+
3+
## System Constructors
4+
5+
```@docs
6+
ImplicitDiscreteSystem
7+
```
8+
9+
## Composition and Accessor Functions
10+
11+
- `get_eqs(sys)` or `equations(sys)`: The equations that define the implicit discrete system.
12+
- `get_unknowns(sys)` or `unknowns(sys)`: The set of unknowns in the implicit discrete system.
13+
- `get_ps(sys)` or `parameters(sys)`: The parameters of the implicit discrete system.
14+
- `get_iv(sys)`: The independent variable of the implicit discrete system
15+
- `discrete_events(sys)`: The set of discrete events in the implicit discrete system.
16+
17+
## Transformations
18+
19+
```@docs; canonical=false
20+
structural_simplify
21+
```
22+
23+
## Problem Constructors
24+
25+
```@docs; canonical=false
26+
ImplicitDiscreteProblem(sys::ImplicitDiscreteSystem, u0map, tspan)
27+
ImplicitDiscreteFunction(sys::ImplicitDiscreteSystem, args...)
28+
```

0 commit comments

Comments
 (0)