Vessel¶
Overview¶
Class
A container intended for storage and/or processing of fluids or solids.
Supertypes
Subtypes
Attributes (data)
| Name | Multiplicity | Type | 
|---|---|---|
| 0..1 | 
Attributes (reference)
| Name | Multiplicity | Type | 
|---|---|---|
| 0..1 | ||
| * | 
Implementation in Proteus Schema
The class is implemented as a Proteus XML element with RDL reference.
Tag: <Equipment>
RDL reference: VESSEL
ComponentClass: Vessel
ComponentClassURI: http://data.posccaesar.org/rdl/RDS414674
Example
Implementation in Proteus Schema
<Equipment
    ID="vessel1"
    ComponentClass="Vessel"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS414674" ...>
  ...
</Equipment>
Agitator¶
Attribute (reference)
The Agitator of the Vessel, if applicable.
Implementation in Proteus Schema
The attribute is implemented using Proteus <Association> elements.
Association type for the attribute ower: "is the location of"
Opposite association type: "is located in"
Example
Implementation in Proteus Schema
<Equipment
    ID="vessel1"
    ComponentClass="Vessel"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS414674" ...>
  ...
  <Association
    Type="is the location of"
    ItemID="agitator1" />
  ...
<Equipment />
...
<Equipment
    ID="agitator1"
    ComponentClass="Agitator"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS16045622" ...>
  ...
  <Association
    Type="is located in"
    ItemID="vessel1" />
  ...
<Equipment />
ColumnSections¶
Attribute (reference)
The column sections of the Vessel, if applicable.
Implementation in Proteus Schema
The attribute is implemented using Proteus <Association> elements.
Association type for the attribute ower: "is the location of"
Opposite association type: "is located in"
Example
Implementation in Proteus Schema
<Equipment
    ID="vessel1"
    ComponentClass="Vessel"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS414674" ...>
  ...
  <Association
    Type="is the location of"
    ItemID="taggedColumnSection1" />
  ...
<Equipment />
...
<Equipment
    ID="taggedColumnSection1"
    ComponentClass="ColumnSection"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/ColumnSection" ...>
  ...
  <Association
    Type="is located in"
    ItemID="vessel1" />
  ...
<Equipment />
NominalCapacity(Volume)¶
Attribute (data)
The nominal volumetric capacity of the Vessel.
Multiplicity: 0..1
Type: NullableVolume
Implementation in Proteus Schema
The attribute is implemented as a DEXPI generic attribute for physical quantities.
RDL reference: NOMINAL CAPACITY VOLUME
Name: NominalCapacityVolume
AttributeURI: http://sandbox.dexpi.org/rdl/NominalCapacityVolume
Example
The instance vessel1 represents a Vessel with a NominalCapacity(Volume) of 7.2 m3.
Implementation in Proteus Schema
<Equipment
    ID="vessel1"
    ComponentClass="Vessel"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS414674" ...>
  ...
  <GenericAttributes Set="DexpiAttributes" ...>
    <GenericAttribute
      Name="NominalCapacityVolume"
      AttributeURI="http://sandbox.dexpi.org/rdl/NominalCapacityVolume"
      Format="double"
      Value="7.2"
      Units="MetreCubed"
      UnitsURI="http://data.posccaesar.org/rdl/RDS1349099" />
    ...
  </GenericAttributes>
  ...
</Equipment>