Skip to content

Commit

Permalink
Merge branch 'main' into add_gray_box_do_counting
Browse files Browse the repository at this point in the history
  • Loading branch information
avdudchenko authored Nov 21, 2024
2 parents d9ff557 + b0f9156 commit 2cd193a
Show file tree
Hide file tree
Showing 26 changed files with 2,916 additions and 427 deletions.
148 changes: 0 additions & 148 deletions Jenkinsfile

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ scale-up, operation and troubleshooting of innovative, advanced energy systems.
[![GitHub contributors](https://img.shields.io/github/contributors/IDAES/idaes-pse.svg)](https://github.com/IDAES/idaes-pse/graphs/contributors)
[![Merged PRs](https://img.shields.io/github/issues-pr-closed-raw/IDAES/idaes-pse.svg?label=merged+PRs)](https://github.com/IDAES/idaes-pse/pulls?q=is:pr+is:merged)
[![Issue stats](http://isitmaintained.com/badge/resolution/IDAES/idaes-pse.svg)](http://isitmaintained.com/project/IDAES/idaes-pse)
[![Downloads](https://pepy.tech/badge/idaes-pse)](https://pepy.tech/project/idaes-pse)
[![Downloads](https://static.pepy.tech/badge/idaes-pse)](https://pepy.tech/project/idaes-pse)
<!-- END Status badges -->

## Getting Started
Expand Down
1 change: 0 additions & 1 deletion docker/README.md

This file was deleted.

50 changes: 0 additions & 50 deletions docker/idaes-jupyterhub/Dockerfile

This file was deleted.

10 changes: 0 additions & 10 deletions docker/idaes-jupyterhub/README.md

This file was deleted.

35 changes: 0 additions & 35 deletions docker/ubuntu-conda/Dockerfile

This file was deleted.

10 changes: 0 additions & 10 deletions docker/ubuntu-conda/README-build.md

This file was deleted.

12 changes: 0 additions & 12 deletions docker/ubuntu-conda/README.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Cubic Equations of State
========================

.. deprecated:: 2.7
Use :class:`idaes.models.properties.modular_properties.eos.ceos` in the Modular Property Framework instead.

This property package implements a general form of a cubic equation of state which can be used for most cubic-type equations of state. This package supports phase equilibrium calculations with a smooth phase transition formulation that makes it amenable for equation oriented optimization. The following equations of state are currently supported:

* Peng-Robinson
Expand Down
4 changes: 2 additions & 2 deletions idaes/core/scaling/custom_scaler_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
Author: Andrew Lee
"""
from copy import copy
from enum import Enum

from pyomo.environ import ComponentMap, units, value
from pyomo.core.base.units_container import UnitsError
Expand All @@ -26,6 +25,7 @@
from idaes.core.scaling.scaling_base import CONFIG, ScalerBase
from idaes.core.scaling.util import get_scaling_factor, NominalValueExtractionVisitor
import idaes.logger as idaeslog
from idaes.core.util.misc import StrEnum

# Set up logger
_log = idaeslog.getLogger(__name__)
Expand All @@ -41,7 +41,7 @@
}


class ConstraintScalingScheme(str, Enum):
class ConstraintScalingScheme(StrEnum):
"""
Schemes available for calculating constraint scaling factors.
Expand Down
Loading

0 comments on commit 2cd193a

Please sign in to comment.