PropertyPackageGetComponentList Method |
Returns the list of compounds of a given Property Package.
Namespace: DWSIM.Thermodynamics.PropertyPackagesAssembly: DWSIM.Thermodynamics (in DWSIM.Thermodynamics.dll) Version: 8.8.1.0
Syntax public virtual void GetComponentList(
ref Object compIds,
ref Object formulae,
ref Object names,
ref Object boilTemps,
ref Object molWt,
ref Object casNo
)
Public Overridable Sub GetComponentList (
ByRef compIds As Object,
ByRef formulae As Object,
ByRef names As Object,
ByRef boilTemps As Object,
ByRef molWt As Object,
ByRef casNo As Object
)
Request Example
View SourceParameters
- compIds Object
- List of compound IDs
- formulae Object
- List of compound formulae
- names Object
- List of compound names.
- boilTemps Object
- List of boiling point temperatures.
- molWt Object
- List of molecular weights.
- casNo Object
- List of CAS numbers .
Implements
ICapeThermoPropertyPackage.GetComponentList(Object, Object, Object, Object, Object, Object)Remarks Compound identification could be necessary if the PME has internal knowledge of chemical compounds, or in case of
use of multiple Property Packages. In order to identify the compounds of a Property Package, the PME will use the
'casno’ argument instead of the compIds. The reason is that different PMEs may give different names to the same
chemical compounds, whereas CAS Numbers are universal. Therefore, it is recommended to provide a value for the
casno argument wherever available.
See Also