Skip to content

Commit

Permalink
Merge pull request mom-ocean#1370 from Hallberg-NOAA/F_case_file_output
Browse files Browse the repository at this point in the history
+More consistent treatment of input_filename = 'F'
  • Loading branch information
marshallward authored Apr 14, 2021
2 parents 5fe51b1 + e8e8aba commit fc75e0f
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 37 deletions.
44 changes: 22 additions & 22 deletions src/core/MOM.F90
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module MOM
use MOM_obsolete_params, only : find_obsolete_params
use MOM_restart, only : register_restart_field, register_restart_pair
use MOM_restart, only : query_initialized, save_restart
use MOM_restart, only : restart_init, is_new_run, MOM_restart_CS
use MOM_restart, only : restart_init, is_new_run, determine_is_new_run, MOM_restart_CS
use MOM_spatial_means, only : global_mass_integral
use MOM_time_manager, only : time_type, real_to_time, time_type_to_real, operator(+)
use MOM_time_manager, only : operator(-), operator(>), operator(*), operator(/)
Expand Down Expand Up @@ -97,6 +97,7 @@ module MOM
use MOM_open_boundary, only : rotate_OBC_config, rotate_OBC_init
use MOM_set_visc, only : set_viscous_BBL, set_viscous_ML, set_visc_init
use MOM_set_visc, only : set_visc_register_restarts, set_visc_CS
use MOM_shared_initialization, only : write_ocean_geometry_file
use MOM_sponge, only : init_sponge_diags, sponge_CS
use MOM_state_initialization, only : MOM_initialize_state
use MOM_sum_output, only : write_energy, accumulate_net_input
Expand Down Expand Up @@ -1677,7 +1678,7 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, restart_CSp, &
real :: default_val ! default value for a parameter
logical :: write_geom_files ! If true, write out the grid geometry files.
logical :: ensemble_ocean ! If true, perform an ensemble gather at the end of step_MOM
logical :: new_sim
logical :: new_sim ! If true, this has been determined to be a new simulation
logical :: use_geothermal ! If true, apply geothermal heating.
logical :: use_EOS ! If true, density calculated from T & S using an equation of state.
logical :: symmetric ! If true, use symmetric memory allocation.
Expand Down Expand Up @@ -2034,11 +2035,6 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, restart_CSp, &
"vertical grid files. Other values are invalid.", default=1)
if (write_geom<0 .or. write_geom>2) call MOM_error(FATAL,"MOM: "//&
"WRITE_GEOM must be equal to 0, 1 or 2.")
write_geom_files = ((write_geom==2) .or. ((write_geom==1) .and. &
((dirs%input_filename(1:1)=='n') .and. (LEN_TRIM(dirs%input_filename)==1))))
! If the restart file type had been initialized, this could become:
! write_geom_files = ((write_geom==2) .or. &
! ((write_geom==1) .and. is_new_run(restart_CSp)))

