blob: ecbf1afaf17dad45270a27916f8b5219da15f970 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#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
|