Skip to content

Commit

Permalink
vargroups in rrr dataobjects (#1823)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulTalbot-INL authored Apr 29, 2022
1 parent 835b198 commit 646c2c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ravenframework/BaseClasses/BaseEntity.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Split from original BaseClasses.py module
"""

from ..utils import mathUtils
from ..utils import mathUtils, xmlUtils
from .BaseType import BaseType

class BaseEntity(BaseType):
Expand Down Expand Up @@ -83,6 +83,7 @@ def readXML(self, xmlNode, variableGroups=None, globalAttributes=None):
@ Out, None
"""
self.variableGroups = variableGroups if variableGroups is not None else {}
xmlUtils.replaceVariableGroups(xmlNode, self.variableGroups)
if 'name' in xmlNode.attrib.keys():
self.name = xmlNode.attrib['name']
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<!--Output>CladTempThreshold</Output-->
</PointSet>
<HistorySet name="outputMontecarloRomHS">
<Input>DeltaTimeScramToAux,DG1recoveryTime</Input>
<Input>GRO_targets</Input>
<Output>CladTempThreshold,time</Output>
</HistorySet>
<PointSet name="outputMontecarloRomND">
Expand Down

0 comments on commit 646c2c0

Please sign in to comment.