Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit ddb6f4d8 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

update xml schema so that PIF may include TC Data.

parent d205dbc4
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@
<xs:complexType name="AbstractAngledriveDataPIFType" abstract="true"/>
<xs:complexType name="AbstractAxlegearDataPIFType" abstract="true"/>
<xs:complexType name="AbstractEngineDataPIFType" abstract="true"/>
<xs:complexType name="AbstractTorqueConverterDataPIFType" abstract="true"/>
<xs:complexType name="AbstractTransmissionDataPIFType" abstract="true"/>
<xs:complexType name="AbstractTransmissionGearsPIFType" abstract="true"/>
<xs:complexType name="AbstractVehicleComponentsPIFType" abstract="true"/>
......@@ -354,6 +355,56 @@
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TorqueConverterDataPIFType">
<xs:complexContent>
<xs:extension base="AbstractTorqueConverterDataPIFType">
<xs:sequence>
<xs:element name="Manufacturer" type="v1.0:ManufacturerType">
<xs:annotation>
<xs:documentation>P205</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Model" type="v1.0:ModelType">
<xs:annotation>
<xs:documentation>P206</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CertificationMethod" type="v1.0:TorqueConverterCertificationOptionType">
<xs:annotation>
<xs:documentation>P254 - [-]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CertificationNumber" type="v1.0:CertificationNumberType" minOccurs="0">
<xs:annotation>
<xs:documentation>P262</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Date" type="v1.0:DateTimeWithTimezone">
<xs:annotation>
<xs:documentation>P208</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AppVersion" type="v1.0:AppVersionType">
<xs:annotation>
<xs:documentation>P209</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Characteristics">
<xs:complexType>
<xs:sequence>
<xs:element name="Entry" type="v1.0:TorqueConverterCharacteristicsEntryType" minOccurs="2" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="TorqueConverterPIFType">
<xs:sequence>
<xs:element name="Data" type="AbstractTorqueConverterDataPIFType"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="TransmissionComponentPIFType">
<xs:sequence>
<xs:element name="Data" type="AbstractTransmissionDataPIFType"/>
......@@ -430,6 +481,7 @@
<xs:sequence>
<xs:element name="Engine" type="EngineComponentPIFType"/>
<xs:element name="Transmission" type="TransmissionComponentPIFType"/>
<xs:element name="TorqueConverter" type="TorqueConverterPIFType" minOccurs="0"/>
<xs:element name="Angledrive" type="AngledrivePIFType" minOccurs="0"/>
<xs:element name="Axlegear" type="AxlegearPIFType"/>
<xs:element name="AxleWheels" type="v2.0:AbstractAxleWheelsComponentDeclarationType"/>
......
......@@ -129,7 +129,35 @@ xsi:schemaLocation="urn:tugraz:ivt:VectoAPI:PrimaryVehicleInformation E:\QUAM\Wo
</Gears>
</Data>
</Transmission>
<!-- Torque Converter -->
<TorqueConverter>
<Data xsi:type="TorqueConverterDataPIFType">
<Manufacturer>Some Manufacturer</Manufacturer>
<Model>Some Model</Model>
<CertificationMethod>Standard values</CertificationMethod>
<CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber>
<Date>2017-02-15T11:00:00Z</Date>
<AppVersion>TC CalcApp 123</AppVersion>
<Characteristics>
<Entry speedRatio="0.0000" torqueRatio="4.50" inputTorqueRef="700.00"/>
<Entry speedRatio="0.1000" torqueRatio="3.50" inputTorqueRef="640.00"/>
<Entry speedRatio="0.2000" torqueRatio="2.70" inputTorqueRef="560.00"/>
<Entry speedRatio="0.3000" torqueRatio="2.20" inputTorqueRef="460.00"/>
<Entry speedRatio="0.4000" torqueRatio="1.60" inputTorqueRef="350.00"/>
<Entry speedRatio="0.5000" torqueRatio="1.20" inputTorqueRef="250.00"/>
<Entry speedRatio="0.6000" torqueRatio="0.90" inputTorqueRef="160.00"/>
<Entry speedRatio="0.7400" torqueRatio="0.90" inputTorqueRef="1.00"/>
<Entry speedRatio="0.8100" torqueRatio="1.00" inputTorqueRef="-40.34"/>
<Entry speedRatio="0.9100" torqueRatio="1.00" inputTorqueRef="-80.34"/>
<Entry speedRatio="1.0200" torqueRatio="1.00" inputTorqueRef="-136.11"/>
<Entry speedRatio="1.1600" torqueRatio="1.00" inputTorqueRef="-216.52"/>
<Entry speedRatio="1.3600" torqueRatio="1.00" inputTorqueRef="-335.19"/>
<Entry speedRatio="1.6300" torqueRatio="1.00" inputTorqueRef="-528.77"/>
<Entry speedRatio="2.0400" torqueRatio="1.00" inputTorqueRef="-883.40"/>
<Entry speedRatio="3.2600" torqueRatio="1.00" inputTorqueRef="-2462.17"/>
<Entry speedRatio="8.1500" torqueRatio="1.00" inputTorqueRef="-16540.98"/>
</Characteristics>
</Data>
</TorqueConverter>
<Angledrive>
<Data xsi:type="pbus:AngledriveDataPIFType">
<Manufacturer>Generic Gearbox Manufacturer</Manufacturer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment