Skip to content

Commit 958fad1

Browse files
authored
Merge pull request #148 from ModiaSim/mo_states_in_model_functions
Version 0.9.0
2 parents 8c8ab98 + b277824 commit 958fad1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+6019
-1804
lines changed

Manifest.toml

+235-206
Large diffs are not rendered by default.

Project.toml

+23-21
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,10 @@
11
authors = ["Hilding Elmqvist <[email protected]>", "Martin Otter <[email protected]>"]
22
name = "Modia"
33
uuid = "cb905087-75eb-5f27-8515-1ce0ec8e839e"
4-
version = "0.8.4"
5-
6-
[compat]
7-
DataFrames = "1"
8-
DifferentialEquations = "7"
9-
FiniteDiff = "2"
10-
ForwardDiff = "0.10"
11-
JSON = "0.21"
12-
Measurements = "2"
13-
ModiaBase = "0.11"
14-
ModiaResult = "0.4.1"
15-
MonteCarloMeasurements = "1"
16-
OrderedCollections = "1"
17-
RecursiveFactorization = "0.2"
18-
Reexport = "1"
19-
StaticArrays = "1"
20-
Sundials = "4.4"
21-
TimerOutputs = "0.5"
22-
Unitful = "1"
23-
julia = "1.7"
4+
version = "0.9.0"
245

256
[deps]
7+
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
268
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
279
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
2810
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
@@ -32,17 +14,37 @@ JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
3214
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
3315
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
3416
ModiaBase = "ec7bf1ca-419d-4510-bbab-199861c55244"
35-
ModiaResult = "16a87621-1533-42f6-8e19-4a825980cec2"
3617
MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca"
3718
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
3819
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
3920
RecursiveFactorization = "f2c3362d-daeb-58d1-803e-2bc74f2840b4"
4021
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
22+
SignalTables = "3201582d-3078-4276-ba5d-0a1254d79d7c"
4123
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
4224
Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
4325
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4426
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f"
4527
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
4628

29+
[compat]
30+
DiffEqBase = "6.82.0"
31+
DataFrames = "1"
32+
DifferentialEquations = "7"
33+
FiniteDiff = "2"
34+
ForwardDiff = "0.10"
35+
JSON = "0.21"
36+
Measurements = "2"
37+
ModiaBase = "0.11"
38+
MonteCarloMeasurements = "1"
39+
OrderedCollections = "1"
40+
RecursiveFactorization = "0.2"
41+
Reexport = "1"
42+
SignalTables = "0.3.4"
43+
StaticArrays = "1"
44+
Sundials = "4"
45+
TimerOutputs = "0.5"
46+
Unitful = "1"
47+
julia = "1.7"
48+
4749
[extras]
4850
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"

README.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ The [Modia Tutorial](https://modiasim.github.io/Modia.jl/stable/tutorial/Getting
77
The [Modia3D Tutorial](https://modiasim.github.io/Modia3D.jl/stable/tutorial/GettingStarted.html) provides an introduction to use 3D components in Modia.
88
Modia is part of [ModiaSim](https://modiasim.github.io/docs/).
99

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).
1111
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
1313
it can be set to `Float32, DoubleFloat, Measurement{Float64}, StaticParticles{Float64,100}`.
1414

1515
## Installation
@@ -24,16 +24,22 @@ Furthermore, one or more of the following packages should be installed in order
2424
to be able to generate plots:
2525

2626
```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
3133
```
3234

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+
3338
Note, Modia reexports the following definitions
3439

3540
- `using Unitful`
3641
- `using DifferentialEquations`
42+
- `using SignalTables`
3743
- and exports functions `CVODE_BDF` and `IDA` of [Sundials.jl](https://github.com/SciML/Sundials.jl).
3844

3945
As a result, it is usually sufficient to have `using Modia` in a model to utilize the relevant

docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Documenter, Modia, Modia.ModiaResult, ModiaPlot_PyPlot
1+
using Documenter, Modia, SignalTables, SignalTablesInterface_PyPlot
22

33
makedocs(
44
#modules = [Modia],

0 commit comments

Comments
 (0)