Enumeration SpeedTargetValueType

Type definition that relates a speed value relative to another one.

Used in:
RelativeSpeedToMaster , RelativeTargetSpeed
Enumeration Literals
Name Applied Stereotypes Description
delta The relative value is interpreted as a difference to a referenced value. Unit: m/s. As an example, a speed value of 10 equals a speed that's 10m/s faster than the reference speed.
factor The relative value is interpreted as a factor to a referenced value. No unit. As an example, a speed value of 1.1 equals a speed that's 10% faster than the reference speed.

XSD 1.1 Representation


<xsd:simpleType name="SpeedTargetValueType">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="delta"/>
<xsd:enumeration value="factor"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD