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
1919444f
Commit
1919444f
authored
2 months ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite simulate_iau so it does not need mtime_hl
parent
9c361ad5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!73
Rewrite simulate_iau so it does not need mtime_hl
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
examples/CMakeLists.txt
+1
-1
1 addition, 1 deletion
examples/CMakeLists.txt
examples/Makefile.am
+2
-2
2 additions, 2 deletions
examples/Makefile.am
examples/simulate_iau.f90
+19
-16
19 additions, 16 deletions
examples/simulate_iau.f90
with
22 additions
and
19 deletions
examples/CMakeLists.txt
+
1
−
1
View file @
1919444f
...
...
@@ -13,6 +13,7 @@ set(examples_Fortran
iconoce
output_control
repetitor
simulate_iau
tas
test_cf_timeaxis
test_dace
...
...
@@ -27,7 +28,6 @@ if(MTIME_ENABLE_FORTRAN_HL)
# cmake-format: sort
example_hl
iconoce_hl
simulate_iau
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
examples/Makefile.am
+
2
−
2
View file @
1919444f
...
...
@@ -15,6 +15,7 @@ noinst_PROGRAMS = \
output_control
\
recurrence
\
repetitor
\
simulate_iau
\
tas
\
test_cf_timeaxis
\
test_dace
\
...
...
@@ -24,8 +25,7 @@ noinst_PROGRAMS = \
if
ENABLE_FORTRAN_HL
noinst_PROGRAMS
+=
\
example_hl
\
iconoce_hl
\
simulate_iau
iconoce_hl
endif
ENABLE_FORTRAN_HL
endif
ENABLE_EXAMPLES
...
...
This diff is collapsed.
Click to expand it.
examples/simulate_iau.f90
+
19
−
16
View file @
1919444f
...
...
@@ -4,15 +4,12 @@
!!
PROGRAM
simulate_iau
#ifndef __NVCOMPILER
USE
mtime
,
ONLY
:
setCalendar
,
proleptic_gregorian
USE
mtime_hl
USE
mtime
IMPLICIT
NONE
TYPE
(
t_
datetime
)
::
start_date
,
stop_date
,
current_date
,
previous_date
TYPE
(
t_
timedelta
)
::
time_step
,
iau_time_shift
TYPE
(
datetime
)
::
start_date
,
stop_date
,
current_date
,
previous_date
TYPE
(
timedelta
)
,
POINTER
::
time_step
,
iau_time_shift
LOGICAL
,
PARAMETER
::
iterate_iau
=
.TRUE.
INTEGER
::
iau_iter
...
...
@@ -21,19 +18,21 @@ PROGRAM simulate_iau
INTEGER
::
jstep
,
jstep0
,
jstep_shift
CHARACTER
(
len
=
max_datetime_str_len
)
::
dstring
WRITE
(
0
,
*
)
"Start execution, set calendar ..."
CALL
setCalendar
(
proleptic_gregorian
)
WRITE
(
0
,
*
)
"Assign values ..."
start_date
=
t_d
atetime
(
"2016-01-01T00:00:00"
)
stop_date
=
t_d
atetime
(
"2016-01-02T00:00:00"
)
start_date
=
newD
atetime
(
"2016-01-01T00:00:00"
)
stop_date
=
newD
atetime
(
"2016-01-02T00:00:00"
)
time_step
=
t_t
imedelta
(
"PT15M"
)
time_step
=
>
newT
imedelta
(
"PT15M"
)
dtime
=
900.0
iau_time_shift
=
t_t
imedelta
(
"-PT1H30M"
)
iau_time_shift
=
>
newT
imedelta
(
"-PT1H30M"
)
dt_shift
=
-5400.0
WRITE
(
0
,
*
)
"Prepare time loop ..."
...
...
@@ -41,8 +40,10 @@ PROGRAM simulate_iau
current_date
=
start_date
current_date
=
current_date
+
iau_time_shift
WRITE
(
0
,
*
)
' start date '
,
start_date
%
toString
()
WRITE
(
0
,
*
)
' shifted start date '
,
current_date
%
toString
()
CALL
datetimeToString
(
start_date
,
dstring
)
WRITE
(
0
,
*
)
' start date '
,
dstring
CALL
datetimeToString
(
current_date
,
dstring
)
WRITE
(
0
,
*
)
' shifted start date '
,
dstring
iau_iter
=
MERGE
(
1
,
0
,
iterate_iau
)
...
...
@@ -63,13 +64,14 @@ PROGRAM simulate_iau
current_date
=
current_date
+
time_step
WRITE
(
0
,
*
)
" Time loop "
,
current_date
%
toString
(),
jstep
CALL
datetimeToString
(
current_date
,
dstring
)
WRITE
(
0
,
*
)
" Time loop "
,
dstring
,
jstep
IF
((
current_date
%
getDay
()
/
=
previous_date
%
getDay
()
)
.AND.
.NOT.
(
jstep
==
0
.AND.
iau_iter
==
1
))
THEN
IF
((
current_date
%
date
%
day
/
=
previous_date
%
date
%
day
)
.AND.
.NOT.
(
jstep
==
0
.AND.
iau_iter
==
1
))
THEN
previous_date
=
current_date
END
IF
WRITE
(
0
,
*
)
' --- integrate nh input: '
,
current_date
%
toS
tring
()
,
jstep
-
jstep_shift
,
iau_iter
WRITE
(
0
,
*
)
' --- integrate nh input: '
,
ds
tring
,
jstep
-
jstep_shift
,
iau_iter
IF
(
current_date
>=
stop_date
)
THEN
EXIT
time_loop
...
...
@@ -85,6 +87,7 @@ PROGRAM simulate_iau
END
DO
time_loop
#endif
CALL
deallocateTimeDelta
(
time_step
)
CALL
deallocateTimeDelta
(
iau_time_shift
)
END
PROGRAM
simulate_iau
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