Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused code in GWD #705

Merged
merged 3 commits into from
Feb 27, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -711,11 +711,6 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
real :: bgstressmax
real, pointer, dimension(:,:) :: LATS

character(len=ESMF_MAXSTR) :: GRIDNAME
character(len=4) :: imchar
character(len=2) :: dateline
integer :: imsize,nn

! Rayleigh friction parameters

REAL :: H0, HH, Z1, TAU1
Expand Down Expand Up @@ -752,16 +747,6 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
RC=STATUS )
VERIFY_(STATUS)

! Get grid name to determine IMSIZE
call MAPL_GetResource(MAPL,GRIDNAME,'AGCM_GRIDNAME:', RC=STATUS)
VERIFY_(STATUS)
GRIDNAME = AdjustL(GRIDNAME)
nn = len_trim(GRIDNAME)
dateline = GRIDNAME(nn-1:nn)
imchar = GRIDNAME(3:index(GRIDNAME,'x')-1)
read(imchar,*) imsize
if(dateline.eq.'CF') imsize = imsize*4

! Gravity wave drag
! -----------------

Expand Down