Skip to content

Commit

Permalink
Fixes multi process test a typo in aci interface
Browse files Browse the repository at this point in the history
  • Loading branch information
singhbalwinder committed Aug 16, 2024
1 parent 1d796b4 commit 7316181
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ void MAMAci::set_grids(
frz_unit, grid_name);

// heterogeneous freezing by deposition nucleation [cm^-3 s^-1]
add_field<Computed>("hetfrz_depostion_nucleation_tend", scalar3d_layout_mid,
add_field<Computed>("hetfrz_deposition_nucleation_tend", scalar3d_layout_mid,
frz_unit, grid_name);
} // function set_grids ends

Expand Down Expand Up @@ -390,8 +390,8 @@ void MAMAci::initialize_impl(const RunType run_type) {
get_field_out("hetfrz_immersion_nucleation_tend").get_view<Real **>();
hetfrz_contact_nucleation_tend_ =
get_field_out("hetfrz_contact_nucleation_tend").get_view<Real **>();
hetfrz_depostion_nucleation_tend_ =
get_field_out("hetfrz_depostion_nucleation_tend").get_view<Real **>();
hetfrz_deposition_nucleation_tend_ =
get_field_out("hetfrz_deposition_nucleation_tend").get_view<Real **>();

//---------------------------------------------------------------------------------
// Allocate memory for the class members
Expand Down Expand Up @@ -642,7 +642,7 @@ void MAMAci::run_impl(const double dt) {
team_policy, hetfrz_, dry_atm_, dry_aero_, factnum_, dt, nlev_,
// ## output to be used by the other processes ##
hetfrz_immersion_nucleation_tend_, hetfrz_contact_nucleation_tend_,
hetfrz_depostion_nucleation_tend_,
hetfrz_deposition_nucleation_tend_,
// work arrays
diagnostic_scratch_);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%YAML 1.1
---
filename_prefix: shoc_mam4_drydep_output
filename_prefix: mam4_srf_online_emiss_mam4_constituent_fluxes_output
Averaging Type: Instant
Field Names:
- bc_a1
Expand Down

0 comments on commit 7316181

Please sign in to comment.