File: metal-cavity-ldos.py

package info (click to toggle)
meep-openmpi 1.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,828 kB
  • sloc: cpp: 27,370; python: 10,574; lisp: 1,213; makefile: 437; sh: 28
file content (59 lines) | stat: -rw-r--r-- 1,868 bytes parent folder | download | duplicates (5)
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
from __future__ import division

import math
import meep as mp
import argparse

def main(args):
    resolution = 200
    sxy = 2
    dpml = 1
    sxy = sxy + 2 * dpml
    cell = mp.Vector3(sxy, sxy, 0)

    pml_layers = [mp.PML(dpml)]
    a = 1
    t = 0.1
    geometry = [mp.Block(mp.Vector3(a + 2 * t, a + 2 * t, mp.inf), material=mp.metal),
                mp.Block(mp.Vector3(a, a, mp.inf), material=mp.air)]

    w = args.w
    if w > 0:
        geometry.append(mp.Block(center=mp.Vector3(a / 2), size=mp.Vector3(2 * t, w, mp.inf),
                                 material=mp.air))

        fcen = math.sqrt(0.5) / a
        df = 0.2
        sources = [mp.Source(src=mp.GaussianSource(fcen, fwidth=df), component=mp.Ez,
                             center=mp.Vector3())]

        symmetries = [mp.Mirror(mp.Y)]

        Th = args.Th

        sim = mp.Simulation(cell_size=cell,
                            geometry=geometry,
                            boundary_layers=pml_layers,
                            sources=sources,
                            symmetries=symmetries,
                            resolution=resolution)

        h = mp.Harminv(mp.Ez, mp.Vector3(), fcen, df)
        sim.run(mp.after_sources(h), until_after_sources=Th)

        m = h.modes[0]
        f = m.freq
        Q = m.Q
        Vmode = 0.25 * a * a
        print("ldos0:, {}".format(Q / Vmode / (2 * math.pi * f * math.pi * 0.5)))

        sim.reset_meep()
        T = 2 * Q * (1 / f)
        sim.run(mp.dft_ldos(f, 0, 1), until_after_sources=T)

if __name__ == '__main__':
    parser = argparse.ArgumentParser()
    parser.add_argument('-Th', type=float, default=500, help='additional time after source has turned off to accumulate Harminv data')
    parser.add_argument('-w', type=float, default=0, help='width of cavity opening')
    args = parser.parse_args()
    main(args)