| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | """
 | 
					
						
							|  |  |  | Example code for running an OpenCL FDTD simulation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See main() for simulation setup. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import time | 
					
						
							| 
									
										
										
										
											2017-08-12 19:20:29 -07:00
										 |  |  | import logging | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import numpy | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:20 -07:00
										 |  |  | import lzma | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  | import dill | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:20 -07:00
										 |  |  | from opencl_fdtd import Simulation | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | from masque import Pattern, shapes | 
					
						
							|  |  |  | import gridlock | 
					
						
							|  |  |  | import pcgen | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  | import fdfd_tools | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __author__ = 'Jan Petykiewicz' | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 19:20:29 -07:00
										 |  |  | logging.basicConfig(level=logging.DEBUG) | 
					
						
							|  |  |  | logger = logging.getLogger(__name__) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | def perturbed_l3(a: float, radius: float, **kwargs) -> Pattern: | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     Generate a masque.Pattern object containing a perturbed L3 cavity. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     :param a: Lattice constant. | 
					
						
							|  |  |  |     :param radius: Hole radius, in units of a (lattice constant). | 
					
						
							|  |  |  |     :param kwargs: Keyword arguments: | 
					
						
							|  |  |  |         hole_dose, trench_dose, hole_layer, trench_layer: Shape properties for Pattern. | 
					
						
							|  |  |  |                 Defaults *_dose=1, hole_layer=0, trench_layer=1. | 
					
						
							|  |  |  |         shifts_a, shifts_r: passed to pcgen.l3_shift; specifies lattice constant (1 - | 
					
						
							|  |  |  |                 multiplicative factor) and radius (multiplicative factor) for shifting | 
					
						
							|  |  |  |                 holes adjacent to the defect (same row). Defaults are 0.15 shift for | 
					
						
							|  |  |  |                 first hole, 0.075 shift for third hole, and no radius change. | 
					
						
							|  |  |  |         xy_size: [x, y] number of mirror periods in each direction; total size is | 
					
						
							|  |  |  |                 2 * n + 1 holes in each direction. Default [10, 10]. | 
					
						
							|  |  |  |         perturbed_radius: radius of holes perturbed to form an upwards-driected beam | 
					
						
							|  |  |  |                 (multiplicative factor). Default 1.1. | 
					
						
							|  |  |  |         trench width: Width of the undercut trenches. Default 1.2e3. | 
					
						
							|  |  |  |     :return: masque.Pattern object containing the L3 design | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_args = {'hole_dose':    1, | 
					
						
							|  |  |  |                     'trench_dose':  1, | 
					
						
							|  |  |  |                     'hole_layer':   0, | 
					
						
							|  |  |  |                     'trench_layer': 1, | 
					
						
							|  |  |  |                     'shifts_a':     (0.15, 0, 0.075), | 
					
						
							|  |  |  |                     'shifts_r':     (1.0, 1.0, 1.0), | 
					
						
							|  |  |  |                     'xy_size':      (10, 10), | 
					
						
							|  |  |  |                     'perturbed_radius': 1.1, | 
					
						
							|  |  |  |                     'trench_width': 1.2e3, | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |     kwargs = {**default_args, **kwargs} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     xyr = pcgen.l3_shift_perturbed_defect(mirror_dims=kwargs['xy_size'], | 
					
						
							|  |  |  |                                           perturbed_radius=kwargs['perturbed_radius'], | 
					
						
							|  |  |  |                                           shifts_a=kwargs['shifts_a'], | 
					
						
							|  |  |  |                                           shifts_r=kwargs['shifts_r']) | 
					
						
							|  |  |  |     xyr *= a | 
					
						
							|  |  |  |     xyr[:, 2] *= radius | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pat = Pattern() | 
					
						
							|  |  |  |     pat.name = 'L3p-a{:g}r{:g}rp{:g}'.format(a, radius, kwargs['perturbed_radius']) | 
					
						
							|  |  |  |     pat.shapes += [shapes.Circle(radius=r, offset=(x, y), | 
					
						
							|  |  |  |                                  dose=kwargs['hole_dose'], | 
					
						
							|  |  |  |                                  layer=kwargs['hole_layer']) | 
					
						
							|  |  |  |                    for x, y, r in xyr] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     maxes = numpy.max(numpy.fabs(xyr), axis=0) | 
					
						
							|  |  |  |     pat.shapes += [shapes.Polygon.rectangle( | 
					
						
							|  |  |  |         lx=(2 * maxes[0]), ly=kwargs['trench_width'], | 
					
						
							|  |  |  |         offset=(0, s * (maxes[1] + a + kwargs['trench_width'] / 2)), | 
					
						
							|  |  |  |         dose=kwargs['trench_dose'], layer=kwargs['trench_layer']) | 
					
						
							|  |  |  |                    for s in (-1, 1)] | 
					
						
							|  |  |  |     return pat | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  |     max_t = 8000            # number of timesteps | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |     dx = 25                 # discretization (nm/cell) | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  |     pml_thickness = 8       # (number of cells) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     wl = 1550               # Excitation wavelength and fwhm | 
					
						
							|  |  |  |     dwl = 200 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Device design parameters | 
					
						
							|  |  |  |     xy_size = numpy.array([10, 10]) | 
					
						
							|  |  |  |     a = 430 | 
					
						
							|  |  |  |     r = 0.285 | 
					
						
							|  |  |  |     th = 170 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # refractive indices | 
					
						
							|  |  |  |     n_slab = 3.408  # InGaAsP(80, 50) @ 1550nm | 
					
						
							|  |  |  |     n_air = 1.0   # air | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Half-dimensions of the simulation grid | 
					
						
							|  |  |  |     xy_max = (xy_size + 1) * a * [1, numpy.sqrt(3)/2] | 
					
						
							|  |  |  |     z_max = 1.6 * a | 
					
						
							|  |  |  |     xyz_max = numpy.hstack((xy_max, z_max)) + pml_thickness * dx | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-16 17:44:51 -07:00
										 |  |  |     # Coordinates of the edges of the cells. | 
					
						
							|  |  |  |     #  The fdtd package can only do square grids at the moment. | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  |     half_edge_coords = [numpy.arange(dx/2, m + dx, step=dx) for m in xyz_max] | 
					
						
							|  |  |  |     edge_coords = [numpy.hstack((-h[::-1], h)) for h in half_edge_coords] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # #### Create the grid, mask, and draw the device #### | 
					
						
							|  |  |  |     grid = gridlock.Grid(edge_coords, initial=n_air**2, num_grids=3) | 
					
						
							|  |  |  |     grid.draw_slab(surface_normal=gridlock.Direction.z, | 
					
						
							|  |  |  |                    center=[0, 0, 0], | 
					
						
							|  |  |  |                    thickness=th, | 
					
						
							|  |  |  |                    eps=n_slab**2) | 
					
						
							|  |  |  |     mask = perturbed_l3(a, r) | 
					
						
							| 
									
										
										
										
											2016-06-21 18:26:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  |     grid.draw_polygons(surface_normal=gridlock.Direction.z, | 
					
						
							|  |  |  |                        center=[0, 0, 0], | 
					
						
							|  |  |  |                        thickness=2 * th, | 
					
						
							|  |  |  |                        eps=n_air**2, | 
					
						
							|  |  |  |                        polygons=mask.as_polygons()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 19:20:29 -07:00
										 |  |  |     logger.info('grid shape: {}'.format(grid.shape)) | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  |     # #### Create the simulation grid #### | 
					
						
							| 
									
										
										
										
											2017-10-01 12:34:11 -07:00
										 |  |  |     pmls = [{'axis': a, 'polarity': p, 'thickness': pml_thickness} | 
					
						
							|  |  |  |             for a in 'xyz' for p in 'np'] | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |     #bloch = [{'axis': a, 'real': 1, 'imag': 0} for a in 'x'] | 
					
						
							|  |  |  |     bloch = [] | 
					
						
							|  |  |  |     sim = Simulation(grid.grids, do_poynting=True, pmls=pmls, bloch_boundaries=bloch) | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Source parameters and function | 
					
						
							|  |  |  |     w = 2 * numpy.pi * dx / wl | 
					
						
							|  |  |  |     fwhm = dwl * w * w / (2 * numpy.pi * dx) | 
					
						
							|  |  |  |     alpha = (fwhm ** 2) / 8 * numpy.log(2) | 
					
						
							|  |  |  |     delay = 7/numpy.sqrt(2 * alpha) | 
					
						
							| 
									
										
										
										
											2016-06-21 18:26:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def field_source(i): | 
					
						
							|  |  |  |         t0 = i * sim.dt - delay | 
					
						
							|  |  |  |         return numpy.sin(w * t0) * numpy.exp(-alpha * t0**2) | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |     with open('sources.c', 'w') as f: | 
					
						
							|  |  |  |         f.write(sim.sources['E']) | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |         f.write('\n====================H======================\n') | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |         f.write(sim.sources['H']) | 
					
						
							|  |  |  |         if sim.update_S: | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |             f.write('\n=====================S=====================\n') | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |             f.write(sim.sources['S']) | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |         if bloch: | 
					
						
							|  |  |  |             f.write('\n=====================F=====================\n') | 
					
						
							|  |  |  |             f.write(sim.sources['F']) | 
					
						
							|  |  |  |             f.write('\n=====================G=====================\n') | 
					
						
							|  |  |  |             f.write(sim.sources['G']) | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # #### Run a bunch of iterations #### | 
					
						
							| 
									
										
										
										
											2016-07-16 17:44:51 -07:00
										 |  |  |     # event = sim.whatever([prev_event]) indicates that sim.whatever should be queued | 
					
						
							|  |  |  |     #  immediately and run once prev_event is finished. | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  |     start = time.perf_counter() | 
					
						
							|  |  |  |     for t in range(max_t): | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |         e = sim.update_E([]) | 
					
						
							|  |  |  |         if bloch: | 
					
						
							|  |  |  |             e = sim.update_F([e]) | 
					
						
							|  |  |  |         e.wait() | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ind = numpy.ravel_multi_index(tuple(grid.shape//2), dims=grid.shape, order='C') + numpy.prod(grid.shape) | 
					
						
							|  |  |  |         sim.E[ind] += field_source(t) | 
					
						
							|  |  |  |         e = sim.update_H([]) | 
					
						
							| 
									
										
										
										
											2018-11-30 01:04:00 -08:00
										 |  |  |         if bloch: | 
					
						
							|  |  |  |             e = sim.update_G([e]) | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |         if sim.update_S: | 
					
						
							|  |  |  |             e = sim.update_S([e]) | 
					
						
							|  |  |  |         e.wait() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if t % 100 == 0: | 
					
						
							| 
									
										
										
										
											2017-08-12 19:20:29 -07:00
										 |  |  |             logger.info('iteration {}: average {} iterations per sec'.format(t, (t+1)/(time.perf_counter()-start))) | 
					
						
							| 
									
										
										
										
											2016-09-01 14:39:44 -07:00
										 |  |  |             sys.stdout.flush() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with lzma.open('saved_simulation', 'wb') as f: | 
					
						
							|  |  |  |         def unvec(f): | 
					
						
							|  |  |  |             return fdfd_tools.unvec(f, grid.shape) | 
					
						
							|  |  |  |         d = { | 
					
						
							|  |  |  |             'grid': grid, | 
					
						
							|  |  |  |             'E': unvec(sim.E.get()), | 
					
						
							|  |  |  |             'H': unvec(sim.H.get()), | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         if sim.S is not None: | 
					
						
							|  |  |  |             d['S'] = unvec(sim.S.get()) | 
					
						
							|  |  |  |         dill.dump(d, f) | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-14 15:41:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-30 15:00:00 -07:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     main() |