Skip to content

Commit

Permalink
Updated canopy diagnostics again.
Browse files Browse the repository at this point in the history
  • Loading branch information
drnimbusrain committed Feb 12, 2025
1 parent b6523c7 commit d22c3eb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions atmos_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%claie(ix) = claie(i,j)
GFS_IntDiag%claie(ix) = claie(i,j)
enddo
enddo

Expand All @@ -1498,7 +1498,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%cfch(ix) = cfch(i,j)
GFS_IntDiag%cfch(ix) = cfch(i,j)
enddo
enddo

Expand All @@ -1508,7 +1508,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%cfrt(ix) = cfrt(i,j)
GFS_IntDiag%cfrt(ix) = cfrt(i,j)
enddo
enddo

Expand All @@ -1518,7 +1518,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%cclu(ix) = cclu(i,j)
GFS_IntDiag%cclu(ix) = cclu(i,j)
enddo
enddo

Expand All @@ -1528,7 +1528,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%cpopu(ix) = cpopu(i,j)
GFS_IntDiag%cpopu(ix) = cpopu(i,j)
enddo
enddo
!IVAI: case ('import') photdiag arrays
Expand All @@ -1538,7 +1538,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%coszens(ix) = coszens(i,j)
GFS_IntDiag%coszens(ix) = coszens(i,j)
enddo
enddo

Expand All @@ -1548,7 +1548,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%jo3o1d(ix) = jo3o1d(i,j)
GFS_IntDiag%jo3o1d(ix) = jo3o1d(i,j)
enddo
enddo

Expand All @@ -1558,7 +1558,7 @@ subroutine update_atmos_chemistry(state, rc)
ib = i + Atm_block%isc - 1
nb = Atm_block%blkno(ib,jb)
ix = Atm_block%ixp(ib,jb)
GFS_Data(nb)%IntDiag%jno2(ix) = jno2(i,j)
GFS_IntDiag%jno2(ix) = jno2(i,j)
enddo
enddo
!IVAI
Expand Down

0 comments on commit d22c3eb

Please sign in to comment.