Skip to content

Commit

Permalink
debugging documentation build: add other geometry types again
Browse files Browse the repository at this point in the history
  • Loading branch information
MarAlder committed Oct 27, 2023
1 parent 930d4b1 commit 64c7e1e
Showing 1 changed file with 55 additions and 3 deletions.
58 changes: 55 additions & 3 deletions schema/cpacs_schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -7607,6 +7607,25 @@ [email protected]
</xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="coneType">
<xsd:complexContent>
<xsd:extension base="complexBaseType">
<xsd:all>
<xsd:element name="radius" minOccurs="0" default="1" type="doubleBaseType">
<xsd:annotation>
<xsd:documentation>Radius (default=1) [m]</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="height" minOccurs="0" default="0.9549297" type="doubleBaseType">
<xsd:annotation>
<xsd:documentation>Height (default=0.9549297) [m]</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="configurationDefinitionsType">
<xsd:annotation>
<xsd:appinfo>
Expand Down Expand Up @@ -11230,6 +11249,25 @@ [email protected]
</xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="cylinderType">
<xsd:complexContent>
<xsd:extension base="complexBaseType">
<xsd:all>
<xsd:element name="radius" minOccurs="0" default="1" type="doubleBaseType">
<xsd:annotation>
<xsd:documentation>Radius (default=1) [m]</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="height" minOccurs="0" default="0.31831" type="doubleBaseType">
<xsd:annotation>
<xsd:documentation>Height (default=1/pi) [m]</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="dampingDerivativesRatesArrayType">
<xsd:annotation>
<xsd:appinfo>
Expand Down Expand Up @@ -18081,9 +18119,9 @@ The fuel tank volume type should also be used for the wing fuel tank</xsd:docume
<xsd:extension base="complexBaseType">
<xsd:choice>
<xsd:element name="cuboid" type="cuboidType"/>
<xsd:element name="cone" type="xsd:string"/>
<xsd:element name="sphere" type="xsd:string"/>
<xsd:element name="cylinder" type="xsd:string"/>
<xsd:element name="cone" type="coneType"/>
<xsd:element name="sphere" type="sphereType"/>
<xsd:element name="cylinder" type="cylinderType"/>
<xsd:element name="genericGeometryComponent" type="genericGeometryComponentType"/>
</xsd:choice>
</xsd:extension>
Expand Down Expand Up @@ -33879,6 +33917,20 @@ The fuel tank volume type should also be used for the wing fuel tank</xsd:docume
</xsd:simpleContent>
</xsd:complexType>

<xsd:complexType name="sphereType">
<xsd:complexContent>
<xsd:extension base="complexBaseType">
<xsd:all>
<xsd:element name="radius" minOccurs="0" default="0.62035" type="doubleBaseType">
<xsd:annotation>
<xsd:documentation>Radius (default=0.62035) [m]</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>

<xsd:complexType name="spoilersType">
<xsd:annotation>
<xsd:appinfo>
Expand Down

0 comments on commit 64c7e1e

Please sign in to comment.