Skip to content

Commit

Permalink
Update example/poisson_gmg/parthenon_app_inputs.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 authored Oct 13, 2023
1 parent a925229 commit bae269f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/poisson_gmg/parthenon_app_inputs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ void ProblemGenerator(Mesh *pm, ParameterInput *pin, MeshData<Real> *md) {
Real x1 = coords.X<1, te>(i);
Real x2 = coords.X<2, te>(j);
Real x3 = coords.X<2, te>(k);
Real x1f = coords.X<1, TE::F1>(i);
Real x2f = coords.X<2, TE::F2>(j);
Real x3f = coords.X<2, TE::F3>(k);
Real x1f = coords.X<1, TE::F1>(k, j, i);
Real x2f = coords.X<2, TE::F2>(k, j, i);
Real x3f = coords.X<2, TE::F3>(k, j, i);
Real dx1 = coords.Dxc<1>(k, j, i);
Real dx2 = coords.Dxc<2>(k, j, i);
Real dx3 = coords.Dxc<3>(k, j, i);
Expand Down

0 comments on commit bae269f

Please sign in to comment.