Skip to content

Commit

Permalink
As indicated in modelica#4046 it we need to revert part of modelica#4155
Browse files Browse the repository at this point in the history
 since it is causing too many regressions for a minor release.

With proposed unit-checking in Dymola this reduces the warnings from 2301 to 1224 (Most - but not all are unit-related.)

Obviously many of them could be corrected, but I don't see that we have the resources to focus on that for this minor release.
The first models found were CompareTransformers, SeriesResonance in Modelica.Electrical.Analog.Examples.
  • Loading branch information
HansOlsson committed Sep 18, 2023
1 parent 438d8f8 commit dbcda99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modelica/Constants.mo
Expand Up @@ -8,7 +8,7 @@ package Constants

// Mathematical constants
final constant Real e(final unit="1") = Modelica.Math.exp(1.0);
final constant Real pi(final unit="1") = 2*Modelica.Math.asin(1.0); // 3.14159265358979;
final constant Real pi = 2*Modelica.Math.asin(1.0); // 3.14159265358979;
final constant Real D2R(final unit="rad/deg") = pi/180 "Degree to Radian";
final constant Real R2D(final unit="deg/rad") = 180/pi "Radian to Degree";
final constant Real gamma(final unit="1") = 0.57721566490153286061
Expand Down

0 comments on commit dbcda99

Please sign in to comment.