Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cam6_4_035: Generalized aerosol wet removal #1099

Merged
merged 15 commits into from
Sep 23, 2024
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
5 changes: 3 additions & 2 deletions bld/build-namelist
Original file line number Diff line number Diff line change
Expand Up @@ -591,8 +591,9 @@ if ( ($chem ne 'none') or ( $prog_species ) ){
($aer_wetdep_list =~ /ncl/i || $aer_wetdep_list =~ /sslt/i)) {
$prescribe_aerosols = $FALSE;
}

add_default($nl, 'aer_wetdep_list', 'val'=>$aer_wetdep_list );
if ($chem !~ /_mam/) {
add_default($nl, 'aer_wetdep_list', 'val'=>$aer_wetdep_list );
}

if (!($chem =~ /_mam/)) {
if (!defined $nl->get_value('aer_sol_facti')) {
Expand Down
6 changes: 3 additions & 3 deletions bld/namelist_files/namelist_definition.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6277,19 +6277,19 @@ Default: set by build-namelist.
</entry>

<entry id="sol_factb_interstitial" type="real" category="cam_chem"
group="aerosol_nl" valid_values="" >
group="aero_wetdep_nl" valid_values="" >
Tuning for below cloud scavenging of interstitial modal aerosols.
Default: set by build-namelist.
</entry>

<entry id="sol_factic_interstitial" type="real" category="cam_chem"
group="aerosol_nl" valid_values="" >
group="aero_wetdep_nl" valid_values="" >
Tuning for in-cloud scavenging of interstitial modal aerosols.
Default: set by build-namelist.
</entry>

<entry id="sol_facti_cloud_borne" type="real" category="cam_chem"
group="aerosol_nl" valid_values="" >
group="aero_wetdep_nl" valid_values="" >
Tuning for in-cloud scavenging of cloud-borne modal aerosols.
Default: set by build-namelist.
</entry>
Expand Down
Loading