Skip to content

jlogan03/coolprop-rs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to coolprop-rs

EXPERIMENTAL CoolProp Wrapper for Rust

The wrapper uses rust-bindgen to create the bindings to the C++ shared library of CoolProp and adds some wrapper functions. The wrapper should work on all platforms that CoolProp and Rust work on.

Prerequisites

The CoolProp shared library (libCoolProp.so) and header file (CoolPropLib.h) must be installed on the computer in the systems folder. On Linux e. g. /usr/lib64 and /usr/include. Instructions to compile and install CoolProp for your system can be found on the project page of CoolProp.

Installation

The wrapper gets published on crates.io as coolplot-rs and you can add the library in your project.

[dependencies]
coolprop-rs = "0.2"

Examples

At the moment the wrapper provides access to either the full C++ bindings directly or a small subset of methods which utilizes Rust types, error handling and unit testing.

The C++ bindings can be used with:

Rust:

use coolprop-rs::bindings::*;

The subset of Rust methods are at the moment PropsSI() and HAPropsSI():

Rust:

use coolprop-rs;
println!("{:?}", coolprop-rs::PropsSI("H", "T", 300.0, "Q", 1.0, "R134a").unwrap());
println!("{:?}", coolprop-rs::HAPropsSI("H", "T", 300.0, "P", 100000.0, "R", 0.0).unwrap());

Output:

413265.6843372975
27013.112479771713

License

This Rust package is released under the terms of the MIT license.

About

CoolProp Wrapper for Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 99.1%
  • C++ 0.9%