From 143a22a9da5aaeb74560ab4b4a0a27587d9fe228 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Tue, 13 Sep 2022 18:19:48 -0600 Subject: [PATCH] v 0.11.0 --- README.md | 15 +++++++++++++++ interface/teqpversion.hpp | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a933f39..2496a92 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ So far the following EOS are implemented: * PC-SAFT * cubic plus association (CPA) for pure fluids * multi-fluid model in the form of GERG +* ammonia+water model of Tillner-Roth and Friend Why? @@ -25,6 +26,20 @@ Written by Ian Bell, NIST. [](https://badge.fury.io/py/teqp) +* 0.11.0 : + + * Move all module-level free functions to bound methods of instances in Python + + * Update the C++ packaged interface of teqp to enable almost-zero-cost rebuilds of the exposed methods of C++ interface + + * Merge sphinx docs branch into main + + * Add the hardcoded Tillner-Roth and Friend model for ammonia + water (see AmmoniaWaterTillnerRoth class) + + * Add method for dp/dT along critical locus + + * Add method for pure-fluid endpoint solving for critical locus (opt-in) + * 0.10.0 : * Add isobar tracing for VLE of binary mixtures (exposed to Python) diff --git a/interface/teqpversion.hpp b/interface/teqpversion.hpp index d1148d8..c6f05e2 100644 --- a/interface/teqpversion.hpp +++ b/interface/teqpversion.hpp @@ -1,2 +1,2 @@ #include <string> -const std::string TEQPVERSION = "0.11.0.dev0"; \ No newline at end of file +const std::string TEQPVERSION = "0.11.0"; \ No newline at end of file -- GitLab