Skip to content

Commit

Permalink
Z4c: Modify field value at infinity for apply_boundary_conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
lwJi committed Nov 21, 2023
1 parent 794caa8 commit 3433f13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Z4c/src/apply_newrad.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ extern "C" void apply_boundary_conditions(CCTK_ARGUMENTS) {
DECLARE_CCTK_ARGUMENTSX_apply_boundary_conditions;
DECLARE_CCTK_PARAMETERS;

NewRadX_Apply(cctkGH, chi, chi_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatxx, gammatxx_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, chi, chi_rhs, 1, 1, 1);
NewRadX_Apply(cctkGH, gammatxx, gammatxx_rhs, 1, 1, 1);
NewRadX_Apply(cctkGH, gammatxy, gammatxy_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatxz, gammatxz_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatyy, gammatyy_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatyy, gammatyy_rhs, 1, 1, 1);
NewRadX_Apply(cctkGH, gammatyz, gammatyz_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatzz, gammatzz_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, Kh, Kh_rhs, 0, 1, 1);
NewRadX_Apply(cctkGH, gammatzz, gammatzz_rhs, 1, 1, 1);
NewRadX_Apply(cctkGH, Kh, Kh_rhs, 0, 1, 2);
NewRadX_Apply(cctkGH, Atxx, Atxx_rhs, 0, 1, 2);
NewRadX_Apply(cctkGH, Atxy, Atxy_rhs, 0, 1, 2);
NewRadX_Apply(cctkGH, Atxz, Atxz_rhs, 0, 1, 2);
Expand Down

0 comments on commit 3433f13

Please sign in to comment.