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

add in more BCVar args #254

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions Source/Initialization/REMORA_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ REMORA::set_2darrays (int lev)
});
}

FillPatch(lev, t_new[lev], *vec_ubar[lev], GetVecOfPtrs(vec_ubar), BdyVars::ubar,0,false,false);
FillPatch(lev, t_new[lev], *vec_vbar[lev], GetVecOfPtrs(vec_vbar), BdyVars::vbar,0,false,false);
FillPatch(lev, t_new[lev], *vec_ubar[lev], GetVecOfPtrs(vec_ubar), BCVars::ubar_bc, BdyVars::ubar,0,false,false);
FillPatch(lev, t_new[lev], *vec_vbar[lev], GetVecOfPtrs(vec_vbar), BCVars::vbar_bc, BdyVars::vbar,0,false,false);
}

void
Expand Down
6 changes: 3 additions & 3 deletions Source/TimeIntegration/REMORA_setup_step.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,10 @@ REMORA::setup_step (int lev, Real time, Real dt_lev)
}
nstp = 0;

FillPatch(lev, time, *cons_old[lev], cons_old, BdyVars::t);
FillPatch(lev, time, *cons_new[lev], cons_new, BdyVars::t);
FillPatch(lev, time, *cons_old[lev], cons_old, BCVars::cons_bc, BdyVars::t);
FillPatch(lev, time, *cons_new[lev], cons_new, BCVars::cons_bc, BdyVars::t);

FillPatch(lev, time, *vec_sstore[lev], GetVecOfPtrs(vec_sstore), BdyVars::t);
FillPatch(lev, time, *vec_sstore[lev], GetVecOfPtrs(vec_sstore), BCVars::cons_bc, BdyVars::t);

// Don't actually want to apply boundary conditions here
vec_Huon[lev]->FillBoundary(geom[lev].periodicity());
Expand Down
Loading