Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/MOM.F90
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ module MOM

! Variables needed to reach between start and finish phases of initialization
logical :: write_IC !< If true, then the initial conditions will be written to file
character(len=120) :: IC_file !< A file into which the initial conditions are
character(len=512) :: IC_file !< A file into which the initial conditions are
!! written in a new run if SAVE_INITIAL_CONDS is true.

logical :: calc_rho_for_sea_lev !< If true, calculate rho to convert pressure to sea level
Expand Down
2 changes: 1 addition & 1 deletion src/framework/MOM_restart.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1590,7 +1590,7 @@ subroutine save_restart(directory, time, G, CS, time_stamped, filename, GV, num_
type(MOM_field) :: fields(CS%max_fields) ! Opaque types containing metadata describing
! each variable that will be written.
character(len=512) :: restartpath ! The restart file path (dir/file).
character(len=256) :: restartname ! The restart file name (no dir).
character(len=512) :: restartname ! The restart file name (no dir).
character(len=8) :: suffix ! A suffix (like _2) that is appended
! to the name of files after the first.
integer(kind=int64) :: var_sz, size_in_file ! The size in bytes of each variable
Expand Down
Loading