* Add misc ignores so dynamic doc content can be built in repository
* Update to documentation Makefile for clean html build on Windows
* Updates to instructions for doc builds on Windows with Anaconda
* Added documentation page for IF97
* Fix errors on documentation page for Fluid_Properties/Mixtures
* Updated HighLevelAPI docs for clarity, IF97 ref, Python 3 support, and typos
* Modify print command to support build on Python 2 or 3
* Update to documentation to compile the Python wrapper with VC++
* Fixes out-of-sync fluids map when replacing a JSON fluid.
* Pop name_vector when replacing JSON fluid to keep it from growing
* Copious commenting on fluid_map add/replace behavior in add_one().
This Script only links the udf with the coolprop library, usefull if the coolprop library is already compiled to save compilation time and do a rapid test of the modified udfs
Fluent udf to call the following thermo physical properties of water :
-Density
-Thermal Conductivity
-Viscosity
-Specific Heat
If the user want's to add other properties it should be done in priority with the following entry variables Temperature and Pressure which gives in the udf the generic following statement :
property=PropsSI((char*)"corresponding_property", (char*)"T", temperature, (char*)"P", pressure, (char*)FLUID);
This udf call the thermal properties of a mixture incompressible fluid. It calls the following properties :
-Density
-Thermal Conductivity
-Viscosity
-Specific Heat
If the user want's to add other properties it should be done in priority with the following entry variables Temperature and Pressure which gives in the udf the generic following statement :
property=PropsSI((char*)"corresponding_property", (char*)"T", temperature, (char*)"P", pressure, (char*)FLUID);
* Replaced the old SWIG-based wrapper with a python-based one.
- `PropsSI.m` is now the entry point.
- Added tests.
- Documentation updated.
* Documentation converted from Markdown to reStructredText
Following https://github.com/CoolProp/CoolProp/issues/1497#issuecomment-324845758.
* Further fixes to documentation.
* Further fixes to documentation #2.
Worked around the indentation issue in the numbered list.
* Added handling of arrays with zero dimensions to matpy
* Added a convenience wrapper for the low-level AbstractState API
- Readme updated accordingly.
- Tests updated accordingly.
* Renamd CoolProps to CoolProp
* Add derivative formula for cp and cv
* Add derivative formula for speed of sound
* Correct dwdT equation
* Validate Cv derivative calculation
* Fix errors in derivative calcualtion for Cp and speed of sound
Another, hopefully final, correction to Syltherm 800. The saturation pressure array values are correct, but multiplied by the wrong power of 10. This error likely happened because the wrong units were given in the Dow FluidFile (kPa instead of bar). Dow have been informed!
Cython 0.26 changes its compiler directive name from `embed_signature` to `embedsignature`. Hence an if-statement is added to facilitate compilation of Python wrappers using the new compiler directive name when Cython 0.26 is used. `_profiling_enabled` variable is also handled slightly more elegant.
* Update PureFluids.py to fix issues with some incompressible fluids
* Corrected specific_heat and conductivity data for Syltherm 800
* Added DynaleneSF