Skip to content

Commit

Permalink
fix filename in namelist defaults file
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-eaton committed Feb 7, 2024
1 parent aff71da commit e6f1f70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bld/namelist_files/namelist_defaults_cam.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1993,7 +1993,7 @@
<gas_wetdep_method phys="spcam_m2005" >OFF</gas_wetdep_method>

<!-- Dry Dep surface data file needed by prognostic MAM on unstructured grid only. -->
<drydep_srf_file hgrid="ne3np4" npg="3" >atm/cam/chem/trop_mam/atmsrf_ne3np4.pg3_c221214.nc</drydep_srf_file>
<drydep_srf_file hgrid="ne3np4" npg="3" >atm/cam/chem/trop_mam/atmsrf_ne3np4.pg3_221214.nc</drydep_srf_file>
<drydep_srf_file hgrid="ne5np4" >atm/cam/chem/trop_mam/atmsrf_ne5np4_110920.nc</drydep_srf_file>
<drydep_srf_file hgrid="ne5np4" npg="3">atm/cam/chem/trop_mam/atmsrf_ne5pg3_201105.nc</drydep_srf_file>
<drydep_srf_file hgrid="ne16np4" >atm/cam/chem/trop_mam/atmsrf_ne16np4_110920.nc</drydep_srf_file>
Expand Down
2 changes: 1 addition & 1 deletion src/physics/rrtmgp/rrtmgp_inputs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ subroutine rrtmgp_set_cloud_sw( &
call get_snow_optics_sw(state, pbuf, snow_tau, snow_tau_w, snow_tau_w_g, sw_tau_w_f)
do i = 1, ncol
do k = 1, pver
if (cldfprime(i,k) > 0.) then
if (cldfprime(i,k) > 0._r8) then
c_cld_tau(:,i,k) = ( cldfsnow(i,k)*snow_tau(:,i,k) &
+ cld(i,k)*cld_tau(:,i,k) )/cldfprime(i,k)
c_cld_tau_w(:,i,k) = ( cldfsnow(i,k)*snow_tau_w(:,i,k) &
Expand Down

0 comments on commit e6f1f70

Please sign in to comment.