From af6c3ac238e45af83f5ef5983be2a5955de52f7d Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Tue, 16 Aug 2022 10:23:30 -0400 Subject: [PATCH] Expose departure function for Tillner-Roth --- interface/multifluid.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/multifluid.cpp b/interface/multifluid.cpp index 46a5a2f..2d027ea 100644 --- a/interface/multifluid.cpp +++ b/interface/multifluid.cpp @@ -13,6 +13,7 @@ void add_AmmoniaWaterTillnerRoth(py::module&m ){ .def(py::init<>()) .def_readonly("TcNH3", &AmmoniaWaterTillnerRoth::TcNH3) .def_readonly("vcNH3", &AmmoniaWaterTillnerRoth::vcNH3) + .def("alphar_departure", &AmmoniaWaterTillnerRoth::alphar_departure<double, double, double>, py::arg("tau"), py::arg("delta"), py::arg("xNH3")) ; add_derivatives<AmmoniaWaterTillnerRoth>(m, wAW); } -- GitLab