![]() ![]() ![]() ![]() SAE J2735-Draft-Rev26 [issued: 09-18-08]
-
63 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
tires SEQUENCE (SIZE(0..16)) OF SEQUENCE {
location TireLocation,
pressure TirePressure,
temp TireTemp,
wheelSensorStatus WheelSensorStatus,
wheelEndElectFault WheelEndElectFault,
leakageRate TireLeakageRate,
detection TirePressureThresholdDetection,
...
},
-- Vehicle Weight by axel
axle SEQUENCE (SIZE(0..16)) OF SEQUENCE {
location AxleLocation,
weight AxleWeight,
...
},
trailerWeight TrailerWeight,
cargoWeight CargoWeight,
steeringAxleTemperature SteeringAxleTemperature,
driveAxleLocation DriveAxleLocation,
driveAxleLiftAirPressure DriveAxleLiftAirPressure,
driveAxleTemperature DriveAxleTemperature,
driveAxleLubePressure DriveAxleLubePressure,
steeringAxleLubePressure SteeringAxleLubePressure,
...
}
XML Representation:
<xs:sequence>
<!-- Tire conditions -->
<xs:element name="tires" >
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="16">
<xs:element name="tire" >
<xs:complexType>
<xs:sequence>
<xs:element name="location" type="TireLocation" />
<xs:element name="pressure" type="TirePressure" />
<xs:element name="temp" type="TireTemp" />
<xs:element name="wheelSensorStatus" type="WheelSensorStatus"
/>
<xs:element name="wheelEndElectFault"
type="WheelEndElectFault" />
<xs:element name="leakageRate" type="TireLeakageRate" />
<xs:element name="detection"
type="TirePressureThresholdDetection" />
</xs:sequence>
</xs:complexType>
</xs:element>
<!-- Vehicle Weight by axel -->
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="axle" >
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="16">
<xs:element name="axle-item" >
<xs:complexType>
<xs:sequence>
<xs:element name="location" type="AxleLocation" />
<xs:element name="weight" type="AxleWeight" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="trailerWeight" type="TrailerWeight" />
|