<xsd:complexType name="DenominatorTerm">
<xsd:annotation>
<xsd:documentation xml:lang="en">The type defining a denominator term of the formula. Its value is (sum of weighted partials) ^ power.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="weightedPartial" type="WeightedPartialDerivative">
<xsd:annotation>
<xsd:documentation xml:lang="en">A partial derivative multiplied by a weighting factor.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="power" type="xsd:positiveInteger">
<xsd:annotation>
<xsd:documentation xml:lang="en">The power to which this term is raised.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|