Skip to content

Commit

Permalink
CESM3_SLH update CAM mozart modules
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaPedroFernandez committed Sep 20, 2024
1 parent 394a011 commit 6d33334
Show file tree
Hide file tree
Showing 2 changed files with 362 additions and 16 deletions.
18 changes: 16 additions & 2 deletions src/chemistry/mozart/mo_chemini.F90
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,18 @@ subroutine chemini &
use mo_strato_rates, only : init_strato_rates
use mo_cph, only : init_cph
use mo_sad, only : sad_inti
!rpf_CESM3_SLH - merging SLH halogen routines in a single module
! use mo_sadtrop, only : sadtrop_inti
use mo_sad, only : sadtrop_inti
!rpf_CESM3_SLH - merging SLH halogen routines in a single module
use euvac, only : euvac_init
use mo_heatnirco2, only : heatnirco2_init
use mo_waccm_hrates, only : init_hrates
use mo_aurora, only : aurora_inti
use clybry_fam, only : clybry_fam_init
!rpf_CESM2_SLH
! use clybry_fam, only : clybry_fam_init
use clybryiy_fam, only : clybryiy_fam_init
!rpf_CESM2_SLH
use mo_neu_wetdep, only : neu_wetdep_init
use physics_buffer, only : physics_buffer_desc
use cam_abortutils, only : endrun
Expand Down Expand Up @@ -167,6 +174,10 @@ subroutine chemini &
!-----------------------------------------------------------------------
call sad_inti(pbuf2d)
if (masterproc) write(iulog,*) 'chemini: after sad_inti on node ',iam
!rpf_CESM2_SLH
call sadtrop_inti(pbuf2d)
if (masterproc) write(iulog,*) 'chemini: after sadtrop_inti on node ',iam
!rpf_CESM2_SLH

!-----------------------------------------------------------------------
! ... initialize the dry deposition module
Expand Down Expand Up @@ -210,7 +221,10 @@ subroutine chemini &
call neu_wetdep_init()
if (masterproc) write(iulog,*) 'chemini: after wetdep_init'

call clybry_fam_init()
!rpf_CESM2_SLH
! call clybry_fam_init()
call clybryiy_fam_init()
!rpf_CESM2_SLH

if (masterproc) write(iulog,*) 'chemini: finished on node ',iam

Expand Down
Loading

0 comments on commit 6d33334

Please sign in to comment.