Skip to content

Commit

Permalink
missing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
huixingjian committed Sep 26, 2024
1 parent 83822ec commit f78bab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/laser/MultiLaser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ MultiLaser::AdvanceSliceFFT (const amrex::Real dt, int step)
const Complex inv_k2a = abs(kx*kx + ky*ky + acoeff) > 0. ?
1._rt/(kx*kx + ky*ky + acoeff) : 0.;
rhs_fourier_arr(i,j) *= -inv_k2a;
arr(i,j,rhs_fourier)= -inv_k2a;
arr(i,j,WhichLaserSlice::rhs_fourier)= -inv_k2a;
});

// Transform rhs to Fourier space to get solution in sol
Expand Down

0 comments on commit f78bab2

Please sign in to comment.