Model run hangs when trying to open the depth/mask file used for interpolating the initial conditions onto the native grid.
Analysis:
dtatsd.F90 was modified in 4.0.4 to read depth/mask information in order to linearly interpolate T/S initial conditions onto the native grid. This involved making fld_clopn a PUBLIC routine in fldread.F90 and calling it within dtatsd.F90 to perform the read. It appears that fld_clopn has been refactored into two subroutines in 4.2.1 fld_def and fld_clopn.
Solution:
Prepend the original call to fld_clopn with a call to fld_def:
Problem:
Model run hangs when trying to open the depth/mask file used for interpolating the initial conditions onto the native grid.
Analysis:
dtatsd.F90
was modified in 4.0.4 to read depth/mask information in order to linearly interpolate T/S initial conditions onto the native grid. This involved makingfld_clopn
a PUBLIC routine infldread.F90
and calling it withindtatsd.F90
to perform the read. It appears thatfld_clopn
has been refactored into two subroutines in 4.2.1fld_def
andfld_clopn
.Solution:
Prepend the original call to
fld_clopn
with a call tofld_def
: