<xsd:complexType name="DerivativeFormula">
<xsd:annotation>
<xsd:documentation xml:lang="en">A formula for computing a complex derivative from partial derivatives. Its value is the sum of the terms divided by the product of the denominator terms.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="term" type="FormulaTerm">
<xsd:annotation>
<xsd:documentation xml:lang="en">A term of the formula. Its value is the product of the its coefficient and the referenced partial derivatives.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="denominatorTerm" type="DenominatorTerm">
<xsd:annotation>
<xsd:documentation xml:lang="en">A denominator term of the formula. Its value is (sum of weighted partials) ^ power.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|