File: mode-coeffs.ctl

package info (click to toggle)
meep-openmpi 1.25.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 64,556 kB
  • sloc: cpp: 32,214; python: 27,958; lisp: 1,225; makefile: 505; sh: 249; ansic: 131; javascript: 5
file content (102 lines) | stat: -rw-r--r-- 3,921 bytes parent folder | download | duplicates (8)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

(set-param! resolution 15)

(define-param w 1)  ; width of waveguide
(define-param L 10)  ; length of waveguide

(define-param dair 3.0)
(define-param dpml 3.0)

;; mode frequency
(define-param fcen 0.20)  ; > 0.5/sqrt(11) to have at least 2 modes

(define (run-test mode-num kpoint-func)
  (reset-meep)

  (let* ((sx (+ dpml L dpml))
        (sy (+ dpml dair w dair dpml))
        (prism_x (+ sx 1))
        (prism_y (/ w 2))
        (verts
         (list
          (vector3 prism_x prism_y)
          (vector3 (* prism_x -1) prism_y)
          (vector3 (* prism_x -1) (* prism_y -1))
          (vector3 prism_x (* prism_y -1))))
        (modes-to-check '(1 2))  ; indices of modes for which to compute expansion coefficients
        (xm (- (* 0.5 sx) dpml)))  ; x-coordinate of monitor

      (set! geometry-lattice (make lattice (size sx sy no-size)))
      (set! geometry
            (list
             (make prism
               (center (vector3 0 0))
               (vertices verts)
               (height infinity)
               (material (make medium (epsilon 12.0))))))

      (set! pml-layers (list (make pml (thickness dpml))))


      (set! sources (list
                     (make eigenmode-source
                       (src (make gaussian-src (frequency fcen) (fwidth (* 0.5 fcen))))
                       (center (vector3 (+ (* -0.5 sx) dpml) 0))
                       (component ALL-COMPONENTS)
                       (size (vector3 0 (- sy (* 2 dpml))))
                       (eig-match-freq? true)
                       (eig-band mode-num)
                       (eig-resolution 32))))

      (set! symmetries
            (list
             (make mirror-sym (direction Y) (phase (if (odd? mode-num) 1 -1)))))

      (let ((mflux (add-mode-monitor fcen 0 1
                      (make mode-region (center (vector3 xm 0)) (size (vector3 0 (- sy (* 2 dpml)))))))
            (mode-flux (add-flux fcen 0 1
              (make flux-region (center (vector3 xm 0)) (size (vector3 0 (- sy (* 2 dpml))))))))

        (run-sources+ 100)

        (let* ((result (get-eigenmode-coefficients mflux modes-to-check #:kpoint-func kpoint-func))
               (alpha (first result))
               (vgrp (second result))
               (kpoints (third result))
               (kdom (fourth result))
               (mode-power (car (get-fluxes mode-flux)))
               (test-passed #t)
               (tolerance 5.0e-3)
               (c0 (array-ref alpha (- mode-num 1) 0 0)))  ; coefficient of forward-traveling wave for mode # mode_num

          (if (or (not (vector3-close? (first kpoints) (vector3 0.604301 0 0) 1e-7))
                  (not (vector3-close? (second kpoints) (vector3 0.494353 0 0) 1e-2))
                  (not (vector3-close? (first kdom) (vector3 0.604301 0 0) 1e-7))
                  (not (vector3-close? (second kdom) (vector3 0.494353 0 0) 1e-2)))
              (begin
                (print "Test failed")(newline)
                (exit 1)))

          (map (lambda (nm)
                 (if (not (= mode-num nm))
                     (let ((cfrel (/ (magnitude (array-ref alpha (- nm 1) 0 0)) (magnitude c0)))
                           (cbrel (/ (magnitude (array-ref alpha (- nm 1) 0 1)) (magnitude c0))))
                       (if (or (> cfrel tolerance) (> cbrel tolerance))
                           (set! test-passed #f)))))
               modes-to-check)

          ;; test 1: coefficient of excited mode >> coeffs of all other modes
          (if (not test-passed)
              (begin
                (print "Test failed")(newline)
                (exit 1)))

          ;; test 2: |mode coeff|^2 = power
          (if (> (abs (- 1 (/ mode-power (* (magnitude c0) (magnitude c0))))) 0.1)
              (begin
                (print "Test failed")(newline)
                (exit 1)))))))

(run-test 1 '())
(run-test 2 '())
(run-test 1 (lambda (freq mode) (vector3 0 0)))