Skip to content

This is the three-dimensional electromagnetic field analysis program for one-dimensional periodic arrangement objects irradiated by a plane wave. This is based on boundary element method, the own developed numerical solution is used.

License

Notifications You must be signed in to change notification settings

akohta/bem3_emf_qd1

Repository files navigation

bem3_emf_qd1

This is the three-dimensional electromagnetic field analysis program for one-dimensional periodic arrangement objects irradiated by a plane wave. This is based on boundary element method, the own developed numerical solution is used. This is the full vector field three-dimensional analysis, the corner problem free. Intel Math Kernel Library and libpng are required. Gmsh is used for create a mesh data of object. The calculation program of quasi-periodic Green's function "d3_qpgf_d1" is used.

analysis model

Usage of example code

  1. type 'make' command to compile.
    The executable d3qd1_bv_solver, example1.out, example2.out, example3.out are created. The d3qd1_bv_solver is the main solver of boundary integral equations. The example1.out is the executable of source code example1.c, it shows a simplest example using "bem3_emf_qd1". The example2.out is the executable of source code example2.c, it shows a example of electromagnetic field intensity analysis. The example3.out is the executable of source code example3.c, it shows a example of outputting the instantaneous value of electromagnetic field as an image.

  2. type './d3qd1_bv_solver' with arguments of plane wave datafile name, periodicity datafile name, medium datafile name, mesh datafile name, output datafile name, rotation and translation settings (optional).
    For example, './d3qd1_bv_solver ipw.txt periodicity_data.txt medium_data.txt sphere_m2.msh ex.dat'. The ipw.txt is the sample of incident field datafile, a plane wave is defined in it. The periodicity_data.txt is the sample of periodicity datafile, periodic boundary condition and lattice constant are defined in it. The medium_data.txt is the sample of medium datafile, two mediums are defined in it. The domain number is assinged to the medium from 1 in order. The sphere_m2.msh is the sample of mesh datafile, it is a two layered sphere object. It was created by Gmsh geometry file sphere_m2.geo in the mesh_sample folder. The sphere_m2_image.png is the visualization result of the sphere_m2.msh. As a simple representation of the analysis model, the nodes used for the surface integral are output as point cloud data. In this case, the file ex.particles is output and the visualization result is ex_particle.png (using ParaView).

  3. type './example1.out' with an argument of datafile name output by d3qd1_bv_solver.
    For example, './example1.out ex.dat'. This executable calculates electromagnetic field, radiaton force and torque.

  4. type './example2.out' with an argument of datafile name output by d3qd1_bv_solver.
    For example, './example2.out ex.dat'. This executable calculates electromagnetic field intensity distributions, outputs them to text files. The I_example2.png is the visualization result of intensity distributions, created by Gnuplot script gscritp_example2.plt (using ImageMagick to convert eps to png).

  5. type './example3.out' with an argument of datafile name output by d3qd1_bv_solver.
    For example, './example3.out ex.dat'. This executable calculates instantaneous value of the electromagnetic fields, outputs them to png image files. The image files are output to the folder which has a name adding "images" to the datafile name specified in the argument (file-extension is excluded). Each image file has a name that indicates the cross section, field component, and number of time steps (ex. xz_Ex_014.png). The color bar is output as color_bar.png in the same folder. The range of color bar in each cross section is output to the info.txt file (ex. xy_info.txt for z=0 plane). The xz_Ex.gif, yz_Ex.gif and xy_Ex.gif are animated gifs that concatenate the png files created by using the shell script gif_animation.sh.

Please see d3qd1_src/bem3_emf_qd1.h for detail of functions. The main parts of the code are parallelized by using OpenMP. The number of threads is controlled by the environment variable OMP_NUM_THREADS.

mesh image 0 point cloud data 0
intensity distributions 0
xz_Ex.gifyz_Ex.gif
xy_Ex.gif

Analysis sample 3 (in the analysis_sample3)

This is the analysis result of plane wave scattering by cone objects.

mesh image 3 point cloud data 3
intensity_distributions 3
xz_Ex.gif 3yz_Ex.gif 3   xy_Ex.gif 3  

Verification

The verification results are in the folder verification. The analysis result of arrangement of five spheres using "emf_mie_mmls" (in the folder emf_mie_mmls_result) and the analysis result of periodic arrangement of spheres are shown.

point cloud data

About mesh file

This code can use quadrangular ( bi-linear ) and triangular ( linear triangular ) elements. I recommend using quadrangular element for reduce required memory. The samples of mesh data are in the folder mesh_sample. The file with extension .geo is the Gmsh geometry file. The file with extension .msh is the mesh file created by using Gmsh geometry file. These mesh files are created by the command 'gmsh -2 -tol 1.0e-15 xxxx.geo' in command line ( xxxx.geo is a geometry file). The domain number (Physical Surface) 99 is assigned to the open region in Gmsh geometry file, because Gmsh can't use the number 0 (assigned to open region in the code). Please refer to the manual of Gmsh for detail of geometry file.

System of units

This program use the own defined system of units (OSU), optimized for optics. The system of units is defined as ( speed of light in vacuum ), ( permeability of vacuum ). For the conversion from OSU to MKSA system of units, the unit of length in OSU is defined as [m] in MKSA, the unit of power in OSU is defined as [W] in MKSA. The conversions of base unit are follows.
,
,
,
,
,
.
Please see com_src/osu_mksa.h and com_src/osu_mksa.c for detail of conversions.

Reference

  1. Intel Math Kernel Library MKL
  2. The official PNG reference library libpng  
  3. Three-dimensional mesh generator Gmsh
  4. The command-line driven graphing utility gnuplot  
  5. The utilities for manipulating images ImageMagick  
  6. The calculation program of quasi-periodic Green's function d3_qpgf_d1
  7. The electromagnetic field analysis program emf_mie_mmls
  8. The data analysis and visualization application ParaView  

About

This is the three-dimensional electromagnetic field analysis program for one-dimensional periodic arrangement objects irradiated by a plane wave. This is based on boundary element method, the own developed numerical solution is used.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published