Skip to content

Commit

Permalink
Merge pull request #37 from andrsd/ig-h-s
Browse files Browse the repository at this point in the history
Exposing idealGas::h_s in python
  • Loading branch information
andrsd authored Aug 22, 2023
2 parents c835b53 + b4cecea commit 4076908
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/src/fprops.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ PYBIND11_MODULE(pyfprops, m)
.def("set_k", &IdealGas::set_k)
.def("rho_T", &IdealGas::rho_T)
.def("p_T", &IdealGas::p_T)
.def("v_u", &IdealGas::v_u);
.def("v_u", &IdealGas::v_u)
.def("h_s", &IdealGas::h_s);

py::class_<Nitrogen>(m, "Nitrogen")
.def(py::init())
Expand Down

0 comments on commit 4076908

Please sign in to comment.