This package contains blocks to convert quantities from the unit system in FCSys (see FCSys.Units) to quantities expressed in units or vice versa. The UnitConversion block has a parameter that configures it to convert to or from any of the supported units. All other blocks convert to or from a predefined unit.
Blocks are only included for
units that involve offsets or other functions besides simple scaling.
For conversions that require just a scaling factor, it is best to use
the Modelica.Blocks.Math.Gain
block with the appropriate factors from Units package
(U
). For example, to convert from potential in volts use:
Modelica.Blocks.Math.Gain from_V(k=U.V);
To convert to current in amperes use:
Modelica.Blocks.Math.Gain to_A(k=1/U.A);
Name | Description |
---|---|
From_degC | Convert from temperature in degree Celsius to thermodynamic temperature |
To_degC | Convert from thermodynamic temperature to temperature in degree Celsius |
From_kPag | Convert from gauge pressure in kilopascals to absolute pressure |
To_kPag | Convert absolute pressure to gauge pressure in kilopascals |
UnitConversion | Generic block to convert to or from quantities expressed in units |
Partial | Base block to convert to or from quantities expressed in units |
Please see the documentation of the UnitConversions package.
Extends from Partial (Base block to convert to or from quantities expressed in units).
Type | Name | Description |
---|---|---|
input RealInput | u | Real input for value in source representation |
block From_degC "Convert from temperature in degree Celsius to thermodynamic temperature" extends Partial(y(final unit="l2.m/(N.T2)", displayUnit="U.K")); equation y = U.from_degC(u); end From_degC;
Please see the documentation of the UnitConversions package.
Extends from Partial (Base block to convert to or from quantities expressed in units).
Type | Name | Description |
---|---|---|
output RealOutput | y | Real output for quantity in desired representation |
block To_degC "Convert from thermodynamic temperature to temperature in degree Celsius" extends Partial(u(final unit="l2.m/(N.T2)", displayUnit="U.K")); equation y = U.to_degC(u); end To_degC;
Please see the documentation of the UnitConversions package.
Extends from Partial (Base block to convert to or from quantities expressed in units).
Type | Name | Description |
---|---|---|
input RealInput | u | Real input for value in source representation |
block From_kPag "Convert from gauge pressure in kilopascals to absolute pressure" extends Partial(y(final unit="m/(l.T2)")); equation y = U.from_kPag(u); end From_kPag;
Please see the documentation of the UnitConversions package.
Extends from Partial (Base block to convert to or from quantities expressed in units).
Type | Name | Description |
---|---|---|
output RealOutput | y | Real output for quantity in desired representation |
block To_kPag "Convert absolute pressure to gauge pressure in kilopascals" extends Partial(u(final unit="m/(l.T2)")); equation y = U.to_kPag(u); end To_kPag;
Please see the documentation of the UnitConversions package.
Extends from Partial (Base block to convert to or from quantities expressed in units).
Type | Name | Default | Description |
---|---|---|---|
replaceable function f | U.from_degC | Conversion function |
Type | Name | Description |
---|---|---|
input RealInput | u | Real input for value in source representation |
output RealOutput | y | Real output for quantity in desired representation |
replaceable function f | Conversion function |
block UnitConversion "Generic block to convert to or from quantities expressed in units" extends Partial; replaceable function f = U.from_degC constrainedby Modelica.SIunits.Conversions.ConversionIcon "Conversion function"; equation y = f(u); end UnitConversion;
Please see the documentation of the UnitConversions package.
Extends from FCSys.Icons.Names.Top2.
Type | Name | Description |
---|---|---|
input RealInput | u | Real input for value in source representation |
output RealOutput | y | Real output for quantity in desired representation |
partial block Partial "Base block to convert to or from quantities expressed in units" // extends FCSys.Icons.Blocks.ContinuousShort; extends FCSys.Icons.Names.Top2; Connectors.RealInput u "Real input for value in source representation"; Connectors.RealOutput y "Real output for quantity in desired representation"; end Partial;