Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SWIFT
SWIFTsim
Commits
d05e5c3d
Commit
d05e5c3d
authored
5 years ago
by
Stuart Mcalpine
Browse files
Options
Downloads
Patches
Plain Diff
Now outputs message for last timestep in non-cosmo case
parent
3dd67a94
No related branches found
No related tags found
1 merge request
!874
Stf output times
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/outputlist.c
+5
-1
5 additions, 1 deletion
src/outputlist.c
with
5 additions
and
1 deletion
src/outputlist.c
+
5
−
1
View file @
d05e5c3d
...
...
@@ -187,7 +187,11 @@ void output_list_read_next_time(struct output_list *t, const struct engine *e,
if
(
time
==
time_end
)
{
t
->
final_step_dump
=
1
;
if
(
e
->
verbose
)
message
(
"Next output time for %s set to a=%e."
,
name
,
time_end
);
if
(
is_cosmo
)
{
message
(
"Next output time for %s set to a=%e."
,
name
,
time_end
);
}
else
{
message
(
"Next output time for %s set to t=%e."
,
name
,
time_end
);
}
}
/* Deal with last statistics */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment