地熱流体物性計算ライブラリ
One can use some functions of geofluidprop from Python with the following steps:
-DBUILD_PYTHON_LIB=ON to the cmake arguments.
Internally, we use SWIG to generate Python interface.make, the following files will be created under build/lib/python directory.
geofluidprop.py_geofluidprop_py.so or _geofluidprop_py.dllCopy the above two files to your work directory
from geofluidprop import *
water_density = iapws95_rho_pT(p=1e6, T=293.15)