aboutsummaryrefslogtreecommitdiff
path: root/Source/WarpXProb.cpp
diff options
context:
space:
mode:
authorGravatar Dave Grote <grote1@llnl.gov> 2019-03-06 16:09:35 -0800
committerGravatar Dave Grote <grote1@llnl.gov> 2019-03-06 16:09:35 -0800
commit1e44150d0cc7d2b295f8f3e1b6968b97df4efab3 (patch)
tree28303c8c0c318421b9cda3d504993fb2caeb0815 /Source/WarpXProb.cpp
parent028011d44564f0745f3036b10bbd2ddadd0a0cf6 (diff)
parentf0bea186a253a97d82a78dcd227d07879a0eea1d (diff)
downloadWarpX-1e44150d0cc7d2b295f8f3e1b6968b97df4efab3.tar.gz
WarpX-1e44150d0cc7d2b295f8f3e1b6968b97df4efab3.tar.zst
WarpX-1e44150d0cc7d2b295f8f3e1b6968b97df4efab3.zip
Merge branch 'dev' into RZgeometry
Diffstat (limited to 'Source/WarpXProb.cpp')
-rw-r--r--Source/WarpXProb.cpp78
1 files changed, 0 insertions, 78 deletions
diff --git a/Source/WarpXProb.cpp b/Source/WarpXProb.cpp
deleted file mode 100644
index ecbf1afaf..000000000
--- a/Source/WarpXProb.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-#include <WarpX.H>
-#include <AMReX_ParmParse.H>
-
-using namespace amrex;
-
-void
-WarpX::InitLevelData (int lev, Real time)
-{
- for (int i = 0; i < 3; ++i) {
- current_fp[lev][i]->setVal(0.0);
- Efield_fp[lev][i]->setVal(0.0);
- Bfield_fp[lev][i]->setVal(0.0);
- }
-
- if (lev > 0) {
- for (int i = 0; i < 3; ++i) {
- Efield_aux[lev][i]->setVal(0.0);
- Bfield_aux[lev][i]->setVal(0.0);
-
- current_cp[lev][i]->setVal(0.0);
- Efield_cp[lev][i]->setVal(0.0);
- Bfield_cp[lev][i]->setVal(0.0);
- }
- }
-
- if (F_fp[lev]) {
- F_fp[lev]->setVal(0.0);
- }
-
- if (rho_fp[lev]) {
- rho_fp[lev]->setVal(0.0);
- }
-
- if (F_cp[lev]) {
- F_cp[lev]->setVal(0.0);
- }
-
- if (rho_cp[lev]) {
- rho_cp[lev]->setVal(0.0);
- }
-
- if (costs[lev]) {
- costs[lev]->setVal(0.0);
- }
-}
-
-#ifdef WARPX_USE_PSATD
-
-void
-WarpX::InitLevelDataFFT (int lev, Real time)
-{
- Efield_fp_fft[lev][0]->setVal(0.0);
- Efield_fp_fft[lev][1]->setVal(0.0);
- Efield_fp_fft[lev][2]->setVal(0.0);
- Bfield_fp_fft[lev][0]->setVal(0.0);
- Bfield_fp_fft[lev][1]->setVal(0.0);
- Bfield_fp_fft[lev][2]->setVal(0.0);
- current_fp_fft[lev][0]->setVal(0.0);
- current_fp_fft[lev][1]->setVal(0.0);
- current_fp_fft[lev][2]->setVal(0.0);
- rho_fp_fft[lev]->setVal(0.0);
-
- if (lev > 0)
- {
- Efield_cp_fft[lev][0]->setVal(0.0);
- Efield_cp_fft[lev][1]->setVal(0.0);
- Efield_cp_fft[lev][2]->setVal(0.0);
- Bfield_cp_fft[lev][0]->setVal(0.0);
- Bfield_cp_fft[lev][1]->setVal(0.0);
- Bfield_cp_fft[lev][2]->setVal(0.0);
- current_cp_fft[lev][0]->setVal(0.0);
- current_cp_fft[lev][1]->setVal(0.0);
- current_cp_fft[lev][2]->setVal(0.0);
- rho_cp_fft[lev]->setVal(0.0);
- }
-}
-
-#endif