-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1D_PEC_Centered.json
84 lines (81 loc) · 1.44 KB
/
1D_PEC_Centered.json
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
79
80
81
82
83
84
{
"solver_options": {
"solver_type": "Centered",
"final_time": 2.0,
"time_step": 1e-2,
"cfl": 0.7,
"order": 3,
"spectral": false
},
"model": {
"filename": "1D_PEC_Centered.msh",
"materials": [
{
"tags": [ 1 ],
"type": "Vacuum"
},
{
"tags": [ 2 ],
"type": "Dielectric",
"relative_permittivity": 3.1
}
],
"boundaries": [
{
"tags": [ 1, 2 ],
"type": "PEC"
}
]
},
"probes": {
"exporter": {
"steps": 1
},
"points": [
{
"field": "E",
"position": [ 0.0 ]
}
],
"surfaces": [
{
"field": "E",
"tags": [ 1 ]
}
]
},
"sources": [
{
"type": "initial",
"field_type": "E",
"center": [ 0.5 ],
"polarization": [ 0.0, 1.0, 0.0 ],
"dimension": 1,
"magnitude": {
"type": "gaussian",
"spread": 0.15,
"delay": 1.0
}
},
{
"type": "initial",
"field_type": "E",
"polarization": [ 0.0, 1.0, 0.0 ],
"magnitude": {
"type": "resonant",
"mode": [ 2 ]
}
},
{
"type": "totalField",
"tags": [ 1, 2, 3, 4 ],
"polarization": [ 0.0, 1.0, 0.0 ],
"propagation": [ 1.0, 0.0, 0.0 ],
"magnitude": {
"type": "gaussian",
"spread": 0.15,
"delay": 1.0
}
}
]
};