Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is not ready for merging yet.
Feature or improvement description
A few minor bugs were discovered after merging #1932.
ExtLoads
module (would show in summary file incorrectly)During PR #1932, there was some confusion about the use of the
t_initial
value in theWriteOutputToFile
which was introduced while splittingFAST_Solution
into multiple routines. TheFAST_Library.f90
had been calling theFAST_WriteOutput
with the originalt_initial
which is set to zero, but this would the timestamp in all text files to zero (it did not affect the binary writing). To get around this, them_FAST%t_global
value was used in callingWriteOutputToFile
inFAST_Subs.f90
. But this approach was incorrect - instead thet_initial
fromFAST_Library
should have been the current time. To reduce confusion going forward,t_initial
has been changed tot_now
inFAST_Subs
where appropriate.t_initial
to calculatedt_now
inFAST_Library
calls to file writingt_initial
tot_now
in file writing routines inFAST_Subs
for consistencym_FAST%t_global
witht_now
inFAST_Subs::WriteOutputToFile
callRelated issue, if one exists
Impacted areas of the software
Additional supporting information
Test results, if applicable
No test results change with this PR (so far)