Enumeration SpeedTargetValueType

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

Used in:
RelativeSpeedToMaster , RelativeTargetSpeed
Enumeration Literals
Name 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.

Migration Information from XSD 0.9.1
Derived From:
Enum_Speed_Target_valueType
Property Name XSD Type XSD 0.9.1 Name Migration
delta Attribute delta
factor Attribute factor

XSD 1.0 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 To XSLT