Ian Bell
Ian Bell
Doesn't make a lot of sense that pressure is all the way at the bottom and Power is near the top
How about also adding C++11 threads into the mix? I've had quite good experience with them (I have a forthcoming _J. Res. NIST_ paper on that topic, and our other...
CMAKE
Perhaps not the most important thing, but it would be great if you used cmake instead of Makefiles, that would make porting the tests to windows quite doable. Yes, yes,...
Do you have a sense how feasible it would be to migrate this library to nanobind? This library is one of the last sticking points preventing me moving a large...
One example here: https://github.com/gustavochm/sgtpy/blob/5206013471cfb46d6c97a21030326d573fde8650/sgtpy/vrmie_pure/density_solver.py#L104 . The toms748 algorithm has all the guarantees of brentq but is always faster according to their derivations in the paper references in the scipy docs,...
This is the number to be used: https://en.wikipedia.org/wiki/Gas_constant
@adolenc I am about to add superancillary functions to CoolProp in an upcoming release. This means that the saturation properties will change ever so slightly, enough to cause the plotting...
@zmeri We are trying to tidy up failing tests, and I came across this one: ``` p_calc = CoolProp::PropsSI("P", "T", 298.15, "Dmolar|phase_liquid", 55757.07260200306, "PCSAFT::Na+[0.010579869455908]&Cl-[0.010579869455908]&WATER[0.978840261088184]"); CHECK(abs((p_calc/p) - 1) < 1e-5); ```...
### Discussed in https://github.com/CoolProp/CoolProp/discussions/2584 Originally posted by **fwitte** July 31, 2025 Hi, in some context I am calculating a state based on entropy and density. I get consistency issues for...
Restructure the monolithic 2,235-line CMakeLists.txt into a clean, modular architecture for better maintainability and clarity. Changes: - Main CMakeLists.txt reduced from 2,235 to 71 lines (96.8% reduction) - Extract build...