@@ -40,7 +40,7 @@ module dglc_datamode_noevolve_mod
40
40
type (icesheet_ptr_t), allocatable :: Sg_ice_covered(:)
41
41
type (icesheet_ptr_t), allocatable :: Sg_icemask(:)
42
42
type (icesheet_ptr_t), allocatable :: Sg_icemask_coupled_fluxes(:)
43
- type (icesheet_ptr_t), allocatable :: Fogg_rofi (:)
43
+ type (icesheet_ptr_t), allocatable :: Fgrg_rofi (:)
44
44
45
45
! Import fields
46
46
integer , parameter :: nlev_import = 30
@@ -55,7 +55,7 @@ module dglc_datamode_noevolve_mod
55
55
character (len=* ), parameter :: field_out_ice_covered = ' Sg_ice_covered'
56
56
character (len=* ), parameter :: field_out_icemask = ' Sg_icemask'
57
57
character (len=* ), parameter :: field_out_icemask_coupled_fluxes = ' Sg_icemask_coupled_fluxes'
58
- character (len=* ), parameter :: field_out_rofi = ' Fogg_rofi '
58
+ character (len=* ), parameter :: field_out_rofi = ' Fgrg_rofi '
59
59
60
60
! Import Field names
61
61
character (len=* ), parameter :: field_in_tsrf = ' Sl_tsrf'
@@ -162,7 +162,7 @@ subroutine dglc_datamode_noevolve_init_pointers(NStateExp, NstateImp, rc)
162
162
allocate (Sg_ice_covered(num_icesheets))
163
163
allocate (Sg_icemask(num_icesheets))
164
164
allocate (Sg_icemask_coupled_fluxes(num_icesheets))
165
- allocate (Fogg_rofi (num_icesheets))
165
+ allocate (Fgrg_rofi (num_icesheets))
166
166
167
167
do ns = 1 ,num_icesheets
168
168
call dshr_state_getfldptr(NStateExp(ns), field_out_area, fldptr1= Sg_area(ns)% ptr, rc= rc)
@@ -175,10 +175,10 @@ subroutine dglc_datamode_noevolve_init_pointers(NStateExp, NstateImp, rc)
175
175
if (chkerr(rc,__LINE__,u_FILE_u)) return
176
176
call dshr_state_getfldptr(NStateExp(ns), field_out_icemask_coupled_fluxes, fldptr1= Sg_icemask_coupled_fluxes(ns)% ptr, rc= rc)
177
177
if (chkerr(rc,__LINE__,u_FILE_u)) return
178
- call dshr_state_getfldptr(NStateExp(ns), field_out_rofi, fldptr1= Fogg_rofi (ns)% ptr, rc= rc)
178
+ call dshr_state_getfldptr(NStateExp(ns), field_out_rofi, fldptr1= Fgrg_rofi (ns)% ptr, rc= rc)
179
179
if (chkerr(rc,__LINE__,u_FILE_u)) return
180
180
181
- Fogg_rofi (ns)% ptr(:) = 0._r8
181
+ Fgrg_rofi (ns)% ptr(:) = 0._r8
182
182
end do
183
183
184
184
! initialize pointers to import fields if appropriate
@@ -370,10 +370,10 @@ subroutine dglc_datamode_noevolve_advance(pio_subsystem, io_type, io_format, &
370
370
end if
371
371
372
372
if (initialized_noevolve) then
373
- ! Compute Fogg_rofi
373
+ ! Compute Fgrg_rofi
374
374
do ns = 1 ,num_icesheets
375
- do ng = 1 ,size (Fogg_rofi (ns)% ptr)
376
- Fogg_rofi (ns)% ptr(ng) = Flgl_qice(ns)% ptr(ng)
375
+ do ng = 1 ,size (Fgrg_rofi (ns)% ptr)
376
+ Fgrg_rofi (ns)% ptr(ng) = Flgl_qice(ns)% ptr(ng)
377
377
end do
378
378
end do
379
379
end if
0 commit comments