All Downloads are FREE. Search and download functionalities are using the official Maven repository.

energyml.prodml2_0.AbstractCompositionalModel Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.prodml2_0;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Abstract class of compositional model.
 * 
 * 

Java class for AbstractCompositionalModel complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AbstractCompositionalModel">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/prodmlv2}AbstractPvtModel">
 *       <sequence>
 *         <element name="BinaryInteractionCoefficientSet" type="energyml.prodml2_0.BinaryInteractionCoefficientSet" minOccurs="0"/>
 *         <element name="ComponentPropertySet" type="energyml.prodml2_0.ComponentPropertySet" minOccurs="0"/>
 *         <element name="MixingRule" type="energyml.prodml2_0.MixingRule" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractCompositionalModel", propOrder = { "binaryInteractionCoefficientSet", "componentPropertySet", "mixingRule" }) @XmlSeeAlso({ CompositionalThermalModel.class, AbstractCompositionalViscosityModel.class, AbstractCompositionalEoSModel.class }) public abstract class AbstractCompositionalModel extends AbstractPvtModel { @XmlElement(name = "BinaryInteractionCoefficientSet") protected BinaryInteractionCoefficientSet binaryInteractionCoefficientSet; @XmlElement(name = "ComponentPropertySet") protected ComponentPropertySet componentPropertySet; @XmlElement(name = "MixingRule") @XmlSchemaType(name = "string") protected MixingRule mixingRule; /** * Gets the value of the binaryInteractionCoefficientSet property. * * @return * possible object is * {@link BinaryInteractionCoefficientSet } * */ public BinaryInteractionCoefficientSet getBinaryInteractionCoefficientSet() { return binaryInteractionCoefficientSet; } /** * Sets the value of the binaryInteractionCoefficientSet property. * * @param value * allowed object is * {@link BinaryInteractionCoefficientSet } * */ public void setBinaryInteractionCoefficientSet(BinaryInteractionCoefficientSet value) { this.binaryInteractionCoefficientSet = value; } /** * Gets the value of the componentPropertySet property. * * @return * possible object is * {@link ComponentPropertySet } * */ public ComponentPropertySet getComponentPropertySet() { return componentPropertySet; } /** * Sets the value of the componentPropertySet property. * * @param value * allowed object is * {@link ComponentPropertySet } * */ public void setComponentPropertySet(ComponentPropertySet value) { this.componentPropertySet = value; } /** * Gets the value of the mixingRule property. * * @return * possible object is * {@link MixingRule } * */ public MixingRule getMixingRule() { return mixingRule; } /** * Sets the value of the mixingRule property. * * @param value * allowed object is * {@link MixingRule } * */ public void setMixingRule(MixingRule value) { this.mixingRule = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy