Commit 93bc55d 1 parent b432b7a commit 93bc55d Copy full SHA for 93bc55d
File tree 4 files changed +11
-11
lines changed
Source/FieldSolver/SpectralSolver/SpectralAlgorithms
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ foreach(D IN LISTS WarpX_DIMS)
2
2
warpx_set_suffix_dims(SD ${D} )
3
3
target_sources (lib_${SD}
4
4
PRIVATE
5
+ SpectralBaseAlgorithm.cpp
5
6
PsatdJRhomAlgorithmFirstOrder.cpp
6
- PsatdAlgorithmGalilean.cpp
7
7
PsatdJRhomAlgorithmSecondOrder.cpp
8
- PsatdAlgorithmPml.cpp
9
- SpectralBaseAlgorithm.cpp
8
+ PsatdAlgorithmGalilean.cpp
10
9
PsatdAlgorithmComoving.cpp
10
+ PsatdAlgorithmPml.cpp
11
11
)
12
12
13
13
if (D STREQUAL "RZ" )
Original file line number Diff line number Diff line change 1
1
CEXE_sources += SpectralBaseAlgorithm.cpp
2
2
CEXE_sources += PsatdJRhomAlgorithmFirstOrder.cpp
3
- CEXE_sources += PsatdAlgorithmGalilean.cpp
4
3
CEXE_sources += PsatdJRhomAlgorithmSecondOrder.cpp
5
- CEXE_sources += PsatdAlgorithmPml .cpp
4
+ CEXE_sources += PsatdAlgorithmGalilean .cpp
6
5
CEXE_sources += PsatdAlgorithmComoving.cpp
6
+ CEXE_sources += PsatdAlgorithmPml.cpp
7
7
8
8
ifeq ($(USE_RZ),TRUE)
9
9
CEXE_sources += SpectralBaseAlgorithmRZ.cpp
Original file line number Diff line number Diff line change 4
4
*
5
5
* License: BSD-3-Clause-LBNL
6
6
*/
7
- #ifndef WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
8
- #define WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
7
+ #ifndef WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_
8
+ #define WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_
9
9
10
10
#include " FieldSolver/SpectralSolver/SpectralFieldData.H"
11
11
#include " FieldSolver/SpectralSolver/SpectralKSpace.H"
@@ -97,4 +97,4 @@ class PsatdJRhomAlgorithmFirstOrder : public SpectralBaseAlgorithm
97
97
RhoInTime m_rho_in_time;
98
98
};
99
99
#endif // WARPX_USE_FFT
100
- #endif // WARPX_PSATD_ALGORITHM_FIRST_ORDER_H_
100
+ #endif // WARPX_PSATD_JRHOM_ALGORITHM_FIRST_ORDER_H_
Original file line number Diff line number Diff line change 4
4
*
5
5
* License: BSD-3-Clause-LBNL
6
6
*/
7
- #ifndef WARPX_PSATD_ALGORITHM_JRHOM_H_
8
- #define WARPX_PSATD_ALGORITHM_JRHOM_H_
7
+ #ifndef WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_
8
+ #define WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_
9
9
10
10
#include " FieldSolver/SpectralSolver/SpectralFieldData.H"
11
11
#include " FieldSolver/SpectralSolver/SpectralKSpace.H"
@@ -138,4 +138,4 @@ class PsatdJRhomAlgorithmSecondOrder : public SpectralBaseAlgorithm
138
138
RhoInTime m_rho_in_time;
139
139
};
140
140
#endif // WARPX_USE_FFT
141
- #endif // WARPX_PSATD_ALGORITHM_JRHOM_H_
141
+ #endif // WARPX_PSATD_JRHOM_ALGORITHM_SECOND_ORDER_H_
You can’t perform that action at this time.
0 commit comments