Separating CPU time output from Data outut to allow better analysis.
This commit is contained in:
parent
d69b59143d
commit
7152a232fe
6 changed files with 29 additions and 10 deletions
|
|
@ -193,7 +193,7 @@ MODULE moduleInput
|
|||
|
||||
object = 'output'
|
||||
CALL config%get(object // '.path', path, found)
|
||||
CALL config%get(object // '.trigger', triggerOutput, found)
|
||||
CALL config%get(object // '.triggerOutput', triggerOutput, found)
|
||||
IF (.NOT. found) THEN
|
||||
triggerOutput = 100
|
||||
CALL warningError('Using default trigger for output file of 100 iterations')
|
||||
|
|
@ -211,6 +211,13 @@ MODULE moduleInput
|
|||
CALL config%get(object // '.numColl', collOutput, found)
|
||||
CALL config%get(object // '.EMField', emOutput, found)
|
||||
|
||||
CALL config%get(object // '.triggerCPUTime', triggerCPUTime, found)
|
||||
IF (.NOT. found) THEN
|
||||
triggerCPUTime = triggerOutput
|
||||
IF (timeOutput) CALL warningError('No triggerCPUTime found, using same vale as triggerOutput')
|
||||
|
||||
END IF
|
||||
|
||||
END SUBROUTINE readOutput
|
||||
|
||||
!Reads information about the case species
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue