##############################################################################
# Institute for the Design of Advanced Energy Systems Process Systems
# Engineering Framework (IDAES PSE Framework) Copyright (c) 2018-2019, by the
# software owners: The Regents of the University of California, through
# Lawrence Berkeley National Laboratory, National Technology & Engineering
# Solutions of Sandia, LLC, Carnegie Mellon University, West Virginia
# University Research Corporation, et al. All rights reserved.
#
# Please see the files COPYRIGHT.txt and LICENSE.txt for full copyright and
# license information, respectively. Both files are also available online
# at the URL "https://github.com/IDAES/idaes-pse".
##############################################################################
"""
This module contains classes for reaction blocks and reaction parameter blocks.
"""
from __future__ import division
# Import Pyomo libraries
from pyomo.common.config import ConfigBlock, ConfigValue, In
# Import IDAES cores
from idaes.core.process_block import ProcessBlock
from idaes.core import ProcessBlockData
from idaes.core import property_meta
from idaes.core import MaterialFlowBasis
from idaes.core.util.exceptions import (BurntToast,
PropertyNotSupportedError,
PropertyPackageError)
from idaes.core.util.config import (is_physical_parameter_block,
is_reaction_parameter_block,
is_state_block)
from idaes.core.util.misc import add_object_reference
# Some more information about this module
__author__ = "Andrew Lee, John Eslick"
__all__ = ['ReactionBlockData',
'ReactionBlock',
'ReactionParameterBlock']
[docs]class ReactionParameterBlock(ProcessBlockData,
property_meta.HasPropertyClassMetadata):
"""
This is the base class for reaction parameter blocks. These are blocks
that contain a set of parameters associated with a specific reaction
package, and are linked to by all instances of that reaction package.
"""
# Create Class ConfigBlock
CONFIG = ProcessBlockData.CONFIG()
CONFIG.declare("property_package", ConfigValue(
description="Reference to associated PropertyPackageParameter "
"object",
domain=is_physical_parameter_block))
CONFIG.declare("default_arguments", ConfigBlock(
description="Default arguments to use with Property Package",
implicit=True))
[docs] def build(self):
"""
General build method for ReactionParameterBlocks. Inheriting models
should call super().build.
Args:
None
Returns:
None
"""
super(ReactionParameterBlock, self).build()
# TODO: Need way to tie reaction package to a specfic property package
self._validate_property_parameter_units()
self._validate_property_parameter_properties()
def _validate_property_parameter_units(self):
"""
Checks that the property parameter block associated with the
reaction block uses the same set of default units.
"""
r_units = self.get_metadata().default_units
prop_units = self.config.property_package.get_metadata().default_units
for u in r_units:
try:
if prop_units[u] != r_units[u]:
raise KeyError()
except KeyError:
raise PropertyPackageError(
'{} the property package associated with this '
'reaction package does not use the same set of '
'units of measurement ({}). Please choose a '
'property package which uses the same units.'
.format(self.name, u))
def _validate_property_parameter_properties(self):
"""
Checks that the property parameter block associated with the
reaction block supports the necessary properties with correct units.
"""
req_props = self.get_metadata().required_properties
supp_props = self.config.property_package.get_metadata().properties
for p in req_props:
if p not in supp_props:
raise PropertyPackageError(
'{} the property package associated with this '
'reaction package does not support the necessary '
'property, {}. Please choose a property package '
'which supports all required properties.'
.format(self.name, p))
elif supp_props[p]['method'] is False:
raise PropertyPackageError(
'{} the property package associated with this '
'reaction package does not support the necessary '
'property, {}. Please choose a property package '
'which supports all required properties.'
.format(self.name, p))
# Check property units
if req_props[p]['units'] != supp_props[p]['units']:
raise PropertyPackageError(
'{} the units associated with property {} in this '
'reaction package ({}) do not match with the units '
'used in the assoicated property package ({}). Please '
'choose a property package which used the same '
'units for all properties.'
.format(self.name,
p,
req_props[p]['units'],
supp_props[p]['units']))
[docs]class ReactionBlockBase(ProcessBlock):
"""
This is the base class for reaction block objects. These are used when
constructing the SimpleBlock or IndexedBlock which will contain the
PropertyData objects, and contains methods that can be applied to
multiple ReactionBlockData objects simultaneously.
"""
[docs] def initialize(self, *args):
"""
This is a default initialization routine for ReactionBlocks to ensure
that a routine is present. All ReactionBlockData classes should
overload this method with one suited to the particular reaction package
Args:
None
Returns:
None
"""
raise NotImplementedError('{} reaction package has not implemented the'
' initialize method. Please contact '
'the reaction package developer'
.format(self.name))
def report(self, index=(0), true_state=False,
dof=False, ostream=None, prefix=""):
raise NotImplementedError(
"""The current Reaction Package has not implemented a report
method. Please contact the package developer about this.""")
[docs]class ReactionBlockDataBase(ProcessBlockData):
"""
This is the base class for reaction block data objects. These are
blocks that contain the Pyomo components associated with calculating a
set of reacion properties for a given material.
"""
# Create Class ConfigBlock
CONFIG = ProcessBlockData.CONFIG()
CONFIG.declare("parameters", ConfigValue(
domain=is_reaction_parameter_block,
description="""A reference to an instance of the Reaction Parameter
Block associated with this property package."""))
CONFIG.declare("state_block", ConfigValue(
domain=is_state_block,
description="""A reference to an instance of a StateBlock with
which this reaction block should be associated."""))
CONFIG.declare("has_equilibrium", ConfigValue(
default=True,
domain=In([True, False]),
description="Equilibrium constraint flag",
doc="""Flag indicating whether equilibrium constraints
should be constructed in this reaction block,
**default** - True.
**Valid values:** {
**True** - ReactionBlock should enforce equilibrium constraints,
**False** - ReactionBlock should not enforce equilibrium constraints.}"""))
[docs] def build(self):
"""
General build method for PropertyBlockDatas. Inheriting models should
call super().build.
Args:
None
Returns:
None
"""
super(ReactionBlockDataBase, self).build()
add_object_reference(self, "_params", self.config.parameters)
self._validate_state_block()
def _validate_state_block(self):
"""
Method to validate that the associated state block matches with the
PropertyParameterBlock assoicated with the ReactionParameterBlock.
"""
# Add a reference to the corresponding state block data for later use
add_object_reference(self,
"state_ref",
self.config.state_block[self.index()])
# Validate that property package of state matches that of reaction pack
if (self.config.parameters.config.property_package !=
self.state_ref.config.parameters):
raise PropertyPackageError(
'{} the StateBlock associated with this '
'ReactionBlock does not match with the '
'PropertyParamterBlock associated with the '
'ReactionParameterBlock. The modelling framework '
'does not support mixed associations of property '
'and reaction packages.'
.format(self.name))
[docs] def get_reaction_rate_basis(self):
"""
Method which returns an Enum indicating the basis of the reaction rate
term.
"""
return MaterialFlowBasis.other
def __getattr__(self, attr):
"""
This method is used to avoid generating unnecessary property
calculations in reaction blocks. __getattr__ is called whenever a
property is called for, and if a propery does not exist, it looks for
a method to create the required property, and any associated
components.
Create a property calculation if needed. Return an attrbute error if
attr == 'domain' or starts with a _ . The error for _ prevents a
recursion error if trying to get a function to create a property and
that function doesn't exist. Pyomo also ocasionally looks for things
that start with _ and may not exist. Pyomo also looks for the domain
attribute, and it may not exist.
This works by creating a property calculation by calling the "_"+attr
function.
A list of __getattr__ calls is maintained in self.__getattrcalls to
check for recursive loops which maybe useful for debugging. This list
is cleared after __getattr__ completes successfully.
Args:
attr: an attribute to create and return. Should be a property
component.
"""
def clear_call_list(self, attr):
"""Local method for cleaning up call list when a call is handled.
Args:
attr: attribute currently being handled
"""
if self.__getattrcalls[-1] == attr:
if len(self.__getattrcalls) <= 1:
del self.__getattrcalls
else:
del self.__getattrcalls[-1]
else:
raise PropertyPackageError(
"{} Trying to remove call {} from __getattr__"
" call list, however this is not the most "
"recent call in the list ({}). This indicates"
" a bug in the __getattr__ calls. Please "
"contact the IDAES developers with this bug."
.format(self.name, attr, self.__getattrcalls[-1]))
# Check that attr is not something we shouldn't touch
if attr == "domain" or attr.startswith("_"):
# Don't interfere with anything by getting attributes that are
# none of my business
raise PropertyPackageError(
'{} {} does not exist, but is a protected '
'attribute. Check the naming of your '
'components to avoid any reserved names'
.format(self.name, attr))
if attr == "config":
try:
self._get_config_args()
return self.config
except:
raise BurntToast("{} getattr method was triggered by a call "
"to the config block, but _get_config_args "
"failed. This should never happen.")
# Check for recursive calls
try:
# Check to see if attr already appears in call list
if attr in self.__getattrcalls:
# If it does, indicates a recursive loop.
if attr == self.__getattrcalls[-1]:
# attr method is calling itself
self.__getattrcalls.append(attr)
raise PropertyPackageError(
'{} _{} made a recursive call to '
'itself, indicating a potential '
'recursive loop. This is generally '
'caused by the {} method failing to '
'create the {} component.'
.format(self.name, attr, attr, attr))
else:
self.__getattrcalls.append(attr)
raise PropertyPackageError(
'{} a potential recursive loop has been '
'detected whilst trying to construct {}. '
'A method was called, but resulted in a '
'subsequent call to itself, indicating a '
'recursive loop. This may be caused by a '
'method trying to access a component out '
'of order for some reason (e.g. it is '
'declared later in the same method). See '
'the __getattrcalls object for a list of '
'components called in the __getattr__ '
'sequence.'
.format(self.name, attr))
# If not, add call to list
self.__getattrcalls.append(attr)
except AttributeError:
# A list of calls if one does not exist, so create one
self.__getattrcalls = [attr]
# Get property information from get_supported_properties
try:
m = self.config.parameters.get_metadata().properties
if m is None:
raise PropertyPackageError(
'{} reaction package get_supported_properties'
' method returned None when trying to create '
'{}. Please contact the developer of the '
'property package'.format(self.name, attr))
except KeyError:
# If attr not in get_supported_properties, assume package does not
# support property
clear_call_list(self, attr)
raise PropertyNotSupportedError(
'{} {} is not supported by reaction package (property is '
'not listed in get_supported_properties).'
.format(self.name, attr, attr))
# Get method name from get_supported_properties
try:
if m[attr]['method'] is None:
# If method is none, property should be constructed
# by property package, so raise PropertyPackageError
clear_call_list(self, attr)
raise PropertyPackageError(
'{} {} should be constructed automatically '
'by reaction package, but is not present. '
'This can be caused by methods being called '
'out of order.'.format(self.name, attr))
elif m[attr]['method'] is False:
# If method is False, package does not support property
# Raise NotImplementedError
clear_call_list(self, attr)
raise PropertyNotSupportedError(
'{} {} is not supported by reaction package '
'(property method is listed as False in '
'get_supported_properties).'
.format(self.name, attr))
elif isinstance(m[attr]['method'], str):
# Try to get method name in from PropertyBlock object
try:
f = getattr(self, m[attr]['method'])
except AttributeError:
# If fails, method does not exist
clear_call_list(self, attr)
raise PropertyPackageError(
'{} {} get_supported_properties method '
'returned a name that does not correspond'
' to any method in the reaction package. '
'Please contact the developer of the '
'reaction package.'.format(self.name, attr))
else:
# Otherwise method name is invalid
clear_call_list(self, attr)
raise PropertyPackageError(
'{} {} get_supported_properties method '
'returned invalid value for method name. '
'Please contact the developer of the '
'reaction package.'
.format(self.name, attr))
except KeyError:
# No method key - raise Exception
# Need to use an AttributeError so Pyomo.DAE will handle this
clear_call_list(self, attr)
raise PropertyNotSupportedError(
'{} get_supported_properties method '
'does not contain a method for {}. '
'Please select a package which supports '
'the necessary properties for your process.'
.format(self.name, attr))
# Call attribute if it is callable
# If this fails, it should return a meaningful error.
if callable(f):
try:
f()
except Exception:
# Clear call list and reraise error
clear_call_list(self, attr)
raise
else:
# If f is not callable, inform the user and clear call list
clear_call_list(self, attr)
raise PropertyPackageError(
'{} tried calling attribute {} in order to create '
'component {}. However the method is not callable.'
.format(self.name, f, attr))
# Clear call list, and return
comp = getattr(self, attr)
clear_call_list(self, attr)
return comp