You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input and when i put a space in the input array it caused RAVEN to abort.
<variable name="7290102:1, 7290103:1">
What did you see instead?
RAVEN aborted with a non-descriptive error message:
Traceback (most recent call last):
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 201, in addRealization
rlz = dict((var,rlz[var]) for var in self.getVars()+self.indexes)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 201, in
rlz = dict((var,rlz[var]) for var in self.getVars()+self.indexes)
KeyError: 'ProbabilityWeight- 7290103:1'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Driver.py", line 285, in
raven()
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Driver.py", line 238, in raven
simulation.run()
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Simulation.py", line 780, in run
stepInstance.takeAstep(stepInputDict)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 315, in takeAstep
self._localTakeAstepRun(inDictionary)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 640, in _localTakeAstepRun
myLambda([finishedJob,outputs[outIndex]])
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 588, in
self._outputCollectionLambda.append( (lambda x: inDictionary['Model'].collectOutput(x[0],x[1]), outIndex) )
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Models/Code.py", line 747, in collectOutput
output.addRealization(evaluation)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 204, in addRealization
self.raiseAnError(KeyError,'Provided realization does not have all requisite values for object "{}": "{}"'.format(self.name,e.args[0]))
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/MessageHandler.py", line 99, in raiseAnError
self.messageHandler.error(self,etype,msg,str(tag),verbosity,color)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/MessageHandler.py", line 313, in error
raise etype(message)
KeyError: 'Provided realization does not have all requisite values for object "RELAPoutput": "ProbabilityWeight- 7290103:1"'
/home/cgosdin/RAVEN_FPS/RAVEN_FPS/raven_framework: line 56: 49370 Segmentation fault (core dumped) $PYTHON_COMMAND -O $RAVEN_DIR/framework/Driver.py "${ARGS[@]}"
Do you have a suggested fix for the development team?
Input reader should strip whitespace before reading.
Describe how to Reproduce
Steps to reproduce the behavior:
Defect Description
Describe the defect
I was utilizing an array of RELAP5 input card numbers for a sampler, so the same sampling was performed for multiple locations in my RELAP5
Spaces_In_Sampler_Array.zip
input and when i put a space in the input array it caused RAVEN to abort.
What did you see instead?
RAVEN aborted with a non-descriptive error message:
Traceback (most recent call last):
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 201, in addRealization
rlz = dict((var,rlz[var]) for var in self.getVars()+self.indexes)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 201, in
rlz = dict((var,rlz[var]) for var in self.getVars()+self.indexes)
KeyError: 'ProbabilityWeight- 7290103:1'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):$RAVEN_DIR/framework/Driver.py "$ {ARGS[@]}"
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Driver.py", line 285, in
raven()
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Driver.py", line 238, in raven
simulation.run()
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Simulation.py", line 780, in run
stepInstance.takeAstep(stepInputDict)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 315, in takeAstep
self._localTakeAstepRun(inDictionary)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 640, in _localTakeAstepRun
myLambda([finishedJob,outputs[outIndex]])
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Steps.py", line 588, in
self._outputCollectionLambda.append( (lambda x: inDictionary['Model'].collectOutput(x[0],x[1]), outIndex) )
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/Models/Code.py", line 747, in collectOutput
output.addRealization(evaluation)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/DataObjects/DataSet.py", line 204, in addRealization
self.raiseAnError(KeyError,'Provided realization does not have all requisite values for object "{}": "{}"'.format(self.name,e.args[0]))
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/MessageHandler.py", line 99, in raiseAnError
self.messageHandler.error(self,etype,msg,str(tag),verbosity,color)
File "/home/cgosdin/RAVEN_FPS/RAVEN_FPS/framework/MessageHandler.py", line 313, in error
raise etype(message)
KeyError: 'Provided realization does not have all requisite values for object "RELAPoutput": "ProbabilityWeight- 7290103:1"'
/home/cgosdin/RAVEN_FPS/RAVEN_FPS/raven_framework: line 56: 49370 Segmentation fault (core dumped) $PYTHON_COMMAND -O
Do you have a suggested fix for the development team?
Input reader should strip whitespace before reading.
Describe how to Reproduce
Steps to reproduce the behavior:
2
raven.log
. Rerun RAVEN.
Screenshots and Input Files
Please attach the input file(s) that generate this error. The simpler the input, the faster we can find the issue.
Platform (please complete the following information):
OS: LSB Version: n/a
Distributor ID: SUSE
Description: SUSE Linux Enterprise Server 12 SP4
Release: 12.4
Codename: n/a
Dependencies Installation: CONDA
For Change Control Board: Issue Review
This review should occur before any development is performed as a response to this issue.
For Change Control Board: Issue Closure
This review should occur when the issue is imminently going to be closed.
The text was updated successfully, but these errors were encountered: