|
69 | 69 | "execution_count": 2, |
70 | 70 | "outputs": [], |
71 | 71 | "source": [ |
72 | | - "from propertyestimator.datasets.thermoml import ThermoMLDataSet" |
| 72 | + "from evaluator.datasets.thermoml import ThermoMLDataSet" |
73 | 73 | ], |
74 | 74 | "metadata": { |
75 | 75 | "collapsed": false, |
|
294 | 294 | } |
295 | 295 | ], |
296 | 296 | "source": [ |
297 | | - "from propertyestimator import unit\n", |
| 297 | + "from evaluator import unit\n", |
298 | 298 | "\n", |
299 | 299 | "print(f\"There were {len(data_set)} properties before filtering\")\n", |
300 | 300 | "\n", |
|
319 | 319 | { |
320 | 320 | "cell_type": "markdown", |
321 | 321 | "source": [ |
322 | | - ".. note:: Here we have made use of the `propertyestimator.unit` module to attach units to the temperatures and pressures \n", |
| 322 | + ".. note:: Here we have made use of the `evaluator.unit` module to attach units to the temperatures and pressures \n", |
323 | 323 | " we are filtering by. This module simply exposes a `UnitRegistry` from the fantastic [pint](https://pint.readthedocs.io/en/stable/) \n", |
324 | 324 | " library. Pint provides full support for attaching to units to values and is used extensively throughout this \n", |
325 | 325 | " framework.\n", |
|
431 | 431 | "execution_count": 11, |
432 | 432 | "outputs": [], |
433 | 433 | "source": [ |
434 | | - "from propertyestimator.thermodynamics import ThermodynamicState\n", |
| 434 | + "from evaluator.thermodynamics import ThermodynamicState\n", |
435 | 435 | "\n", |
436 | 436 | "thermodynamic_state = ThermodynamicState(\n", |
437 | 437 | " temperature=298.15 * unit.kelvin, pressure=1.0 * unit.atmosphere\n", |
|
459 | 459 | "execution_count": 12, |
460 | 460 | "outputs": [], |
461 | 461 | "source": [ |
462 | | - "from propertyestimator.substances import Substance\n", |
| 462 | + "from evaluator.substances import Substance\n", |
463 | 463 | "\n", |
464 | 464 | "ethanol = Substance.from_components(\"CCO\")\n", |
465 | 465 | "isopropanol = Substance.from_components(\"CC(C)O\")" |
|
486 | 486 | "execution_count": 13, |
487 | 487 | "outputs": [], |
488 | 488 | "source": [ |
489 | | - "from propertyestimator.datasets import MeasurementSource\n", |
| 489 | + "from evaluator.datasets import MeasurementSource\n", |
490 | 490 | "\n", |
491 | 491 | "source = MeasurementSource(doi=\"10.1016/S0021-9614(71)80108-8\")" |
492 | 492 | ], |
|
516 | 516 | "execution_count": 14, |
517 | 517 | "outputs": [], |
518 | 518 | "source": [ |
519 | | - "from propertyestimator.datasets import PropertyPhase\n", |
520 | | - "from propertyestimator.properties import EnthalpyOfVaporization\n", |
| 519 | + "from evaluator.datasets import PropertyPhase\n", |
| 520 | + "from evaluator.properties import EnthalpyOfVaporization\n", |
521 | 521 | "\n", |
522 | 522 | "ethanol_hvap = EnthalpyOfVaporization(\n", |
523 | 523 | " thermodynamic_state=thermodynamic_state,\n", |
|
0 commit comments