Mount

Overview

Class

An object that is capable of supporting something that is mounted on it.

A mount is attached to a piece of Equipment and can explicitly be used as a SensingLocation.

Supertypes

Attributes (data)

Name

Multiplicity

Type

SubTagName

0..1

NullableString

Attributes (reference)

Name

Multiplicity

Type

MountedObject

0..1

MeasuringElement

Implementation in Proteus Schema

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

Tag: <Equipment>

RDL reference: MOUNT

ComponentClass: Mount

Example

Implementation in Proteus Schema

<Equipment
    ID="mount1"
    ComponentClass="Mount"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/Mount" ...>
  ...
</Equipment>

MountedObject

Attribute (reference)

The object that is mounted.

Multiplicity: 0..1

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="mount1"
    ComponentClass="Mount"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/Mount" ...>
  ...
  <Association
    Type="is the location of"
    ItemID="measuringElement1" />
  ...
<Equipment />
...
<MeasuringSystemComponent
    ID="measuringElement1"
    ComponentClass="MeasuringElement"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/MeasuringElement" ...>
  ...
  <Association
    Type="is located in"
    ItemID="mount1" />
  ...
<MeasuringSystemComponent />

SubTagName

Attribute (data)

The sub tag name of the Mount.

Multiplicity: 0..1

Implementation in Proteus Schema

The attribute is implemented as a DEXPI generic attribute for string values.

Name: SubTagNameAssignmentClass

Example

“ST1” (String)

Implementation in Proteus Schema

<Equipment
    ID="mount1"
    ComponentClass="Mount"
    ComponentClassURI="http://sandbox.dexpi.org/rdl/Mount" ...>
  ...
  <GenericAttributes Set="DexpiAttributes" ...>
    <GenericAttribute
      Name="SubTagNameAssignmentClass"
      AttributeURI="http://sandbox.dexpi.org/rdl/SubTagNameAssignmentClass"
      Format="string"
      Value="ST1" />
    ...
  </GenericAttributes>
  ...
</Equipment>