Click or drag to resize

HelmholtzEquationOfStateOfPureFluidsSaturatedLiquidAndVaporMoleDensitiesAndPressure_FromTemperature(Double, Double) Method

Gets the saturated liquid mole density, the saturated vapor mole density, and the pressure for a given temperature. This is done by iteration, using multivariate Newton-Raphson.

Namespace: Altaxo.Science.Thermodynamics.Fluids
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public (double liquidMoleDensity, double vaporMoleDensity, double pressure) SaturatedLiquidAndVaporMoleDensitiesAndPressure_FromTemperature(
	double temperature,
	double relativeAccuracy = 1E-06
)

Parameters

temperature  Double
The temperature in Kelvin. Must be greater than or equal the triple point temperature and less than or equal to the critical point temperature.
relativeAccuracy  Double  (Optional)
The relative accuracy of the calculation.

Return Value

ValueTupleDouble, Double, Double
A tuple consisting of the liquid mole density (mol/m³), the vapor mole density (mol/m³), and the pressure in Pa.
Exceptions
ExceptionCondition
NotImplementedException
See Also