diff --git a/doc/source/models/index.rst b/doc/source/models/index.rst index 34133f6..213ae69 100644 --- a/doc/source/models/index.rst +++ b/doc/source/models/index.rst @@ -20,7 +20,7 @@ Models SAFT-VR-Mie SAFT-VR-Mie-Polar Association - Check_Dufal_Water + Check_Dufal_water multifluid multifluid_mutant diff --git a/interface/pybind11_wrapper.cpp b/interface/pybind11_wrapper.cpp index 88b5a44..f938608 100644 --- a/interface/pybind11_wrapper.cpp +++ b/interface/pybind11_wrapper.cpp @@ -575,7 +575,9 @@ void init_teqp(py::module& m) { py::class_>(m_phaseequil, "PSpecification").def(py::init()); py::class_>(m_phaseequil, "BetaSpecification").def(py::init()); py::class_>(m_phaseequil, "MolarVolumeSpecification").def(py::init()); - // TODO: H,S,U as specifications + py::class_>(m_phaseequil, "MolarEntropySpecification").def(py::init()); + py::class_>(m_phaseequil, "MolarEnthalpySpecification").def(py::init()); + py::class_>(m_phaseequil, "MolarInternalEnergySpecification").def(py::init()); using CallResult = GeneralizedPhaseEquilibrium::CallResult; py::class_(m_phaseequil, "CallResult")