Skip to content

Commit

Permalink
fix oops. (#1928)
Browse files Browse the repository at this point in the history
  • Loading branch information
AMLattanzi authored Nov 5, 2024
1 parent 5472f4f commit 9428c70
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Source/SourceTerms/ERF_moist_set_rhs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ moist_set_rhs (const Box& tbx,
tbx_xlo, tbx_xhi,
tbx_ylo, tbx_yhi,
ng_vect, true);
wrfbdy_set_rhs_in_spec_region(dt, RhoQ1_comp, 1,
width, set_width, dom_lo, dom_hi,
tbx_xlo, tbx_xhi, tbx_ylo, tbx_yhi,
arr_xlo, arr_xhi, arr_ylo, arr_yhi,
old_cons, cell_rhs);
realbdy_set_rhs_in_spec_region(dt, RhoQ1_comp, 1,
width, set_width, dom_lo, dom_hi,
tbx_xlo, tbx_xhi, tbx_ylo, tbx_yhi,
arr_xlo, arr_xhi, arr_ylo, arr_yhi,
old_cons, cell_rhs);
}


Expand All @@ -178,11 +178,11 @@ moist_set_rhs (const Box& tbx,
compute_interior_ghost_bxs_xy(tbx, domain, width, set_width,
tbx_xlo, tbx_xhi,
tbx_ylo, tbx_yhi);
wrfbdy_compute_laplacian_relaxation(RhoQ1_comp, 1,
width, set_width, dom_lo, dom_hi, F1, F2,
tbx_xlo, tbx_xhi, tbx_ylo, tbx_yhi,
arr_xlo, arr_xhi, arr_ylo, arr_yhi,
new_cons, cell_rhs);
realbdy_compute_laplacian_relaxation(RhoQ1_comp, 1,
width, set_width, dom_lo, dom_hi, F1, F2,
tbx_xlo, tbx_xhi, tbx_ylo, tbx_yhi,
arr_xlo, arr_xhi, arr_ylo, arr_yhi,
new_cons, cell_rhs);
}

/*
Expand Down

0 comments on commit 9428c70

Please sign in to comment.