Skip to content
Snippets Groups Projects
Commit 70dc6b03 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Change order of dummy arguments of `read_snapshot`

To ease use of call with keywords.
parent abdbac82
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ module read_snapshot_m ...@@ -4,7 +4,7 @@ module read_snapshot_m
contains contains
subroutine read_snapshot(s, k, hshp, corner, step, nlon, nlat, copy, d_init, & subroutine read_snapshot(s, hshp, nlon, nlat, d_init, k, corner, step, copy, &
ishape_last) ishape_last)
! Note: read_field_indices must have been called before read_snapshot. ! Note: read_field_indices must have been called before read_snapshot.
...@@ -17,19 +17,21 @@ contains ...@@ -17,19 +17,21 @@ contains
use read_eddy_m, only: read_eddy use read_eddy_m, only: read_eddy
type(snapshot), intent(out):: s ! completely defined type(snapshot), intent(out):: s ! completely defined
integer, intent(in):: k ! date index
TYPE(shpc), intent(in):: hshp TYPE(shpc), intent(in):: hshp
integer, intent(in):: nlon, nlat
! size of ssh array in input NetCDF, assuming no repeated point if
! the grid is global
integer, intent(in):: d_init
integer, intent(in):: k ! date index
real, intent(in):: corner(:) ! (2) longitude and latitude of the real, intent(in):: corner(:) ! (2) longitude and latitude of the
! corner of the whole grid in input NetCDF, in rad ! corner of the whole grid in input NetCDF, in rad
real, intent(in):: step(:) ! (2) longitude and latitude steps, in rad real, intent(in):: step(:) ! (2) longitude and latitude steps, in rad
integer, intent(in):: nlon, nlat integer, intent(in):: copy, ishape_last(:)
! size of ssh array in input NetCDF, assuming no repeated point if
! the grid is global
integer, intent(in):: copy, d_init, ishape_last(:)
! Local: ! Local:
integer ishape, ishape_first integer ishape, ishape_first
......
...@@ -52,9 +52,9 @@ program test_nearby_extr ...@@ -52,9 +52,9 @@ program test_nearby_extr
call shpc_open(hshp, trim(shpc_dir), rank = 0) call shpc_open(hshp, trim(shpc_dir), rank = 0)
call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0) call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0)
call read_snapshot(s, d_init, hshp, corner_deg * deg_to_rad, & call read_snapshot(s, hshp, nlon, nlat, d_init, k = d_init, &
step_deg * deg_to_rad, nlon, nlat, copy = 0, d_init = d_init, & corner = corner_deg * deg_to_rad, step = step_deg * deg_to_rad, &
ishape_last = [ishape_last]) copy = 0, ishape_last = [ishape_last])
CALL shpc_close(hshp) CALL shpc_close(hshp)
nearby = nearby_extr(s%extr_map, s%list_vis, i = 4) nearby = nearby_extr(s%extr_map, s%list_vis, i = 4)
......
...@@ -81,10 +81,10 @@ program test_overlap ...@@ -81,10 +81,10 @@ program test_overlap
call read_column(ishape_last, file = trim(shpc_dir) // "/ishape_last.txt") call read_column(ishape_last, file = trim(shpc_dir) // "/ishape_last.txt")
call shpc_open(hshp, trim(shpc_dir), rank = 0) call shpc_open(hshp, trim(shpc_dir), rank = 0)
call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0) call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0)
call read_snapshot(flow(1), k_test_1, hshp, corner, step, nlon, nlat, copy, & call read_snapshot(flow(1), hshp, nlon, nlat, d_init, k_test_1, corner, &
d_init, ishape_last) step, copy, ishape_last)
call read_snapshot(flow(max_delta + 1), k_test_2, hshp, corner, step, nlon, & call read_snapshot(flow(max_delta + 1), hshp, nlon, nlat, d_init, k_test_2, &
nlat, copy, d_init, ishape_last) corner, step, copy, ishape_last)
CALL shpc_close(hshp) CALL shpc_close(hshp)
print *, "Enter flow(1)%list_vis%delta_out (array with ", & print *, "Enter flow(1)%list_vis%delta_out (array with ", &
flow(1)%number_vis_extr, " values):" flow(1)%number_vis_extr, " values):"
......
...@@ -70,8 +70,9 @@ program test_read_snapshot ...@@ -70,8 +70,9 @@ program test_read_snapshot
call shpc_open(hshp, trim(shpc_dir), rank = 0) call shpc_open(hshp, trim(shpc_dir), rank = 0)
call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0) call dbf_read_attribute_03(d_init, hshp%extremum, hshp%extr_date, ishape = 0)
call read_snapshot(s, d_init, hshp, corner_deg * deg_to_rad, & call read_snapshot(s, hshp, nlon, nlat, d_init, k = d_init, &
step_deg * deg_to_rad, nlon, nlat, copy, d_init, [ishape_last]) corner = corner_deg * deg_to_rad, step = step_deg * deg_to_rad, &
copy = copy, ishape_last = [ishape_last])
CALL shpc_close(hshp) CALL shpc_close(hshp)
call write_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, d_init) call write_snapshot(s, corner_deg, step_deg, nlon, nlat, copy, d_init)
......
...@@ -102,8 +102,9 @@ program test_send_recv ...@@ -102,8 +102,9 @@ program test_send_recv
if (rank == 0) call dbf_read_attribute_03(d_init, hshp%extremum, & if (rank == 0) call dbf_read_attribute_03(d_init, hshp%extremum, &
hshp%extr_date, ishape = 0) hshp%extr_date, ishape = 0)
call ezmpi_bcast(d_init, root = 0) call ezmpi_bcast(d_init, root = 0)
if (rank == 1) call read_snapshot(s, d_init, hshp, corner_deg * deg_to_rad, & if (rank == 1) call read_snapshot(s, hshp, nlon, nlat, d_init, k = d_init, &
step_deg * deg_to_rad, nlon, nlat, copy, d_init, ishape_last) corner = corner_deg * deg_to_rad, step = step_deg * deg_to_rad, &
copy = copy, ishape_last = ishape_last)
CALL shpc_close(hshp) CALL shpc_close(hshp)
if (rank == 1) then if (rank == 1) then
......
...@@ -40,7 +40,7 @@ contains ...@@ -40,7 +40,7 @@ contains
!-------------------------------------------------------------- !--------------------------------------------------------------
if (rank == n_proc - 1 .or. k <= k_end - max_delta) then if (rank == n_proc - 1 .or. k <= k_end - max_delta) then
call read_snapshot(s, k, hshp, corner, step, nlon, nlat, copy, d_init, & call read_snapshot(s, hshp, nlon, nlat, d_init, k, corner, step, copy, &
ishape_last) ishape_last)
else else
call recv_snapshot(s, nlon, nlat, copy, source = rank + 1, tag = k) call recv_snapshot(s, nlon, nlat, copy, source = rank + 1, tag = k)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment