diff options
author | 2020-01-31 16:47:01 -0800 | |
---|---|---|
committer | 2020-01-31 16:47:01 -0800 | |
commit | 7fe22b993b1a4e1de5d6f815e68b7e9ffad468f4 (patch) | |
tree | b338390742db59a70e0068b28b0d854ff7d2c0b7 | |
parent | 201813b26fffede6968c2b8af714ccd0599b820d (diff) | |
download | WarpX-7fe22b993b1a4e1de5d6f815e68b7e9ffad468f4.tar.gz WarpX-7fe22b993b1a4e1de5d6f815e68b7e9ffad468f4.tar.zst WarpX-7fe22b993b1a4e1de5d6f815e68b7e9ffad468f4.zip |
fixed typos in comments
-rw-r--r-- | Source/FieldSolver/WarpX_QED_K.H | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/FieldSolver/WarpX_QED_K.H b/Source/FieldSolver/WarpX_QED_K.H index 44492bfbb..7c55ce4df 100644 --- a/Source/FieldSolver/WarpX_QED_K.H +++ b/Source/FieldSolver/WarpX_QED_K.H @@ -10,15 +10,15 @@ using namespace amrex; /** * calc_M calculates the Magnetization field of the vacuum at a specific point and returns it as a three component vector * \param[in] arr This is teh empty array that will be filled with the components of the M-field - * \param[in] ex The x-component of the E-field at the point at whicht he M-field is to be calculated - * \param[in] ey The y-component of the E-field at the point at whicht he M-field is to be calculated - * \param[in] ez The z-component of the E-field at the point at whicht he M-field is to be calculated - * \param[in] bx The x-component of the B-field at the point at whicht he M-field is to be calculated - * \param[in] by The y-component of the B-field at the point at whicht he M-field is to be calculated - * \param[in] bz The z-component of the B-field at the point at whicht he M-field is to be calculated + * \param[in] ex The x-component of the E-field at the point at whicht the M-field is to be calculated + * \param[in] ey The y-component of the E-field at the point at whicht the M-field is to be calculated + * \param[in] ez The z-component of the E-field at the point at whicht the M-field is to be calculated + * \param[in] bx The x-component of the B-field at the point at whicht the M-field is to be calculated + * \param[in] by The y-component of the B-field at the point at whicht the M-field is to be calculated + * \param[in] bz The z-component of the B-field at the point at whicht the M-field is to be calculated * \param[in] xi The quantum parameter being used for the simulation * \param[in] c2 The speed of light squared -*/ + */ AMREX_GPU_HOST_DEVICE AMREX_INLINE void calc_M(Real arr [], Real ex, Real ey, Real ez, Real bx, Real by, Real bz, Real xi, Real c2) { @@ -285,7 +285,7 @@ const amrex::Real dyi = 1./dy; const amrex::Real detA = a00*( a11*a22 - a12*a12 ) - a01*( a01*a22 - a02*a12 ) + a02*( a01*a12 - a02*a11 ); - // Calcualting matrix values for the QED correction algorithm + // Calcualting inverse matrix values using the general 3x3 form const amrex::Real invAx[3] = {a22*a11 - a12*a12, a12*a02 - a22*a01, a12*a01 - a11*a02}; |