CustomPressureGaugeAttribute¶
Overview¶
Class
A custom attribute with Value type NullablePressureGauge.
Supertypes
Attributes (data)
| Name | Multiplicity | Type | 
|---|---|---|
| 1 | 
Implementation in Proteus Schema
CustomPressureGaugeAttribute is implemented as a custom generic attribute for physical quantities.
Example
As CustomAttributeOwner is abstract, we consider CustomEquipment as an arbitrary concrete subclass.
The CustomEquipment customEquipment1 has a CustomPressureGaugeAttribute with AttributeName “DesignOutletPressure” and an (arbitrary) AttributeURI “http://www.example.org/d9ef71ee3cc874”. The Value is 1.2 bar.
Implementation in Proteus Schema
<Equipment
    ID="customEquipment1"
    ComponentClass="CustomEquipment"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/CustomEquipment" ...>
  ...
  <GenericAttributes Set="DexpiCustomAttributes" ...>
    <GenericAttribute
      Name="DesignOutletPressure"
      AttributeURI="http://www.example.org/d9ef71ee3cc874"
      Format="double"
      Type="PressureGauge"
      TypeURI="http://data.posccaesar.org/rdl/RDS416159"
      Value="1.2"
      Units="Bar"
      UnitsURI="http://data.posccaesar.org/rdl/RDS1314539" />
    ...
  </GenericAttributes>
  ...
</Equipment>
Value¶
Attribute (data)
The value of the CustomPressureGaugeAttribute.
Implementation in Proteus Schema
See implementation of CustomPressureGaugeAttribute.
Example
See the example for CustomPressureGaugeAttribute.