Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
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
mpim-sw
libcdi
Commits
97d9294d
Commit
97d9294d
authored
6 years ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Use ISO_FORTRAN_ENV for casting INT to INT64 in cdi_write_f2003.f90.
parent
6b8f1a72
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/cdi_write_f2003.f90
+2
-1
2 additions, 1 deletion
examples/cdi_write_f2003.f90
with
2 additions
and
1 deletion
examples/cdi_write_f2003.f90
+
2
−
1
View file @
97d9294d
PROGRAM
CDIWRITEF2003
USE
iso_c_binding
USE
iso_fortran_env
,
ONLY
:
int64
USE
mo_cdi
IMPLICIT
NONE
...
...
@@ -72,7 +73,7 @@
! Loop over the number of time steps
DO
tsID
=
0
,
nts
-1
! Set the verification date to 1985-01-01 + tsID
CALL
taxisDefVdate
(
taxisID
,
INT
(
19850101
+
tsID
,
8
)
)
CALL
taxisDefVdate
(
taxisID
,
19850101
_int64
+
tsID
)
! Set the verification time to 12:00:00
CALL
taxisDefVtime
(
taxisID
,
120000
)
! Define the time step
...
...
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