├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── REFPROP_lib.h ├── REFPROP_underscore_lowercase_renaming.h ├── generate_header.py ├── generate_mangling_header.py ├── main.cpp ├── other.cpp ├── scrape_PASS_FTN.py └── testRP.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/README.md -------------------------------------------------------------------------------- /REFPROP_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/REFPROP_lib.h -------------------------------------------------------------------------------- /REFPROP_underscore_lowercase_renaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/REFPROP_underscore_lowercase_renaming.h -------------------------------------------------------------------------------- /generate_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/generate_header.py -------------------------------------------------------------------------------- /generate_mangling_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/generate_mangling_header.py -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/main.cpp -------------------------------------------------------------------------------- /other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/other.cpp -------------------------------------------------------------------------------- /scrape_PASS_FTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/scrape_PASS_FTN.py -------------------------------------------------------------------------------- /testRP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/REFPROP-headers/HEAD/testRP.m --------------------------------------------------------------------------------