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: README.md
+12-6
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ The [Modia Tutorial](https://modiasim.github.io/Modia.jl/stable/tutorial/Getting
7
7
The [Modia3D Tutorial](https://modiasim.github.io/Modia3D.jl/stable/tutorial/GettingStarted.html) provides an introduction to use 3D components in Modia.
8
8
Modia is part of [ModiaSim](https://modiasim.github.io/docs/).
9
9
10
-
[Modia](https://github.com/ModiaSim/Modia.jl) is an environment in form of a Julia package to model and simulate physical systems (electrical, mechanical, thermo-dynamical, etc.) described by differential and algebraic equations. A user defines a model on a high level with model components (like a mechanical body, an electrical resistance, or a pipe) that are physically connected together. A model component is constructed by **`expression = expression` equations** or by Julia structs/functions, such as the pre-defined Modia 3D-mechanical components. The defined model is symbolically processed (for example, equations might be analytically differentiated) with algorithms from package [ModiaBase.jl](https://github.com/ModiaSim/ModiaBase.jl). From the transformed model a Julia function is generated that is used to simulate the model with integrators from [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).
10
+
[Modia](https://github.com/ModiaSim/Modia.jl) is an environment in form of a Julia package to model and simulate physical systems (electrical, mechanical, thermo-dynamical, etc.) described by differential and algebraic equations. A user defines a model on a high level with model components (like a mechanical body, an electrical resistance, or a pipe) that are physically connected together. A model component is constructed by **`expression = expression` equations** or by Julia structs/functions, such as the pre-defined [Modia3D] (https://github.com/ModiaSim/Modia3D.jl) multibody components. The defined model is symbolically processed (for example, equations might be analytically differentiated) with algorithms from package [ModiaBase.jl](https://github.com/ModiaSim/ModiaBase.jl). From the transformed model a Julia function is generated that is used to simulate the model with integrators from [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).
11
11
The basic type of the floating point variables is usually `Float64`, but can be set to any
12
-
type `FloatType<:AbstractFloat` via `@instantiateModel(..., FloatType = xxx)`, for example
12
+
type `FloatType <: AbstractFloat` via `@instantiateModel(..., FloatType = xxx)`, for example
13
13
it can be set to `Float32, DoubleFloat, Measurement{Float64}, StaticParticles{Float64,100}`.
14
14
15
15
## Installation
@@ -24,16 +24,22 @@ Furthermore, one or more of the following packages should be installed in order
24
24
to be able to generate plots:
25
25
26
26
```julia
27
-
julia> ]add ModiaPlot_PyPlot # if plotting with PyPlot desired
28
-
add ModiaPlot_GLMakie # if plotting with GLMakie desired
29
-
add ModiaPlot_WGLMakie # if plotting with WGLMakie desired
30
-
add ModiaPlot_CairoMakie # if plotting with CairoMakie desired
27
+
julia> ]add SignalTablesInterface_PyPlot # if plotting with PyPlot desired
28
+
29
+
# currently under registration
30
+
add SignalTablesInterface_GLMakie # if plotting with GLMakie desired
31
+
add SignalTablesInterface_WGLMakie # if plotting with WGLMakie desired
32
+
add SignalTablesInterface_CairoMakie # if plotting with CairoMakie desired
31
33
```
32
34
35
+
or call `t = getValues(instantiatedModel, "time"), y = getValues(instantiatedModel, "y")` to retrieve
36
+
the results in form of vectors and arrays and use any desired plot package for plotting, e.g., `plot(t,y)`.
37
+
33
38
Note, Modia reexports the following definitions
34
39
35
40
-`using Unitful`
36
41
-`using DifferentialEquations`
42
+
-`using SignalTables`
37
43
- and exports functions `CVODE_BDF` and `IDA` of [Sundials.jl](https://github.com/SciML/Sundials.jl).
38
44
39
45
As a result, it is usually sufficient to have `using Modia` in a model to utilize the relevant
0 commit comments