ModelicaBook
ModelicaBook copied to clipboard
Source for my new Modelica Book
The units for `ConvectionCoefficient` should be `"W/(m2.K)"` ``` model Rod_ForLoop "Modeling heat conduction in a rod using a for loop" type Temperature=Real(unit="K", min=0); type ConvectionCoefficient=Real(unit="W/K", min=0); type ConductionCoefficient=Real(unit="W.m-1.K-1", min=0); type...
@mtiller, [this report](https://libraries.openmodelica.org/branches/master/ModelicaByExample/files/ModelicaByExample_ModelicaByExample.Components.LotkaVolterra.Examples.ThreeSpecies_Quiescent.err) suggests that model ModelicaByExample.Components.LotkaVolterra.Examples.ThreeSpecies_Quiescent in your library actually tries to access protected elements. We introduced stricter checks in OpenModelica since 1.19.0, so this model stopped running there....
The example in the Second Derivatives subsection places the annotation on the wrong function. ``` function f … annotation(derivative=df, derivative(order=2)=ddf); end f; ``` This is covered in §12.7 of the...
https://mbe.modelica.university/components/subsystems/pendulums/ https://www.youtube.com/watch?v=cc7ajqhfLVM
MSL v4.0.0 renamed Modelica.SIUnits and introduced many other class changes. Is there any ambition to update the ModelicaByExamples library and book to the newer MSL version. See also #414.
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.5.0 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 2.8.8 (2020-02-29) Bug Fixes #61 & #65...
Beta is the mortality rate of the prey, not of the predator.
Bumps [y18n](https://github.com/yargs/y18n) from 3.2.1 to 3.2.2. Commits See full diff in compare view Maintainer changes This version was pushed to npm by oss-bot, a new releaser for y18n since your...
Bumps [bl](https://github.com/rvagg/bl) from 1.2.1 to 1.2.3. Release notes Sourced from bl's releases. v1.2.2 use safe-buffer #51 Commits d69edfd 1.2.3 847473a test all branches 0bd87ec Fix unintialized memory access dc097f3 test...
In https://mbe.modelica.university/behavior/functions/nonlinear/, the code block defining the model `ImplicitEvaluation` has `time + 1` on the left hand side of the equation, whereas the rest of the text seems to use...