Click or drag to resize

PropertyPackageGetPropList Method

Returns list of properties supported by the Property Package.

Namespace: DWSIM.Thermodynamics.PropertyPackages
Assembly: DWSIM.Thermodynamics (in DWSIM.Thermodynamics.dll) Version: 8.4.5.0
Syntax
public virtual Object GetPropList()
Request Example View Source

Return Value

Object
List of all supported Properties.

Implements

ICapeThermoPropertyPackage.GetPropList
Remarks
GetPropList should return identifiers for the non-constant properties calculated by CalcProp. Standard identifiers are listed in 3.10.1. Other non-standard properties that are supported by the Property Package can also be returned. GetPropList must not return identifiers for compound constant properties returned by GetComponentConstant. The properties temperature, pressure, fraction, flow, phaseFraction, totalFlow cannot be returned by GetPropList, since all thermodynamic software components must support them. Although the property identifier of derivative properties is formed from the identifier of another property, the GetPropList method must return the identifiers of all supported derivative and non-derivative properties. For instance, a Property Package could return the following list: enthalpy, enthalpy.Dtemperature, entropy, entropy.Dpressure.
See Also