Skip to content

Commit ee4a28b

Browse files
committed
correct the AOASRC name
modified: src/physics/cam/aoa_tracers.F90
1 parent 99db740 commit ee4a28b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/physics/cam/aoa_tracers.F90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ module aoa_tracers
3434
character(len=4), parameter :: c_names(ncnst) = (/'AOA1', 'HORZ', 'VERT'/)
3535

3636
! constituent source/sink names
37-
character(len=8), parameter :: src_names(ncnst) = (/'AOAMFSRC', 'HORZSRC ', 'VERTSRC '/)
37+
character(len=7), parameter :: src_names(ncnst) = (/'AOA1SRC', 'HORZSRC', 'VERTSRC'/)
3838

3939
integer :: ifirst = -1 ! global index of first constituent
40-
integer :: ixaoa = -1 ! global index for AOAMFSRC tracer
40+
integer :: ixaoa = -1 ! global index for AOA1SRC tracer
4141
integer :: ixht = -1 ! global index for HORZ tracer
4242
integer :: ixvt = -1 ! global index for VERT tracer
4343

@@ -347,7 +347,7 @@ subroutine aoa_tracers_timestep_tend(state, ptend, dt)
347347
lchnk = state%lchnk
348348
ncol = state%ncol
349349

350-
! AOAMF
350+
! AOA1
351351
xmmr = mmr0*(1._r8 + per_yr*years)
352352
ptend%q(1:ncol,pver,ixaoa) = (xmmr - state%q(1:ncol,pver,ixaoa)) / dt
353353

@@ -403,7 +403,7 @@ subroutine init_cnst_3d(m, latvals, lonvals, mask, q)
403403

404404
if (m == ixaoa) then
405405

406-
! AOAMF
406+
! AOA1
407407
q(:,:) = 0.0_r8
408408

409409
else if (m == ixht) then

0 commit comments

Comments
 (0)