Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
icon-libraries
libmtime
Commits
ba2e2be4
Commit
ba2e2be4
authored
6 years ago
by
Thomas Jahns
Browse files
Options
Downloads
Patches
Plain Diff
Fix trailing whitespace and shorten expression.
parent
b5712a1b
No related branches found
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/simulate_iau.f90
+16
-20
16 additions, 20 deletions
examples/simulate_iau.f90
with
16 additions
and
20 deletions
examples/simulate_iau.f90
+
16
−
20
View file @
ba2e2be4
...
...
@@ -4,45 +4,41 @@ program simulate_iau
use
mtime_hl
implicit
none
type
(
t_datetime
)
::
start_date
,
stop_date
,
current_date
,
previous_date
type
(
t_timedelta
)
::
time_step
,
iau_time_shift
type
(
t_timedelta
)
::
time_step
,
iau_time_shift
logical
::
iterate_iau
=
.
true
.
logical
,
parameter
::
iterate_iau
=
.
TRUE
.
integer
::
iau_iter
real
::
dt_shift
,
dtime
real
::
dt_shift
,
dtime
integer
::
jstep
,
jstep0
,
jstep_shift
write
(
0
,
*
)
"Start execution, set calendar ..."
call
setCalendar
(
proleptic_gregorian
)
write
(
0
,
*
)
"Assign values ..."
start_date
=
t_datetime
(
"2016-01-01T00:00:00"
)
stop_date
=
t_datetime
(
"2016-01-02T00:00:00"
)
stop_date
=
t_datetime
(
"2016-01-02T00:00:00"
)
time_step
=
t_timedelta
(
"PT15M"
)
dtime
=
900.0
iau_time_shift
=
t_timedelta
(
"-PT1H30M"
)
dt_shift
=
-5400.0
write
(
0
,
*
)
"Prepare time loop ..."
current_date
=
start_date
current_date
=
current_date
+
iau_time_shift
write
(
0
,
*
)
' start date '
,
start_date
%
to_string
()
write
(
0
,
*
)
' shifted start date '
,
current_date
%
to_string
()
if
(
iterate_iau
)
then
iau_iter
=
1
else
iau_iter
=
0
endif
iau_iter
=
MERGE
(
1
,
0
,
iterate_iau
)
if
(
iterate_iau
)
then
jstep_shift
=
nint
(
dt_shift
/
dtime
)
...
...
@@ -51,28 +47,28 @@ program simulate_iau
endif
previous_date
=
current_date
jstep0
=
0
jstep
=
(
jstep0
+
1
)
+
jstep_shift
write
(
0
,
*
)
"Start time loop ..."
time_loop
:
do
current_date
=
current_date
+
time_step
write
(
0
,
*
)
" Time loop "
,
current_date
%
to_string
(),
jstep
if
(
(
current_date
%
day
()
/
=
previous_date
%
day
())
.and.
.not.
(
jstep
==
0
.and.
iau_iter
==
1
)
)
then
previous_date
=
current_date
endif
write
(
0
,
*
)
' --- integrate nh input: '
,
current_date
%
to_string
(),
jstep
-
jstep_shift
,
iau_iter
if
(
current_date
>=
stop_date
)
then
exit
time_loop
end
if
if
(
jstep
==
0
.and.
iau_iter
==
1
)
then
iau_iter
=
2
jstep
=
(
jstep0
+
1
)
+
jstep_shift
...
...
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