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

Transform function `get_1_outerm` into subroutine

Because we are going to add another intent out argument.
parent 293f4878
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ program test_get_1_outerm ...@@ -66,7 +66,7 @@ program test_get_1_outerm
outside_points = transpose(outside_points) * deg_to_rad outside_points = transpose(outside_points) * deg_to_rad
e%extr%coord_proj = ind_targ_extr e%extr%coord_proj = ind_targ_extr
e%extr%coord = corner + (ind_targ_extr - 1) * step e%extr%coord = corner + (ind_targ_extr - 1) * step
e%out_cont = get_1_outerm(cyclone, e%extr%coord, innermost_level, & call get_1_outerm(e%out_cont, cyclone, e%extr%coord, innermost_level, &
outside_points, ssh, corner, step) outside_points, ssh, corner, step)
if (e%out_cont%closed) then if (e%out_cont%closed) then
......
...@@ -4,8 +4,8 @@ module get_1_outerm_m ...@@ -4,8 +4,8 @@ module get_1_outerm_m
contains contains
type(ssh_contour) function get_1_outerm(cyclone, coord_extr, & subroutine get_1_outerm(out_cont, cyclone, coord_extr, innermost_level_2, &
innermost_level_2, outside_points, ssh, corner, step) outside_points, ssh, corner, step)
! This procedure gets one outermost good contour, if it can find ! This procedure gets one outermost good contour, if it can find
! one. If the procedure cannot find an outermost contour, it ! one. If the procedure cannot find an outermost contour, it
...@@ -43,6 +43,7 @@ contains ...@@ -43,6 +43,7 @@ contains
use good_contour_m, only: good_contour use good_contour_m, only: good_contour
use spher_polyline_area_m, only: spher_polyline_area use spher_polyline_area_m, only: spher_polyline_area
type(ssh_contour), intent(out):: out_cont
logical, intent(in):: cyclone logical, intent(in):: cyclone
real, intent(in):: coord_extr(:) ! (2) real, intent(in):: coord_extr(:) ! (2)
...@@ -82,7 +83,7 @@ contains ...@@ -82,7 +83,7 @@ contains
coord_extr, outside_points) coord_extr, outside_points)
if (cont_list(1)%n_points == 0) then if (cont_list(1)%n_points == 0) then
get_1_outerm = null_ssh_contour() out_cont = null_ssh_contour()
else else
n_cont = 1 n_cont = 1
cont_list(1)%ssh = innermost_level_2 cont_list(1)%ssh = innermost_level_2
...@@ -132,9 +133,9 @@ contains ...@@ -132,9 +133,9 @@ contains
cont_list(n_cont)%area = spher_polyline_area(cont_list(n_cont)%polyline) cont_list(n_cont)%area = spher_polyline_area(cont_list(n_cont)%polyline)
call ccw_orient(cont_list(n_cont)) call ccw_orient(cont_list(n_cont))
get_1_outerm = cont_list(n_cont) out_cont = cont_list(n_cont)
end if end if
end function get_1_outerm end subroutine get_1_outerm
end module get_1_outerm_m end module get_1_outerm_m
...@@ -118,7 +118,7 @@ contains ...@@ -118,7 +118,7 @@ contains
+ ceiling((corner_window(1) - outside_points(1, :)) / twopi) * twopi + ceiling((corner_window(1) - outside_points(1, :)) / twopi) * twopi
! (Shift the longitude of each point to a value close to the ! (Shift the longitude of each point to a value close to the
! longitude of the target extremum.) ! longitude of the target extremum.)
s%list(i)%out_cont = get_1_outerm(s%list(i)%cyclone, & call get_1_outerm(s%list(i)%out_cont, s%list(i)%cyclone, &
s%list(i)%extr%coord, innermost_level_2, outside_points, & s%list(i)%extr%coord, innermost_level_2, outside_points, &
ssh(llc(1):urc(1), llc(2):urc(2)), corner_window, step) ssh(llc(1):urc(1), llc(2):urc(2)), corner_window, step)
s%list(i)%valid = s%list(i)%out_cont%area >= min_area s%list(i)%valid = s%list(i)%out_cont%area >= min_area
......
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