{ "cells": [ { "cell_type": "markdown", "id": "94d8b67d", "metadata": {}, "source": [ "# Superheated ORC\n", "## Client: Internal\n", "---\n", "## Project: 24-AB-061\n", "## Calc: CALC-021\n", "---\n", "## Authentication\n", "> Stamp, Permit\n", "---\n", "## Revision History\n", "|Revision | Date | Description | By | Reviewer|\n", "| :-------| :----|:------------|:---|:--------|\n", "| A0 | 2024/08/13| DRAFT | KCD | |\n", "| | | | | |\n", "\n", "---" ] }, { "attachments": {}, "cell_type": "markdown", "id": "00ce8a7a", "metadata": {}, "source": [ "# Superheating an ORC\n", "\n", "\n", "\n", "## Introduction\n", "Organic Rankine Turbines (ORCs) are used to recover low temperature heat and produce electrical power. Organic fluids have a low freezing point, which make them very useful as working fluids in our cold Alberta climate.\n", "\n", "\n", "![Dry ORC](dryORC.png)\n", "\n", "So-called _Dry_ fluids such as nHexane are often used because they don’t form damaging mist at the turbine exhaust. However, we could also use a so-called _Wet_ fluid, such as methanol, if we superheat the vapour.\n", "\n", "![superheated ORC](superheatedORC.png)\n", "\n", "Would a gas fired superheater result in lower global CO2 emissions compared to an ORC that uses a Dry fluid? Could this be a valuable design for utilizing the low temperature geothermal resources in North west Alberta [ref 1]\n", "\n", "A fired superheater has been demonstrated with Indian Point 1 nuclear power plant [ref 2]. In this plant, 2.5 MPA steam was heated with an oil-fired superheater from saturation 234 C to 540 C and delivered to a turbine.\n", "\n", "This is a conceptual evaluation of an ORC with a fired superheater using methanol compared to a conventional ORC with a dry fluid n hexane. The results should indicate the relative merits of using a fired superheater with an ORC that uses geothermal heat.\n", "\n", "## Fluid properties\n", "Physical properties of n-Hexane and Methanol are tabulated below\n", "\n", "| Fluid | Dry n-Hexane | Wet Methanol |\n", "| --- | --- | --- |\n", "|Normal boiling temperature, C |\t69 |\t65 |\n", "|Critical temperature, C|\t234|\t240 |\n", "|Critical pressure, kPaa |\t3020|\t8100 |\n", "|Latent heat, kJ/kg at standard conditions|360 | 1175 |\n", "\n", "Thermodynamic diagrams (P-S) for nHexane and Methanol are shown below. Diagrams were created with CoolProp.\n", "\t\t\n", "\n" ] }, { "cell_type": "code", "execution_count": 150, "id": "d6465200", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "2079.937085633241\n" ] } ], "source": [ "import numpy as np\n", "import math as ma\n", "import pandas as pd\n", "\n", "import scipy as sp\n", "from scipy import interpolate\n", "\n", "#import sys\n", "#!{sys.executable} -m pip install iapws\n", "\n", "#import sys\n", "#!{sys.executable} -m pip install pyfluids\n", "\n", "#!{sys.executable} -m pip install CoolProp\n", "\n", "\n", "# http://www.coolprop.org/coolprop/wrappers/Python/index.html#python\n", "\n", "# steam properties, not that we need this\n", "import iapws\n", "from iapws import IAPWS97\n", "\n", "import CoolProp.CoolProp as CoolProp\n", "from CoolProp.Plots import PropertyPlot\n", "from pyfluids import Fluid, FluidsList\n", "\n", "# test code for fetching a property\n", "water_vapour = Fluid(FluidsList.Water).dew_point_at_pressure(101325)\n", "print(water_vapour.specific_heat) # 2079.937085633241\n", "\n", "π = ma.pi" ] }, { "cell_type": "code", "execution_count": 151, "id": "896e78ce", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1.508333 with index (0,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=179.648 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -30226.8560112 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1.604105 with index (1,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=180.078 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -30153.8694597 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1.705958 with index (2,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=180.511 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -30080.4696251 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1.814278 with index (3,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=180.946 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -30006.6524968 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1.929476 with index (4,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=181.384 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -29932.4140081 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2.051988 with index (5,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=181.824 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -29857.7500352 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2.182279 with index (6,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=182.266 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -29782.6563958 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2.320844 with index (7,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=182.711 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -29707.1288481 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2.468206 with index (8,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=183.158 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-29610.1 J/mol] is above the maximum value of -29631.1630899 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2.791595 with index (10,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3.157356 with index (12,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3.571039 with index (14,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 4.038923 with index (16,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 4.568111 with index (18,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5.166634 with index (20,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5.843577 with index (22,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 6.609214 with index (24,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 7.475167 with index (26,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 8.454578 with index (28,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 9.562314 with index (30,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 10.815187 with index (32,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 12.232215 with index (34,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 13.834904 with index (36,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 15.647581 with index (38,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 17.697759 with index (40,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 20.016555 with index (42,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 22.639164 with index (44,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 25.605393 with index (46,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 28.960263 with index (48,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 32.754694 with index (50,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 37.046280 with index (52,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 41.900158 with index (54,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 47.390001 with index (56,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 53.599134 with index (58,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 60.621800 with index (60,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 68.564590 with index (62,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 77.548061 with index (64,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 87.708563 with index (66,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 99.200315 with index (68,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 112.197740 with index (70,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 126.898113 with index (72,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 143.524558 with index (74,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 162.329434 with index (76,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 183.598162 with index (78,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 207.653562 with index (80,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 234.860749 with index (82,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 265.632675 with index (84,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 300.436402 with index (86,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 339.800182 with index (88,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 384.321484 with index (90,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 434.676056 with index (92,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 491.628186 with index (94,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 556.042298 with index (96,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 628.896076 with index (98,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 711.295302 with index (100,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 804.490640 with index (102,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 909.896619 with index (104,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1029.113100 with index (106,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1163.949565 with index (108,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1316.452573 with index (110,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1488.936832 with index (112,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1684.020324 with index (114,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1904.664048 with index (116,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2154.216955 with index (118,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2436.466785 with index (120,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2755.697554 with index (122,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3116.754579 with index (124,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3525.118021 with index (126,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3986.986060 with index (128,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 4509.368977 with index (130,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5100.195553 with index (132,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5768.433412 with index (134,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 6524.225138 with index (136,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 7379.042212 with index (138,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 8345.859135 with index (140,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 9439.350353 with index (142,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 10676.112985 with index (144,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 12074.918739 with index (146,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 13656.998832 with index (148,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 15446.366234 with index (150,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 17470.180145 with index (152,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 19759.158218 with index (154,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 22348.042792 with index (156,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 25276.128220 with index (158,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 28587.857279 with index (160,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 32333.495728 with index (162,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 36569.895244 with index (164,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 41361.356330 with index (166,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 46780.604266 with index (168,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 52909.892944 with index (170,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 59842.253330 with index (172,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 67682.905489 with index (174,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 76550.855634 with index (176,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 86580.702408 with index (178,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 97924.679840 with index (180,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 110754.967967 with index (182,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 125266.306201 with index (184,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 141678.949100 with index (186,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 160242.009419 with index (188,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 181237.239164 with index (190,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 204983.306057 with index (192,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 231840.630302 with index (194,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 262216.855083 with index (196,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 296573.033813 with index (198,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 335430.628047 with index (200,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 379379.422280 with index (202,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 429086.475757 with index (204,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 485306.247163 with index (206,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 548892.045874 with index (208,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 620808.983576 with index (210,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 702148.622822 with index (212,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 794145.544884 with index (214,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 898196.088350 with index (216,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1015879.542892 with index (218,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1148982.119888 with index (220,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1299524.063714 with index (222,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1469790.315218 with index (224,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1662365.192789 with index (226,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 1880171.617396 with index (228,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2126515.476981 with index (230,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2405135.803562 with index (232,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 2720261.524637 with index (234,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3076675.650274 with index (236,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3479787.870120 with index (238,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 3935716.662222 with index (240,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 4451382.159901 with index (242,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5034611.186238 with index (244,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 5694256.050384 with index (246,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -343602.605275, 6440328.908809 with index (248,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 265.632675 with index (84,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=226.77 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-21572.4 J/mol] is above the maximum value of -22120.1428644 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 282.499071 with index (85,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=227.51 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-21572.4 J/mol] is above the maximum value of -21990.0803892 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 300.436402 with index (86,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=228.256 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-21572.4 J/mol] is above the maximum value of -21858.9021971 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 319.512666 with index (87,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=229.008 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-21572.4 J/mol] is above the maximum value of -21726.5918601 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 339.800182 with index (88,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=229.766 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-21572.4 J/mol] is above the maximum value of -21593.132614 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 384.321484 with index (90,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 434.676056 with index (92,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 491.628186 with index (94,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 556.042298 with index (96,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 628.896076 with index (98,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 711.295302 with index (100,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 804.490640 with index (102,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 909.896619 with index (104,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1029.113100 with index (106,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1163.949565 with index (108,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1316.452573 with index (110,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1488.936832 with index (112,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1684.020324 with index (114,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1904.664048 with index (116,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2154.216955 with index (118,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2436.466785 with index (120,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2755.697554 with index (122,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3116.754579 with index (124,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3525.118021 with index (126,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3986.986060 with index (128,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 4509.368977 with index (130,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 5100.195553 with index (132,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 5768.433412 with index (134,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 6524.225138 with index (136,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 7379.042212 with index (138,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 8345.859135 with index (140,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 9439.350353 with index (142,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 10676.112985 with index (144,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 12074.918739 with index (146,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 13656.998832 with index (148,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 15446.366234 with index (150,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 17470.180145 with index (152,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 19759.158218 with index (154,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 22348.042792 with index (156,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 25276.128220 with index (158,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 28587.857279 with index (160,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 32333.495728 with index (162,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 36569.895244 with index (164,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 41361.356330 with index (166,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 46780.604266 with index (168,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 52909.892944 with index (170,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 59842.253330 with index (172,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 67682.905489 with index (174,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 76550.855634 with index (176,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 86580.702408 with index (178,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 97924.679840 with index (180,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 110754.967967 with index (182,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 125266.306201 with index (184,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 141678.949100 with index (186,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 160242.009419 with index (188,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 181237.239164 with index (190,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 204983.306057 with index (192,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 231840.630302 with index (194,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 262216.855083 with index (196,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 296573.033813 with index (198,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 335430.628047 with index (200,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 379379.422280 with index (202,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 429086.475757 with index (204,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 485306.247163 with index (206,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 548892.045874 with index (208,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 620808.983576 with index (210,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 702148.622822 with index (212,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 794145.544884 with index (214,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 898196.088350 with index (216,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1015879.542892 with index (218,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1148982.119888 with index (220,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1299524.063714 with index (222,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1469790.315218 with index (224,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1662365.192789 with index (226,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 1880171.617396 with index (228,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2126515.476981 with index (230,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2405135.803562 with index (232,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 2720261.524637 with index (234,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3076675.650274 with index (236,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3479787.870120 with index (238,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 3935716.662222 with index (240,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 4451382.159901 with index (242,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 5034611.186238 with index (244,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 5694256.050384 with index (246,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -250331.966363, 6440328.908809 with index (248,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 5768.433412 with index (134,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=272.586 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-13534.8 J/mol] is above the maximum value of -13827.8213466 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 6134.701156 with index (135,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=273.734 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-13534.8 J/mol] is above the maximum value of -13612.5999372 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -157061.327451, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -63790.688539, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 141678.949100 with index (186,): unable to solve 1phase PY flash with Tmin=177.829, Tmax=353.222 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [2540.45 J/mol] is above the maximum value of 2448.87651177 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 160242.009419 with index (188,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 181237.239164 with index (190,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 204983.306057 with index (192,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 231840.630302 with index (194,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 262216.855083 with index (196,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 296573.033813 with index (198,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 335430.628047 with index (200,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 379379.422280 with index (202,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 429086.475757 with index (204,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 485306.247163 with index (206,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 548892.045874 with index (208,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 620808.983576 with index (210,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 702148.622822 with index (212,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 794145.544884 with index (214,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 898196.088350 with index (216,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1015879.542892 with index (218,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1148982.119888 with index (220,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1299524.063714 with index (222,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1469790.315218 with index (224,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1662365.192789 with index (226,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 1880171.617396 with index (228,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2126515.476981 with index (230,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2405135.803562 with index (232,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 2720261.524637 with index (234,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3076675.650274 with index (236,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3479787.870120 with index (238,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 3935716.662222 with index (240,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 4451382.159901 with index (242,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 5034611.186238 with index (244,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 5694256.050384 with index (246,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 29479.950373, 6440328.908809 with index (248,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 122750.589285, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 216021.228197, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 309291.867109, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402562.506021, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 495833.144933, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 589103.783844, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 682374.422756, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 775645.061668, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 868915.700580, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1.604105 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1.814278 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2.051988 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2.320844 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2.624925 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2.968848 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3.357832 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3.797782 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4.295376 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4.858164 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 5.494691 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 6.214616 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 7.028868 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 7.949804 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 8.991403 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 10.169475 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 11.501900 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 13.008902 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 14.713354 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 16.641127 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 18.821481 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 21.287510 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 24.076642 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 27.231212 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 30.799100 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 34.834460 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 39.398541 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 44.560617 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 50.399038 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 57.002421 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 64.470993 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 72.918112 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 82.471989 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 93.277635 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 105.499058 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 119.321756 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 134.955532 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 152.637676 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 172.636571 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 195.255761 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 220.838563 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 249.773275 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 282.499071 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 319.512666 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 361.375857 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 408.724048 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 462.275893 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 522.844208 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 591.348306 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 668.827948 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 756.459128 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 855.571922 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 967.670672 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1094.456827 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1237.854757 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1400.040972 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1583.477151 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1790.947506 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2025.601043 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2290.999358 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2591.170693 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2930.671078 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3314.653486 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3748.946040 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4240.140476 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4795.692192 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 5424.033410 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 6134.701156 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 6938.482016 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 7847.575859 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 8875.781001 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 10038.703645 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 11353.994748 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 12841.617932 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 14524.152492 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 16427.136108 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 18579.452456 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 21013.769614 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 23767.035892 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 26881.040645 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 30403.048551 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 34386.517004 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 38891.907489 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 43987.603281 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 49750.947364 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 56269.416358 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 63641.948245 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 71980.444059 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 81411.466334 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 92078.160079 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 104142.425451 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 117787.375090 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 133220.113422 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 150674.880110 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 170416.605368 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 192744.931100 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 217998.758890 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 246561.393893 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 278866.362670 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 315403.993306 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 356728.857654 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 403468.188685 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 456331.400692 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 516120.856855 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 583744.047586 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 660227.364514 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 746731.679159 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 844569.962759 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 955227.214677 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1080383.001876 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1221936.951553 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1382037.583874 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1563114.922428 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1767917.377376 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 1999553.461094 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2261538.969489 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2557850.345106 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 2892985.031974 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3272029.738269 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 3700737.642880 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4185615.717746 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 4734023.491329 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 5354284.752286 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 6055813.888773 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 962186.339492, 6849258.780977 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:610: UserWarning: Please use \"calc_sat_range\" to calculate saturation and isoquality lines. Input ranges are discarded.\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# this is a simple property plot\n", "#from CoolProp.Plots import PropertyPlot\n", "plot = PropertyPlot('nHexane', 'ps', unit_system='SI')\n", "plot.calc_isolines()\n", "plot.show()" ] }, { "cell_type": "code", "execution_count": 152, "id": "10764e7c", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] } ], "source": [ "plot.savefig('hexanePS.png')" ] }, { "cell_type": "code", "execution_count": 153, "id": "add52b77", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3451672.082039 with index (224,): unable to solve 1phase PY flash with Tmin=176.189, Tmax=465.231 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12274.5350281 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3691320.441824 with index (225,): unable to solve 1phase PY flash with Tmin=176.228, Tmax=468.69 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12264.9022233 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 3947607.501631 with index (226,): unable to solve 1phase PY flash with Tmin=176.27, Tmax=472.198 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12254.6074539 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4221688.480460 with index (227,): unable to solve 1phase PY flash with Tmin=176.315, Tmax=475.757 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12243.6054384 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4514798.803753 with index (228,): unable to solve 1phase PY flash with Tmin=176.362, Tmax=479.365 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12231.8478167 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 4828259.672099 with index (229,): unable to solve 1phase PY flash with Tmin=176.413, Tmax=483.022 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12219.2829433 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5163484.016571 with index (230,): unable to solve 1phase PY flash with Tmin=176.468, Tmax=486.727 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12205.8556652 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5521982.867545 with index (231,): unable to solve 1phase PY flash with Tmin=176.526, Tmax=490.479 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12191.5070864 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 5905372.165693 with index (232,): unable to solve 1phase PY flash with Tmin=176.587, Tmax=494.275 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12176.174315 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 6315380.045872 with index (233,): unable to solve 1phase PY flash with Tmin=176.653, Tmax=498.114 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12159.7901953 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 6753854.626725 with index (234,): unable to solve 1phase PY flash with Tmin=176.723, Tmax=501.994 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12142.2830208 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 7222772.341112 with index (235,): unable to solve 1phase PY flash with Tmin=176.798, Tmax=505.913 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12123.5762283 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 7724246.844920 with index (236,): unable to solve 1phase PY flash with Tmin=176.878, Tmax=509.89 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12103.5880721 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 8260538.544411 with index (237,): unable to solve 1phase PY flash with Tmin=176.963, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12082.231276 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 8834064.785045 with index (238,): unable to solve 1phase PY flash with Tmin=177.054, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12059.4126625 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 9447410.747713 with index (239,): unable to solve 1phase PY flash with Tmin=177.151, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12035.0327573 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 10103341.101494 with index (240,): unable to solve 1phase PY flash with Tmin=177.254, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -12008.9853678 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 10804812.465452 with index (241,): unable to solve 1phase PY flash with Tmin=177.364, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11981.1571328 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 11554986.735658 with index (242,): unable to solve 1phase PY flash with Tmin=177.481, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11951.4270435 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 12357245.337497 with index (243,): unable to solve 1phase PY flash with Tmin=177.605, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11919.6659323 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 13215204.467510 with index (244,): unable to solve 1phase PY flash with Tmin=177.738, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11885.7359275 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 14132731.393473 with index (245,): unable to solve 1phase PY flash with Tmin=177.88, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11849.4898725 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 15113961.886183 with index (246,): unable to solve 1phase PY flash with Tmin=178.03, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11810.7707065 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 16163318.861525 with index (247,): unable to solve 1phase PY flash with Tmin=178.191, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11769.4108045 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 17285532.316855 with index (248,): unable to solve 1phase PY flash with Tmin=178.362, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11725.2312739 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -383587.930897, 18485660.651556 with index (249,): unable to solve 1phase PY flash with Tmin=178.543, Tmax=930 due to error: HSU_P_flash_singlephase_Brent could not find a solution because Hmolar [-12291 J/mol] is below the minimum value of -11678.0412053 J/mol\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -238435.794492, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -93283.658087, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 51868.478318, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 197020.614723, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 342172.751129, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 487324.887534, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 632477.023939, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 777629.160344, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 922781.296749, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1067933.433154, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1213085.569559, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1358237.705965, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1503389.842370, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1.089143 with index (1,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1.245631 with index (3,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1.424603 with index (5,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1.629289 with index (7,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1.863385 with index (9,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2.131116 with index (11,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2.437314 with index (13,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2.787507 with index (15,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3.188016 with index (17,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3.646069 with index (19,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 4.169935 with index (21,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 4.769070 with index (23,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 5.454289 with index (25,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 6.237960 with index (27,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 7.134229 with index (29,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 8.159273 with index (31,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 9.331596 with index (33,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 10.672357 with index (35,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 12.205759 with index (37,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 13.959480 with index (39,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 15.965174 with index (41,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 18.259047 with index (43,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 20.882502 with index (45,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 23.882895 with index (47,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 27.314384 with index (49,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 31.238908 with index (51,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 35.727307 with index (53,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 40.860597 with index (55,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 46.731438 with index (57,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 53.445800 with index (59,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 61.124880 with index (61,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 69.907288 with index (63,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 79.951551 with index (65,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 91.438970 with index (67,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 104.576900 with index (69,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 119.602484 with index (71,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 136.786940 with index (73,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 156.440455 with index (75,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 178.917782 with index (77,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 204.624646 with index (79,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 234.025066 with index (81,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 267.649732 with index (83,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 306.105581 with index (85,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 350.086758 with index (87,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 400.387140 with index (89,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 457.914668 with index (91,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 523.707738 with index (93,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 598.953941 with index (95,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 685.011500 with index (97,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 783.433788 with index (99,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 895.997368 with index (101,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1024.734055 with index (103,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1171.967599 with index (105,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1340.355624 with index (107,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1532.937599 with index (109,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1753.189707 with index (111,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2005.087585 with index (113,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2293.178090 with index (115,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2622.661370 with index (117,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2999.484728 with index (119,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3430.449977 with index (121,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3923.336209 with index (123,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 4487.040218 with index (125,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 5131.737084 with index (127,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 5869.063841 with index (129,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 6712.329531 with index (131,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 7676.755434 with index (133,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 8779.749819 with index (135,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 10041.222174 with index (137,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 11483.942576 with index (139,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 13133.952700 with index (141,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 15021.035884 with index (143,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 17179.254729 with index (145,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 19647.565941 with index (147,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 22470.523519 with index (149,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 25699.082966 with index (151,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 29391.521063 with index (153,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 33614.487783 with index (155,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 38444.209352 with index (157,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 43967.864161 with index (159,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 50285.156373 with index (161,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 57510.115619 with index (163,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 65773.155283 with index (165,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 75223.426510 with index (167,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 86031.510449 with index (169,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 98392.497303 with index (171,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 112529.507794 with index (173,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 128697.720573 with index (175,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 147188.978298 with index (177,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 168337.055513 with index (179,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 192523.683407 with index (181,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 220185.440214 with index (183,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 251821.631626 with index (185,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 288003.303458 with index (187,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 329383.549249 with index (189,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 376709.298863 with index (191,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 430834.800868 with index (193,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 492737.042061 with index (195,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 563533.382471 with index (197,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 644501.724147 with index (199,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 737103.577798 with index (201,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 843010.443645 with index (203,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 964133.982658 with index (205,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1102660.522801 with index (207,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1261090.523116 with index (209,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1442283.708002 with index (211,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1649510.686376 with index (213,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 1886511.987463 with index (215,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2157565.578834 with index (217,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2467564.085414 with index (219,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 2822103.103312 with index (221,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3227582.202546 with index (223,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 3691320.441824 with index (225,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 4221688.480460 with index (227,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 4828259.672099 with index (229,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 5521982.867545 with index (231,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 6315380.045872 with index (233,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 7222772.341112 with index (235,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 8260538.544411 with index (237,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 9447410.747713 with index (239,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 10804812.465452 with index (241,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 12357245.337497 with index (243,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 14132731.393473 with index (245,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 16163318.861525 with index (247,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 1648541.978775, 18485660.651556 with index (249,): This pair of inputs [HmolarP_INPUTS] is not yet supported\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 272.216303 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 272.216303 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 272.216303 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 272.216303 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 272.216303 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 303.833003 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 303.833003 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 303.833003 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 303.833003 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 303.833003 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 303.833003 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 303.833003 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 303.833003 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 303.833003 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 303.833003 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 303.833003 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 303.833003 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 303.833003 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 335.449702 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 335.449702 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 335.449702 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 335.449702 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 335.449702 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 335.449702 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 335.449702 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 335.449702 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 335.449702 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 335.449702 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 335.449702 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 335.449702 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 335.449702 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 335.449702 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 335.449702 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 335.449702 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 335.449702 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 335.449702 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 335.449702 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 335.449702 with index (19,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 367.066402 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 367.066402 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 367.066402 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 367.066402 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 367.066402 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 367.066402 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 367.066402 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 367.066402 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 367.066402 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 367.066402 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 367.066402 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 367.066402 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 367.066402 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 367.066402 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 367.066402 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 367.066402 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 367.066402 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 367.066402 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 367.066402 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 367.066402 with index (19,): p is not a valid number\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 367.066402 with index (20,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 367.066402 with index (21,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 367.066402 with index (22,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 367.066402 with index (23,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 367.066402 with index (24,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 367.066402 with index (25,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 398.683102 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 398.683102 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 398.683102 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 398.683102 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 398.683102 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 398.683102 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 398.683102 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 398.683102 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 398.683102 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 398.683102 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 398.683102 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 398.683102 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 398.683102 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 398.683102 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 398.683102 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 398.683102 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 398.683102 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 398.683102 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 398.683102 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 398.683102 with index (19,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 398.683102 with index (20,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 398.683102 with index (21,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 398.683102 with index (22,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 398.683102 with index (23,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 398.683102 with index (24,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 398.683102 with index (25,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 398.683102 with index (26,): The molar density of -70006.681012 mol/m3 is below the minimum of 0.000000 mol/m3\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 398.683102 with index (27,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 398.683102 with index (28,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 398.683102 with index (29,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 398.683102 with index (30,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 398.683102 with index (31,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 398.683102 with index (32,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 430.299802 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 430.299802 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 430.299802 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 430.299802 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 430.299802 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 430.299802 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 430.299802 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 430.299802 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 430.299802 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 430.299802 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 430.299802 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 430.299802 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 430.299802 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 430.299802 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 430.299802 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 430.299802 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 430.299802 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 430.299802 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 430.299802 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 430.299802 with index (19,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 430.299802 with index (20,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 430.299802 with index (21,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 430.299802 with index (22,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 430.299802 with index (23,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 430.299802 with index (24,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 430.299802 with index (25,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 430.299802 with index (26,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 430.299802 with index (27,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 430.299802 with index (28,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 430.299802 with index (29,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 430.299802 with index (30,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 430.299802 with index (31,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 430.299802 with index (32,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 430.299802 with index (33,): The molar density of -113523.641033 mol/m3 is below the minimum of 0.000000 mol/m3\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 430.299802 with index (34,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 430.299802 with index (35,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 430.299802 with index (36,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 430.299802 with index (37,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 430.299802 with index (38,): p is not a valid number\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 461.916501 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 461.916501 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 461.916501 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 461.916501 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 461.916501 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 461.916501 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 461.916501 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 461.916501 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 461.916501 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 461.916501 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 461.916501 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 461.916501 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 461.916501 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 461.916501 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 461.916501 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 461.916501 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 461.916501 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 461.916501 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 461.916501 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 461.916501 with index (19,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 461.916501 with index (20,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 461.916501 with index (21,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 461.916501 with index (22,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 461.916501 with index (23,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 461.916501 with index (24,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 461.916501 with index (25,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 461.916501 with index (26,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 461.916501 with index (27,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 461.916501 with index (28,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 461.916501 with index (29,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 461.916501 with index (30,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 461.916501 with index (31,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 461.916501 with index (32,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 461.916501 with index (33,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 461.916501 with index (34,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 461.916501 with index (35,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 461.916501 with index (36,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 461.916501 with index (37,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 461.916501 with index (38,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 461.916501 with index (39,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 461.916501 with index (40,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 461.916501 with index (41,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 461.916501 with index (42,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 461.916501 with index (43,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 461.916501 with index (44,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 493.533201 with index (0,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 493.533201 with index (1,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 493.533201 with index (2,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 493.533201 with index (3,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 493.533201 with index (4,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 493.533201 with index (5,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 493.533201 with index (6,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 493.533201 with index (7,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 493.533201 with index (8,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 493.533201 with index (9,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 493.533201 with index (10,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 493.533201 with index (11,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 493.533201 with index (12,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 493.533201 with index (13,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 493.533201 with index (14,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 493.533201 with index (15,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 493.533201 with index (16,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 493.533201 with index (17,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 493.533201 with index (18,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 493.533201 with index (19,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 493.533201 with index (20,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 493.533201 with index (21,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 493.533201 with index (22,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 493.533201 with index (23,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 493.533201 with index (24,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 493.533201 with index (25,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 493.533201 with index (26,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 493.533201 with index (27,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 493.533201 with index (28,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 493.533201 with index (29,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 493.533201 with index (30,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 493.533201 with index (31,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 493.533201 with index (32,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 493.533201 with index (33,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 493.533201 with index (34,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 493.533201 with index (35,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 493.533201 with index (36,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 493.533201 with index (37,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 493.533201 with index (38,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 493.533201 with index (39,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 493.533201 with index (40,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 493.533201 with index (41,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 493.533201 with index (42,): The molar density of -148956.089788 mol/m3 is below the minimum of 0.000000 mol/m3\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 493.533201 with index (43,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 493.533201 with index (44,): The molar density of -98479.444269 mol/m3 is below the minimum of 0.000000 mol/m3\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 78.435652, 493.533201 with index (45,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 114.437265, 493.533201 with index (46,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 150.438878, 493.533201 with index (47,): p is not a valid number\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 186.440491, 493.533201 with index (48,): The molar density of -31578.544805 mol/m3 is below the minimum of 0.000000 mol/m3\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 222.442103, 493.533201 with index (49,): p is not a valid number\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 525.149901 with index (0,): Even by increasing rhoc, not able to bound input; input -49.3974 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 525.149901 with index (1,): Even by increasing rhoc, not able to bound input; input -48.2438 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 525.149901 with index (2,): Even by increasing rhoc, not able to bound input; input -47.0902 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 525.149901 with index (3,): Even by increasing rhoc, not able to bound input; input -45.9367 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 525.149901 with index (4,): Even by increasing rhoc, not able to bound input; input -44.7831 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 525.149901 with index (5,): Even by increasing rhoc, not able to bound input; input -43.6295 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 525.149901 with index (6,): Even by increasing rhoc, not able to bound input; input -42.476 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 525.149901 with index (7,): Even by increasing rhoc, not able to bound input; input -41.3224 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 525.149901 with index (8,): Even by increasing rhoc, not able to bound input; input -40.1688 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 525.149901 with index (9,): Even by increasing rhoc, not able to bound input; input -39.0153 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 525.149901 with index (10,): Even by increasing rhoc, not able to bound input; input -37.8617 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 525.149901 with index (11,): Even by increasing rhoc, not able to bound input; input -36.7081 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 525.149901 with index (12,): Even by increasing rhoc, not able to bound input; input -35.5545 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 525.149901 with index (13,): Even by increasing rhoc, not able to bound input; input -34.401 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 525.149901 with index (14,): Even by increasing rhoc, not able to bound input; input -33.2474 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 525.149901 with index (15,): Even by increasing rhoc, not able to bound input; input -32.0938 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 525.149901 with index (16,): Even by increasing rhoc, not able to bound input; input -30.9403 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 525.149901 with index (17,): Even by increasing rhoc, not able to bound input; input -29.7867 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 525.149901 with index (18,): Even by increasing rhoc, not able to bound input; input -28.6331 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 525.149901 with index (19,): Even by increasing rhoc, not able to bound input; input -27.4796 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 525.149901 with index (20,): Even by increasing rhoc, not able to bound input; input -26.326 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 525.149901 with index (21,): Even by increasing rhoc, not able to bound input; input -25.1724 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 525.149901 with index (22,): Even by increasing rhoc, not able to bound input; input -24.0188 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 525.149901 with index (23,): Even by increasing rhoc, not able to bound input; input -22.8653 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 525.149901 with index (24,): Even by increasing rhoc, not able to bound input; input -21.7117 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 525.149901 with index (25,): Even by increasing rhoc, not able to bound input; input -20.5581 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 525.149901 with index (26,): Even by increasing rhoc, not able to bound input; input -19.4046 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 525.149901 with index (27,): Even by increasing rhoc, not able to bound input; input -18.251 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 525.149901 with index (28,): Even by increasing rhoc, not able to bound input; input -17.0974 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 525.149901 with index (29,): Even by increasing rhoc, not able to bound input; input -15.9439 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 525.149901 with index (30,): Even by increasing rhoc, not able to bound input; input -14.7903 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 525.149901 with index (31,): Even by increasing rhoc, not able to bound input; input -13.6367 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 525.149901 with index (32,): Even by increasing rhoc, not able to bound input; input -12.4832 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 525.149901 with index (33,): Even by increasing rhoc, not able to bound input; input -11.3296 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 525.149901 with index (34,): Even by increasing rhoc, not able to bound input; input -10.176 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 525.149901 with index (35,): Even by increasing rhoc, not able to bound input; input -9.02245 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 525.149901 with index (36,): Even by increasing rhoc, not able to bound input; input -7.86888 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 525.149901 with index (37,): Even by increasing rhoc, not able to bound input; input -6.71531 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 525.149901 with index (38,): Even by increasing rhoc, not able to bound input; input -5.56174 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 525.149901 with index (39,): Even by increasing rhoc, not able to bound input; input -4.40817 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 525.149901 with index (40,): Even by increasing rhoc, not able to bound input; input -3.2546 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 525.149901 with index (41,): Even by increasing rhoc, not able to bound input; input -2.10103 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 525.149901 with index (42,): Even by increasing rhoc, not able to bound input; input -0.947461 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 525.149901 with index (43,): Even by increasing rhoc, not able to bound input; input 0.206109 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 525.149901 with index (44,): Even by increasing rhoc, not able to bound input; input 1.35968 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 78.435652, 525.149901 with index (45,): Even by increasing rhoc, not able to bound input; input 2.51325 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 114.437265, 525.149901 with index (46,): Even by increasing rhoc, not able to bound input; input 3.66682 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 150.438878, 525.149901 with index (47,): Even by increasing rhoc, not able to bound input; input 4.82039 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 186.440491, 525.149901 with index (48,): Even by increasing rhoc, not able to bound input; input 5.97396 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 222.442103, 525.149901 with index (49,): Even by increasing rhoc, not able to bound input; input 7.12753 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 258.443716, 525.149901 with index (50,): Even by increasing rhoc, not able to bound input; input 8.28109 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 294.445329, 525.149901 with index (51,): Even by increasing rhoc, not able to bound input; input 9.43466 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 330.446942, 525.149901 with index (52,): Even by increasing rhoc, not able to bound input; input 10.5882 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 366.448555, 525.149901 with index (53,): Even by increasing rhoc, not able to bound input; input 11.7418 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402.450168, 525.149901 with index (54,): Even by increasing rhoc, not able to bound input; input 12.8954 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 438.451781, 525.149901 with index (55,): Even by increasing rhoc, not able to bound input; input 14.0489 is not in range 249133,348.945\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 556.766601 with index (0,): Even by increasing rhoc, not able to bound input; input -49.3974 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 556.766601 with index (1,): Even by increasing rhoc, not able to bound input; input -48.2438 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 556.766601 with index (2,): Even by increasing rhoc, not able to bound input; input -47.0902 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 556.766601 with index (3,): Even by increasing rhoc, not able to bound input; input -45.9367 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 556.766601 with index (4,): Even by increasing rhoc, not able to bound input; input -44.7831 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 556.766601 with index (5,): Even by increasing rhoc, not able to bound input; input -43.6295 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 556.766601 with index (6,): Even by increasing rhoc, not able to bound input; input -42.476 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 556.766601 with index (7,): Even by increasing rhoc, not able to bound input; input -41.3224 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 556.766601 with index (8,): Even by increasing rhoc, not able to bound input; input -40.1688 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 556.766601 with index (9,): Even by increasing rhoc, not able to bound input; input -39.0153 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 556.766601 with index (10,): Even by increasing rhoc, not able to bound input; input -37.8617 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 556.766601 with index (11,): Even by increasing rhoc, not able to bound input; input -36.7081 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 556.766601 with index (12,): Even by increasing rhoc, not able to bound input; input -35.5545 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 556.766601 with index (13,): Even by increasing rhoc, not able to bound input; input -34.401 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 556.766601 with index (14,): Even by increasing rhoc, not able to bound input; input -33.2474 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 556.766601 with index (15,): Even by increasing rhoc, not able to bound input; input -32.0938 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 556.766601 with index (16,): Even by increasing rhoc, not able to bound input; input -30.9403 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 556.766601 with index (17,): Even by increasing rhoc, not able to bound input; input -29.7867 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 556.766601 with index (18,): Even by increasing rhoc, not able to bound input; input -28.6331 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 556.766601 with index (19,): Even by increasing rhoc, not able to bound input; input -27.4796 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 556.766601 with index (20,): Even by increasing rhoc, not able to bound input; input -26.326 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 556.766601 with index (21,): Even by increasing rhoc, not able to bound input; input -25.1724 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 556.766601 with index (22,): Even by increasing rhoc, not able to bound input; input -24.0188 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 556.766601 with index (23,): Even by increasing rhoc, not able to bound input; input -22.8653 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 556.766601 with index (24,): Even by increasing rhoc, not able to bound input; input -21.7117 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 556.766601 with index (25,): Even by increasing rhoc, not able to bound input; input -20.5581 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 556.766601 with index (26,): Even by increasing rhoc, not able to bound input; input -19.4046 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 556.766601 with index (27,): Even by increasing rhoc, not able to bound input; input -18.251 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 556.766601 with index (28,): Even by increasing rhoc, not able to bound input; input -17.0974 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 556.766601 with index (29,): Even by increasing rhoc, not able to bound input; input -15.9439 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 556.766601 with index (30,): Even by increasing rhoc, not able to bound input; input -14.7903 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 556.766601 with index (31,): Even by increasing rhoc, not able to bound input; input -13.6367 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 556.766601 with index (32,): Even by increasing rhoc, not able to bound input; input -12.4832 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 556.766601 with index (33,): Even by increasing rhoc, not able to bound input; input -11.3296 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 556.766601 with index (34,): Even by increasing rhoc, not able to bound input; input -10.176 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 556.766601 with index (35,): Even by increasing rhoc, not able to bound input; input -9.02245 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 556.766601 with index (36,): Even by increasing rhoc, not able to bound input; input -7.86888 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 556.766601 with index (37,): Even by increasing rhoc, not able to bound input; input -6.71531 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 556.766601 with index (38,): Even by increasing rhoc, not able to bound input; input -5.56174 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 556.766601 with index (39,): Even by increasing rhoc, not able to bound input; input -4.40817 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 556.766601 with index (40,): Even by increasing rhoc, not able to bound input; input -3.2546 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 556.766601 with index (41,): Even by increasing rhoc, not able to bound input; input -2.10103 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 556.766601 with index (42,): Even by increasing rhoc, not able to bound input; input -0.947461 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 556.766601 with index (43,): Even by increasing rhoc, not able to bound input; input 0.206109 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 556.766601 with index (44,): Even by increasing rhoc, not able to bound input; input 1.35968 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 78.435652, 556.766601 with index (45,): Even by increasing rhoc, not able to bound input; input 2.51325 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 114.437265, 556.766601 with index (46,): Even by increasing rhoc, not able to bound input; input 3.66682 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 150.438878, 556.766601 with index (47,): Even by increasing rhoc, not able to bound input; input 4.82039 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 186.440491, 556.766601 with index (48,): Even by increasing rhoc, not able to bound input; input 5.97396 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 222.442103, 556.766601 with index (49,): Even by increasing rhoc, not able to bound input; input 7.12753 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 258.443716, 556.766601 with index (50,): Even by increasing rhoc, not able to bound input; input 8.28109 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 294.445329, 556.766601 with index (51,): Even by increasing rhoc, not able to bound input; input 9.43466 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 330.446942, 556.766601 with index (52,): Even by increasing rhoc, not able to bound input; input 10.5882 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 366.448555, 556.766601 with index (53,): Even by increasing rhoc, not able to bound input; input 11.7418 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402.450168, 556.766601 with index (54,): Even by increasing rhoc, not able to bound input; input 12.8954 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 438.451781, 556.766601 with index (55,): Even by increasing rhoc, not able to bound input; input 14.0489 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 474.453394, 556.766601 with index (56,): Even by increasing rhoc, not able to bound input; input 15.2025 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 510.455006, 556.766601 with index (57,): Even by increasing rhoc, not able to bound input; input 16.3561 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 546.456619, 556.766601 with index (58,): Even by increasing rhoc, not able to bound input; input 17.5097 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 582.458232, 556.766601 with index (59,): Even by increasing rhoc, not able to bound input; input 18.6632 is not in range 242860,352.132\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 618.459845, 556.766601 with index (60,): Even by increasing rhoc, not able to bound input; input 19.8168 is not in range 242860,352.132\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 588.383300 with index (0,): Even by increasing rhoc, not able to bound input; input -49.3974 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 588.383300 with index (1,): Even by increasing rhoc, not able to bound input; input -48.2438 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 588.383300 with index (2,): Even by increasing rhoc, not able to bound input; input -47.0902 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 588.383300 with index (3,): Even by increasing rhoc, not able to bound input; input -45.9367 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 588.383300 with index (4,): Even by increasing rhoc, not able to bound input; input -44.7831 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 588.383300 with index (5,): Even by increasing rhoc, not able to bound input; input -43.6295 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 588.383300 with index (6,): Even by increasing rhoc, not able to bound input; input -42.476 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 588.383300 with index (7,): Even by increasing rhoc, not able to bound input; input -41.3224 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 588.383300 with index (8,): Even by increasing rhoc, not able to bound input; input -40.1688 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 588.383300 with index (9,): Even by increasing rhoc, not able to bound input; input -39.0153 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 588.383300 with index (10,): Even by increasing rhoc, not able to bound input; input -37.8617 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 588.383300 with index (11,): Even by increasing rhoc, not able to bound input; input -36.7081 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 588.383300 with index (12,): Even by increasing rhoc, not able to bound input; input -35.5545 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 588.383300 with index (13,): Even by increasing rhoc, not able to bound input; input -34.401 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 588.383300 with index (14,): Even by increasing rhoc, not able to bound input; input -33.2474 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 588.383300 with index (15,): Even by increasing rhoc, not able to bound input; input -32.0938 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 588.383300 with index (16,): Even by increasing rhoc, not able to bound input; input -30.9403 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 588.383300 with index (17,): Even by increasing rhoc, not able to bound input; input -29.7867 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 588.383300 with index (18,): Even by increasing rhoc, not able to bound input; input -28.6331 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 588.383300 with index (19,): Even by increasing rhoc, not able to bound input; input -27.4796 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 588.383300 with index (20,): Even by increasing rhoc, not able to bound input; input -26.326 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 588.383300 with index (21,): Even by increasing rhoc, not able to bound input; input -25.1724 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 588.383300 with index (22,): Even by increasing rhoc, not able to bound input; input -24.0188 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 588.383300 with index (23,): Even by increasing rhoc, not able to bound input; input -22.8653 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 588.383300 with index (24,): Even by increasing rhoc, not able to bound input; input -21.7117 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 588.383300 with index (25,): Even by increasing rhoc, not able to bound input; input -20.5581 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 588.383300 with index (26,): Even by increasing rhoc, not able to bound input; input -19.4046 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 588.383300 with index (27,): Even by increasing rhoc, not able to bound input; input -18.251 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 588.383300 with index (28,): Even by increasing rhoc, not able to bound input; input -17.0974 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 588.383300 with index (29,): Even by increasing rhoc, not able to bound input; input -15.9439 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 588.383300 with index (30,): Even by increasing rhoc, not able to bound input; input -14.7903 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 588.383300 with index (31,): Even by increasing rhoc, not able to bound input; input -13.6367 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 588.383300 with index (32,): Even by increasing rhoc, not able to bound input; input -12.4832 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 588.383300 with index (33,): Even by increasing rhoc, not able to bound input; input -11.3296 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 588.383300 with index (34,): Even by increasing rhoc, not able to bound input; input -10.176 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 588.383300 with index (35,): Even by increasing rhoc, not able to bound input; input -9.02245 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 588.383300 with index (36,): Even by increasing rhoc, not able to bound input; input -7.86888 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 588.383300 with index (37,): Even by increasing rhoc, not able to bound input; input -6.71531 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 588.383300 with index (38,): Even by increasing rhoc, not able to bound input; input -5.56174 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 588.383300 with index (39,): Even by increasing rhoc, not able to bound input; input -4.40817 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 588.383300 with index (40,): Even by increasing rhoc, not able to bound input; input -3.2546 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 588.383300 with index (41,): Even by increasing rhoc, not able to bound input; input -2.10103 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 588.383300 with index (42,): Even by increasing rhoc, not able to bound input; input -0.947461 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 588.383300 with index (43,): Even by increasing rhoc, not able to bound input; input 0.206109 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 588.383300 with index (44,): Even by increasing rhoc, not able to bound input; input 1.35968 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 78.435652, 588.383300 with index (45,): Even by increasing rhoc, not able to bound input; input 2.51325 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 114.437265, 588.383300 with index (46,): Even by increasing rhoc, not able to bound input; input 3.66682 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 150.438878, 588.383300 with index (47,): Even by increasing rhoc, not able to bound input; input 4.82039 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 186.440491, 588.383300 with index (48,): Even by increasing rhoc, not able to bound input; input 5.97396 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 222.442103, 588.383300 with index (49,): Even by increasing rhoc, not able to bound input; input 7.12753 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 258.443716, 588.383300 with index (50,): Even by increasing rhoc, not able to bound input; input 8.28109 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 294.445329, 588.383300 with index (51,): Even by increasing rhoc, not able to bound input; input 9.43466 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 330.446942, 588.383300 with index (52,): Even by increasing rhoc, not able to bound input; input 10.5882 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 366.448555, 588.383300 with index (53,): Even by increasing rhoc, not able to bound input; input 11.7418 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402.450168, 588.383300 with index (54,): Even by increasing rhoc, not able to bound input; input 12.8954 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 438.451781, 588.383300 with index (55,): Even by increasing rhoc, not able to bound input; input 14.0489 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 474.453394, 588.383300 with index (56,): Even by increasing rhoc, not able to bound input; input 15.2025 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 510.455006, 588.383300 with index (57,): Even by increasing rhoc, not able to bound input; input 16.3561 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 546.456619, 588.383300 with index (58,): Even by increasing rhoc, not able to bound input; input 17.5097 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 582.458232, 588.383300 with index (59,): Even by increasing rhoc, not able to bound input; input 18.6632 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 618.459845, 588.383300 with index (60,): Even by increasing rhoc, not able to bound input; input 19.8168 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 654.461458, 588.383300 with index (61,): Even by increasing rhoc, not able to bound input; input 20.9704 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 690.463071, 588.383300 with index (62,): Even by increasing rhoc, not able to bound input; input 22.1239 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 726.464684, 588.383300 with index (63,): Even by increasing rhoc, not able to bound input; input 23.2775 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 762.466296, 588.383300 with index (64,): Even by increasing rhoc, not able to bound input; input 24.4311 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 798.467909, 588.383300 with index (65,): Even by increasing rhoc, not able to bound input; input 25.5846 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 834.469522, 588.383300 with index (66,): Even by increasing rhoc, not able to bound input; input 26.7382 is not in range 238051,355.274\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1541.636927, 620.000000 with index (0,): Even by increasing rhoc, not able to bound input; input -49.3974 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1505.635314, 620.000000 with index (1,): Even by increasing rhoc, not able to bound input; input -48.2438 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1469.633701, 620.000000 with index (2,): Even by increasing rhoc, not able to bound input; input -47.0902 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1433.632088, 620.000000 with index (3,): Even by increasing rhoc, not able to bound input; input -45.9367 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1397.630476, 620.000000 with index (4,): Even by increasing rhoc, not able to bound input; input -44.7831 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1361.628863, 620.000000 with index (5,): Even by increasing rhoc, not able to bound input; input -43.6295 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1325.627250, 620.000000 with index (6,): Even by increasing rhoc, not able to bound input; input -42.476 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1289.625637, 620.000000 with index (7,): Even by increasing rhoc, not able to bound input; input -41.3224 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1253.624024, 620.000000 with index (8,): Even by increasing rhoc, not able to bound input; input -40.1688 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1217.622411, 620.000000 with index (9,): Even by increasing rhoc, not able to bound input; input -39.0153 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1181.620798, 620.000000 with index (10,): Even by increasing rhoc, not able to bound input; input -37.8617 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1145.619185, 620.000000 with index (11,): Even by increasing rhoc, not able to bound input; input -36.7081 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1109.617573, 620.000000 with index (12,): Even by increasing rhoc, not able to bound input; input -35.5545 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1073.615960, 620.000000 with index (13,): Even by increasing rhoc, not able to bound input; input -34.401 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1037.614347, 620.000000 with index (14,): Even by increasing rhoc, not able to bound input; input -33.2474 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -1001.612734, 620.000000 with index (15,): Even by increasing rhoc, not able to bound input; input -32.0938 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -965.611121, 620.000000 with index (16,): Even by increasing rhoc, not able to bound input; input -30.9403 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -929.609508, 620.000000 with index (17,): Even by increasing rhoc, not able to bound input; input -29.7867 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -893.607895, 620.000000 with index (18,): Even by increasing rhoc, not able to bound input; input -28.6331 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -857.606283, 620.000000 with index (19,): Even by increasing rhoc, not able to bound input; input -27.4796 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -821.604670, 620.000000 with index (20,): Even by increasing rhoc, not able to bound input; input -26.326 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -785.603057, 620.000000 with index (21,): Even by increasing rhoc, not able to bound input; input -25.1724 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -749.601444, 620.000000 with index (22,): Even by increasing rhoc, not able to bound input; input -24.0188 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -713.599831, 620.000000 with index (23,): Even by increasing rhoc, not able to bound input; input -22.8653 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -677.598218, 620.000000 with index (24,): Even by increasing rhoc, not able to bound input; input -21.7117 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -641.596605, 620.000000 with index (25,): Even by increasing rhoc, not able to bound input; input -20.5581 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -605.594992, 620.000000 with index (26,): Even by increasing rhoc, not able to bound input; input -19.4046 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -569.593380, 620.000000 with index (27,): Even by increasing rhoc, not able to bound input; input -18.251 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -533.591767, 620.000000 with index (28,): Even by increasing rhoc, not able to bound input; input -17.0974 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -497.590154, 620.000000 with index (29,): Even by increasing rhoc, not able to bound input; input -15.9439 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -461.588541, 620.000000 with index (30,): Even by increasing rhoc, not able to bound input; input -14.7903 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -425.586928, 620.000000 with index (31,): Even by increasing rhoc, not able to bound input; input -13.6367 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -389.585315, 620.000000 with index (32,): Even by increasing rhoc, not able to bound input; input -12.4832 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -353.583702, 620.000000 with index (33,): Even by increasing rhoc, not able to bound input; input -11.3296 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -317.582090, 620.000000 with index (34,): Even by increasing rhoc, not able to bound input; input -10.176 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -281.580477, 620.000000 with index (35,): Even by increasing rhoc, not able to bound input; input -9.02245 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -245.578864, 620.000000 with index (36,): Even by increasing rhoc, not able to bound input; input -7.86888 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -209.577251, 620.000000 with index (37,): Even by increasing rhoc, not able to bound input; input -6.71531 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -173.575638, 620.000000 with index (38,): Even by increasing rhoc, not able to bound input; input -5.56174 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -137.574025, 620.000000 with index (39,): Even by increasing rhoc, not able to bound input; input -4.40817 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -101.572412, 620.000000 with index (40,): Even by increasing rhoc, not able to bound input; input -3.2546 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -65.570799, 620.000000 with index (41,): Even by increasing rhoc, not able to bound input; input -2.10103 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs -29.569187, 620.000000 with index (42,): Even by increasing rhoc, not able to bound input; input -0.947461 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 6.432426, 620.000000 with index (43,): Even by increasing rhoc, not able to bound input; input 0.206109 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 42.434039, 620.000000 with index (44,): Even by increasing rhoc, not able to bound input; input 1.35968 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 78.435652, 620.000000 with index (45,): Even by increasing rhoc, not able to bound input; input 2.51325 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 114.437265, 620.000000 with index (46,): Even by increasing rhoc, not able to bound input; input 3.66682 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 150.438878, 620.000000 with index (47,): Even by increasing rhoc, not able to bound input; input 4.82039 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 186.440491, 620.000000 with index (48,): Even by increasing rhoc, not able to bound input; input 5.97396 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 222.442103, 620.000000 with index (49,): Even by increasing rhoc, not able to bound input; input 7.12753 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 258.443716, 620.000000 with index (50,): Even by increasing rhoc, not able to bound input; input 8.28109 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 294.445329, 620.000000 with index (51,): Even by increasing rhoc, not able to bound input; input 9.43466 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 330.446942, 620.000000 with index (52,): Even by increasing rhoc, not able to bound input; input 10.5882 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 366.448555, 620.000000 with index (53,): Even by increasing rhoc, not able to bound input; input 11.7418 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 402.450168, 620.000000 with index (54,): Even by increasing rhoc, not able to bound input; input 12.8954 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 438.451781, 620.000000 with index (55,): Even by increasing rhoc, not able to bound input; input 14.0489 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 474.453394, 620.000000 with index (56,): Even by increasing rhoc, not able to bound input; input 15.2025 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 510.455006, 620.000000 with index (57,): Even by increasing rhoc, not able to bound input; input 16.3561 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 546.456619, 620.000000 with index (58,): Even by increasing rhoc, not able to bound input; input 17.5097 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 582.458232, 620.000000 with index (59,): Even by increasing rhoc, not able to bound input; input 18.6632 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 618.459845, 620.000000 with index (60,): Even by increasing rhoc, not able to bound input; input 19.8168 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 654.461458, 620.000000 with index (61,): Even by increasing rhoc, not able to bound input; input 20.9704 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 690.463071, 620.000000 with index (62,): Even by increasing rhoc, not able to bound input; input 22.1239 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 726.464684, 620.000000 with index (63,): Even by increasing rhoc, not able to bound input; input 23.2775 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 762.466296, 620.000000 with index (64,): Even by increasing rhoc, not able to bound input; input 24.4311 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 798.467909, 620.000000 with index (65,): Even by increasing rhoc, not able to bound input; input 25.5846 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 834.469522, 620.000000 with index (66,): Even by increasing rhoc, not able to bound input; input 26.7382 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 870.471135, 620.000000 with index (67,): Even by increasing rhoc, not able to bound input; input 27.8918 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 906.472748, 620.000000 with index (68,): Even by increasing rhoc, not able to bound input; input 29.0453 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 942.474361, 620.000000 with index (69,): Even by increasing rhoc, not able to bound input; input 30.1989 is not in range 234463,358.371\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:657: UserWarning: An error occurred for inputs 978.475974, 620.000000 with index (70,): Even by increasing rhoc, not able to bound input; input 31.3525 is not in range 234463,358.371\n", " UserWarning)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:610: UserWarning: Please use \"calc_sat_range\" to calculate saturation and isoquality lines. Input ranges are discarded.\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# this is a simple property plot\n", "#from CoolProp.Plots import PropertyPlot\n", "plot = PropertyPlot('Methanol', 'PS', unit_system='SI')\n", "plot.calc_isolines()\n", "plot.show()\n" ] }, { "cell_type": "code", "execution_count": 154, "id": "5ffc9cb4", "metadata": { "scrolled": false }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] } ], "source": [ "plot.savefig('methanolPS.png')" ] }, { "attachments": {}, "cell_type": "markdown", "id": "27d046f7", "metadata": {}, "source": [ "## Results\n", "Thermodynamic calculations are done with the Python version of CoolProp in a Jupyter Notebook [ref 3]. This is a great tool for exploring the thermodynamic properties of fluids and power cycles. CoolProp is open source and is comparable to NIST REFPROP [ref 4]. \n", "\n", "CoolProp has a feature for plotting a closed Rankine power cycle, but this failed for nHexane and methanol. The Rankine cycle for water is shown below.\n", "\n" ] }, { "cell_type": "code", "execution_count": 155, "id": "480f56af", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:610: UserWarning: Please use \"calc_sat_range\" to calculate saturation and isoquality lines. Input ranges are discarded.\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:301: UserWarning: You called the function \"draw_process\", which is not tested.\n", " warnings.warn(\"You called the function \\\"draw_process\\\", which is not tested.\", UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] }, { "data": { "image/png": "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IsJ//dd/cd999+lDvBqNBSJCoPQSn/c8+OCDfOtb32rzbNKWLVvIzs5udRjXT2lpKenp6W06ODQ2NnYoPh1FibAaRcIqsbGxbcbbExEGDx5MSUlJ0Of79OnD3LlzefFFHRRFozFLRAiUxlv++c9/kp2d3ebS3fHjxykpKWHUqFFt2mgrrp6fYHmgWvbRlvj5cbLEB8bZpmApOPxMnz6dr7/+us3n8/LygoZH8nPOOedQVFTUpru7RqM5lYgQKL3E5x0rV65k586dXHrppW3W+eSTTzj33HPbfL6oqIjhw4e3209tbe0pKd5bsm7dOsaPH9/xgNuhIwHrSGASEhI6TKuRlZXVKoVHID//+c958MEH9VKfRmOCiBAovcTnDfv27eOll17izjvvbLPOqlWrmDRpUruzk6KiIkaMGNHm8yUlJaekeA/GiRMngrqt+zl+/HibzhdmSUxMpLa2tt06qamp7To75ObmsmXLljaf79GjBxdeeCELFy60PU6NprsQEQKlcZ+amhp++9vf8r//+79tik91dTVVVVXtpr7YsGED48aNa7evLVu2tOscAR3PftoLc+THjT2qiRMnsnr16nbrDBkyhOLi4jafP/vss1m3bp2OMqHRdEBECJRe4nMXpRT33nsv99xzT7vLbp999lmbwV797Nu3r93ZkZmlroaGhqAHggNpL1Csm0RFRXU45tGjR7N9+/Z26/znf/4n999/v5tD02gijogQKL3E5y4PPfQQV1xxRbtnksws7a1evZqJEye229fatWs7rLN+/Xry8/PbrVNdXd1h5l0zYpiSkkJVVVW7ddLS0jqc/WRmZrbp0QfQu3dvpk6dykcffdThmDSa7kpECJTGPT777DMSExOZOnVqm3XMLO0ppTh06BD9+vVrt7/y8vIOl+aOHj1K7969260D7izhjRs3rl1HCWg/gGygnWCJEAP59re/zdtvv91ulAqNpjujBUpzkn379vHee+9x0003tVuvvTxOflasWNGuyAHU1dUFzaRrBzPiFBUVRXNzc7t1EhMTqaur67AvM7Ox3r17t+tQISLcdtttPProox3a0mi6I1qgNADU19fz29/+ll/96lftftn7ww21V0cp1Wa69kDMBIZVSpkSHzOCkZSU1GZE80DM9Jeenh40F1QgU6dOZfny5e3WGTlyJMeOHWt3OVCj6a5EhEBp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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "#import CoolProp\n", "from CoolProp.Plots import PropertyPlot\n", "from CoolProp.Plots import SimpleRankineCycle\n", "\n", "# nice feature, but it did not work for the fluids that I wanted\n", "\n", "pp = PropertyPlot('HEOS::water', 'pS', unit_system='SI')\n", "pp.calc_isolines(CoolProp.iQ, num=11)\n", "cycle = SimpleRankineCycle('HEOS::water', 'pS')\n", "T0 = 273.15 + 10 - 1\n", "pp.state.update(CoolProp.QT_INPUTS,0.0,T0+1)\n", "p0 = pp.state.keyed_output(CoolProp.iP)\n", "T2 = 273.15 + 150 + 250\n", "pp.state.update(CoolProp.QT_INPUTS,1.0,T2-250)\n", "p2 = pp.state.keyed_output(CoolProp.iP)\n", "cycle.simple_solve(T0, p0, T2, p2, 1.0, 1.0, SI=True)\n", "cycle.steps = 51\n", "sc = cycle.get_state_changes()\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "import matplotlib.pyplot as plt\n", "plt.close(cycle.figure)\n", "pp.draw_process(sc)\n", "pp.show()\n" ] }, { "cell_type": "code", "execution_count": 156, "id": "3c8b8fe8", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] } ], "source": [ "pp.savefig('waterRankineCycle.png')" ] }, { "attachments": {}, "cell_type": "markdown", "id": "7c4c81b8", "metadata": {}, "source": [ "I will show the manual calculation steps. Recall that we need two unique process conditions to specify a thermodynamic state.\n", "\n" ] }, { "attachments": {}, "cell_type": "markdown", "id": "065dcef2", "metadata": {}, "source": [ "## Dry ORC\n", "* Fluid is nHexane\n", "* Calculate the bubble pressure of the fluid at 150 C. This is the vaporizer pressure. \n", "* Point 0. Condensed fluid. Quality is zero, temperature is 10 C. \n", "* Point 1. Pump discharge. Pressure is the calculated vapouriEr pressuee, entropy is the same as S(0). \n", "* Point 2. Vaporizer outlet. Pressure is the calculated appetizer pressure, quality is 1. \n", "* Point 3. Turbine outlet. Pressure is P(0), entropy is S(2). \n", "* Point 4. Vapourizer bubble point. Optional Calculation. Pressure is P(1), quality is 0.\n", "* Point 5. Condenser dew point. Optional calculation. Pressure is P(0), quality is 1.\n", "\n" ] }, { "cell_type": "code", "execution_count": 157, "id": "992266ec", "metadata": {}, "outputs": [], "source": [ "from CoolProp.CoolProp import PropsSI\n", "\n", "# lets create a simple table for states\n", "# point 0 is bubble point liquid temperature\n", "# 1 pump discharge\n", "# 2 vapourizer dew point\n", "# 3 turbine exhaust\n", "myFluid = \"nHexane\"\n", "Q = [0,0,0,0,0,0]\n", "T = [0,0,0,0,0,0]\n", "P = [0,0,0,0,0,0]\n", "H = [0,0,0,0,0,0]\n", "S = [0,0,0,0,0,0]\n", "\n", "Q[0] = 0.0\n", "T[0] = 273.15 + 10\n", "T[1] = 273.15 + 150\n", "Q[2] = 1.0\n", "\n", "P[0] = PropsSI('P','T',T[0],'Q',Q[0],myFluid)\n", "H[0] = PropsSI('H','T',T[0],'Q',Q[0],myFluid)\n", "S[0] = PropsSI('S','T',T[0],'Q',Q[0],myFluid)\n", "\n", "P[1] = PropsSI('P','T',T[1],'Q',0.0,myFluid)\n", "T[1] = PropsSI('T','P',P[1],'S',S[0],myFluid)\n", "H[1] = PropsSI('H','P',P[1],'S',S[0],myFluid)\n", "S[1] = S[0]\n", "Q[1] = PropsSI('Q','P',P[1],'S',S[1],myFluid)\n", "\n", "P[2] = P[1]\n", "T[2] = PropsSI('T','P',P[2],'Q',Q[2],myFluid)\n", "H[2] = PropsSI('H','P',P[2],'Q',Q[2],myFluid)\n", "S[2] = PropsSI('S','P',P[2],'Q',Q[2],myFluid)\n", "\n", "P[3] = P[0]\n", "S[3] = S[2]\n", "H[3] = PropsSI('H','P',P[3],'S',S[3],myFluid)\n", "T[3] = PropsSI('T','P',P[3],'S',S[3],myFluid)\n", "Q[3] = PropsSI('Q','P',P[3],'S',S[3],myFluid)\n", "\n", "# optional\n", "# vapourizer bubble point\n", "P[4] = P[1]\n", "T[4] = PropsSI('T','P',P[4],'Q',0,myFluid)\n", "H[4] = PropsSI('H','P',P[4],'Q',0,myFluid)\n", "S[4] = PropsSI('S','P',P[4],'Q',0,myFluid)\n", "Q[4] = 0.0\n", "\n", "# condenser dew point\n", "P[5] = P[3]\n", "T[5] = T[0]\n", "H[5] = PropsSI('H','P',P[5],'Q',1,myFluid)\n", "S[5] = PropsSI('S','P',P[5],'Q',1,myFluid)\n", "Q[5] = 1.0\n", "\n" ] }, { "cell_type": "code", "execution_count": 158, "id": "1add79a4", "metadata": {}, "outputs": [], "source": [ "# create a dataframe for these results\n", "stateNames = ['Condenser Bubble', 'Pump Discharge', 'Vapourizer Dew', 'TD Exhaust', 'Vapourizer Bubble', 'Condenser Dew']\n", "dfStates = pd.DataFrame(stateNames, columns=['State'])" ] }, { "cell_type": "code", "execution_count": 159, "id": "7be3d0de", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StateQTPHS
0Condenser Bubble0.0283.15000010086.897029-137292.760223-439.403845
1Pump Discharge-1.0283.339065753322.376106-136181.027642-439.403845
2Vapourizer Dew1.0423.150000753322.376106478759.1446841183.868594
3TD Exhaust-1.0336.31340910086.897029330128.3526541183.868594
4Vapourizer Bubble0.0423.150000753322.376106219218.652850570.515193
5Condenser Dew1.0283.15000010086.897029238893.579201889.172314
\n", "
" ], "text/plain": [ " State Q T P H \\\n", "0 Condenser Bubble 0.0 283.150000 10086.897029 -137292.760223 \n", "1 Pump Discharge -1.0 283.339065 753322.376106 -136181.027642 \n", "2 Vapourizer Dew 1.0 423.150000 753322.376106 478759.144684 \n", "3 TD Exhaust -1.0 336.313409 10086.897029 330128.352654 \n", "4 Vapourizer Bubble 0.0 423.150000 753322.376106 219218.652850 \n", "5 Condenser Dew 1.0 283.150000 10086.897029 238893.579201 \n", "\n", " S \n", "0 -439.403845 \n", "1 -439.403845 \n", "2 1183.868594 \n", "3 1183.868594 \n", "4 570.515193 \n", "5 889.172314 " ] }, "execution_count": 159, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\n", "dfStates['Q'] = Q\n", "dfStates['T'] = T\n", "dfStates['P'] = P\n", "dfStates['H'] = H\n", "dfStates['S'] = S\n", "\n", "dfStates" ] }, { "cell_type": "markdown", "id": "79e081ea", "metadata": {}, "source": [ "| Fluid | Dry n-Hexane | Wet Methanol |\n", "| --- | --- | --- |\n", "|Normal boiling temperature, C |\t69 |\t65 |\n", "|Critical temperature, C|\t234|\t240 |\n", "|Critical pressure, kPaa |\t3020|\t8100 |\n", "|Latent heat, kJ/kg at standard conditions|360 | 1175 |\n", "\n", "|Num |State\t|Q\t|T\t|P\t|H\t|S|\n", "| ---| --- | --- | --- | ---| --- | --- |\n", "|0\t|Condenser Bubble\t|0.0\t|283.150000\t|10086.897029\t|-137292.760223\t|-439.403845|\n", "|1\t|Pump Discharge\t|-1.0\t|283.339065\t|753322.376106\t|-136181.027642\t|-439.403845|\n", "|2\t|Vapourizer Dew\t|1.0\t|423.150000\t|753322.376106\t|478759.144684\t|1183.868594|\n", "|3\t|TD Exhaust\t|-1.0\t|336.313409\t|10086.897029\t|330128.352654\t|1183.868594|\n", "|4\t|Vapourizer Bubble\t|0.0\t|423.150000|\t753322.376106\t|219218.652850\t|570.515193|\n", "|5\t|Condenser Dew\t|1.0\t|283.150000\t|10086.897029\t|238893.579201\t|889.172314|" ] }, { "cell_type": "code", "execution_count": 160, "id": "f301826f", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:610: UserWarning: Please use \"calc_sat_range\" to calculate saturation and isoquality lines. Input ranges are discarded.\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABhIklEQVR4nO29eXxV5bX//14EFJB5BkEQkVlBJkFQEQRlhtvbfntrv1pv+/N2urairdpa0Q56661g23vbe/22drAOvbdVCEMYAgQSIIEkZCJMCYEkDJlDEkKmc57fH/ucmHCmvQ+QhLDer9d5cc6zn2fvZx9gf85az3rWEmMMiqIoitLW6NDaE1AURVEUf6hAKYqiKG0SFShFURSlTaICpSiKorRJVKAURVGUNokKlKIoitImaVGBEpFeIvI3ETkmIkdFZJaI9BGRHSJy0vNnb09fEZFfiUiWiKSJyJSWnKuiKIrSurS0BfVLYKsxZiwwCTgKvATsNMbcDez0fAZYBNzteT0D/LaF56ooiqK0ItJSG3VFpCeQAow0TS4qIseBucaY8yIyGIgxxowRkf/2vP/oyn4tMmFFURSlVenYgte6EygC/iAik4Ak4DvAwCaicwEY6Hl/O5DXZHy+p62ZQInIM1gWFrfddtvUsWPHXrcbUBRFUa49SUlJxcaY/le2t6RAdQSmAP9qjEkQkV/ymTsPAGOMERFHJp0x5l3gXYBp06aZxMTEazVfRVEUpQUQkTP+2ltyDSofyDfGJHg+/w1LsAo8rj08fxZ6jp8FhjUZP9TTpiiKotwEtJhAGWMuAHkiMsbTNB/IBCKBpzxtTwEbPO8jgSc90XwzgYu6/qQoinLz0JIuPoB/BT4QkVuAU8DTWCL5PyLyVeAM8AVP3y3AYiALqPb0VRRFUW4SWlSgjDEpwDQ/h+b76WuAb13vOSmKoihtE80koSiKorRJVKAURVGUNokKlKIoitImUYFSFEVR2iQqUIqiKEqbRAVKURRFaZOoQCmKoihtEhUoRVEUpU2iAqUoiqK0SVSgFEVRlDaJCpSiKIrSJlGBUhRFUdokKlCKoihKm0QFSlEURWmTqEApiqIobRIVKEVRFKVNogKlKIqitElUoBRFUZQ2iQqUoiiK0iZRgVIURVHaJCpQiqIoSptEBUpRFEVpk6hAKYqiKG0SFShFURSlTaICpSiKorRJVKAURVGUNkmLCpSInBaRdBFJEZFET9trInLW05YiIoub9H9ZRLJE5LiIPNaSc1UURVFal46tcM1HjDHFV7StM8b8ommDiIwHvghMAIYA0SIy2hjjaqF5KoqiKK1IW3bxrQA+NsbUGmNygCxgRivPSVEURWkhWlqgDLBdRJJE5Jkm7d8WkTQReU9EenvabgfymvTJ97Q1Q0SeEZFEEUksKiq6fjNXFEVRWpSWFqg5xpgpwCLgWyLyEPBb4C5gMnAeeNvJCY0x7xpjphljpvXv3/9az1dRFEVpJVpUoIwxZz1/FgKfAjOMMQXGGJcxxg38Pz5z450FhjUZPtTTpiiKotwEtJhAichtItLd+x5YCGSIyOAm3VYBGZ73kcAXReRWEbkTuBs42FLzVRRFUVqXloziGwh8KiLe635ojNkqIu+LyGSs9anTwL8AGGOOiMj/AJlAA/AtjeBTFEW5eRBjTGvP4Zoxbdo0k5iY2NrTUBRFURwgIknGmGlXtrflMHNFURTlJkYFSlEURWmTqEApiqIobRIVKEVRFKVNogKlKIqitElUoBRFUZQ2iQqUoiiK0iZRgVIURVHaJCpQiqIoSptEBUpRFEVpk6hAKYqiKG0SFShFURSlTaICpSiKorRJVKAURVGUNokKlKIoitImUYFSFEVR2iQqUIqiKEqbRAVKURRFaZOoQCmKoihtEhUoRVEUpU2iAqUoiqK0SVSgFEVRlDaJCpSiKIrSJunY2hNQFKVtU1dXR05ODklJSWzZsoWMjAzy8vIYPXo0999/P4sWLeLee+9l0KBBiEhrT1dpR4gxprXncM2YNm2aSUxMbO1pKMoNjTGGpKQk1q9fT15eHtXV1URERABw9913M3v2bDp27EheXh7p6enU1NRw6dIl3G43AwYM4P/+3//L5MmTW/cmlBsKEUkyxky7sl0tKEVRAEuYNm7cyO7du+nduzfTp09n6tSpDBo0iAsXLjB69GhqamooLi7mkUceYc+ePSxYsIDq6mqys7OZPXs2cXFxxMXFceTIEZ544onWviXlBqdF16BE5LSIpItIiogketr6iMgOETnp+bO3p11E5FcikiUiaSIypSXnqig3C8YYIiMjWb16NRUVFTz66KOsXLmSjh07MmnSJCorK7n//vspKSlh8ODB9OvXj6KiIvr164eIYIzhzjvvpKqqikGDBvGFL3yB0tJSkpOTW/vWlBuc1giSeMQYM7mJOfcSsNMYczew0/MZYBFwt+f1DPDbFp+porRzkpOT+c53vsMtt9zCggULmDp1Kr1798btdjNmzBjOnTvH/fffT2pqKg8++CCJiYlMnTqVtLQ07r33Xk6dOsWdd95Jv379KCkp4b777iMjI4NvfvObfPTRR619e8oNTluI4lsB/Mnz/k/AyibtfzYW8UAvERncCvNTlHZHcXExr7zyCsnJyXzjG99ARJg/fz5ZWVmMHDmSjh07Ul5ezvTp09m9ezePP/44u3btYt68eVRVVdGlSxcA6uvrueWWWygrK6N3796ICCJCREQE/fv3p6ysrJXvVLmRCSlQIjIsyLGlDq9ngO0ikiQiz3jaBhpjznveXwAGet7fDuQ1GZvvabtyDs+ISKKIJBYVFTmcjqLcXBhj+Pjjj1m3bh3f/e53ueOOOxARpk2bxrZt23jsscfIz89HRJgyZQqbNm1i2bJl5OXl0bdvX7p160ZcXBxz5szB5XLhDbI6e/Yst9/e/L/ntGnTSE1NbY3bVNoJdiyoHSIy4spGEfln4JcOrzfHGDMFy333LRF5qOlBY/1rdxRWaIx51xgzzRgzrX///g6noyg3D/n5+axevZqBAwfy7W9/m/j4eB588EEAMjIyWL58OUlJSfTq1YsJEyawceNGFi9ejMvlIi0tjcmTJ1NUVETfvn0REeLj45k5cyYALpfLJ8T8zjvvJCcnp8XvU2k/2BGo1VhWz93eBhF5GXgOeNjJxYwxZz1/FgKfAjOAAq/rzvNnoaf7WaCp9TbU06YoigOMMfz+97/nD3/4Az/72c/o0aMHubm5LF26lLS0NBoaGnj44YeJi4tj0KBBjBo1iu3bt/PQQw/RpUsXtm3bxuOPPw7AwYMHmT59OgCXLl3itttuC3jdnj17UllZ2SL3qLRPQgqUMWYL8A0gSkQmisg7wDLgIWNMvt0LichtItLd+x5YCGQAkcBTnm5PARs87yOBJz3RfDOBi01cgYqi2KCgoIDnnnuO8ePH88Mf/pCYmBj69+/PjBkz2LFjB4MHD2bixIns2bOHYcOGceeddxIbG8vEiRPp3bs38fHxTJs2jY4dO5KSksKkSZMAOHnyJCNHjgRojOgDqK6ublyfak97LJXWwdY+KGPMThF5GogB9gPzjDE1Dq81EPjU4wboCHxojNkqIoeA/xGRrwJngC94+m8BFgNZQDXwtMPrKcpNTWRkJPHx8fzkJz+htraWTZs2sXDhQjp27MiGDRuYO3cuvXr1Yvfu3dx9990MHTqUpKQkBg8ezJAhQ8jNzaVTp04MHjyY+vp6CgsLGzfgZmdnN1pVqampzJ8/H4D09HTuuecewArE6Nu3b6vcu9I+CClQIlKJtS4kwK3AfKBQLKUxxpgedi5kjDkFTPLTXuI555XtBviWnXMrivIZly5d4o033mD69Om88cYbZGRkUF5ezvLly6msrCQqKoqlS5fSqVMnoqOjmTBhAoMHD+bo0aN06tSJUaNGUVdXR3p6OkuWLAFojOADGkPLm+Jdf2rq9jt37pxP4ISiOCGkQBljurfERBRFuXoOHjzIBx98wEsvvcSgQYOIjo5mxIgRzJkzh3PnzpGWlsbKlSsREbZt28bkyZMZOHAgp0+fpqKigvvvvx+Abdu2sXjxYgByc3MZPHgwnTp1AuD48eMsWrSo8f3ddzcuTzdz6+Xl5TF79uyWunWlHdIW9kEpinKVuN1u1q1bR3JyMu+88w59+vRhw4YNTJ8+nVGjRnHixAlycnJ4/PHHERG2bNnC1KlTGThwIIWFheTk5DSK0/79+5k+fToRERG43e7GTbkAx44dY8yYMY3XPXPmDMOHDwegqqqqWdBETk4OI0aMaLkvQWl3qEApyg1OUVER3/3ud3nkkUf4+te/zoULF9ixYwfLli2jZ8+epKSkUF1d3WjNbN68mVmzZtGvXz+qqqo4dOgQjzzyCABZWVl0796dQYMGAbBz587G9SWwRMcbHFFaWkrv3r0bjyUlJTF16tTGzy6XqzHJrKKEgyaLVZQbmL179xIZGclPf/pTevToQUZGBhcvXmTpUmsP/YEDB+jTp0+j1bN582YeeOABevfuTV1dHdu3b2fVqlUAXLx4kdzc3Ma1ppycHAYNGtQYldc0xBwgMTGRBQsWNH6ur69vdAO6XK7rf/NKu8dOJolZokVeFKVN4Xa7Wbt2LSdPnuTf//3f6dGjBzExMXTs2LHRUtq5cydDhw5tFKctW7Y0ipPb7Wbjxo0sX74cEcHtdrN79+5GS8rlcpGZmdkYkedyuSgrK2sMJ6+vr6djx47NgiO6du3aOL/U1NTGkHRFCRtjTNAXVpLWZOBj4CvAoFBjWus1depUoyjtnYKCAvPss8+alJQUY4wxdXV15tNPPzVFRUXGGGPcbreJjIxs/GyMMZs3bzalpaWNn9evX2+qq6ubHb98+XLj5+3bt5uamprGzzt37mx2fNeuXT7HGxoaGj+vXbu22fUVJRhAovHzTLcTxfcNABEZi5Wi6I8i0hPYDWwF9hlj1J5XlBZgz549bNq0iZ/+9Kd0796dkpIS4uLiWLJkCZ06daKhoYHIyEgee+yxxoCFLVu2MHPmzMb1oh07dvDggw82uu4SEhKYNGkSnTt3Bqw9Trfffju33norACUlJXTt2rXxeENDAw0NDY3HwbLomq43lZSUNFpbihIuttegjDHHgGPAOhHpAjwCfB5YC/hUQlQU5drhdrt555136NWrF2+99RYiQnZ2NmfOnGHFihWAlcVh69atLFu2rHEtKCoqipkzZ9KnTx8A4uLiGD9+fOPnU6dOceuttzbuV6qrq+PEiRONYeQA8fHxjfuhvOfw5vADK1HskCFDGj9fvnyZW2655Tp9E8rNRFhBEsaYy1iZHrZc2+koinIl5eXlrFmzhqeffroxk0NSUhIi0hjQUFJSQnx8PKtWrWpcF4qKimLGjBmNYpScnMzAgQMbxaiyspLs7OxmgQ47duzgsccea/ycnp7OxIkTGz+7XC7q6+sbrSmAzMzMZueIjo5u9llRwkXDzBWlDZOWlsaaNWt47bXXGsUpOjqa3r17M2WKVWQ6Ly+PlJQUlixZ4iNO3lRDx44dIyIionFTrTGGnTt38uijjzZeKzk5mXvuuYeOHa3frS6Xi/z8/MZ9TuBrPdXV1TX29xIfH9+4p0pRrgY7qY7eNsY83xKTURTlMz766CPy8/NZt24dHTp0oKGhgU2bNvHggw82Cs+JEycoLi5utldp69atTJ8+vbFPbm4u5eXljaUxwMoUsXDhwkZBKy0t5dKlS42iBxATE9MY1QfW2lNdXV0z62n//v3NskV4y2506KC/fZWrx86/okdCd1EU5VpRV1fHmjVr6NGjB9/73vfo0KEDFRUVREZGsnjx4kbhycjIoKqqigceeKBx7LZt25g2bVpjgEJRURFZWVnNxCkxMZHx48c3hoUbY3wso6KiIrp169ZMjPbu3ctDDzUr4UZdXV2z9aa4uLhm81GUq0F/5ihKG+LcuXOsXr2aJ598sjEwITc3lwMHDrBq1apGMUhKSgJoZvFs27aNKVOmNIpTVVUVCQkJjetUYAVFREREcMcddzS27dmzh7lz5zabR0JCQjM33eXLlxGRZpF7GRkZzdanwFrD0vUn5VphJ0hikojkAOlY9Zu8fx41xjRcz8kpys1EbGwsGzdu5K233mq0btLS0qiurm4WuHDgwAH69u3L6NGjG9u84uStKl1fX98sSwRYwRY5OTk+qYv69OlDjx6fFSW4MmMEWNZT0/UqsKL3mgpUTU0NItIYQagoV4sdCyoNmA38B1CCVWjwD0CJiGRcx7kpyk2BMYbf/OY3ZGZm8vOf/7xRnGJjY7nllluauediYmIYMmRIUHEyxjTLEgHW2lBMTEwza6quro6jR482JoIFKyNEVVUVAwcObGwrLS2lZ8+ezfY55efn+5TS2LJlS2OKJUW5Jvjbvdv0BRwO0C7A3aHGt+RLM0koNxpVVVXm+eefN/v27Wtsc7lcZuPGjeb8+fPN+m7fvt2cO3euWdu2bdtMQUFBs7aNGzeaS5cuNWuLjIw0tbW1zdo2bdpk6uvrfdrcbnezti1btvi0bd261edevv/97/v0UxQ7EG4mCSzLyZ+wGeDktRJKRbnZOHnyJL/85S955ZVXGrOH19TUsHnzZhYvXtysdLo3A3nTCrXbt29n8uTJDBgwoLFt586dzJo1q1levL179zJz5sxmwQxXhpQDHDlyhHHjxtE09abXUmraVlZWRq9evZrdS2lpKX369EHTdirXkpAuPmPM71tiIopyM7F161b+8pe/sG7dukZxKikpaVw38oqT2+1uLM/eVJx27NjhI0779u1jzJgxzfplZGQwcODARvcfQGFhITU1Nc0CJerr68nNzW0speGlaS0oLwcPHmTGjBnN2j7++GO+8IUvhPt1KIpfNIpPUVoQYwy//vWvKSgo4PXXX28MKDh9+jQpKSksX768cQ9RfX0969ev5/HHH6dbt26N54iOjubee+9tJk6JiYkMHDiQoUOHNradO3eOysrKZgUG3W438fHxPqHgV27aBd8sEmBF83Xu3LmZpWSM4fTp0z5l4BXlalGBUpQWoqamhhdffJGpU6fy1FNPNbanpaVRWFjYLLru8uXLjYEOTfciRUdHc8899zQLYsjIyKBz586MGjWq2fiUlBRmzZrVbA7bt29n4cKFzdpycnIYOnRos+g7Ywz5+fnNrCyw9jnNmTOnWduBAwd8rqMo1wLbAiUWXxaRVz2f7xCRGaHGKYpihWQ///zzPPvss82sl3379tGpU6dmLrOKigq2b9/OypUrm60RRUdHM3HixGbilJ2dTU1NTTNLxxjD1q1befzxx5vNITU1ldGjRzcTPLfbzZEjR3wspdjY2GYbd8GK+uvQoYNPldxNmzZp9J5yXXCSLPY3gBuYB/wYqAT+DkwPNkhRbnbi4+P5+9//zi9+8YtmgQ/btm3jnnvuaRauXVxczMGDB5uFiMNn4uRdrwIrgOHChQvNUg3BZ1ZS03RDJSUlVFRU+BQRvLKkO1ih5m63u5lbEaxgi4cffrhZW1lZGd26ddO9T8p1wYlA3W+MmSIihwGMMWUiojn1FSUI77//PmVlZY0lMsDKabdx40bmz5/fbIPsuXPnyMzMZPHixc3OsXPnTh9xKi4u5tixYz7rRgcPHmTChAmNtaDgs1RG3rIcXk6fPs3AgQMbRdNLbGysjxuwrq7O7ybcDz/8kCeeeMLu16EojnCyBlUvIhGAtQlKpD+WRaUoyhU0NDTw+uuv07dvX5599tlGcaqsrCQyMpKlS5c2E6ecnByys7N9BGfnzp2MHz++mThVVlYSHx/v0/fkyZN07ty5WaAE+E8/5Ha7SU9P94nQy8/PZ8iQIT7JXv3l4TPGcObMmWbZzhXlWuJEoH4FfAoMEJGfAXHAG9dlVopyA1NWVsbq1av5P//n/zSzhs6dO8e+fftYtWpVM0vk+PHjFBYW+qz57Nq1i/HjxzN48ODGttraWqKjo5sVEATLhXf27FkfwcnIyODOO+9sti/Ke+4rBQ78h5UHsp7i4uJ83IuKci2x5eIT6+ffXiAJmI+VRWKlMebodZybotxwZGZm8l//9V/8+Mc/braZ9fjx4xQVFfkELqSnp+NyuXzqJ+3atYtx48Y1EyeXy8XmzZtZsWJFs/Wp+vp6vy688vJyioqKmpXMAMu1179/fx/Xnj9xAv8BE2AFR7zxhv5GVa4ftgTKGGNEZIsx5h6ssu9h43ETJgJnjTFLReSPwMPARU+XrxhjUjyi+EtgMVDtaU++mmsryvVk48aNpKamsm7dumaRbomJiXTq1MknPDsxMZGuXbtyzz33NGvftWsXY8eObSZOxpNfb8mSJT5RdFFRUT4WlTGGmJgYH9Fyu91kZGT4RN25XC7OnTvnI1D19fUYY3xKuJ85c4ahQ4f6zEVRriVOXHzJInItIva+A1xpeX3PGDPZ80rxtC0C7va8ngF+ew2urSjXHGMM69ato7KykldeeaXZQ3v37t307dvXJ3pu//799OrVi/Hjxzdr3717N2PGjGHIkCHN2rds2cL8+fOblbvw9p8zZ45PVdtdu3Yxf/58n9RDu3btapYw1ktMTIxPyQ3wv/YE8Kc//Yknn3zSp11RriVOBOp+4ICIZItImoiki0iak4uJyFBgCfA7G91XAH/25BKMB3qJyOBQgxSlJamuruZ73/sec+bM4Utf+lJju9vtZuPGjdxzzz0+GRZiYmIYOnRos421YInN6NGjfbKER0dHc//999O9e/dm7cnJyQwfPpw+ffo0az927BhDhgzx6X/mzBn69+/vsx5VUFBAz549m+2PAmu9C/CxnqqqqnC5XPTs2dPvd6Io1wonAvUYcBfWPqhlwFLPn054B/g+vtF/P/OI3joR8f5EvB3Ia9In39PWDBF5RkQSRSSxqKjI4XQUJXxyc3P53ve+x/PPP9+sflJNTQ3r16/n0UcfbSwe6GX79u2MGzfOJ0NDTEyMX3GKi4tj7NixPuc5deoUgE/uvIqKCs6ePcu4ceOatbvdbtLS0nwsObBcjdOmTfNp37Nnj8++J4C//OUvfPnLX/ZpV5RrjW2BMsac8feyO15ElgKFxpikKw69DIzF2vDbB3jR7jk983rXGDPNGDOtaUJMRbmexMbG8pvf/Ia1a9c2WysqLi5mx44drFy5slkQgncNafr06c0yQYAlTqNGjfIRp8TERAYNGuQTNl5aWsqZM2eaVdP1XiOQC8/r8ruS5ORkn/MAXLx4kdtuu83Hdeh2u8nOzubuu+/2GaMo1xrbG3W9KY6uxBjzY5unmA0sF5HFQGegh4j8xRjj/SlWKyJ/AF7wfD4LDGsyfqinTVFalffee4+amhrefPPNZms8OTk55OTksGxZc8eCy+Vi48aNLFiwoNkGWrCslFGjRvmIUEZGBl26dPFxA9bV1REXF8fy5ct95hUdHc2jjz7qs+6Uk5PDgAEDfFx7dXV1FBcX+xWo/fv3+0QcglUcsWl1X0W5njhx8V1q8nJhBTGMsDvYGPOyMWaoMWYE8EVglzHmy951JU/U3kqscvIAkcCTnhyAM4GLxpjzDuarKNeU+vp6Xn31Ve644w6++c1vNhOCtLQ0SkpKfKyXuro6NmzYwKJFi/yK08iRI33EKSsri9raWiZMmNCs3VsX6sqIPbDC1e+8806f9EQNDQ1kZmb6DR8PZG2dP3+eQYMG+a3t5C81kqJcL2xbUMaYt5t+FpFfANuuwRw+8GSlECAF+LqnfQtWiHkWVpj509fgWooSFsXFxbz22mt897vf9bFq9u3bR9++fX1EoLq6mm3btrFixQqfcGyvOA0bNqxZe15eHhcuXPAJSQcrI8T8+fN9zlVUVER5eblPuLp3zJVZJMAKmLj99tt9XHgAKSkpLFq0yKf96NGjjB07VosSKi2Gk1x8V9IVy+3mGGNMDBDjee/7E47Gir3fCnNuinLNSEtL47333uONN95olp4oUMJXsNZw9uzZw8qVK30e6Hv37uXOO+/0EaeioiJOnDjh10JJSEhg3Lhxza4PlvvwwIEDfl1+R48e5a677vKJwjPGkJGR4dcSy87O9gm88PL+++/zox/9yO8xRbkeOFmDSseThw+IAPoDP7kek1KUtsKnn37KiRMnWLt2bbP8dIESvoIlNElJSSxbtsyvOI0YMcIniq+yspJDhw75JIoFKwtF165dfQQNAq8J1dTUkJub6/fYgQMHfAoWejlx4oRf6yk/P58+ffr4ZJ9QlOuJEwuq6dbzBqDAGNNwjeejKG0Ct9vN22+/zYgRI3jxxeaBpVVVVezYsYOlS5f65KfLz8/nxIkTfgMMYmNjGT58uI841dbWsmvXLr9WUEFBAUVFRX5dfomJidxzzz0+m3fBCpjwJzRVVVXU1tbSu3dvn2P+Kuh6ee+993j22Wf9HlOU64WTIIlvNgkvP2uMaRCRn1+3mSlKK1FVVcXzzz/PggUL+PznP9/s2IULF4iNjWXlypU+4nTq1ClOnz7tN/AgNjaWYcOG+WT+drlcbNq0ya+1dfnyZRITE/2K09mzZ3G73X6tqsOHD3Pvvff6TUO0Z88evxkjjDHk5eX5PV9ZWRki0iy3oKK0BE4Eynel1YrkU5R2w6lTp3jppZd4+eWXmTx5crNjWVlZjS6wK8Xk2LFjlJSU+BWTuLg4hg0bxogRI5q1G2OIjIxk2bJlPuUtvFVx/VlBdXV1pKSkNKvC66WiooLy8nIfKw0s993o0aP9BjkcPHjQJ2Gtl/fee49//ud/9ntMUa4nIV18IvIN4JvAyCtSG3UH9l+viSlKS7N792527tzJ2rVrfQILUlJScLvdfvPSpaamAjTLJuElLi6O22+/3UecwMqvt2DBAp9rgZUA9rHHHvMRLrDWnfwJF1ibfq/chwWWy/LkyZN+AyPcbjdlZWX07dvX59jly5cpLS31CQJRlJbAzhrUh0AU8CbwUpP2SmNM6XWZlaJcT1wumDYNbr8dNm3CGMO7775LREQEP/3pT326x8XFMXDgQL/ZEw4dOkS3bt18UguBFX5+++23++TiA2uNaObMmT77lrzjpkyZ4rOxFqwNtDNmzPAbHn7gwAFmzpzp10Lau3evX9ee95iP8OblwZNPUnP8OK927QoDBsB3vuN3vKJcL0K6+IwxF40xp40x/wRUAAOB4cBEEfH9OakobZ1f/hI8glJXV8cPf/hDxo4dy9e+9rVm3YwxREVFcdddd/kVp3379tGnTx+/4rR//34GDx7sV5zi4uIYN26cX4slIyODvn37Nqug6+XUqVPcdtttPqmSAAoLCwEYMGCAz7GSkhJuvfVWn43CYAVoNDQ0+Iphx4643nqLN554glsPH4b//E/IzPQZryjXE9trUCLyNayihduA1z1/vnZ9pqUo14n8fNi8Gb72NWpra1m9ejXPPPOMT1LU+vp61q9fz5w5c5rl2vOye/duhg8fzl133eVzbP/+/QwaNMjvfqJDhw4xePBgvy6z/Px8qqqqGDt2rM+x6upqTp486TfZqzGGAwcOMGvWLL+3HB8fH/BYoKAJBg/m7zk5fO5zn4Pu3S1BP6uZxpSWxUmQxHewErqeMcY8AtwHlF+PSSnKdeO734W33uJEVhbZ2dn8/Oc/91kfqqysZOPGjSxdutSnZIU3eGHChAk+KYrAcrMNHDjQrzilp6fTtWtXv6JWWVnJkSNHmDlzps8xYwzbt29n4cKFfm8poMhgbTL2l2ECrICKLl26+HUXGmNISEiw5nP6NBw+DAGCKBTleuFEoGqMMTUAInKrMeYYMOb6TEtRrgObNsGAAfxPdjaHDx9m3PjxPm6v8+fPExcXx6pVq3zCyI0xbNq0iZkzZ/p1pR04cIABAwb4FaCTJ09SV1fnk18PrFDz6OjogALkLSbob20pNzeXnj17+q3N1NDQwLlz5/xG9IHlovQXdQhNcu5VVcHnPgfvvANXbEhWlOuNk426+SLSC1gP7BCRMsB2uQ1FaW3csbFUffABS//2N7p26AAVFfDlL8Nf/gJYIlJQUOA3Qs7lchEZGcljjz3mN3ghPj6e/v37+xWnvLw8ioqKAmZv2LJlC0uWLPErQMeOHWPQoEF+9yC53W5SU1P9Ru1B4GSwYG0AHjBgQMC8elFRUfzizTdh2TJ44gn4h3/w209Rrie2LChPpvFnjTHlxpjXgB8Bv8fKPq4obZ6LFy/yXE0Nufv20bWwED7+GObNaxSn5ORkLl265Nei8GYkX7JkSUBx6tevn08SWbDSHp08eTKgOMXExDBr1iy/oebl5eWcP3/ebxAGWJGA/hLBgrWRt1+/fn7PC9b9Tp061e+xpKQk7ps8Gfna16y1p9Wr/fZTlOuNLYHyJG7d0uTzHmNMpDGm7rrNTFGuESdPnuSVV17h1Vdf9ZvKZ+/evfTo0cNnYy7ApUuX2LJlCytWrPD7sE9ISKBv375+xamyspKDBw8GtGIOHz7MsGHDfKrlguVO9Lr2At3TsGHDfMq0e0lJSfFb5wmsaEB/0YVe/vrXv/LFYcPg/fdh1y6YPNl6bdkScIyiXA+cuPiSRWS6MebQdZuNolxjtm/fzv79+1m3bl3zYIC5czEPP0zUli1MmTLFb1h3WVkZ+/btY8WKFX5dYQkJCfTp08dvCHptbS07d+5kxYoVfueVk5OD2+326xL0znvBggV+r1tXV0dWVlbAzboHDx70u2nYy/HjxwOOzcrKYvjw4XScOxeM8dtHUVoKJwJ1P/BlETmNVbRQsIwr30poitLKGGP4zW9+Q7du3Xjttdd8jtfX17Np0yYWLFjgd7NsQUEBKSkpLF261OcYWCLQu3dvv+LkcrnYvHmz31IbYAnfqVOnAhb+S01NZdSoUX73LYFV4ylQVdvLly9TUVHhN4gDrH1W/gI1vPzxj3/k5ZdfDnhcUVoSJwKldZ6VG4KamhrWrFnDihUr/K79VFRUsHPnTpYtW+Y3xDovL4/s7OyAInDo0CF69erF6NGjfY558+stXbrUb5qi+vp69u7dG9CyKiwspLKy0u9+J7BC1cePH+933mCtaQUryZ6XlxfQerpw4QLdunULKIyK0tI4CTPPBR4EnjLGnMGqDeW7pV1RWpFz587x/PPP8+1vf9uvOJ09e5YDBw6wcuVKvw/57Oxs8vLyAq79HDp0iB49evgVJ4DNmzezcOFCv+tVwUq2w2fFBwOFfl+6dImCgoKA60enTp1i+PDhfoURQrv+fv/73/tk01CU1sSJQP0GmAX8k+dzJfCf13xGihImCQkJrFu3jl/84hd+y0YcP36cnJwcHnvsMb+ut6NHj1JWVhYw4i4xMZEePXowZoz/7X87duxg1qxZAS2Q6OhoHnnkkYDWT6Ds5V527doV0C1ojOHo0aOMHz/e73G3201paanfgAywrMq6urqAxxWlNXC0BmWMmSIihwGMMWUi4j+GVVFamA8++ICSkhLeeustv+KTlJREREREQOskJSWFDh06MG3aNL/HExMT6datW0Bxio2NZfz48X7z64FlvYwePdrvhlrv8UmTJgUMCz906BDTpk0LuG8pNjaWBx980O8xsPL/BTv+hz/8QUtqKG0OJxZUvYhE4Cn7LiL9Afd1mZWi2KShoYGf/OQn9O7dm2effdbvAzwmJoZevXr5DSMHSxy6dOnCvff6j/dJSkqiW7dufnPkgSUeQ4YMCViS4sSJE9x6660+xQq95OXlISJ+UycBlJaWUltb6zcnIFh7vACf0vNe6urqqKurC2jZ1dbWcuHChYDzU5TWwolA/Qr4FBgoIj8D4oA3rsusFMUGZWVlrF69ms9//vMsXrzY57g3NdG4ceMChnPHxsbSv3//gJZRUlISXbt2DShO6enp3HbbbQHPX1hYyIULFwIGPdTW1pKWlhZ0bSguLi6g5ec9Hsw62rNnj08y3KZ8+OGHfOlLXwp4XFFaC9suPmPMByKSBHid4CuNMUevz7QUJThHjx7lt7/9LT/+8Y/9pgGqq6tj06ZNPPbYY0HXhMaNGxfQ8klOTqZLly4BMzmcPHmS+vr6gMlYa2pqOHjwYMBQdbDWnYIdj42NDSpOmZmZjBs3LqDrr6qqis6dO/vkFfTidrs5cuQITz/9dMBrKEprYVugRKQzsBgrks8N3CIiOd4EsorSUmzevJnDhw+zbt06IiIifI5fvHiR3bt3s2LFCr/HvXWeZsyYETAoIDk5mc6dOwcMOsjNzQ2aX897jUDh5GBZPrNmzfI7R7AiEjt37kyfPn38Hne5XJw+fdqv9dj0GsHCziMjI1m+fHnA44rSmjhx8f0ZmIDl6vsPYDzw/vWYlKL4wxjDO++8w8WLF3nllVf8Ptjz8/OJj48PKE5ut5vIyEjmzJkTUJwOHz7MrbfeGlCcCgsLycrKCihOYFlGCxcuDBjynZWVRffu3QNuqDXGkJiYGNT1FxMTEzCNknee/fr1C2hdGWPYu3dvUPegorQmTqL4Jhpjmv6P3S0iWmJTaRGqq6t59dVX+cIXvsCMGTP89jl27BilpaUBLYaGhgYiIyNZtGgRXbp08dsnJSWFW265JWC2hYqKChITE4NaLfv27WPSpEkBXYuXLl0KuhEYmpS7CEBhYSHdu3cPmIsPrPWzYGHrcXFxPPTQQwEFTFFaGycWVLKINFZTE5H7gUSnFxSRCBE5LCKbPJ/vFJEEEckSkb96Q9dF5FbP5yzP8RFOr6W0D3Jzc/n+97/P888/H1CcDh06RF1dXUCrpqamho0bN7Js2bKg4tSxY8eA4lRTU8Pu3buDPvQzMzPp3bs3Q4YM8Xs8VPFBsDbcDhw4MGhGh0OHDgX8LgBOnz4dMipvw4YN6t5T2jROBGoqsF9ETnvy8R0ApotIuoikOTjPd4CmwRU/B9YZY0YBZcBXPe1fBco87es8/ZSbjLi4OH7729/yi1/8ImCY9e7du+nbt2/AMPHKykq2bdvGihUrAgYLpKam0rFjR7/ZzsFa79myZQvLli0LaHGcPXuW8vLygK5B+KxGU6BzNDQ0cPTo0YCBF2CtjwUKmfcSbNMuWDn5xo8fH9AFqShtASf/Oh8H7gQe9rzu9LQtBfxXTLsCERkKLAF+5/kswDzgb54uf+KzGlMrPJ/xHJ8v6ou4qXjvvffIyMjgjTfe8OvKMsawceNGJk6c6LfEOkBJSQmxsbEsX7484MM4NTWVDh06BBQnYwwbNmwImF8PrGi5tLS0oOtSmZmZ3H777QE364KVjSKYdVVXV0dxcXHAyEPvdYKJE1ih5U888UTQPorS2jgJM78W1XPfAb4PdPd87guUG2MaPJ/zAe//vNuBPM+1G0Tkoqd/8TWYh9KGqaur4yc/+Qlz584NuA5TW1vLpk2bWLRokd8igmCVb8/MzAy6XpSWlkaHDh2CWiybN2/mscceC5jlwe12s337dlatWhXwHGVlZRQUFPDII48E7JOZmcmoUaMCWnlgWWCPPvpowOMAZ86cCeqGzMvLo3///tx6661Bz6MorY1tC0pEponIpyKSLCJpTl17IrIUKDTGJIU108DnfUZEEkUksaio6FqeWmkFCgsLWb16NU8//XRAcSorKyMqKoqVK1cGFKfTp09z8uTJoIEGaWnWP99g4rRjxw4eeOCBoOtB3gSwgQx8t9tNTExMUHG6fPky+fn5fst3eMnNzWXIkCEBc/mBlZIpULomL++9956mNVJuCJxE8X0AfA9IJ7wUR7OB5SKyGOgM9AB+CfQSkY4eK2oocNbT/ywwDMgXkY5AT6DkypMaY94F3gWYNm2aVli7gTl8+DDvv/8+//Zv/+a3RhNYv/6PHj3KypUrA57nxIkTlJaW8tBDDwXsk56eDhBw3QqsTbITJkwIuA8JrCwNM2fODGqNbN++PWjEHlibhgNlOW8652B9jDEUFxcHFajS0lIiIiKCuhkVpa3gRKCKjDGR4V7IGPMy8DKAiMwFXjDGPCEi/wv8I/Ax8BSwwTMk0vP5gOf4Lk/peaUd8r//+7+cOXOGX/ziFwHXeTIzMykvLw+6RpOenk5DQwMzZ84M2sftdgdMPwRWfr7bb789YDQeWFF/Q4YMoX///kH7jBkzJqClB58FPQQLWDhw4EDQe4LQKZFArSflxsJJkMQaEfmdiPyTiPyD93UN5vAisFpEsrDWmH7vaf890NfTvhp46RpcS2ljuN1u3nzzTTp16sQLL7wQ8CGdkJCAy+UKGoSQlJREhw4duO+++wL2ycjICClO6enpdOvWLWDgBVguxPr6+qAuuQsXLnDp0qWA9ZvAynpRUVHhtzyIl0uXLlFTUxMwUzpY0X81NTUBLU+w3IhlZWVBRVdR2hJOLKingbFAJz5z8RngE6cXNcbEADGe96cAnw0dnhRKn3d6buXG4eLFi6xZs4avfvWrQdeBoqOjufvuu4Pu69m/fz8DBgxg1KhRAftkZGTQ0NAQNET75MmTNDQ0BJ1PeXk5WVlZQYMVGhoaOHjwYMh9Rnv27GHZsuBBsHv27OHxxx8P2SdYQliA999/nyeffDJoH0VpSzgRqOnGGP8pnxXFISdOnODXv/41r732WkDLwOVysXHjRh566KGg60AxMTGMHDmSO+64I2CfI0eOhBSn3NxciouLmTVrVsA+DQ0NxMTEBM2xB1aqo1Cisn//fmbNmhU0k0NWVhYjR44M6v6rrq4mIiIiYJQhWN9lVlYWzzzzTNA5KUpbwomLb7+IBN9coSg22Lp1Kx999BHr1q0LKE6XLl1i/fr1LFq0KKg4bdu2jbFjxwYVp4yMDOrr64OKU2FhIdnZ2UHFCWDTpk1BI/bAckfed999QQWjoKCAiIiIoOtXxhiOHz8esNSHl9jY2KABIQCffPIJ//AP18IjrygthxMLaiaQIiI5QC0ggDHGBA6DUpQmGGP49a9/Ta9evVizZk3AfhcuXCAxMZF/+Id/CJrodNOmTcyZM4fevXsHPJcdt97FixdD5tcDy9X48MMPB92nlJubS0RERNCNtMYYEhISQrr/9u7dG1J4ysrK6NGjR1ALyxhDfHw8n/+8esyVGwsnAhXcX6EoQbh8+TKvvvoqn/vc54JGo508eZJz584FrZHkdf0tWLAg6P4kO+JUU1NDTExMSLFITExk1KhRQcWwtraWjIyMkEK3e/fuoHuiwBLNDh060L1796D94uPjQ7oSd+/eHTTruaK0VZy4+HKxakE95ckqYYCB12VWSrsiLy+PF154ge9+97tBxSk5OZmqqqqgi/11dXVs2LCBRYsWBRWn9PR0XC5XUHFqaGgImV8PrHWgjh07MmLEiIB9wHJdhtrvdObMGfr06RNSePbt2xcyZPzcuXMMHjw4ZDbyqKiokKKpKG0RJwL1G2AW8E+ez5XAf17zGSntin379vEf//EfvP3220HdXjExMfTo0SNoiHh1dTWbN29mxYoVQTfG2tnn5M3jt2zZsqDuseLiYvLy8kImZ42NjeWBBx4IWHwQLMsvPT095LkyMzMZO3ZsSOFJTU0Nea4jR44wfvx4Lamh3JA4Eaj7jTHfAmoAjDFlQOBVYOWm549//COpqan827/9W8C6RV6hGDduXNAQ8fLycnbu3MnKlSuDikBaWhrGmKDiBFaww8KFC4OuJ9XW1rJ///6Q7risrCx69eoVNOABrDWsBQsWBO3jdrs5ffp00D1YANnZ2dx1111B+wB89NFH/NM//VPIforSFnEiUPUiEoHl2kNE+hNeyiOlnVNfX8+rr77K7bffzje/+c2Av95ra2v55JNPmD9/PgMHBvYWFxYWkpCQENIV582tFyx9EViph2bPnh3URWiMYcuWLSHTD1VVVXHq1Kmg+6YAjh8/zvDhw0MmaLWzPgVWmP7o0aOD9iksLKRHjx5BixoqSlvGiUD9CvgUGCAiPwPigDeuy6yUG5aioiKee+45nnzyyaDWQklJCdu2bQua8BWs9auMjIyQazupqalAaHHau3cvEydODBq6DpaILViwIKi1ZoyxZRXV1taSk5MTMly8qKiIbt26BSyo6CU9PT1gUcWm/OEPf+ArX/lKyH6K0lYJGcXnTeRqjPlARJKA+Vgh5iuNMUdDDFduIlJTU/nDH/7Am2++GTQI4PTp02RlZYWMnMvOzubChQshI9C89ZxCWTGHDh1i2LBhIVP9xMfHM2HChKBpg8AqffHII4+EXN/ZsWNH0PIXXg4ePBjSYgPIz88Pea81NTVUVFQwYMCAkOdTlLaKnTDzg8AUAGPMMeDYdZ2RckPyt7/9jezsbNauXRs06CA9PZ3Lly+HrGmUmZnJpUuXmD17dtB+KSkpREREhHxgp6Wl0a1bt6B58cCqRNutWzeGDh0atN+RI0dCFh/0XnfixIlBLTFvv1DrZmCvnAZYBQm/9KUvheynKG0ZOy4+Df9RAuJyuXjjjTfo0KEDL774YlBx2rdvHx07dmTGDJ/Ui804fPgwDQ0NTJ8+PWg/u+J0/PhxXC4X48aNC9rv/PnzlJSUBKys66W0tJSioqKQLrvq6moKCwtDhqc3NDRw/vz5kKLoLacRKhjDGENmZqYtN6CitGXsWFD9RWR1oIPGmLXXcD7KDURZWRlr1qzhX/7lX4I+DI0xbN26lXvvvTdoqDlYZSX69u0bMgAgJSWFjh07hhSTM2fOUFpaGjKFUXV1NcnJySFdbG63m7179watR+Vl165dtvYf2Q2MSEhI4P777w/Zz079KUW5EbAjUBFAN9SSUpqQkZHBu+++y+uvvx40u0J9fT2bNm1i/vz59OjRI+g5Y2JiuPPOO4NmLQfLwurUqVNIcSooKODUqVMhH/5ut5utW7cGLdnuZdu2bbYe/ocPH2bSpElBLUrvHHv37h00bx9YIl9eXh70u/ayY8cO/v3f/z1kP0Vp69gRqPPGmB9f95koNwx///vfOXHiBOvWrQu6tlJRUcHOnTtZunRp0P1Gxhi2bdvGfffdFzTcHKwH/y233BLSfXXx4kUOHz4cMg0QwJYtW1i0aFHIYIfDhw8zduzYkFF2VVVVlJWVBd107CUpKcmWlbVv376Q63Fg/XCYMGGCbsxV2gW6BqXYxrveJCK8/PLLQcUpPz+f/fv3s3LlyqDi5Ha7iYyMZObMmddMnLz59exYOrGxsUybNi2k6BQUFHD58uWQQRZg32WXlpYWcv0MrO/o0qVLIdMjgW7MVdoXdgRq/nWfhdLmKSsr47nnnmP58uUhyzYcPXqUM2fO8Pjjjwf9Jd/Q0MD69etZsGABvXr1CnrO5ORkbr311pDi1NDQwObNm0Nu6gUronDAgAEMGjQoaD+Xy0VCQkLQar5eEhMTmTp1ashru1wuzp49G7SSrpfY2FgefPDBkP1KS0u57bbbdGOu0m4I6eIzxpS2xESUtovd9Saw9vJ06dIlpDvq8uXLREVFsWzZsqAWFlji1LlzZ8aPD16OzBhDZGQky5cvD7n2k5eXR3V1tS0Lxu6608WLF7l06ZKtkuoxMTG2rKyGhgZqa2uDbmb28uc//1kr5irtCiflNpSbkE8++YTjx4+HXG8CK9fcqFGjQoZVX7x4kT179rBy5cqQQpKUlETXrl1DhoiDlV/v8ccfDyl4FRUVZGZm2hKd5ORkJkyYEDJFEVhZKoKVCfFSWlpKly5dbFk6sbGxIUu5g2WR2QlVV5QbCSepjpSbCJfLxZtvvgkQcr2poaGBTz/9lKlTp4YUp4KCAg4cOBAyizg4E6ft27czZ86ckJaGy+UiOjqahQsXhjxnQUEBNTU1IaMKwQoBnzFjhq3ghPj4+JBh72CVFnG73bbE0U7eQEW50VCBUnwoLy9n9erVLFu2LOR6U0VFBZGRkSxZsiSk++/MmTMcOXIk5NoUWGs5dsVp79693HPPPbZCsDdv3szSpUttrRHFx8fbWncqLS2lvr4+ZJAHwLFjxxgzZowtIbNTyt3L3r17ba1TKcqNhLr4lGYcOXKE//7v/7a13pSfn09GRgarVq0K+cA9ceIExcXFtiq7JiYm0q1bt5CZGsCyXIYNG8bgwYND9t29ezezZ88OuecIrOKDdkLUwQoBX7ZsWch+xhhOnTplK6y8rq4OEQnprgQrU4Zd0VOUGwkVKKWRTz75hGPHjtlabzpy5AgVFRW2HuLp6enU19fbskYOHTpE9+7dbYlTamoqPXr0sBX6nZyczB133EHfvn1D9k1KSmLixIm2XGv79++35a4DZ1aOE+vpww8/5Pvf/76tvopyI6EuPqVxvcntdvODH/wgpDjt378fwNaD+dChQ0RERDBlyhRbfe2K04kTJ3C73bZcgDk5ORhjbBX4u3DhAnV1dbbWnYqLiwHo169fyL5VVVUAtvYy1dfXA9iyniorK+nQoUPQ2laKcqOiAnWT411vWrp0Kf/4j/8YtK83p94dd9xhKxFpbGwsffr0CRkeDpY49ejRw5Y4nTlzhpKSEluZGsrLy8nOzmbq1Kkh+7pcLg4ePGjbIrK7RgWW9WTXIrK77wnggw8+4Mtf/rKtvopyo6ECdRNz5MgRXn31VdasWRNyP1BdXR3r169n9uzZtkKZo6OjGTlypC2r5eDBg/To0YMxY8aE7OvNr2dHRBoaGoiJiWH+fHt7zbdt22Z73Sk+Pp6ZM2fa6nv69GmGDx9ua42ooaEBt9tta53MGGO79Lui3Ii0mECJSGcROSgiqSJyRERe97T/UURyRCTF85rsaRcR+ZWIZIlImoiE9hEptvnkk0/YsGED69atC1ldtrS0lKioKJYvXx7SRWWMYdOmTUyePDlk5nKwxKlXr162xOnixYskJyfb2uAKn4Ve2xEG77qTHWEoKyujvr7elmsPrB8CdktfxMXF2baeDh48aFskFeVGpCUtqFpgnjFmEjAZeFxEvP+7vmeMmex5pXjaFgF3e17PAL9twbm2WxoaGvjpT3+KiNhab8rJySEpKYkVK1aE7OtyuVi/fj0PP/ywrYe3V5xCldaAz/Lr2bVwvBF7dtZxvOtOd9xxh61zx8XFMWfOHFt9k5OTba2/gfX91dfX2wrOAIiMjLQVPagoNyotJlDGosrzsZPnZYIMWQH82TMuHuglIqFjiZWAFBUV8dxzz/G5z33OVmmJlJQUiouLWbBgQci+dXV1bNiwgcWLF9sKBEhISKB37962xMnlcrFlyxZb+fXAiu4bOnSorYg9b549u+tOhw4dYvr06bbm4XK5KCgosBUCD86Er6Kigs6dO9uy+BTlRqVF16BEJEJEUoBCYIcxJsFz6GceN946EfH+fLwdyGsyPN/TduU5nxGRRBFJLCoqup7Tv6E5dOgQb775Jm+88YatyLc9e/bQtWvXkFVtwYpQ27x5MytWrLD16z8hIYE+ffpw9913h+zrza+3dOnSkJknAHJzc6mtrbV1brD2Oy1atMhW38rKSi5duhQyuayXPXv2MHfuXFt93W43tbW1IbOqe9Gs5crNQIsKlDHGZYyZDAwFZojIROBlYCwwHegDvOjwnO8aY6YZY6aFKoV9s/LHP/6R/fv38/bbb4e0btxuNxs3bmTs2LG2rJuSkhJiYmJYuXJlSBcgWMEFffv2tS0gmzdvZuHChbYshcrKSjIzM0OWlPfiZN0JLMGxkxcPLNGOiIiwLTh26z2BJdpZWVmMGjXKVn9FuVFplSg+Y0w5sBt43Bhz3uPGqwX+AHifLmeBprUIhnraFJvU1NTwgx/8gGHDhvGd73wnpFvq8uXLrF+/nkcffdRW2p5z586RlJRkK3UQWOLUr18/2w/WHTt2MGvWLFt7fNxuN9HR0bZLnRcUFFBbW2trvxNYtagmT55sO1uDk7ByYwzV1dW29zIlJSXZsmwV5UanJaP4+otIL8/7LsAC4Jh3XUms//krgQzPkEjgSU8030zgojHmfEvN90YnLy+P559/nq9//eu2wqwLCwvZuXMnK1eutPWr/9SpU2RlZdlKugrOxSk2Npbx48fbWkcC+1VxwRIzJ3uYqqurKS0ttZ0pPDc3l2HDhtkWs4MHD3L//ffb6guwfv16VqxYYbt/WNTUwIwZMGkSTJgAa9Zc3+spih9aMtXRYOBPIhKBJYz/Y4zZJCK7RKQ/VuXeFODrnv5bgMVAFlANPN2Cc72h2bVrFzt27ODtt9+2VdLh5MmTnDt3zlapCLAKElZWVtq2EA4cOMCAAQNs79c5dOgQQ4YMsRWmDpaYTZ8+3Xahvu3bt9sWVrC+Tzv587xkZGQ46n/x4sWQBRu9VFdXExERYTvSL2xuvRV27YJu3aC+HubMgUWLQMPalRakxQTKGJMG+Gz9N8b4zR5qjDHAt673vNoTxhh+/etf071798ZSGaFITEwkIiLC9tpKcnIyHTt2tL3Os3//fgYOHGhbnDIyMujatauj/v369bPlkvT2v+uuu2yvDaWlpTFx4kRbARpgRRBOmjTJVl+w8hROnDjRdv/169fbisC8akQscQJLoOrrrTZFaUE0k0Q7obKykueff56ZM2fy9NP2jM2dO3fSp08fWymDwFrI79atG/fee6+t/k7FKSsri9raWtubWs+dO0dFRYWtqESwLJXCwkLbARq1tbWcP38+ZI0rL8YYzp07Z9vyAzh//rytCrxeUlNTmTx5su3+V4XLBZMnw4ABsGABOHBDKsq1QAWqHXDs2DFefvllXnrpJVuWTUNDA+vXr+e+++5j5MiRtq4RHR3NHXfcYSuyDyxxGjRokG1xys/Pp6CgwFbOPLBcXSkpKbbXkYwxtsuse9m5cyePPvqo7f5OIvEAsrOzbX//AGfPnnUkZldNRASkpEB+Phw8CBkZIYcoyrVEBeoGZ/369fztb3/jnXfeYcCAASH7l5eXs3HjRpYsWRIyxRE0T100bNiwkP3BelAPGjTI9sO3uLiY48ePOwqzdrJ/CSAmJoa5c+faDlw4efIkI0eOtBU6D5boV1dX06NHD9tzys7OdhQq/vHHH/PFL37Rdv9rRq9e8MgjsHVry19bualRgbpBcblcvPHGG7hcLl555RU6dgy9nHj69GkOHTrEypUrbaUA8pZynzt3ru28c/v27WPIkCG2xamyspKEhATbCV0BoqKibFXl9ZKVlUW/fv3o2bOnrf5ut5sTJ07YyqzuxSuAdjl//rztdTOwRLmwsNDRmKuiqAjKy633ly/Djh3g4PtQlGuBFiy8ASkuLub111/nG9/4hq1SFmDt42loaLCVtgisPVHe9EJ2N7J6xclOAUGw1niio6NZuXKlrf5guQ4nTZpE165dbfWvqakhKyvLdg4/sPL4OXEFVlVVccsttzhKO5SWlmZ7zxZYe5+mTZtmu/9Vc/48PPWUtQ7ldsMXvgA2ozwV5VqhAnWDcejQIT788EN+9rOf2XYn7d69m2HDhtl2J5WXl7Nnzx5WrVplO3otLi6OoUOH2g4ocLlcbNq0iZUrV9q2hI4ePUqPHj0cBSFs377ddvg8WIlje/bsaVsAwbp3J2Hr1dXVjs4PsHHjRl5++WVHY66Ke++Fw4db7nqK4gcVqBsEYwy/+93vqKmpYe3atbaTlW7cuJE5c+bYdtGdP3+etLQ0li9fbls4nIqTMYaNGzeydOlS22s8hYWFFBYW2g6HB2v/1f33329bZMGyVJYsWWK7f2FhIf369XN0jQMHDjhyB3qznNvd56Uo7QVdg7oBuHTpEi+++CJjxozhX//1X20JR0VFRWN2cbvidOrUKU6cOMFjjz1mW5xiY2MZNmyYbXECaw1p/vz5tjeb1tXVceDAAUfilJ+fT6dOnRyt2cTHx9ve3+XFqevNGIPb7bYtzOAsy7mitCdUoNo4x48f58UXX2T16tW2Mzfk5uZy4MABVq1aZXtd5MiRIxQXFzsSgdjYWO644w7b+ezAysowffp0WyU5vHgLD9qloaGBlJQUR8JRVVVFTU0NThIOnzp1yvZ6m5eEhATHIhgdHe0o3F1R2gvq4mvD/P3vf+fYsWO88847tqL0wNrIWVNT42gBPjExkVtvvdXRgzMccdq/fz933323IxHYtWsXDz30kO37B+epjMDKVO4kPRFYPx6chLqDZdnajSYES2yNMVr3SbkpUQuqDVJfX8/rr79Ox44d+eEPf2j74bxnzx66dOniKPFoXFwcvXr14p577rE9Zu/evQwfPtyROCUlJdG/f3/be6nAinQbNmyYrf1aXtLT0xk7dqyjB/qRI0cYP368bbcmWJujnYShg7W3ymmJDCclPhSlvaEC1cY4e/Yszz33HE888YTtjNUul4vIyEjGjRtnO9MDWOUsRowY4eihuWfPHkaMGGG7PDpAZmYmnTp1sp1iCKzv4dKlS47GVFZWUlhY6Cg7g8vlIjc317Gr7vTp047H5OTkOJobOA95V5T2hLr42hC7du1i+/btvPXWW7bDkCsrK9mxYwdLliyxHXTgzQ7xwAMP2C5nAZY43XnnnY7E6dSpU1RVVTlyH16+fJmUlBRH605gPcyXLVvmeMy8eX7zFQckIyPDdr5AL+Xl5bYzlntpaGhARBy5NxWlPaH/8tsAbrebd955h969e/Pmm2/adjXl5eVx5MgRVq1aZXtMQ0MDGzduZOHChbYL5IElTiNHjnTkojt//jz5+fm2gzvAEs+oqChHm3fB2iQ8a9YsR266goICevbs6bh0RX5+vqMM5GDtX3Ma6BAXF8eDDz7oaIyitCfUxdfKlJWVsXr1aubOncvTTz9t+wGbnp7O2bNnHaX8qa6uZsOGDSxdutSROMXExDgWp4sXL5KamupInMByOy5YsMDRvqKzZ89yyy23OAq+ACs4xGll2pSUFMfZxI0xGGMciSdY37uuPyk3M2pBtSLJycn8+c9/Zs2aNfTu3dv2uL179zJgwABmOigeV1ZWxt69ex1lhwDrITlq1Cjb1WTBSi8UExPD8uXLbY8BK5Bi9OjRjkLQ3W43ycnJjl17hw8ftl1mpCkFBQWOBSo5OdlxmiJjDHV1dde/MKGitGFUoFoBYwx//OMfKS8vZ+3atbYFw+12s3nzZqZPn86gQYNsX+/cuXOkp6c7LhMejji5XC42b97syO0IVtCBMcbRhl/4zOJyQn19PUVFRY4FKjExMax8eCUlJbbLiHjJzMx0vM6lKO0NdfG1MNXV1bz88ssMHz6c5557zrY4VVRUsH79ehYsWOBInLKzs8nKynK0Lwqs4AGn4tQ0hZETK62yspITJ044fvgfPXqUESNGOE4BFE5knDGG4uJiR0ElYImT0zFgbU52usdKUdobakG1IMePH+dXv/oVP/jBDxwlPD19+jTHjx93bJVkZGRw+fJlx+tAu3btYsyYMY7mCLB161bmzZvnyC3ldrsdZzQHS+jz8vIcb8jNz89nwIABtsqNNCUpKcnxepV3nFMLDyyXrJP9X4rSHlGBaiH++te/kp2dzS9/+UtHYcPJycm4XC7HFtDBgwfp2rWr44fqrl27GDt2rOPKrTExMUyZMsVRwT6wRM1JoIeX6OhoR1nKvaSmpjoOXwfLEgpnHQlwfG9FRUWOAz4UpT2iLr7rTE1NDa+88grdu3fnBz/4gW1xMsawY8cOevXq5VhkYmJi6Nevn+NQ6HDF6eDBg4wYMcJxMb2EhATuvfdeunTp4vh606dPd+RGhPCi9sAKqHAaGHE113Naal5R2isqUNeRkydP8vzzz/Mv//IvjvK81dXVsX79eqZPn+4o84Axhi1btjB27FjHGQvCFaf09HS6devmOLghJyeHW265xdEaF0BpaSm1tbUMHjzY0biGhgZKSkoYMGCAo3FA2JVsy8vLHUVnesnIyHD840JR2iPq4rtO/O///m9jolcn6x2FhYXEx8ezfPlyRyUZvLWf5s2b59jNtnPnTsaPH+/4oZ+dnU1dXZ3jCLWqqqrGsh5OiYuLcxy+DpZVGU7KoPT09LDEorq62rFlCOHvmVKU9ohaUNeY2tpafvSjH9G5c2d+9KMfORKnY8eOcezYMcfidPnyZdavX8/ixYsdi1N0dHRY4nTu3DnOnTvnWJy8rkunwQ1gidPs2bMdjyspKaF79+5hZQQ/d+6c42ARsNyXTvapeTl+/DhjxoxxPE5R2iMqUNeQ7OxsVq9ezde+9jXHG0f3799PQ0OD44i70tJStm/f7qj2k5fo6GgmTJjgWJzKysrIyMgIKw2PtxSGUwvhwoULdOrUKayQ7YSEBEcZ3r0cPXrUccZyLy6XK6wcetHR0WFF/SlKe0RdfNeITz75hIyMDNatW+dIKNxuN1FRUdx3332O13/y8/PJzMx0vAEXrAfhxIkTHe2pAstai42NDcvNlpyczJgxYxylWQLL6jp06JBj0QfLKg3XIsnNzQ3LDXn27FnHf5deLly44PgHg6K0V1rMghKRziJyUERSReSIiLzuab9TRBJEJEtE/ioit3jab/V8zvIcH9FSc3VCbW0ta9asoUOHDrz66quOxKmqqooNGzYwb948xw+0EydOcPr06bBcZTt27AhLnFwuF1FRUWGFd+fn59PQ0OA4mAKs9aO5c+c6HmeM4dSpU9x1112Ox+bn5zsO4PBy9OhRxo8f73ic2+12HJmoKO2ZlvzfUAvMM8ZMAiYDj4vITODnwDpjzCigDPiqp/9XgTJP+zpPvzZFTk4Oq1ev5itf+YrjjaZ5eXns27ePlStXOl5MP3z4MJcuXWLOnDmOxoElTvfee69jcTLGEBkZ6ThLBFih9mlpaY5LnYP1PfXq1ctRfj4v+/fvD2vNClon1dDx48fDdikqSnukxQTKWFR5PnbyvAwwD/ibp/1PwErP+xWez3iOz5c2FNq0YcMG/vSnP7F27VrHhetSU1M5f/48jz32mOO1mP3799O1a9ewEp16xSmckOmoqCgeffRRx+tcxpjGzbhOcbvdpKamhnWvtbW11NTUOCqv7qWioiIsQQSr/pXTEH8v4QaBKEp7pUX9CSISISIpQCGwA8gGyo0xDZ4u+YA3ZOp2IA/Ac/wi4LNCLiLPiEiiiCQWFRVd5zuw9ii9/vrruFwuXnvtNcfZpnfv3s1tt90WljURHR3NsGHDwlpT2b59e9jitHv3bqZNmxbWQ3v37t3MnTs3LNfVzp07mT9/vuNxcHWl0uPj48OKwIPwquZ6yc3NdVQMUlHaOy0aJGGMcQGTRaQX8Clw1f4MY8y7wLsA06ZNM1d7vmCcOnWKtWvX8txzzzle16irqyMqKooHH3zQcY41t9vNpk2bmD17dlhRbNu2beO+++4La5NqfHw8I0eODGtseno6Q4cOdVxJFqwH/eDBg8PaS1RWVkb37t3DiqKrr6+nY8eOrbIPSfc/KUpzWiWKzxhTLiK7gVlALxHp6LGShgJnPd3OAsOAfBHpCPQESlpjvmBtvD169Chr16517OYqKCjg0KFDLFmyxPFDs66ujo0bN7J48eKwHtbbtm1jypQpYeV2S0tLo2fPngwfPtzx2IKCAioqKsJyWbndbjIzM8PKmQeWqIbjUgTLzRbO2h5Y2wzCtZ6Ki4vp169fWGMVpb3SklF8/T2WEyLSBVgAHAV2A//o6fYUsMHzPtLzGc/xXcabfbMFqa6u5oc//CFdu3Z1HKUHcOTIEbKysli6dKljcaqsrGTTpk2sWLGixcXJmyVi3Lhxjsc2NDRw8ODBsNdTdu3axbx588Iam5uby7Bhw8KyRIwx1NfXh7WhFyyrz+l6pJfDhw8zZcqUsMYqSnulJdegBgO7RSQNOATsMMZsAl4EVotIFtYa0+89/X8P9PW0rwZeasG5AlZOtBdffJFvfvObYf2a37NnDxEREWE9qAsKCoiNjWXVqlVhuaquRpwuXLjA2bNnwyrOB4QdFAGWwPTr1y8sQQbrB0G4eexSU1OZNGlSWGPBedbypoRTSl5R2jst5uIzxqQBPuFYxphTgE/EgDGmBvj8dZ/YwoWwaxd06AA//jG89BLGGN577z3Kysp45513HKUdAmsdIyoqigceeCAst01OTg5nzpxxlGC2KVu3bmXatGlhXbuyspLDhw+HXSwvISGBKVOmOK63BJYFk5aWFtY+K7B+UFxNaHhhYWHYInHhwoWwAlC8VFZW0uPee6F7d4iIgI4dITEx7PMpSnvg5t4V6HJBRgZ88gncfTd89BEV8fG88MILjB49mhdeeMGxOBUVFbF161YWL14clkAcOXKEoqKisDamghUOHq441dfXEx0dfVXWT6dOncLOohDuhlywxC0vLy/sKLiioqKrWgM6cuTItdk3tXs3pKSoOCkKN3uqo4MH4Z574N57QYS82bNJff55fhAZGVa03NGjRykuLg4rJY81HavIYDgh6GCJ0/Tp08N60Bpj2LRpE8uWLQvLVVVTU0NGRkbYVt+5c+fo0aMH3bp1C2t8YmJi2N8bWGtAV5sDL1wXX2VlZdj3rSjtmZvbgjp7FoYNw+12U1xSwonLl1kyeXJY4hQbG4sxJqwEqhB+kUEvUVFRzJgxI2wrICoqioULF4a13gXWmle4lpcxhqSkJMeZ0ZuOLykpCevvDawUTh06dAhbYGpqahzvh2tKYwYJEcvlPHUqvPtu2OdTlPbCzS1QWMlPf/zjH3Pbbbcxf948xw+phoYGIiMjGTt2bFj514wxbN68mXHjxoUdorxlyxZmzJgR9gPauxHXaRJXL7GxscyePTvsPHJxcXGOs7g35cCBAzzwwAOtNj4pKSnsgBKw8iqOHj0a4uIgORmiouA//xP27g37nIrSHripBerQuXPk7d/PCy+8QJfOnSE/HxzU/ikuLmbz5s0sWrQorGi5+vp6Pv30U+bOnRv2AvuWLVuYOXNm2OJ06NAhRowYEdZGXLCqBvfu3Ttsy624uJhOnTqFlZIIrD1TlZWVjutgNaW6upquXbuGPb62tpbOnTuHPb5x/5T3396AAbBqleWCVpSbmJtSoOrr63njjTc40bMno0XoVlYGxsDHH4PNMhLHjh3jyJEjrFixIqyItYqKCjZt2sTy5cvDtly84uQ0M4WXzMxMunTpEvbencrKSs6cOXNV5cmvJq0QWNZXuG5VsML5wxXna0V9fT231NdDZaXVcOkSbN8OWvZducm56QTq1KlTPPfcc3zuc5/jiaeegmHD4JFHIDMTTp+G+PiQ54iLi8PlcoWd6+38+fONmczDXfPZvHnzVYnTmTNnqKysDFtcjDFXlSsPLNfY1WxObWhooLa29qqsn7S0tKva+1RaWkrv3r3DHg+e4IqCApgzByZNghkzYMkSCHNNT1HaCzdNFJ8xhg8//JCcnJzm6Yr27LF9DpfL1bjeE65L7uTJk1y4cCHsfUZAY16+cB+MxcXFZGdnh52tAT5L5BpuYEFtbS2lpaVhB0aAtfZ1NWtXxpirzn+XlpZ2VRZcIyNHQmrq1Z9HUdoRN4VAlZeX87Of/YzHH3+cJ554IqxzFBcXs2/fPhYtWhR2KpyUlBTcbnfYDzRjDFu2bGHOnDlhJWAFa70lPj4+7M2wYLkG77jjjrBLUoCVziicYoteGhoacLlcVxU9l5KSElYpj6a43W7He+WaoiHmihKYdi9QcXFx/P3vf+eVV14JO5DgyJEjFBcXh1Vavek8BgwYYEVrhYE32u9qxMnlcrF161ZWrVoV1niAixcvUlBQwCOPPBL2ObKzsxkxYsRVPdhjY2Ov2nIpLi6+aoG6Ws6ePcvtDgJzFOVmot2uQTU0NPDzn/+c48ePs3bt2qsKwY6IiAh7vclbsG/kyJGtKk7GGDZu3MjSpUvDdmkZYxrrO4WLMYZjx46FlYTWi9vtpr6+/qqsp7q6urAtYS9VVVVXbf2cPXs27NLyitLeaZcWlLdu07e//e2wS2jX1NQQFRXFww8/HHYggsvlIjIyknnz5oUdRu0VpwcffDDsc4BVsHDevHlX9VDevXs388LYK9aUqykk6GXfvn1XXXk2ISGB+++//6rOkZaWdtUZyPPz88Mu76Eo7Z12J1AffPABp06d4u233w77F3Z+fj6pqamsWLEi7M2n1dXVREVFsWzZsrBFwZt+6KGHHroqcdq3bx/33HPPVe0VOnHiBAMHDryqc5SUlNC5c+ersjqMMVRXV4cdmu+lrq7uqvYuwdXvfwLrO9E6UIriH2mFEkvXDREpAs40aeoHFLfSdFqLm/Ge4ea875vxnuHmvO/2fs/DjTE+2Q7alUBdiYgkGmPCz0FzA3Iz3jPcnPd9M94z3Jz3fTPeM7TjIAlFURTlxkYFSlEURWmTtHeBuhlrFtyM9ww3533fjPcMN+d934z33L7XoBRFUZQbl/ZuQSmKoig3KCpQiqIoSpukXQmUiPQRkR0ictLzp9903yLiEpEUzyuyped5LRCRx0XkuIhkichLfo7fKiJ/9RxPEJERrTDNa4qNe/6KiBQ1+bv9WmvM81oiIu+JSKGIZAQ4LiLyK893kiYiV5faoo1g477nisjFJn/Xr7b0HK81IjJMRHaLSKaIHBGR7/jp0y7/vgPiLTnQHl7AW8BLnvcvAT8P0K+qted6lfcZAWQDI4FbgFRg/BV9vgn8l+f9F4G/tva8W+CevwL8R2vP9Rrf90PAFCAjwPHFQBQgwEwgobXn3EL3PRfY1NrzvMb3PBiY4nnfHTjh5994u/z7DvRqVxYUsAL4k+f9n4CVrTeV68oMIMsYc8oYUwd8jHXvTWn6XfwNmC9Xk0Sv9bFzz+0OY8xeoDRIlxXAn41FPNBLRAa3zOyuHzbuu91hjDlvjEn2vK8EjgJXprpvl3/fgWhvAjXQGHPe8/4CEKiqYGcRSRSReBFZ2TJTu6bcDuQ1+ZyP7z/kxj7GmAbgIhBeSve2gZ17Bvicx/XxNxEZ1jJTa1Xsfi/tkVkikioiUSIyobUncy3xuOTvAxKuOHRT/X3fcMliRSQaGOTn0A+bfjDGGBEJFEM/3BhzVkRGArtEJN0Yk32t56q0OBuBj4wxtSLyL1gWZPhlg5W2TDLW/+MqEVkMrAfubt0pXRtEpBvwd+C7xpiK1p5Pa3LDCZQx5tFAx0SkQEQGG2POe8zewgDnOOv585SIxGD9UrmRBOos0NQ6GOpp89cnX0Q6Aj2BkpaZ3nUh5D0bY5re3++w1iTbO3b+LbQ7mj64jTFbROQ3ItLPGHNDJ1QVkU5Y4vSBMeYTP11uqr/v9ubiiwSe8rx/CthwZQcR6S0it3re9wNmA5ktNsNrwyHgbhG5U0RuwQqCuDIasel38Y/ALuNZZb1BCXnPV/jil2P58Ns7kcCTnuiumcDFJm7udouIDPKuqYrIDKxn2Y38AwzP/fweOGqMWRug2031933DWVAh+Dfgf0Tkq1hlN74AICLTgK8bY74GjAP+W0TcWP+o/80Yc0MJlDGmQUS+DWzDim57zxhzRER+DCQaYyKx/qG/LyJZWIvNX2y9GV89Nu/5WRFZDjRg3fNXWm3C1wgR+QgrYq2fiOQDa4BOAMaY/wK2YEV2ZQHVwNOtM9Nri437/kfgGyLSAFwGvniD/wAD68fy/wXSRSTF0/YD4A5o33/fgdBUR4qiKEqbpL25+BRFUZR2ggqUoiiK0iZRgVIURVHaJCpQiqIoSptEBUpRFEVpk6hAKYqiKG0SFShFURSlTaICpbR5ROSHnvo4aZ7aP/df4/Pvb/L+WRE5KiIfNG23eZ6mdcZS/NWsatK3l4h882rmfT0Rkf8SkdlXtI0IUp+pyt/4QP3tXLvpOUVksYicEJHhTs+n3Li0t0wSSjtDRGYBS7Hq5NR60lPdci2vYYx5oMnHbwKPGmPywzjVZWPMZJt9e3mu9ZsrD3hS3ogxxh3GHK4VM4FvXeX4f78W1xaR+cCvgMeMMWeuYk7KDYZaUEpbZzBQbIypBTDGFBtjznl+zR/zWDpHPeU1ugKIyJdF5KDHivlvEYnwtD/pscJSReR97wW8v9RF5L+wCiJGichzV/yC9zs2FJ55HhWR/+exAreLSBestFx3eeb4755+x0Xkz0AGMExEVotIhuf13SbnC3TfP/b283z+mfivyvqUiCR57ifOz/FxwAljjCvIfY0UkcMiMj3QeMAVqL+I/Mhzv3Ei8pGIvODv2iLyEPD/gKVaceAmpLUrJupLX8FeQDcgBeuB9xvgYU/7CMAAsz2f3wNewMq1uBHo5Gn/DfAkMMFzjn6e9j5NrlHV5P3pJn2qPH8GHHvFXF2euXpf/8czzwZgsqfP/wBf9rRnNBk7AnADMz2fpwLpwG2e7+AIVtZ9v/fd5BzJnvcdsDL0971ijt2xkiPf4vncy899rAb+2U/7CCzxHAMcBiYF+A5XA/8cqD8w3fP9dPbM52STe2i8NlCPlVPx3tb+d6iv1nmpBaW0aYwxVVgP62eAIuCvIvIVz+E8Y8w+z/u/AHOA+Z7+hzwJN+djWUXzgP81nnIMxhgn1Vrtjr1sjJnc5PVXT3uOMSbF8z4J68HtjzPGqpKK514+NcZc8nwHnwAPBrlvjDGngRIRuQ9YCBw2zUuQgCWiXYC3RWSaMabczzweA7YGmGN/rCoBTxhjUgP0aTreX//ZwAZjTI2xKsduDDC2HtgPfDXAdZR2jgqU0uYxxriMMTHGmDXAt4HPeQ9d2RUQ4E9NRGKMMea1FpyuP2qbvHcReO33ks3z+btvL7/DyuL+NJZ11byjMdXARGAf8O6VgRoed2EvY8y5ANe+COTiEcUr8TM+aP8QY91YFQlmiMgPQo1X2h8qUEqbRkTGiEjTSqmTsUqpANzhCaIA+BIQB+wE/lFEBnjG9/FEfu0CPi8ifb3tDqZxNWMDUYnl3gpELLBSRLqKyG3AKk8b+L9vL58Cj2O50bZdeVIRudtjlX0MbMJyszXlEWB3kHnVeebypIh8yc/xK8f7678PWCYincWqHrs00LU9groEeEKsMjrKTYRG8SltnW7Ar0WkF9ZaThaWu68bcBz4loi8h7Wu8ltjTLWIvAJsF5EOWG6ibxlj4kXkZ8AeEXFhrYl8xc4EjFV3ys7YLvJZHR+wXFX/FeCcJSKyzxOGHQX85xXHk0Xkj8BBT9PvjDGHRWSEv/tuMq5ORHYD5cZ/kMMPPeJ2CWtd6/+74vgi4G/+5tzkGpdEZCmwwxNIsoXPrESf8Vf2N8ZEikgkkAYUYK21XQx0bWNMqYg8DuwVkSJj1f5SbgK0HpRyQ+J5UG8yxkxs7bm0JKHu2yPKycDnjTEnwzh/MnC/MabewZhJwP8zxsywO15Euhljqjxuvb1YPzp+5/TaSvtGXXyK0k4QkfFYFubOcMQJwBgzxaE4fR34CHjF4fh3PdZmMvB3Y0yy02sr7R+1oBRFUZQ2iVpQiqIoSptEBUpRFEVpk6hAKYqiKG0SFShFURSlTaICpSiKorRJVKAURVGUNokKlKIoitIm+f8BKrDNdzF2oK8AAAAASUVORK5CYII=\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "pp = PropertyPlot('HEOS::nHexane', 'TS', tp_limits='ORC')\n", "pp.calc_isolines(CoolProp.iQ, num=11)\n", "ax = pp.axis\n", "ax.text(S[0]/1000, T[0],'0', fontsize=10, rotation=0, color='r')\n", "ax.text(S[1]/1000, T[1],'1', fontsize=10, rotation=0, color='r')\n", "ax.text(S[2]/1000, T[2],'2', fontsize=10, rotation=0, color='r')\n", "ax.text(S[3]/1000, T[3],'3', fontsize=10, rotation=0, color='r')\n", "ax.text(S[4]/1000, T[4],'4', fontsize=10, rotation=0, color='r')\n", "ax.text(S[5]/1000, T[5],'5', fontsize=10, rotation=0, color='r')\n", "pp.show()" ] }, { "cell_type": "code", "execution_count": 161, "id": "532fbf5c", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] } ], "source": [ "pp.savefig('hexaneTScycle.png')" ] }, { "cell_type": "code", "execution_count": 162, "id": "1e31c635", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(614.9401723264456,\n", " -148.6307920302515,\n", " 148.6307920302515,\n", " 0.2416995973249732,\n", " -0.2416995973249732)" ] }, "execution_count": 162, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# get the differences between key states\n", "HEXboilerDiff = dfStates['H'].loc[dfStates.index[2]] - dfStates['H'].loc[dfStates.index[1]]\n", "HEXtdDiff = dfStates['H'].loc[dfStates.index[2]] - dfStates['H'].loc[dfStates.index[3]]\n", "HEXcondDiff = dfStates['H'].loc[dfStates.index[3]] - dfStates['H'].loc[dfStates.index[0]]\n", "\n", "HEXboilerDiff/1000, HEXshDiff/1000, HEXtdDiff/1000, HEXtdDiff/HEXboilerDiff, HEXshDiff/HEXboilerDiff" ] }, { "cell_type": "code", "execution_count": 163, "id": "19b82815", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "(10.0, 16.261744556658147, 2.416995973249732, 7.601082737989103)" ] }, "execution_count": 163, "metadata": {}, "output_type": "execute_result" } ], "source": [ "boilerDuty = 10e6 # 10 MW\n", "HEXmdot = boilerDuty / HEXboilerDiff\n", "HEXtdDuty = HEXmdot*HEXtdDiff\n", "HEXcondDuty = HEXmdot*HEXcondDiff\n", "boilerDuty/1e6, HEXmdot, HEXtdDuty/1e6, HEXcondDuty/1e6" ] }, { "attachments": {}, "cell_type": "markdown", "id": "917732de", "metadata": {}, "source": [ "## Superheated ORC\n", "* Fluid is Methanol\n", "* Calculate the bubble pressure of the fluid at 150 C. This is the vaporizer pressure. \n", "* Point 0. Condensed fluid. Quality is zero, temperature is 10 C. \n", "* Point 1. Pump discharge. Pressure is the calculated vapouriEr pressuee, entropy is the same as S(0). \n", "* Point 2. Vaporizer outlet. Pressure is the calculated vapourizer pressure, quality is 1.\n", "* Now we change the calculation sequence.\n", "* Point 4. Turbine outlet. Pressure is P(0), quality is 0.9. \n", "* Point 3. Superheater Outlet/Turbine Inlet. Pressure is P(2), entropy is S(4).\n", "* Point 5. Vapourizer bubble point. Optional Calculation. Pressure is P(1), quality is 0.\n", "\n" ] }, { "cell_type": "code", "execution_count": 164, "id": "893eff20", "metadata": {}, "outputs": [], "source": [ "# lets create a simple table for states\n", "# point 0 is bubble point liquid temperature\n", "# 1 pump discharge\n", "# 2 vapourizer dew point\n", "# 3 superheated\n", "# 4 turbine exhaust\n", "myFluid = \"Methanol\"\n", "Q = [0,0,0,0,0,0]\n", "T = [0,0,0,0,0,0]\n", "P = [0,0,0,0,0,0]\n", "H = [0,0,0,0,0,0]\n", "S = [0,0,0,0,0,0]\n", "\n", "Q[0] = 0.0\n", "T[0] = 273.15 + 10\n", "T[1] = 273.15 + 150\n", "Q[2] = 1.0\n", "Q[4] = 0.9\n", "\n", "P[0] = PropsSI('P','T',T[0],'Q',Q[0],myFluid)\n", "H[0] = PropsSI('H','T',T[0],'Q',Q[0],myFluid)\n", "S[0] = PropsSI('S','T',T[0],'Q',Q[0],myFluid)\n", "\n", "P[1] = PropsSI('P','T',T[1],'Q',0.0,myFluid)\n", "T[1] = PropsSI('T','P',P[1],'S',S[0],myFluid)\n", "H[1] = PropsSI('H','P',P[1],'S',S[0],myFluid)\n", "S[1] = S[0]\n", "Q[1] = PropsSI('Q','P',P[1],'S',S[1],myFluid)\n", "\n", "P[2] = P[1]\n", "T[2] = PropsSI('T','P',P[2],'Q',Q[2],myFluid)\n", "H[2] = PropsSI('H','P',P[2],'Q',Q[2],myFluid)\n", "S[2] = PropsSI('S','P',P[2],'Q',Q[2],myFluid)\n", "\n", "P[4] = P[0]\n", "T[4] = T[0]\n", "S[4] = PropsSI('S','P',P[4],'Q',Q[4],myFluid)\n", "H[4] = PropsSI('H','P',P[4],'Q',Q[4],myFluid)\n", "\n", "P[3] = P[1]\n", "S[3] = S[4]\n", "H[3] = PropsSI('H','P',P[3],'S',S[3],myFluid)\n", "T[3] = PropsSI('T','P',P[3],'S',S[3],myFluid)\n", "Q[3] = PropsSI('Q','P',P[3],'S',S[3],myFluid)\n", "\n", "\n", "# invent a state for bubble point fluid in the heater drum\n", "P[5] = P[1]\n", "S[5] = PropsSI('S','P',P[5],'Q',0,myFluid)\n", "H[5] = PropsSI('H','P',P[5],'Q',0,myFluid)\n", "T[5] = PropsSI('T','P',P[5],'Q',0,myFluid)\n", "Q[5] = 0.0\n" ] }, { "cell_type": "code", "execution_count": 165, "id": "7d017d7f", "metadata": {}, "outputs": [], "source": [ "# create a dataframe for these results\n", "MEOHstateNames = ['Condenser Bubble', 'Pump Discharge', 'Vapourizer Dew', 'SH Vapour', 'TD Exhaust', 'Vapourizer Bubble']\n", "MEOHdfStates = pd.DataFrame(MEOHstateNames, columns=['State'])" ] }, { "cell_type": "code", "execution_count": 166, "id": "2285d363", "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StateQTPHS
0Condenser Bubble0.0283.1500007.400186e+03-1.429067e+05-460.195881
1Pump Discharge-1.0283.3838551.393475e+06-1.411766e+05-460.195881
2Vapourizer Dew1.0423.1500001.393475e+061.127459e+062732.638884
3SH Vapour-1.0516.7181721.393475e+061.404935e+063335.987036
4TD Exhaust0.9283.1500007.400186e+039.319825e+053335.987036
5Vapourizer Bubble0.0423.1500001.393475e+062.786294e+05726.660532
\n", "
" ], "text/plain": [ " State Q T P H S\n", "0 Condenser Bubble 0.0 283.150000 7.400186e+03 -1.429067e+05 -460.195881\n", "1 Pump Discharge -1.0 283.383855 1.393475e+06 -1.411766e+05 -460.195881\n", "2 Vapourizer Dew 1.0 423.150000 1.393475e+06 1.127459e+06 2732.638884\n", "3 SH Vapour -1.0 516.718172 1.393475e+06 1.404935e+06 3335.987036\n", "4 TD Exhaust 0.9 283.150000 7.400186e+03 9.319825e+05 3335.987036\n", "5 Vapourizer Bubble 0.0 423.150000 1.393475e+06 2.786294e+05 726.660532" ] }, "execution_count": 166, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\n", "MEOHdfStates['Q'] = Q\n", "MEOHdfStates['T'] = T\n", "MEOHdfStates['P'] = P\n", "MEOHdfStates['H'] = H\n", "MEOHdfStates['S'] = S\n", "\n", "MEOHdfStates" ] }, { "cell_type": "markdown", "id": "2fa71957", "metadata": {}, "source": [ "\n", "|Num |State\t|Q\t|T\t|P |\tH|\tS|\n", "| ---| --- | --- | --- | ---| --- | --- |\n", "|0\t|Condenser Bubble\t|0.0\t|283.150000|\t7.400186e+03|\t-1.429067e+05\t|-460.195881|\n", "|1\t|Pump Discharge\t|-1.0\t|283.383855|\t1.393475e+06\t|-1.411766e+05\t|-460.195881|\n", "|2\t|Vapourizer Dew\t|1.0\t|423.150000|\t1.393475e+06\t|1.127459e+06\t|2732.638884|\n", "|3\t|SH Vapour\t|-1.0\t|516.718172\t|1.393475e+06\t|1.404935e+06\t|3335.987036|\n", "|4\t|TD Exhaust\t|0.9\t|283.150000\t|7.400186e+03\t|9.319825e+05\t|3335.987036|\n", "|5\t|Vapourizer Bubble\t|0.0\t|423.150000\t|1.393475e+06\t|2.786294e+05\t|726.660532|\n" ] }, { "cell_type": "code", "execution_count": 167, "id": "a0ff8a5a", "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Common.py:610: UserWarning: Please use \"calc_sat_range\" to calculate saturation and isoquality lines. Input ranges are discarded.\n", " UserWarning)\n", "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "pp = PropertyPlot('HEOS::Methanol', 'TS', tp_limits='ORC')\n", "pp.calc_isolines(CoolProp.iQ, num=11)\n", "ax = pp.axis\n", "ax.text(S[0]/1000, T[0],'0', fontsize=10, rotation=0, color='r')\n", "ax.text(S[1]/1000, T[1],'1', fontsize=10, rotation=0, color='r')\n", "ax.text(S[2]/1000, T[2],'2', fontsize=10, rotation=0, color='r')\n", "ax.text(S[3]/1000, T[3],'3', fontsize=10, rotation=0, color='r')\n", "ax.text(S[4]/1000, T[4],'4', fontsize=10, rotation=0, color='r')\n", "ax.text(S[5]/1000, T[5],'5', fontsize=10, rotation=0, color='r')\n", "pp.show()" ] }, { "cell_type": "code", "execution_count": 168, "id": "248441fd", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "c:\\users\\dorma\\appdata\\local\\programs\\python\\python37\\lib\\site-packages\\CoolProp\\Plots\\Plots.py:217: UserWarning: Detected an incomplete phase envelope, fixing it numerically.\n", " warnings.warn(\"Detected an incomplete phase envelope, fixing it numerically.\")\n" ] } ], "source": [ "pp.savefig('methanolTScycle.png')" ] }, { "cell_type": "code", "execution_count": 169, "id": "a1989553", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(1268.6356612860193,\n", " 277.476367921958,\n", " 472.9529668496668,\n", " 0.37280440813892396,\n", " 0.2187202964487688,\n", " 1.70448017029936)" ] }, "execution_count": 169, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# get the differences between key states\n", "MEOHboilerDiff = MEOHdfStates['H'].loc[MEOHdfStates.index[2]] - MEOHdfStates['H'].loc[MEOHdfStates.index[1]]\n", "MEOHshDiff = MEOHdfStates['H'].loc[MEOHdfStates.index[3]] - MEOHdfStates['H'].loc[MEOHdfStates.index[2]]\n", "MEOHtdDiff = MEOHdfStates['H'].loc[MEOHdfStates.index[3]] - MEOHdfStates['H'].loc[MEOHdfStates.index[4]]\n", "MEOHcondDiff = MEOHdfStates['H'].loc[MEOHdfStates.index[4]] - MEOHdfStates['H'].loc[MEOHdfStates.index[0]]\n", "\n", "MEOHboilerDiff/1000, MEOHshDiff/1000, MEOHtdDiff/1000, MEOHtdDiff/MEOHboilerDiff, MEOHshDiff/MEOHboilerDiff, MEOHtdDiff/MEOHshDiff" ] }, { "cell_type": "code", "execution_count": 170, "id": "e5c72e4e", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "(10.0,\n", " 7.882483762014836,\n", " 2.187202964487688,\n", " 3.7280440813892395,\n", " 8.472796608529995)" ] }, "execution_count": 170, "metadata": {}, "output_type": "execute_result" } ], "source": [ "boilerDuty = 10e6 # 10 MW\n", "MEOHmdot = boilerDuty / MEOHboilerDiff\n", "MEOHshDuty = MEOHmdot*MEOHshDiff\n", "MEOHtdDuty = MEOHmdot*MEOHtdDiff\n", "MEOHcondDuty = MEOHmdot*MEOHcondDiff\n", "boilerDuty/1e6, MEOHmdot, MEOHshDuty/1e6, MEOHtdDuty/1e6, MEOHcondDuty/1e6" ] }, { "cell_type": "markdown", "id": "c0819809", "metadata": {}, "source": [ "## Result Comparison\n", "\n", "|Process | Dry n-Hexane | Superheated Methanol |\n", "| --- | --- | --- |\n", "Geothermal Heat, MW| 10 | 10|\n", "Mass Flow, kg/s | 16.3 | 7.9 |\n", "Vapourizer temperature, C | 150 | 150 |\n", "Vapourizer pressure, kPa | 753| 1393|\n", "Superheat duty, MW | N/A | 2.2 |\n", "Superheat temperature, C | N/A | 244 |\n", "Turbine Power, MW | 2.4 | 3.7 |\n", "Turbine Exhaust Temperature | 63 C (53K superheat) | 10 C (90% quality) |\n", "Condenser Temperature, C | 10 | 10 |\n", "Condenser Pressure, kPa | 10 | 7.4 |\n", "Condenser Duty, MW | 7.6 | 8.5 |\n" ] }, { "attachments": {}, "cell_type": "markdown", "id": "ddbf5eb8", "metadata": {}, "source": [ "## Analysis\n", "The ORC with nHexane produces hot exhaust from the turbine. This represents a loss of power produced by the turbine." ] }, { "cell_type": "code", "execution_count": 171, "id": "5baa3b2f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(1.5424287514955017, 1.3110481081395076, 0.5994176715312729)" ] }, "execution_count": 171, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# compare with the nHexane ORC\n", "MEOHtdDuty/HEXtdDuty, (MEOHtdDuty - HEXtdDuty)/1e6, (MEOHtdDuty - HEXtdDuty)/MEOHshDuty " ] }, { "attachments": {}, "cell_type": "markdown", "id": "31c77525", "metadata": {}, "source": [ "The superheated ORC consumes 2.2 MW of energy from fuel and produces an additional 54% (1.3 MW) of electrical power , compared to the dry ORC case. This means that 60% of the fuel heating value was converted to power, which is substantially better than 35% efficiency for a SCGT or 50% efficiency for a CCGT.\n", "\n", "A fired superheater is inexpensive compared to the geothermal wells and turbine. Since the superheated turbineis 50% larger than the dry case, the superheated turbine is roughly 50% more expensive.\n", "\n", "The relative capital costs for the dry and Superheated ORCs are\n", "\n", "|Process | Dry | Superheated |\n", "| --- | --- | --- |\n", "|Geothermal well| 40 | 40|\n", "|Turbine | 40 | 60 |\n", "|Everything else | 20 | 20 |\n", "|Total | 100| 120|\n", "\n", "The superheated ORC facility should cost about 20% more than the Dry ORC facility.\n", "\n", "We can estimate the amount of CO2 that is displaced by each of these facilities. For most of the year, the Alberta power grid relies on inefficient SCGT and gas-fired boilers to ensure that power supply meets demand. Thus, we will assume that the power generated by the ORCs will displace power generated by these inefficient sources.\n" ] }, { "cell_type": "markdown", "id": "ce34f798", "metadata": {}, "source": [ "The higher heating value of methane is 55,500 kJ/kg. This equates to 49.55 kg CO2 per GJ, or 178 kg CO2 per MW.hr.\n", "\n", "Data from the EIA fuel heating rate (2022 data) [ref 5] shows that a simple cycle gas turbine has a specific heating rate of 11,030 HHV BTU per kW.hr.\n", "\n", "We compare the mass of CO2 that is displaced by the 2.4 MW dry ORC, with the 3.7 MW produced by superheated ORC and allow for the added CO2 produced by firing the superheater at 2.2 MW." ] }, { "cell_type": "code", "execution_count": 172, "id": "327fd541", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "518.0166283132487" ] }, "execution_count": 172, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scgtCO2intensity = 11030 / 1.0550559 / 1000 * 49.55 # 11,176 BTU per kW / 1.055 MMBTU/GJ / 1000 MJ/GJ * 49.55 kg CO2 per GJ\n", "scgtCO2intensity" ] }, { "cell_type": "code", "execution_count": 173, "id": "c0203118", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(1252.044104709525, 1541.8666975656079, 1.2314795395513018)" ] }, "execution_count": 173, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ORCredn = HEXtdDuty/1e6 * scgtCO2intensity\n", "SHredn = MEOHtdDuty/1e6*scgtCO2intensity - MEOHshDuty/1e6*178\n", "ORCredn, SHredn, SHredn/ORCredn" ] }, { "attachments": {}, "cell_type": "markdown", "id": "6b16284c", "metadata": {}, "source": [ "The superheated ORC reduces net CO2 emissions by 23% more than the dry ORC, even though we fired the superheater with natural gas. The analogy is the geothermal heat provides the heavy lifting, where the gas fired superheater adds value that becomes additional electrical power." ] }, { "attachments": {}, "cell_type": "markdown", "id": "40d33d2d", "metadata": {}, "source": [ "## Summary\n", "Both of the ORCs are good for providing a base supply of low CO2 electrical power. The addition of this base supply reduces the dependancy on the existing gas fired SCGT and CCGT power plants. This means that the Alberta power grid can implement more Opportunistic power sources from Wind and Solar facilities and still have a reliable power grid.\n", "\n", "The gas fired superheater results in greater reduction of CO2 emissions than the plain dry ORC. This is due to the high efficiency of converting energy from superheated gas to shaft power.\n", "\n", "A superheated ORC could be a good fit for Alberta in the quest for low cost power plants that utilize renewable energy and provide a reliable supply of low cost power. \n", "\n", "## References\n", "1. Alberta geothermal temperature map. https://ags.aer.ca/research-initiatives/geothermal-temperature-mapping\n", "2. NOAM LIOR, ENERGY, EXERGY AND THERMOECONOMIC ANALYSIS OF THE EFFECTS OF FOSSIL-FUEL SUPERHEATING IN NUCLEAR POWER PLANTS, Energy Convers. Mgmt Vol. 38, No. 15-17, pp. 1585-1593, 1997\n", "3. CoolProp,http://www.coolprop.org/\n", " * Bell, Ian H. and Wronski, Jorrit and Quoilin, Sylvain and Lemort, Vincent\n", " * Pure and Pseudo-pure Fluid Thermophysical Property Evaluation and the Open-Source Thermophysical Property Library CoolProp\n", " * Industrial & Engineering Chemistry Research, 53 (6), pp 2498 - 2508, (2014)\n", "4. NIST REFPROP,https://www.nist.gov/srd/refprop \n", "5. EIA data, 2022. https://www.eia.gov/electricity/annual/html/epa_08_02.html\n", "\n", "\n", "## Source code\n", "See kevindorma.ca\\blog\\. " ] }, { "cell_type": "code", "execution_count": null, "id": "c4065158", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "3af0fcbb", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.4" } }, "nbformat": 4, "nbformat_minor": 5 }