diff options
Diffstat (limited to 'Source/Utils/WarpXAlgorithmSelection.cpp')
-rw-r--r-- | Source/Utils/WarpXAlgorithmSelection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Utils/WarpXAlgorithmSelection.cpp b/Source/Utils/WarpXAlgorithmSelection.cpp index 302060b1a..14d1bea64 100644 --- a/Source/Utils/WarpXAlgorithmSelection.cpp +++ b/Source/Utils/WarpXAlgorithmSelection.cpp @@ -76,11 +76,11 @@ const std::map<std::string, int> MacroscopicSolver_algo_to_int = { }; const std::map<std::string, int> FieldBCType_algo_to_int = { - {"pec", FieldBoundaryType::PEC}, - {"periodic", FieldBoundaryType::Periodic}, {"pml", FieldBoundaryType::PML}, + {"periodic", FieldBoundaryType::Periodic}, + {"pec", FieldBoundaryType::PEC}, {"pmc", FieldBoundaryType::PMC}, - {"default", FieldBoundaryType::PEC} + {"default", FieldBoundaryType::PML} }; const std::map<std::string, int> ParticleBCType_algo_to_int = { |