com.hummeling.if97
public static enum IF97.UnitSystem extends java.lang.Enum<IF97.UnitSystem>
Default | Engineering | SI | Imperial | ||
---|---|---|---|---|---|
ρ | density | kg/m³ | kg/m³ | kg/m³ | lb/ft³ |
ε | dielectric constant | - | - | - | - |
η | dynamic viscosity | Pa·s | Pa·s | Pa·s | cP |
αv | isobaric cubic expansion coefficient | 1/K | 1/K | 1/K | 1/R |
κT | isothermal compressibility | 1/MPa | 1/MPa | 1/Pa | in²/lb |
ν | kinematic viscosity | m²/s | m²/s | m²/s | cSt |
Pr | Prandtl number | - | - | - | - |
p | absolute pressure | MPa | bar | Pa | psi |
n | refractive index | - | - | - | - |
h | specific enthalpy | kJ/kg | kJ/kg | J/kg | BTU/lb |
s | specific entropy | kJ/(kg·K) | kJ/(kg·K) | J/(kg·K) | BTU/(lb·R) |
u | specific internal energy | kJ/kg | kJ/kg | J/kg | BTU/lb |
cp | specific isobaric heat capacity | kJ/(kg·K) | kJ/(kg·K) | J/(kg·K) | BTU/(lb·R) |
cv | specific isochoric heat capacity | kJ/(kg·K) | kJ/(kg·K) | J/(kg·K) | BTU/(lb·R) |
v | specific volume | m³/kg | m³/kg | m³/kg | ft³/lb |
w | speed of sound | m/s | m/s | m/s | ft/s |
σ | surface tension | N/m | N/m | N/m | lbf/ft |
T | temperature | K | °C | K | °F |
λ | thermal conductivity | W/(m·K) | kW/(m·K) | W/(m·K) | BTU/(hr·ft·R) |
x | vapour fraction | - | - | - | - |
λ | wave length | μm | μm | m | in |
Enum Constant and Description |
---|
DEFAULT
Default unit system.
|
ENGINEERING
Engineering units.
|
IMPERIAL
British imperial unit system.
|
SI
SI unit system.
|
Modifier and Type | Field and Description |
---|---|
(package private) double[] |
COMPRESSIBILITY |
(package private) double[] |
DENSITY |
(package private) double[] |
DYNAMIC_VISCOSITY |
(package private) double[] |
ISOBARIC_CUBIC_EXPANSION_COEFFICIENT |
(package private) double[] |
KINEMATIC_VISCOSITY |
(package private) double[] |
PRESSURE |
(package private) double[] |
SPECIFIC_ENERGY |
(package private) double[] |
SPECIFIC_ENTHALPY |
(package private) double[] |
SPECIFIC_ENTROPY |
(package private) double[] |
SPECIFIC_HEAT_CAPACITY |
(package private) double[] |
SPECIFIC_VOLUME |
(package private) double[] |
SPEED_OF_SOUND |
(package private) double[] |
SURFACE_TENSION |
(package private) double[] |
TEMPERATURE |
(package private) double[] |
THERMAL_CONDUCTIVITY |
(package private) double[] |
WAVELENGTH |
Modifier and Type | Method and Description |
---|---|
static IF97.UnitSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IF97.UnitSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IF97.UnitSystem DEFAULT
public static final IF97.UnitSystem ENGINEERING
public static final IF97.UnitSystem SI
public static final IF97.UnitSystem IMPERIAL
final double[] COMPRESSIBILITY
final double[] DENSITY
final double[] DYNAMIC_VISCOSITY
final double[] ISOBARIC_CUBIC_EXPANSION_COEFFICIENT
final double[] KINEMATIC_VISCOSITY
final double[] PRESSURE
final double[] SPECIFIC_ENERGY
final double[] SPECIFIC_ENTHALPY
final double[] SPECIFIC_ENTROPY
final double[] SPECIFIC_HEAT_CAPACITY
final double[] SPECIFIC_VOLUME
final double[] SPEED_OF_SOUND
final double[] SURFACE_TENSION
final double[] TEMPERATURE
final double[] THERMAL_CONDUCTIVITY
final double[] WAVELENGTH
public static IF97.UnitSystem[] values()
for (IF97.UnitSystem c : IF97.UnitSystem.values()) System.out.println(c);
public static IF97.UnitSystem valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null