Skip to content

Commit

Permalink
Removing sort from RELAPparser.py (#1024)
Browse files Browse the repository at this point in the history
* updated submodule moose

* Revert "updated submodule moose"

This reverts commit da66d51.

* Removing sorting from RELAPparser, and fixing a typo in the user manual: colon separated string, instead of column separated string for the <expectedTime> string

* loosening up the tolerance for the GP test
  • Loading branch information
Jimmy-INL authored and alfoa committed Sep 24, 2019
1 parent a64bf88 commit a344d81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions doc/user_manual/runInfo.tex
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ \subsection{RunInfo: Input of Calculation Flow}
Since the main thread is also responsible for collecting the results of
previously finished jobs, it is possible that faster jobs may complete before
the main thread can replenish the queue.
By increasing this value, you are allowing RAVEN to consume more memory
By increasing this value, you are allowing RAVEN to consume more memory
in order to stage more jobs, placing them in a pending job queue, with the
benefit that slower job collection times will be masked as the job handler
will flush the complete jobs and run whatever is available on the pending
Expand Down Expand Up @@ -246,7 +246,7 @@ \subsection{RunInfo: Input of Queue Modes}
%
RAVEN currently supports one pre-defined ``mode'':
\begin{itemize}
\item \textbf{mpi}: this ``mode'' uses \xmlNode{MPIExec} command (default: \texttt{mpiexec})
\item \textbf{mpi}: this ``mode'' uses \xmlNode{MPIExec} command (default: \texttt{mpiexec})
to distribute the running program; more information regarding this protocol can be found
in~\cite{MPI}.
Mode ``MPI'' can either generate a \texttt{qsub} command or can execute
Expand Down Expand Up @@ -332,7 +332,7 @@ \subsection{RunInfo: Input of Queue Modes}
\default{PBS PROFESSIONAL}

%%%%%% EXPECTED TIME
\item \xmlNode{expectedTime}, \xmlDesc{colum separated string, optional field
\item \xmlNode{expectedTime}, \xmlDesc{colon separated string, optional field
(mpi or custom mode)}, specifies the time the whole calculation is expected to
last.
%
Expand Down
2 changes: 1 addition & 1 deletion framework/CodeInterfaces/RELAP5/RELAPparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def modifyOrAdd(self,dictionaryList,save=True):
if self.maxNumberOfDecks > 1:
temp.append('*'+' deckNum: '+str(deckNum)+'\n')
for j in sorted(modiDictionaryList):
for var in sorted(modiDictionaryList[j]):
for var in modiDictionaryList[j]:
temp.append('* card: '+j+' word: '+str(var['position'])+' value: '+str(var['value'])+'\n')
temp.append('*RAVEN INPUT VALUES\n')

Expand Down

0 comments on commit a344d81

Please sign in to comment.