@neutrium/thermo
Version:
The base module of the NeutriumJS thermodynamics package.
106 lines (104 loc) • 2.47 kB
text/typescript
export const DEFAULT_STATE_PROPERTIES = {
"p" : {
"name" : "Pressure",
"key" : "p",
"category" : "pressure",
"default_units" : "Pa"
},
"t" : {
"name" : "Temperature",
"key" : "t",
"category" : "temperature",
"default_units" : "tempK"
},
"n" : {
"name" : "Number of moles",
"key" : "n",
"category" : "substance",
"default_units" : "mole"
},
"v" : {
"name" : "Specific Volume",
"key" : "v",
"category" : "specific_volume",
"default_units" : "m^3/kg"
},
"rho" : {
"name" : "Density",
"key" : "rho",
"category" : "density",
"default_units" : "kg/m^3"
},
"u" : {
"name" : "Internal Energy",
"key" : "u",
"category" : "specific_energy",
"default_units" : "kJ/kg"
},
"s" : {
"name" : "Entropy",
"key" : "s",
"category" : "specific_energy",
"default_units" : "kJ/kg"
},
"h" : {
"name" : "Enthalpy",
"key" : "h",
"category" : "heat_capacity",
"default_units" : "kJ/kg.K"
},
"cp" : {
"name" : "Isobaric Heat Capacity (Cp)",
"key" : "cp",
"category" : "heat_capacity",
"default_units" : "kJ/kg.K"
},
"cv" : {
"name" : "Isochoric Heat Capacity (Cv)",
"key" : "cv",
"category" : "heat_capacity",
"default_units" : "kJ/kg.K"
},
"w" : {
"name" : "Velocity",
"key" : "w",
"category" : "velocity",
"default_units" : "m/s"
},
"mu" : {
"name" : "Viscosity",
"key" : "mu",
"category" : "viscosity",
"default_units" : "cP"
},
"k" : {
"name" : "Thermal Conductivity",
"key" : "k",
"category" : "thermal_conductivity",
"default_units" : "W/m.K"
},
"sigma" : {
"name" : "Surface Tension",
"key" : "sigma",
"category" : "surface_tension",
"default_units" : "mN/m"
},
"epsilon" : {
"name" : "Dielectric Constant",
"key" : "epsilon",
"category" : "dielectric_constant",
"default_units" : ""
},
"ic" : {
"name" : "Ionisation constant",
"key" : "ic",
"category" : "ionisation_constant",
"default_units" : ""
},
"γ" : {
"name" : "Adibatic index",
"key" : "γ",
"category" : "dimensionless",
"default_units" : ""
}
}