! Check for inconsistent parameter settings.
if (CS%use_ALE_algorithm .and. bulkmixedlayer) call MOM_error(FATAL, &
Expand Down Expand Up @@ -2136,8 +2132,7 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, restart_CSp, &
call clone_MOM_domain(G_in%Domain, dG_in%Domain)

! Allocate initialize time-invariant MOM variables.
call MOM_initialize_fixed(dG_in, US, OBC_in, param_file, write_geom_files, &
dirs%output_directory)
call MOM_initialize_fixed(dG_in, US, OBC_in, param_file, .false., dirs%output_directory)

call callTree_waypoint("returned from MOM_initialize_fixed() (initialize_MOM)")

Expand Down Expand Up @@ -2341,17 +2336,6 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, restart_CSp, &

call callTree_waypoint("restart registration complete (initialize_MOM)")

! Initialize dynamically evolving fields, perhaps from restart files.
call cpu_clock_begin(id_clock_MOM_init)
call MOM_initialize_coord(GV, US, param_file, write_geom_files, &
dirs%output_directory, CS%tv, dG%max_depth)
call callTree_waypoint("returned from MOM_initialize_coord() (initialize_MOM)")

if (CS%use_ALE_algorithm) then
call ALE_init(param_file, GV, US, dG%max_depth, CS%ALE_CSp)
call callTree_waypoint("returned from ALE_init() (initialize_MOM)")
endif

! Shift from using the temporary dynamic grid type to using the final
! (potentially static) ocean-specific grid type.
! The next line would be needed if G%Domain had not already been init'd above:
Expand All @@ -2366,10 +2350,26 @@ subroutine initialize_MOM(Time, Time_init, param_file, dirs, CS, restart_CSp, &
endif
call MOM_grid_init(G_in, param_file, US, HI_in, bathymetry_at_vel=bathy_at_vel)
call copy_dyngrid_to_MOM_grid(dG_in, G_in, US)
if (.not. CS%rotate_index) G => G_in

new_sim = determine_is_new_run(dirs%input_filename, dirs%restart_input_dir, G_in, restart_CSp)
write_geom_files = ((write_geom==2) .or. ((write_geom==1) .and. new_sim))

! Write out all of the grid data used by this run.
if (write_geom_files) call write_ocean_geometry_file(dG_in, param_file, dirs%output_directory, US=US)

call destroy_dyn_horgrid(dG_in)

if (.not. CS%rotate_index) &
G => G_in
! Initialize dynamically evolving fields, perhaps from restart files.
call cpu_clock_begin(id_clock_MOM_init)
call MOM_initialize_coord(GV, US, param_file, write_geom_files, &
dirs%output_directory, CS%tv, G%max_depth)
call callTree_waypoint("returned from MOM_initialize_coord() (initialize_MOM)")

if (CS%use_ALE_algorithm) then
call ALE_init(param_file, GV, US, G%max_depth, CS%ALE_CSp)
call callTree_waypoint("returned from ALE_init() (initialize_MOM)")
endif

! Set a few remaining fields that are specific to the ocean grid type.
call set_first_direction(G, first_direction)
Expand Down
34 changes: 21 additions & 13 deletions src/initialization/MOM_shared_initialization.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1194,17 +1194,18 @@ subroutine write_ocean_geometry_file(G, param_file, directory, geom_file, US)
type(unit_scale_type), optional, intent(in) :: US !< A dimensional unit scaling type

! Local variables.
character(len=240) :: filepath
character(len=240) :: filepath ! The full path to the file to write
character(len=40) :: mdl = "write_ocean_geometry_file"
integer, parameter :: nFlds=23
type(vardesc) :: vars(nFlds)
type(fieldtype) :: fields(nFlds)
type(vardesc), dimension(:), allocatable :: &
vars ! Types with metadata about the variables and their staggering
type(fieldtype), dimension(:), allocatable :: &
fields ! Opaque types used by MOM_io to store variable metadata information
real :: Z_to_m_scale ! A unit conversion factor from Z to m
real :: s_to_T_scale ! A unit conversion factor from T-1 to s-1
real :: L_to_m_scale ! A unit conversion factor from L to m
type(file_type) :: IO_handle ! The I/O handle of the fileset
integer :: nFlds ! The number of variables in this file
integer :: file_threading
integer :: nFlds_used
logical :: multiple_files

call callTree_enter('write_ocean_geometry_file()')
Expand All @@ -1213,6 +1214,12 @@ subroutine write_ocean_geometry_file(G, param_file, directory, geom_file, US)
s_to_T_scale = 1.0 ; if (present(US)) s_to_T_scale = US%s_to_T
L_to_m_scale = 1.0 ; if (present(US)) L_to_m_scale = US%L_to_m


nFlds = 19 ; if (G%bathymetry_at_vel) nFlds = 23

allocate(vars(nFlds))
allocate(fields(nFlds))

! var_desc populates a type defined in MOM_io.F90. The arguments, in order, are:
! (1) the variable name for the NetCDF file
! (2) the units of the variable when output
Expand Down Expand Up @@ -1244,13 +1251,12 @@ subroutine write_ocean_geometry_file(G, param_file, directory, geom_file, US)
vars(18)= var_desc("dyCuo","m","Open meridional grid spacing at u points",'u','1','1')
vars(19)= var_desc("wet", "nondim", "land or ocean?", 'h','1','1')

vars(20) = var_desc("Dblock_u","m","Blocked depth at u points",'u','1','1')
vars(21) = var_desc("Dopen_u","m","Open depth at u points",'u','1','1')
vars(22) = var_desc("Dblock_v","m","Blocked depth at v points",'v','1','1')
vars(23) = var_desc("Dopen_v","m","Open depth at v points",'v','1','1')


nFlds_used = 19 ; if (G%bathymetry_at_vel) nFlds_used = 23
if (G%bathymetry_at_vel) then
vars(20) = var_desc("Dblock_u","m","Blocked depth at u points",'u','1','1')
vars(21) = var_desc("Dopen_u","m","Open depth at u points",'u','1','1')
vars(22) = var_desc("Dblock_v","m","Blocked depth at v points",'v','1','1')
vars(23) = var_desc("Dopen_v","m","Open depth at v points",'v','1','1')
endif

if (present(geom_file)) then
filepath = trim(directory) // trim(geom_file)
Expand All @@ -1265,7 +1271,7 @@ subroutine write_ocean_geometry_file(G, param_file, directory, geom_file, US)
file_threading = SINGLE_FILE
if (multiple_files) file_threading = MULTIPLE

call create_file(IO_handle, trim(filepath), vars, nFlds_used, fields, file_threading, dG=G)
call create_file(IO_handle, trim(filepath), vars, nFlds, fields, file_threading, dG=G)

call MOM_write_field(IO_handle, fields(1), G%Domain, G%geoLatBu)
call MOM_write_field(IO_handle, fields(2), G%Domain, G%geoLonBu)
Expand Down Expand Up @@ -1300,6 +1306,8 @@ subroutine write_ocean_geometry_file(G, param_file, directory, geom_file, US)

call close_file(IO_handle)

deallocate(vars, fields)

call callTree_leave('write_ocean_geometry_file()')
end subroutine write_ocean_geometry_file

Expand Down
4 changes: 2 additions & 2 deletions src/initialization/MOM_state_initialization.F90
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module MOM_state_initialization
use MOM_open_boundary, only : update_OBC_segment_data
!use MOM_open_boundary, only : set_3D_OBC_data
use MOM_grid_initialize, only : initialize_masks, set_grid_metrics
use MOM_restart, only : restore_state, determine_is_new_run, MOM_restart_CS
use MOM_restart, only : restore_state, is_new_run, MOM_restart_CS
use MOM_sponge, only : set_up_sponge_field, set_up_sponge_ML_density
use MOM_sponge, only : initialize_sponge, sponge_CS
use MOM_ALE_sponge, only : set_up_ALE_sponge_field, set_up_ALE_sponge_vel_field
Expand Down Expand Up @@ -190,7 +190,7 @@ subroutine MOM_initialize_state(u, v, h, tv, Time, G, GV, US, PF, dirs, &
call get_param(PF, mdl, "DEBUG", debug, default=.false.)
call get_param(PF, mdl, "DEBUG_OBC", debug_obc, default=.false.)

new_sim = determine_is_new_run(dirs%input_filename, dirs%restart_input_dir, G, restart_CS)
new_sim = is_new_run(restart_CS)
just_read = .not.new_sim

call get_param(PF, mdl, "INPUTDIR", inputdir, &
Expand Down

0 comments on commit fc75e0f

Please sign in to comment.