v0.10.0
Modia v0.10.0
- Initial support of segmented simulations where the number of states can change during simulation.
For examples, seeModia/test/TestHeatTransfer2.jl
and models in directoryModia3D/test/Segmented
(of release 0.12.0 and later). The tutorial will be updated for this feature in an upcoming version.
Non-backwards compatible changes
These changes should usually not influence user models, since these functions are typically not directly called by a user.
_buildFunction = <functionName>
changed to_buildFunction = Par(functionName = <functionName>)
and
changed argument list of<functionName>
._instantiateFunction = Par(..)
changed to_initSegmentFunction = Par(functionName = <functionName>)
and changed argument list of<functionName>
.
Merged pull requests:
- Release0.10.0 (#165) (@MartinOtter)