Skip to content

Commit

Permalink
fix compile (#1895)
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren authored Oct 18, 2024
1 parent fd923ad commit 1cbd703
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
6 changes: 2 additions & 4 deletions Source/TimeIntegration/ERF_TI_slow_rhs_fun.H
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,7 @@
// Populate RHS for relaxation zones if using real bcs
if (use_real_bcs && (level == 0)) {
if (real_width>0) {
realbdy_compute_interior_ghost_rhs(init_type,
bdy_time_interval, start_bdy_time, new_stage_time, slow_dt,
realbdy_compute_interior_ghost_rhs(bdy_time_interval, start_bdy_time, new_stage_time, slow_dt,
real_width, real_set_width, fine_geom,
S_rhs, S_old, S_data,
bdy_data_xlo, bdy_data_xhi,
Expand Down Expand Up @@ -459,8 +458,7 @@
// Populate RHS for relaxation zones if using real bcs
if (use_real_bcs && (level == 0)) {
if (real_width>0) {
realbdy_compute_interior_ghost_rhs(init_type,
bdy_time_interval, start_bdy_time, new_stage_time, slow_dt,
realbdy_compute_interior_ghost_rhs(bdy_time_interval, start_bdy_time, new_stage_time, slow_dt,
real_width, real_set_width, fine_geom,
S_rhs, S_old, S_data,
bdy_data_xlo, bdy_data_xhi,
Expand Down
4 changes: 1 addition & 3 deletions Source/Utils/ERF_InteriorGhostCells.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ compute_interior_ghost_bxs_xy (const Box& bx,
/**
* Compute the RHS in the relaxation zone
*
* @param[in] init_type initialization method for this simulation
* @param[in] bdy_time_interval time interval between boundary condition time stamps
* @param[in] time current time
* @param[in] delta_t timestep
Expand All @@ -105,8 +104,7 @@ compute_interior_ghost_bxs_xy (const Box& bx,
* @param[in] start_bdy_time time of the first boundary data read in
*/
void
realbdy_compute_interior_ghost_rhs (const std::string& /*init_type*/,
const Real& bdy_time_interval,
realbdy_compute_interior_ghost_rhs (const Real& bdy_time_interval,
const Real& start_bdy_time,
const Real& time,
const Real& delta_t,
Expand Down
3 changes: 1 addition & 2 deletions Source/Utils/ERF_Utils.H
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ void compute_interior_ghost_bxs_xy (const amrex::Box& bx,
/*
* Compute relaxation region RHS with wrfbdy
*/
void realbdy_compute_interior_ghost_rhs (const std::string& init_type,
const amrex::Real& bdy_time_interval,
void realbdy_compute_interior_ghost_rhs (const amrex::Real& bdy_time_interval,
const amrex::Real& start_bdy_time,
const amrex::Real& time,
const amrex::Real& delta_t,
Expand Down

0 comments on commit 1cbd703

Please sign in to comment.