实例介绍
【实例简介】各种语言调用CoolProp物性数据库
支持MATLAB、Fluent、python、FORTRAN、Labview、Mathcad、Mathematica、SMATH、EES、Excel等调用
【实例截图】
【核心代码】
.
├── source
│ ├── CMakeLists.txt
│ ├── CoolPropBibTeXLibrary.bib
│ ├── DoxygenLayout.xml
│ ├── LICENSE
│ ├── TTD.txt
│ ├── Web
│ │ ├── BridgmanDerivatives._rst
│ │ ├── Makefile
│ │ ├── _ext
│ │ │ └── edit_on_github.py
│ │ ├── _static
│ │ │ ├── Coolprop.css
│ │ │ ├── expTs.png
│ │ │ ├── expTsSmall.jpg
│ │ │ ├── glass.png
│ │ │ ├── icon.png
│ │ │ ├── logo_ORCNext.jpg
│ │ │ ├── logo_dtu_mekanik.png
│ │ │ ├── logo_herrick.png
│ │ │ ├── logo_ipu.png
│ │ │ ├── logo_labothap.png
│ │ │ ├── logo_maplesoft.png
│ │ │ ├── navigation.png
│ │ │ ├── poster.pdf
│ │ │ └── poster_thumb.png
│ │ ├── _templates
│ │ │ ├── layout.html
│ │ │ ├── search.html
│ │ │ └── sourcelink.html
│ │ ├── citation.rst
│ │ ├── conf.py
│ │ ├── contents.rst
│ │ ├── coolprop
│ │ │ ├── Configuration.rst
│ │ │ ├── Cubics.rst
│ │ │ ├── HighLevelAPI.rst
│ │ │ ├── LowLevelAPI.rst
│ │ │ ├── PCSAFT.rst
│ │ │ ├── REFPROP.rst
│ │ │ ├── Tabular.rst
│ │ │ ├── changelog.rst
│ │ │ ├── examples.rst
│ │ │ ├── fake_fluid.json
│ │ │ ├── index.rst
│ │ │ ├── python-cycles.rst
│ │ │ ├── python-plotting.rst
│ │ │ ├── snippets
│ │ │ └── wrappers
│ │ ├── develop
│ │ │ ├── backends.rst
│ │ │ ├── buildbot.rst
│ │ │ ├── cmake.rst
│ │ │ ├── code.rst
│ │ │ ├── documentation.rst
│ │ │ ├── index.rst
│ │ │ ├── release.rst
│ │ │ ├── testing.rst
│ │ │ └── web2py_online.rst
│ │ ├── fluid_properties
│ │ │ ├── HumidAir.ipynb
│ │ │ ├── HumidAir.rst
│ │ │ ├── IF97.rst
│ │ │ ├── Incompressibles.rst
│ │ │ ├── Mixtures.rst
│ │ │ ├── PurePseudoPure.rst
│ │ │ ├── Validation
│ │ │ ├── index.rst
│ │ │ ├── methane-ethane.py
│ │ │ └── more_reading.rst
│ │ ├── general_information.rst
│ │ ├── index.rst
│ │ ├── mixtures
│ │ │ └── phase_envelope.ipynb
│ │ ├── online
│ │ │ └── index.rst
│ │ ├── scripts
│ │ │ ├── CPWeb
│ │ │ ├── __init__.py
│ │ │ ├── coolprop.configuration.py
│ │ │ ├── coolprop.parametric_table.py
│ │ │ ├── coolprop.tabular.speed.py
│ │ │ ├── fluid_properties.Consistency.py
│ │ │ ├── fluid_properties.Incompressibles.py
│ │ │ ├── fluid_properties.Incompressibles.sh
│ │ │ ├── fluid_properties.Mixtures.py
│ │ │ ├── fluid_properties.PurePseudoPure.py
│ │ │ ├── fluid_properties.REFPROPcomparison.py
│ │ │ ├── fluid_properties.phase_envelope.py
│ │ │ ├── logo_2012.py
│ │ │ ├── logo_2013.py
│ │ │ └── logo_2014.py
│ │ └── zbibliography.rst
│ ├── doc
│ │ ├── notebooks
│ │ │ ├── Acetic acid specific heat check.ipynb
│ │ │ ├── AllFirstPartialDerivatives.ipynb
│ │ │ ├── AssociatingFluids.ipynb
│ │ │ ├── CP0.ipynb
│ │ │ ├── Check critical point derivative matrices.ipynb
│ │ │ ├── Chung viscosity.ipynb
│ │ │ ├── Convert mBWR.ipynb
│ │ │ ├── Derivatives of a from SRK.ipynb
│ │ │ ├── Derivatives_of_NA_Term.ipynb
│ │ │ ├── Maxwell_Loop.ipynb
│ │ │ ├── SRK first composition derivatives.ipynb
│ │ │ ├── Saturation and Acentric Factor.ipynb
│ │ │ ├── Saturation.ipynb
│ │ │ ├── Saturation_Routines_Pure_Fluid.ipynb
│ │ │ ├── Sympy derivatives of alphar from VTPR.ipynb
│ │ │ ├── braindump
│ │ │ ├── cubic alphar conversion-VT.ipynb
│ │ │ ├── cubic alphar conversion.ipynb
│ │ │ ├── fitting
│ │ │ ├── to_download_mathjax.ipynb
│ │ │ └── transport_correlation_conversion.ipynb
│ │ └── transport_table
│ │ └── table.tex
│ ├── externals
│ │ ├── Catch2
│ │ │ ├── BUILD.bazel
│ │ │ ├── CMake
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ ├── Doxyfile
│ │ │ ├── LICENSE.txt
│ │ │ ├── README.md
│ │ │ ├── SECURITY.md
│ │ │ ├── WORKSPACE
│ │ │ ├── appveyor.yml
│ │ │ ├── codecov.yml
│ │ │ ├── conanfile.py
│ │ │ ├── data
│ │ │ ├── docs
│ │ │ ├── examples
│ │ │ ├── extras
│ │ │ ├── fuzzing
│ │ │ ├── mdsnippets.json
│ │ │ ├── src
│ │ │ ├── tests
│ │ │ ├── third_party
│ │ │ └── tools
│ │ ├── ExcelAddinInstaller
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── addin-installer.iss
│ │ │ ├── cmake-templates
│ │ │ ├── code.iss
│ │ │ ├── images
│ │ │ ├── inc
│ │ │ ├── messages.iss
│ │ │ └── test
│ │ ├── FindMathematica
│ │ │ ├── CMake
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CodeGenerationExamples
│ │ │ ├── DocumentationExamples
│ │ │ ├── HISTORY.md
│ │ │ ├── JLinkExamples
│ │ │ ├── LICENSE
│ │ │ ├── LibraryLinkExamples
│ │ │ ├── MANUAL.md
│ │ │ ├── MUnitExamples
│ │ │ ├── MathLinkExamples
│ │ │ ├── MathematicaExamples
│ │ │ ├── README.md
│ │ │ └── WSTPExamples
│ │ ├── REFPROP-headers
│ │ │ ├── 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
│ │ ├── msgpack-c
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE_1_0.txt
│ │ │ ├── QUICKSTART-C.md
│ │ │ ├── appveyor.yml
│ │ │ ├── erb
│ │ │ ├── example
│ │ │ ├── external
│ │ │ └── fuzz
│ │ └── rapidjson
│ │ ├── CHANGELOG.md
│ │ ├── CMakeLists.txt
│ │ ├── CMakeModules
│ │ ├── RapidJSON.pc.in
│ │ ├── RapidJSONConfig.cmake.in
│ │ ├── RapidJSONConfigVersion.cmake.in
│ │ ├── appveyor.yml
│ │ ├── bin
│ │ ├── contrib
│ │ ├── doc
│ │ ├── docker
│ │ ├── example
│ │ ├── include
│ │ ├── include_dirs.js
│ │ ├── library.json
│ │ ├── license.txt
│ │ ├── package.json
│ │ ├── rapidjson.autopkg
│ │ ├── readme.md
│ │ ├── readme.zh-cn.md
│ │ ├── test
│ │ ├── thirdparty
│ │ └── travis-doxygen.sh
│ └── src
│ ├── AbstractState.cpp
│ ├── Backends
│ │ ├── Cubics
│ │ ├── Helmholtz
│ │ ├── IF97
│ │ ├── Incompressible
│ │ ├── PCSAFT
│ │ ├── REFPROP
│ │ └── Tabular
│ ├── CPfilepaths.cpp
│ ├── CPnumerics.cpp
│ ├── CPstrings.cpp
│ ├── Configuration.cpp
│ ├── CoolProp.cpp
│ ├── CoolProp.i
│ ├── CoolPropLib.cpp
│ ├── CoolPropLib.def
│ ├── CoolPropTools.cpp
│ ├── DataStructures.cpp
│ ├── Helmholtz.cpp
│ ├── HumidAirProp.cpp
│ ├── Ice.cpp
│ ├── MatrixMath.cpp
│ ├── ODEIntegrators.cpp
│ ├── PolyMath.cpp
│ ├── Solvers.cpp
│ ├── SpeedTest.cpp
│ ├── Tests
│ │ ├── CoolProp-Tests.cpp
│ │ ├── TestObjects.cpp
│ │ ├── Tests.cpp
│ │ └── catch_always_return_success.cxx
│ ├── emscripten_interface.cxx
│ ├── l10n
│ │ └── english.h
│ └── pybind11_interface.cxx
└── 各种语言调用CoolProp物性数据库_CoolProp_sources.zip
74 directories, 176 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
网友评论
我要评论