We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the displayUnit by default but allow custom override in SimRes.get_values(), SimRes.get_IV(), etc.
displayUnit
SimRes.get_values()
SimRes.get_IV()
Ideas for implementation:
f
unit
None
"m/s2"
m/s**2
modelicares.units
degC
dB
units
c/(m/s)
299792458
The text was updated successfully, but these errors were encountered:
Convert methods like min, max, mean, FV, value, and IV to properties. Remove the f argument to methods where no longer needed.
min
max
mean
FV
value
IV
Sorry, something went wrong.
Unit conversion will be based on natu module (to be published soon).
No branches or pull requests
Use the
displayUnit
by default but allow custom override inSimRes.get_values()
,SimRes.get_IV()
, etc.Ideas for implementation:
f
argument toSimRes.get_values()
, etc. with aunit
argument:None
), then usedisplayUnit
."m/s2"
). The units may contain SI prefixes.m/s**2
) where the values are available from a submodule (modelicares.units
).degC
,dB
), also from a submodule.unit
argument, default units,displayUnit
attribute,unit
attributeunits
submodule (e.g.,c/(m/s)
should return299792458
).modelicares.units
.The text was updated successfully, but these errors were encountered: