Henrik Tidefelt

Results 99 issues of Henrik Tidefelt

Since the use of byte order mark has been [deprecated in full Modelica](https://specification.modelica.org/master/packages.html#file-system-mapping-of-package-class), it seems wrong to introduce it from start in Base Modelica.

MCP0031

I don't see how the newly added concept of _fallback value_ can be applied to the following model: ``` model FallbackValueCycle parameter Real p(start = -1.0, fixed = false); Real...

The `import` clause in `ModelicaByExample.Components.LotkaVolterra.Examples.ThirdSpecies` is invalid; quoting System Modeler: > Error: ModelicaByExample.Components.LotkaVolterra.Examples.ThirdSpecies [2:3-2:3] Invalid qualified import. ModelicaByExample.Components.LotkaVolterra.Components.RegionalPopulation.InitializationOptions.FixedPopulation is an enumeration element and ModelicaByExample.Components.LotkaVolterra.Components.RegionalPopulation.InitializationOptions is a type but a qualified...

Fixes #4458. As discussed in today's MAP-Lib monthly meeting. There appears to be no need to update the reference result.

example
L: Clocked

The `ClockedWithDiscretizedContinuousController` contains a clocked instance of `Modelica.Blocks.Continuous.PI`: https://github.com/modelica/ModelicaStandardLibrary/blob/35ad28dd83fa36b5393fad54fa38c08e94ba6bb6/Modelica/Clocked/Examples/SimpleControlledDrive/ClockedWithDiscretizedContinuousController.mo#L30 However, this block contains an initial equation: ``` initial equation if initType == Init.SteadyState then der(x) = 0; elseif initType ==...

example
L: Clocked

I got a question today where I believe the clarifications we discussed earlier in #3466 would have helped, so I thought it was time to turn them into a PR.

I find if odd that the chapter on synchronous features speaks nothing about `pre(x)` for a clocked variable, but still mandates that a clocked variable appearing inside `previous(…)` shall be...

Please see second commit for actual change.

Here is a full Modelica model that I don't know how to lower to Base Modelica without loss of information about `start` being final: ``` model FinalStartUsingFallback Real x(final start);...

MCP0031