PropertyPackageGetPropList Method |
Returns list of properties supported by the Property Package.
Namespace: DWSIM.Thermodynamics.PropertyPackagesAssembly: DWSIM.Thermodynamics (in DWSIM.Thermodynamics.dll) Version: 8.8.1.0
Syntax public virtual Object GetPropList()
Public Overridable Function GetPropList As Object
Request Example
View SourceReturn Value
ObjectList of all supported Properties.
Implements
ICapeThermoPropertyPackage.GetPropListRemarks 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