Skip to content

Commit

Permalink
Fix ColliderRelevant.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgrote committed Oct 4, 2023
1 parent d1c2a70 commit 247db34
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Diagnostics/ReducedDiags/ColliderRelevant.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,11 +466,11 @@ void ColliderRelevant::ComputeDiags (int step)
const int offset = 0;
const auto getExternalEB = GetExternalEBField(pti, offset);
const amrex::ParticleReal Ex_external_particle = myspc.m_E_external_particle[0];
const amrex::ParticleReal Ey_external_particle = myspc.m_E_external_particle[0];
const amrex::ParticleReal Ez_external_particle = myspc.m_E_external_particle[0];
const amrex::ParticleReal Ey_external_particle = myspc.m_E_external_particle[1];
const amrex::ParticleReal Ez_external_particle = myspc.m_E_external_particle[2];
const amrex::ParticleReal Bx_external_particle = myspc.m_B_external_particle[0];
const amrex::ParticleReal By_external_particle = myspc.m_B_external_particle[0];
const amrex::ParticleReal Bz_external_particle = myspc.m_B_external_particle[0];
const amrex::ParticleReal By_external_particle = myspc.m_B_external_particle[1];
const amrex::ParticleReal Bz_external_particle = myspc.m_B_external_particle[2];

// define variables in preparation for field gathering
amrex::Box box = pti.tilebox();
Expand Down

0 comments on commit 247db34

Please sign in to comment.