Skip to content
Snippets Groups Projects
Commit 91e7c9fd authored by Ian Bell's avatar Ian Bell
Browse files

Add constructor for Ammonia-Water class

parent 563f798c
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
void add_AmmoniaWaterTillnerRoth(py::module&m ){
auto wAW = py::class_<AmmoniaWaterTillnerRoth>(m, "AmmoniaWaterTillnerRoth")
.def(py::init<>())
.def_readonly("TcNH3", &AmmoniaWaterTillnerRoth::TcNH3)
.def_readonly("vcNH3", &AmmoniaWaterTillnerRoth::vcNH3)
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment