Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

[submodule "atmos_phys"]
path = src/atmos_phys
url = https://github.com/ESCOMP/atmospheric_physics
fxtag = atmos_phys0_18_002
url = https://github.com/peverwhee/atmospheric_physics
fxtag = 9b5ec5e8d501bd80ac64766730ab70ad968e8640
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the reminder to myself, that I need to wait for the atmos_phys tag to be updated

fxrequired = AlwaysRequired
fxDONOTUSEurl = https://github.com/ESCOMP/atmospheric_physics

Expand Down
1 change: 1 addition & 0 deletions bld/namelist_files/namelist_defaults_cam.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<ncdata nlev="58" analytic_ic="1" >atm/cam/inic/cam_vcoords_L58_c250227.nc</ncdata>

<!-- Vertical/Horizontal coordinates only - MPAS initial files for analytic cases-->
<ncdata hgrid="mpasa120" nlev="26" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L26_notopo_coords_c251105.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa480_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa60" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa60_L32_notopo_coords_c240507.nc</ncdata>
Expand Down
2 changes: 1 addition & 1 deletion src/atmos_phys
14 changes: 0 additions & 14 deletions src/chemistry/geoschem/chemistry.F90
Original file line number Diff line number Diff line change
Expand Up @@ -949,8 +949,6 @@ function chem_implements_cnst(name)
! Purpose: return true if specified constituent is implemented by this package
! Author: B. Eaton

IMPLICIT NONE

CHARACTER(LEN=*), INTENT(IN) :: name ! constituent name
LOGICAL :: chem_implements_cnst ! return value
INTEGER :: M
Expand Down Expand Up @@ -4640,12 +4638,8 @@ subroutine chem_init_restart(File)
use tracer_cnst, only : init_tracer_cnst_restart
use tracer_srcs, only : init_tracer_srcs_restart

IMPLICIT NONE

TYPE(file_desc_t) :: File

WRITE(iulog,'(a)') 'chem_init_restart: init restarts for tracer sources and offline fields'

!
! data for offline tracers
!
Expand All @@ -4665,12 +4659,8 @@ subroutine chem_write_restart( File )
use tracer_cnst, only : write_tracer_cnst_restart
use tracer_srcs, only : write_tracer_srcs_restart

IMPLICIT NONE

TYPE(file_desc_t) :: File

WRITE(iulog,'(a)') 'chem_write_restart: writing restarts for tracer sources and offline fields'

! data for offline tracers
call write_tracer_cnst_restart(File)
call write_tracer_srcs_restart(File)
Expand All @@ -4687,12 +4677,8 @@ subroutine chem_read_restart( File )
use tracer_cnst, only : read_tracer_cnst_restart
use tracer_srcs, only : read_tracer_srcs_restart

IMPLICIT NONE

TYPE(file_desc_t) :: File

WRITE(iulog,'(a)') 'GCCALL CHEM_READ_RESTART'

! data for offline tracers
call read_tracer_cnst_restart(File)
call read_tracer_srcs_restart(File)
Expand Down
2 changes: 1 addition & 1 deletion src/physics/rrtmgp/radiation.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ subroutine radiation_tend( &
! Prepare state variables, daylit columns, albedos for RRTMGP
! Also calculate modified cloud fraction
call rrtmgp_inputs_run(dosw, dolw, associated(cldfsnow), associated(cldfgrau), &
masterproc, iulog, is_mpas, state%pmid(:ncol,:), state%pint(:ncol,:), state%t(:ncol,:), &
is_mpas, state%pmid(:ncol,:), state%pint(:ncol,:), state%t(:ncol,:), &
nday, idxday, cldfprime(:ncol,:), coszrs(:ncol), kdist_sw, t_sfc, &
emis_sfc, t_rad, pmid_rad, pint_rad, t_day, pmid_day, &
pint_day, coszrs_day, alb_dir, alb_dif, cam_in%lwup(:ncol), stebol, &
Expand Down
Loading