Vessel

Overview

Class

A container intended for storage and/or processing of fluids or solids.

Supertypes

Subtypes

Attributes (data)

Name

Multiplicity

Type

NominalCapacity(Volume)

0..1

NullableVolume

Attributes (reference)

Name

Multiplicity

Type

Agitator

0..1

Agitator

ColumnSections

*

TaggedColumnSection

Implementation in Proteus Schema

The class is implemented as a Proteus XML element with RDL reference.

Tag: <Equipment>

RDL reference: VESSEL

ComponentClass: Vessel

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.

Multiplicity: 0..1

Type: Agitator

Opposite multiplicity: 0..1

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.

Multiplicity: *

Opposite multiplicity: 0..1

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

Implementation in Proteus Schema

The attribute is implemented as a DEXPI generic attribute for physical quantities.

Name: 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>