This change is somewhat related to #1604 .
* Catch is now at v2.3.0
* Eigen is now at v3.3.5
* FindMathemaica is now at v3.2.4
* fmtlib (formerly cppformat) is now at v4.1.0 (v5.x.x is not compatible with our code).
* msgpack-c is now at v3.0.1
* pybind11 is now at v2.2.3
* All the other submodules have been moved to the latest master commit
* All submodules are sorted alphabetically
* autopep8 whitespace only:
--select="E101,W1,W2"
* revert single file: web2py_online.py
Should this be a .py file at all?
* revert file Tickets/1443.py because the diff looked strange:
maybe there is an encoding problem?
* Rename web2py_online.py to web2py_online.rst
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
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.
* #1293
* almost all coverd tested documented
* T->temp
* build tables with and
* temp->T
* exactly original names | replace with & same for
* add non-update methods to update functions, so we dont need !
* return when need
* remove unnecessary parameters
* sym<->symorigin
* add comment for #__precompile__()