Skip to content

Commit

Permalink
add dimensional rescaling for thickness initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
MJHarrison-GFDL committed Jul 26, 2021
1 parent eacf3e2 commit 9c0a735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ocean_data_assim/MOM_oda_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ subroutine init_oda(Time, G, GV, diag_CS, CS)
!jsd=jsd+jdg_offset; jed=jed+jdg_offset ! TODO: switch to local indexing? (mjh)

if (.not. associated(CS%h)) then
allocate(CS%h(isd:ied,jsd:jed,CS%GV%ke)); CS%h(:,:,:)=CS%GV%Angstrom_m
allocate(CS%h(isd:ied,jsd:jed,CS%GV%ke)); CS%h(:,:,:)=CS%GV%Angstrom_m*CS%GV%H_to_m
! assign thicknesses
call ALE_initThicknessToCoord(CS%ALE_CS,G,CS%GV,CS%h)
endif
Expand Down

0 comments on commit 9c0a735

Please sign in to comment.