Skip to content

Commit 5674b48

Browse files
committed
Knock on updates from requested changes
1 parent 077e3e3 commit 5674b48

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

components/science/source/algorithm/sci_geometric_constants_mod.x90

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,10 @@ contains
157157
implicit none
158158

159159
type(config_type), intent(in) :: config
160+
type(mesh_type), intent(in) :: mesh
160161
integer(i_def), intent(in) :: space_id
161162
logical(l_def), intent(in) :: use_fe
162163

163-
type(mesh_type), intent(in), pointer :: mesh
164-
165164
type(inventory_by_local_mesh_type), intent(inout) :: long_inventory
166165
type(inventory_by_local_mesh_type), intent(inout) :: lat_inventory
167166

@@ -595,7 +594,7 @@ contains
595594

596595
implicit none
597596

598-
type(mesh_type), intent(in), pointer :: mesh
597+
type(mesh_type), intent(in) :: mesh
599598

600599
logical(kind=l_def) :: constant_exists
601600
type(field_type), pointer :: detj_at_w3

components/science/source/algorithm/sci_mapping_constants_mod.x90

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ contains
153153

154154
implicit none
155155

156-
type(mesh_type), pointer, intent(in) :: mesh
156+
type(mesh_type), intent(in) :: mesh
157+
157158
type(operator_type), pointer :: project_xdot_to_w2
158159
type(operator_type), pointer :: project_ydot_to_w2
159160
type(operator_type), pointer :: project_zdot_to_w2
@@ -883,6 +884,7 @@ contains
883884
implicit none
884885

885886
type(mesh_type), intent(in) :: mesh
887+
886888
type(operator_type), pointer :: proj_op
887889
logical(kind=l_def) :: constant_exists
888890

@@ -940,7 +942,7 @@ contains
940942
implicit none
941943

942944
type(config_type), intent(in) :: config
943-
type(mesh_type), intent(in) :: mesh
945+
type(mesh_type), intent(in) :: mesh
944946

945947
type(operator_type), pointer :: u_lat_map_op
946948
logical(kind=l_def) :: constant_exists
@@ -1000,7 +1002,7 @@ contains
10001002
implicit none
10011003

10021004
type(config_type), intent(in) :: config
1003-
type(mesh_type), intent(in), pointer :: mesh
1005+
type(mesh_type), intent(in) :: mesh
10041006

10051007
type(operator_type), pointer :: u_lon_sample_op
10061008
logical(kind=l_def) :: constant_exists

infrastructure/source/function_space/function_space_collection_mod.F90

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,11 @@ function get_fs( self, &
9595

9696
class(function_space_collection_type), intent(inout) :: self
9797

98-
type(mesh_type), intent(in), pointer :: mesh
99-
integer(i_def), intent(in) :: element_order_h
100-
integer(i_def), intent(in) :: element_order_v
101-
integer(i_def), intent(in) :: lfric_fs
98+
type(mesh_type), intent(in) :: mesh
99+
integer(i_def), intent(in) :: element_order_h
100+
integer(i_def), intent(in) :: element_order_v
101+
integer(i_def), intent(in) :: lfric_fs
102+
102103
integer(i_def), intent(in), optional :: ndata
103104
logical(l_def), intent(in), optional :: ndata_first
104105

0 commit comments

Comments
 (0)