Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Detection eddies
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
IPSL
LMD
DPAO
Detection eddies
Commits
fd93ebdb
Commit
fd93ebdb
authored
3 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Set default values to crashing
Because variables in `grid_nml` should be all defined in the input file.
parent
5f3f2415
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
Overlap/eddy_graph.f90
+5
-3
5 additions, 3 deletions
Overlap/eddy_graph.f90
with
5 additions
and
3 deletions
Overlap/eddy_graph.f90
+
5
−
3
View file @
fd93ebdb
...
...
@@ -28,7 +28,7 @@ program eddy_graph
character
(
len
=
:),
allocatable
::
shpc_dir
integer
::
max_delta
=
1
real
::
corner_deg
(
2
)
=
[
0.125
,
-
59.875
]
real
::
corner_deg
(
2
)
=
[
huge
(
0.
),
huge
(
0.
)
]
! longitude and latitude of the corner of the whole grid in input
! NetCDF, in degrees
...
...
@@ -36,10 +36,12 @@ program eddy_graph
! longitude and latitude of the corner of the whole grid in input
! NetCDF, in rad
real
::
step_deg
(
2
)
=
[
0.25
,
0.25
]
! longitude and latitude steps, in degrees
real
::
step_deg
(
2
)
=
[
huge
(
0.
),
huge
(
0.
)]
! longitude and latitude steps, in degrees
real
step
(
2
)
! longitude and latitude steps, in rad
integer
::
nlon
=
120
,
nlat
=
120
integer
::
nlon
=
-
1
,
nlat
=
-
1
! size of ssh array in input NetCDF, assuming no repeated point if
! the grid is global
...
...
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