From e97aaad944f35287593c296c65e3ec2c949e0c48 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Thu, 7 Jul 2022 11:11:06 -0400 Subject: [PATCH] Fix k_ij for PC-SAFT --- doc/source/models/PCSAFT.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/models/PCSAFT.ipynb b/doc/source/models/PCSAFT.ipynb index 17122e9..9b09fd6 100644 --- a/doc/source/models/PCSAFT.ipynb +++ b/doc/source/models/PCSAFT.ipynb @@ -75,7 +75,7 @@ "source": [ "## Adjusting k_ij\n", "\n", - "Fine-tuned values of $k_{ij}$ can be provided when instantiating the model, for Peng-Robinson and SRK. A complete matrix of all the $k_{ij}$ values must be provided. This allows for asymmetric mixing models in which $k_{ij}\\neq k_{ji}$." + "Fine-tuned values of $k_{ij}$ can be provided when instantiating the model. A complete matrix of all the $k_{ij}$ values must be provided. This allows for asymmetric mixing models in which $k_{ij}\\neq k_{ji}$." ] }, { @@ -87,7 +87,7 @@ { "data": { "text/plain": [ - "<teqp.teqp.PCSAFTEOS at 0x19478910bf0>" + "<teqp.teqp.PCSAFTEOS at 0x26ec5dde870>" ] }, "execution_count": 3, @@ -97,7 +97,7 @@ ], "source": [ "k_01 = 0.01; k_10 = k_01\n", - "kmat = [[0,k_01,0],[k_01,0,0],[0,0,0]]\n", + "kmat = [[0,k_01,0],[k_10,0,0],[0,0,0]]\n", "teqp.PCSAFTEOS(coeffs, kmat)" ] }, -- GitLab