Skip to content

Commit

Permalink
Merge PR #1842 (branch 'bugfix/geos') into dev/14.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msulprizio committed Jun 23, 2023
2 parents a89ba68 + 22f080d commit 6d7617b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions GeosCore/fjx_interface_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -527,10 +527,10 @@ SUBROUTINE Run_FastJX( WLAOD, Input_Opt, State_Chm, State_Diag, &
#if defined( MODEL_GEOS )
! Initialize diagnostics arrays
IF ( State_Diag%Archive_EXTRALNLEVS ) THEN
State_Diag%EXTRALNLEVS(ILON,ILAT) = 0.0
State_Diag%EXTRALNLEVS(NLON,NLAT) = 0.0
ENDIF
IF ( State_Diag%Archive_EXTRALNITER ) THEN
State_Diag%EXTRALNITER(ILON,ILAT) = 0.0
State_Diag%EXTRALNITER(NLON,NLAT) = 0.0
ENDIF
#endif

Expand Down
6 changes: 3 additions & 3 deletions Headers/CMN_FJX_MOD.F90
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,6 @@ SUBROUTINE Init_CMN_FJX( Input_Opt, State_Grid, RC )
JXL1_ = JXL_+1 ! Vertical levs edges for J-values
JXL2_ = 2*JXL_+2 ! Max # levs in the basic Fast-JX grid (mid-level)

JTAUMX = ( N_ - 4*JXL_ ) / 2 ! Maximum number of divisions ( i.e., may
! not get to ATAUMN)

#ifdef MODEL_GEOS
! N_ = no. of levels in Mie scattering arrays
IF ( Input_Opt%LLFASTJX > 0 ) THEN
Expand All @@ -252,6 +249,9 @@ SUBROUTINE Init_CMN_FJX( Input_Opt, State_Grid, RC )
ENDIF
#endif

JTAUMX = ( N_ - 4*JXL_ ) / 2 ! Maximum number of divisions ( i.e., may
! not get to ATAUMN)

AN_ = 37 ! # of separate aerosols per layer; Including PSCs
W_ = 18 ! # of wavelength bins

Expand Down

0 comments on commit 6d7617b

Please sign in to comment.