Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
17fd3ff
Initial cleanup of compute_eddy_diff; use CCPPized diffusion solver
jimmielin Nov 7, 2025
c4f6f12
Remove pbl_utils; remove pcols from eddy_diff
jimmielin Nov 8, 2025
5ca77c3
Start moving outfld history out from tentative run phase.
jimmielin Nov 11, 2025
6b778aa
Remove all diagnostic arrays from tentative run phase
jimmielin Nov 11, 2025
2c8aea8
Move to atmos_phys.
jimmielin Nov 11, 2025
a983145
Refactor HB: move kinematic fluxes and obklen to common interstitial …
jimmielin Nov 13, 2025
3c4363e
use vdiff interstitial for kinematic fluxes and obklen to CLUBB
jimmielin Nov 14, 2025
fcdd659
Change ztodt to dt; snapshot unit updates
jimmielin Nov 19, 2025
928a841
Fix cflx subsetting to UW ccppized scheme; fix snapshot unit
jimmielin Nov 24, 2025
54c748e
Merge branch 'cam_development' into hplin/diag_tke
jimmielin Nov 25, 2025
de3c70a
Merge branch 'cam_development' into hplin/diag_tke
jimmielin Dec 1, 2025
a017801
Merge branch 'cam_development' into hplin/diag_tke
jimmielin Dec 29, 2025
4df002c
Merge branch 'cam_development' into hplin/diag_tke
jimmielin Mar 9, 2026
21709cf
Update ccpp_constituent_prop_mod instantiate stub with diag_name (req…
jimmielin Mar 9, 2026
a6d326f
Merge branch 'cam_development' into hplin/diag_tke
jimmielin Apr 24, 2026
1749c38
Address review comments.
jimmielin Apr 24, 2026
c18a4de
Update src/physics/cam/eddy_diff_cam.F90
jimmielin Apr 24, 2026
de91f59
Fix namelist comment based on atmos_phys code review.
jimmielin Apr 24, 2026
c86c13a
Merge branch 'cam_development' into hplin/diag_tke
jimmielin May 11, 2026
5bc9abc
Merge branch 'hplin/diag_tke' of github.com:jimmielin/CAM into hplin/…
jimmielin May 11, 2026
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
1 change: 1 addition & 0 deletions bld/configure
Original file line number Diff line number Diff line change
Expand Up @@ -2150,6 +2150,7 @@ sub write_filepath
print $fh "$camsrcdir/src/atmos_phys/schemes/cloud_fraction\n";
print $fh "$camsrcdir/src/atmos_phys/schemes/vertical_diffusion\n";
print $fh "$camsrcdir/src/atmos_phys/schemes/holtslag_boville\n";
print $fh "$camsrcdir/src/atmos_phys/schemes/bretherton_park\n";

# Dynamics package and test utilities
print $fh "$camsrcdir/src/dynamics/$dyn\n";
Expand Down
4 changes: 2 additions & 2 deletions bld/namelist_files/namelist_definition.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3610,12 +3610,12 @@ Default: 100.e3 (hPa)
<entry id="eddy_moist_entrain_a2l" type="real" category="pbl"
group="eddy_diff_nl" valid_values="" >
Moist entrainment enhancement parameter.
Default: set by build-namelist
Default: 30.D0
</entry>

<entry id="kv_top_pressure" type="real" category="pbl"
group="eddy_diff_nl" valid_values="" >
Pressure (Pa) that defined the upper atmosphere for adjustment of
Pressure (Pa) that defines the upper atmosphere for adjustment of
eddy diffusivities from diag_TKE using kv_top_scale.
Default: 0.
</entry>
Expand Down
4 changes: 2 additions & 2 deletions src/control/cam_snapshot_common.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ subroutine fill_pbuf_info(pbuf_info, pbuf, const_cname)
'ipbl ','unset ',&
'ISS_FRAC ','unset ',&
'kpblh ','unset ',&
'ksrftms ','unset ',&
'ksrftms ','kg/m2/s ',&
'kvh ','m2/s ',&
'kvm ','m2/s ',&
'kvt ','m2/s ',&
Expand Down Expand Up @@ -1606,7 +1606,7 @@ subroutine fill_pbuf_info(pbuf_info, pbuf, const_cname)
'wpthlp_mc_zt ','unset ',&
'WPTHLP_nadv ','unset ',&
'WPTHVP ','unset ',&
'WSEDL ','unset ',&
'WSEDL ','m/s ',&
'wstarPBL ','unset ',&
'ZM_DP ','unset ' /), (/2,100/))

Expand Down
3,310 changes: 0 additions & 3,310 deletions src/physics/cam/eddy_diff.F90

This file was deleted.

988 changes: 376 additions & 612 deletions src/physics/cam/eddy_diff_cam.F90

Large diffs are not rendered by default.

139 changes: 0 additions & 139 deletions src/physics/cam/pbl_utils.F90

This file was deleted.

Loading
Loading