nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
/// Computes the output property given input properties for the substance using REFPROP. Initial implementation
/// only expects two input properties.
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    conjure_object::private::DeriveWith
)]
#[serde(crate = "conjure_object::serde")]
#[derive_with(PartialEq, Eq, PartialOrd, Ord, Hash)]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct RefpropSeries {
    #[builder(
        default,
        map(key(type = super::RefpropProperty), value(type = super::NumericSeries))
    )]
    #[serde(
        rename = "inputs",
        skip_serializing_if = "std::collections::BTreeMap::is_empty",
        default
    )]
    inputs: std::collections::BTreeMap<super::RefpropProperty, super::NumericSeries>,
    #[serde(rename = "outputProperty")]
    output_property: super::RefpropProperty,
    #[serde(rename = "substance")]
    substance: super::RefpropSubstance,
    #[builder(
        default,
        custom(
            type = impl
            Into<Option<super::InterpolationConfiguration>>,
            convert = |v|v.into().map(Box::new)
        )
    )]
    #[serde(
        rename = "interpolationConfiguration",
        skip_serializing_if = "Option::is_none",
        default
    )]
    interpolation_configuration: Option<Box<super::InterpolationConfiguration>>,
}
impl RefpropSeries {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new(
        output_property: super::RefpropProperty,
        substance: super::RefpropSubstance,
    ) -> Self {
        Self::builder().output_property(output_property).substance(substance).build()
    }
    /// A map that maps a REFPROP property to its numeric series.
    #[inline]
    pub fn inputs(
        &self,
    ) -> &std::collections::BTreeMap<super::RefpropProperty, super::NumericSeries> {
        &self.inputs
    }
    /// The desired output property. This should not be one of the input properties.
    #[inline]
    pub fn output_property(&self) -> &super::RefpropProperty {
        &self.output_property
    }
    /// The substance for REFPROP calculations.
    #[inline]
    pub fn substance(&self) -> &super::RefpropSubstance {
        &self.substance
    }
    #[inline]
    pub fn interpolation_configuration(
        &self,
    ) -> Option<&super::InterpolationConfiguration> {
        self.interpolation_configuration.as_ref().map(|o| &**o)
    }
}