A Parallel 3-D HIE-FDTD Method using the MPI Library

Qin Nan, Chunhui Mou, and Juan Chen

School of Electrical and Information Engineering
Xi’an Jiaotong University, Xi’an 710049, People’s Republic of China
Chen.juan.0201@mail.xjtu.edu.cn

Submitted On: November 20, 2023; Accepted On: January 21, 2024

ABSTRACT

This paper presents the implementation of the parallel hybrid implicit-explicit finite-difference time-domain (HIE-FDTD) method using the Message Passing Interface (MPI) library. The method proves to be very effective in simulating large-scale three-dimensional electromagnetic problems with fine structures in one direction. For the decomposition of the computational volume in the HIE-FDTD method, an MPI Cartesian 2D topology is implemented, allowing arbitrary division of the volume in two directions. Derived data types provided in the MPI library are employed to optimize inter-process communication. High accuracy and efficiency are subsequently demonstrated through a numerical example of a frequency-selected surface (FSS). It shows that the proposed method is very suitable for parallel computing, and the parallel efficiency maintains above 80% for different numbers of processes.

Keywords: Electromagnetic scattering, finite-difference time-domain (FDTD), HIE-FDTD, parallel computing, thin layers.

I. INTRODUCTION

The finite-difference time-domain (FDTD) method is widely used due to its explicit leapfrog iterative scheme in the simulation of electromagnetic problems [1, 2]. Additionally, its regular data structures make it a top choice for parallelizing using domain-decomposition techniques to accelerate the solution of large-scale electromagnetic problems [3].

Two methods are widely used to achieve parallel computing of the FDTD method, using multi-core central processing units (CPUs) or using graphical processing units (GPUs). However, GPUs require additional hardware costs compared to multi-core CPUs, as they are separate hardware devices that are initialized and executed by a program running on a CPU. Besides that, it is hard to simulate the large-scale electromagnetic problems using a single GPU for its smaller memory size than CPU. Therefore, An MPI-based three dimensional parallel FDTD algorithm has been developed in [3].

Thin layers in electromagnetic devices are typically essential due to their significant impact on device performance, making the electromagnetic simulation of such structures valuable. However, in the FDTD method, which is constrained by the Courant-Friedrichs-Lewy (CFL) condition, the maximum time step size depends on the minimum mesh size in the computational volume, leading to inefficiencies in handling problems with fine structures.

Several unconditional stability FDTD methods, such as the alternating-direction implicit (ADI) FDTD method [4], Crank-Nicolson (CN) FDTD method [5] and the locally-one-dimensional (LOD) FDTD method [6], which introduce the implicit updating equations in the conventional FDTD method, have been proposed in order to eliminate the CFL bound. It should be noted that although the ADI-FDTD method is unconditionally stable, it has second-order truncation error terms that can reduce its accuracy [7]. The CN-FDTD and LOD-FDTD methods have high accuracy, but they both need to solve the large matrix which decreases the efficiency greatly. Furthermore, when applied to large-scale problems, issues such as augmented data traffic present challenges to the parallel implementation of the ADI-FDTD, CN-FDTD, and LOD-FDTD methods.

For some electromagnetic problems, such as the analysis of the degradation of shielding effectiveness with thin slots or frequency selective surfaces with thin layers, fine structures are present only in one direction [8]. Fine grids should be applied solely in the direction of the fine structure rather than in all three directions. In order to improve the efficiency of electromagnetic simulation for these structures, the HIE-FDTD method was proposed to eliminate the limitations of the fine grids on the time step size [9]. Apart from that, the error exists in semi-implicit processing rather than implicit processing, making HIE-FDTD more accurate than the ADI-FDTD method [10]. The computational volume in the HIE-FDTD cannot be directly divided in the direction of the fine structures as it is necessary for tridiagonal matrix equations solving, but it can be divided in both other directions. Due to its ability to directly divide the computational domain into subdomains, HIE-FDTD is more suitable for parallelizing than the ADI-FDTD, CN-FDTD, and LOD-FDTD methods.

This paper describes the implementation of a parallel HIE-FDTD method based on the MPI library, which offers clear standardization benefits, especially in distributed storage communication environments. The computation volume can be decomposed using process topologies along the x- and z-directions. MPI communication functions and derived data types are used for transmitting field values between processes.

This paper is structured as follows. In Section II, the theory of the HIE-FDTD method is introduced. Section III demonstrates the implementation of the parallel HIE-FDTD method. Section IV presents a numerical example that confirms the high accuracy and efficiency of the proposed method. The conclusion is given in Section V.

II. THEORY OF THE HIE-FDTD METHOD

Assuming fine structures exist in the y-direction, the explicit equations for Eyand Hy components in the HIE-FDTD method are as follows:

Eyn+1(i,j+1/2,k)=CA(i,j+1/2,k)Eyn(i,j+1/2,k)+CB(i,j+1/2,k)/Δz[Hxn(i,j+1/2,k+1/2)-Hxn(i,j+1/2,k-1/2)]-CB(i,j+1/2,k)/Δx[Hzn(i+1/2,j+1/2,k)-Hzn(i-1/2,j+1/2,k)], (1)
Hyn+1(i+1/2,j,k+1/2)=CP(i+1/2,j,k+1/2)Hyn(i+1/2,j,k+1/2)-CQ(i+1/2,j,k+1/2)/Δz[Exn+1(i+1/2,j,k+1)-Exn+1(i+1/2,j,k)]+CQ(i+1/2,j,k+1/2)/Δx[Ezn+1(i+1,j,k+1/2)-Ezn+1(i,j,k+1/2)], (2)

where

CA(i,j+1/2,k)
=ε(i,j+1/2,k)/Δt-σ(i,j+1/2,k)/2ε(i,j+1/2,k)/Δt+σ(i,j+1/2,k)/2,
CB(i,j+1/2,k)
=1ε(i,j+1/2,k)/Δt+σ(i,j+1/2,k)/2,
CP(i+1/2,j,k+1/2)
=μ(i+1/2,j,k+1/2)Δt-σm(i+1/2,j,k+1/2)2μ(i+1/2,j,k+1/2)Δt+σm(i+1/2,j,k+1/2)2,
CQ(i+1/2,j,k+1/2) (3)
=1μ(i+1/2,j,k+1/2)Δt+σm(i+1/2,j,k+1/2)2,

where Δt is the size of the time step. ε, σ, μ, and σm are the electrical permittivity, electric conductivity, magnetic permeability, and the equivalent magnetic loss of the media, respectively. n is the index of the time step. i, j, and k are the indices of spatial increments along the x-, y-, and z-directions.

The semi-implicit processing of the HIE-FDTD method can be found as follows:

Exn+1(i+1/2,j,k) (4)
=CA(i+1/2,j,k)Exn(i+1/2,j,k)
-CB(i+1/2,j,k)/Δz
[Hyn(i+1/2,j,k+1/2)-Hyn(i+1/2,j,k-1/2)]
+CB(i+1/2,j,k)/2Δy
[Hzn+1(i+1/2,j+1/2,k)-Hzn+1(i+1/2,j-1/2,k)+Hzn(i+1/2,j+1/2,k)-Hzn(i+1/2,j-1/2,k)],
Ezn+1(i,j,k+1/2) (5)
=CA(i,j,k+1/2)Ezn(i,j,k+1/2)
+CB(i,j,k+1/2)/Δx
[Hyn(i+1/2,j,k+1/2)-Hyn(i-1/2,j,k+1/2)]
-CB(i,j,k+1/2)/2Δy
[Hxn+1(i,j+1/2,k+1/2)-Hxn+1(i,j-1/2,k+1/2)+Hxn(i,j+1/2,k+1/2)-Hxn(i,j-1/2,k+1/2)],
Hzn+1(i+1/2,j+1/2,k) (6)
=CP(i+1/2,j+1/2,k)Hzn(i+1/2,j+1/2,k)
-CQ(i+1/2,j+1/2,k)/Δz
[Eyn+1(i+1,j+1/2,k)-Eyn+1(i,j+1/2,k)]
+CQ(i+1/2,j+1/2,k)/2Δy
[Exn+1(i+1/2,j+1,k)-Exn+1(i+1/2,j,k)
+Exn(i+1/2,j+1,k)-Exn(i+1/2,j,k)],
Hxn+1(i,j+1/2,k+1/2) (7)
=CP(i,j+1/2,k+1/2)Hxn(i,j+1/2,k+1/2)
+CQ(i,j+1/2,k+1/2)/Δz
[Eyn+1(i,j+1/2,k+1)-Eyn+1(i,j+1/2,k)]
-CQ(i,j+1/2,k+1/2)/2Δy
[Ezn+1(i,,j+1,k+1/2)-Ezn+1(i,j,k+1/2)
+Ezn(i,j+1,k+1/2)-Ezn(i,j,k+1/2)].

The formulations of the HIE-FDTD method are shown above with the field components arranged similarly to the FDTD method. According to (4), updating of Ex component requires Hz component at the same step. Thus, Ex component cannot be updated explicitly. Substituting (6) into (4) gives us the equation of Ex component that is given by

aiExn+1(i+1/2,j-1,k)+biExn+1(i+1/2,j,k) (8)
+ciExn+1(i+1/2,j+1,k)=di

where

ai=-CB(i+1/2,j,k)CQ(i+1/2,j-1/2,k)4Δy2, (9)
bi=1+CB(i+1/2,j,k)CQ(i+1/2,j+1/2,k)4Δy2,
+CB(i+1/2,j,k)CQ(i+1/2,j-1/2,k)4Δy2
ci=-CB(i+1/2,j,k)CQ(i+1/2,j+1/2,k)4Δy2,
di=[CA(i+1/2,j,k)+ai+ci]Exn(i+1/2,j,k)
-aiExn(i+1/2,j-1,k)-cin(i+1/2,j+1,k)
-CB(i+1/2,j,k)/Δz
[Hyn(i+1/2,j,k+1/2)-Hyn(i+1/2,j,k-1/2)]
+CB(i+1/2,j,k)/2Δy
{[CP(i+1/2,j+1/2,k)+1]Hzn(i+1/2,j+1/2,k)
-[CP(i+1/2,j-1/2,k)+1]Hzn(i+1/2,j-1/2,k)
-CQ(i+1/2,j+1/2,k)Δz[Eyn+1(i+1,j+1/2,k)-Eyn+1(i,j+1/2,k)]
+CQ(i+1/2,j-1/2,k)Δz[Eyn+1(i+1,j-1/2,k)-Eyn+1(i,j-1/2,k)]}.

Substituting (7) into (5) gives us the equation of Ez component that is given by

akEzn+1(i,j-1,k+1/2)+bkEzn+1(i,j,k+1/2) (10)
+ckExn+1(i,j+1,k+1/2)=dk

where

ak=-CB(i,j,k+1/2)CQ(i,j-1/2,k+1/2)4Δy2,
bk=1+CB(i,j,k+1/2)CQ(i,j+1/2,k+1/2)4Δy2
+CB(i,j,k+1/2)CQ(i,j-1/2,k+1/2)4Δy2,
ck=-CB(i,j,k+1/2)CQ(i,j+1/2,k+1/2)4Δy2, (11)
dk=[CA(i,j,k+1/2)+ak+ck]Ezn(i,j,k+1/2)
-akEzn(i,j-1,k+1/2)-ckEzn(i,j+1,k+1/2)
+CB(i,j,k+1/2)/Δx
[Hyn(i+1/2,j,k+1/2)-Hyn(i-1/2,j,k+1/2)]
-CB(i,j,k+1/2)/2Δy
{[CP(i,j+1/2,k+1/2)+1]Hxn(i,j+1/2,k+1/2)
-[CP(i,j-1/2,k+1/2)+1]Hxn(i,j-1/2,k+1/2)
+CQ(i+1/2,j+1/2,k)Δx[Eyn+1(i+1,j+1/2,k)-Eyn+1(i,j+1/2,k)]
-CQ(i+1/2,j-1/2,k)Δx[Eyn+1(i+1,j-1/2,k)-Eyn+1(i,j-1/2,k)]}.

Thus, the process of updating field components entails the explicit update of Ey and Hy by using equations (1) and (2) first, followed by the implicit update of Ex and Ez via tridiagonal matrix equations (8) and (10). Finally, explicit updating is made to obtain the Hz and Hx components by using equations (6) and (7).

The time step size in the HIE-FDTD method can be calculated as follows [9]:

Δt1/c1/Δx2+1/Δz2, (12)

where c=1/εμ is the speed of light in the medium, and Δx, Δz are the minimum cell in the x- and z-directions.

It indicates that the stability condition for the HIE-FDTD method is not restricted by the cells in the fine structures, unlike the FDTD method. Therefore, if a model only has fine structures in one direction, using the HIE-FDTD method increases efficiency due to the much larger time step size than that of the FDTD method.

III. PARALLELISM WITH THE MPI LIBRARY

The first step of the parallel FDTD method is the computational volume division. The computational volume can be decomposed directly along three directions in the parallel FDTD method, but this is impossible in the parallel HIE-FDTD method, because it needs to solve the tridiagonal matrix equations in the direction of fine structures. As such, the proposed method in this paper divides the computational volume in the x- and z-directions, excluding the y-direction where the fine structures exist.

The computational volume is divided using a Cartesian topology in the MPI library. The procedure for creating a two-dimensional Cartesian topology of the three-dimensional problem space using the MPI library is described in [3]. Figure 1 shows the division of the computational volume into nine subspaces, each of which corresponds to a process located by its Cartesian coordinates. The MPI function MPI_Cart_shift determines the ID numbers of processes surrounding a process, once the Cartesian topology has been created. These ID numbers are then used for implementing communications.

images

Figure 1: The division of the computational volume using a two-dimensional Cartesian topology (x-z plane).

Both the HIE-FDTD method and the FDTD method must solve the boundary condition problem. Therefore, it is important to determine the necessary components to transmit after the equal distribution of the problem.

For the FDTD method, updating field components at (i,j,k) is dependent on the surrounding field components. To provide an example, as shown by Fig. 2, the iteration of Ex component at (i+1/2,j,k) requires Hz at (i+1/2,j+1/2,k), (i+1/2,j-1/2,k) and Hy at (i+1/2,j-1/2,k), (i+1/2,j+1/2,k).

images

Figure 2: The iteration of Ex component at (i+1/2,j,k) using the conventional FDTD method and the surrounding field components.

Figure 3 shows that only the components encapsulated by the blue dotted contour designated to PROC4 are assigned in the parallel FDTD method. So, to update Ex component in PROC4, Hy component from PROC3 is required. As there is no division along the y-direction, there is no need to transmit Hz component. Similarly, updating Ez component requires Hy component in PROC1, and updating Ey component requires both Hz and Hx components in PROC1 and PROC3. It should be noted that PROC4 fulfils the role of both an emitter and an addressee process, and therefore, must send the components to the surrounding processes. The send-receive communications of PROC4 are illustrated in Fig. 3.

images

Figure 3: The send-receive communications in PROC4 using the parallel FDTD method.

images

Figure 4: The iteration of Ex component at (i+1/2,j,k) using HIE-FDTD method and the surrounding field components.

Figure 4 shows the iteration of Ex at (i+1/2,j,k) using the HIE-FDTD method. Ey at (i+1,j+1/2,k) and (i+1,j-1/2,k) are also essential, besides Hy and Hz components that are required in the FDTD method. Therefore, when implementing the parallel HIE-FDTD method, it is important to note that updating Ex component requires Ey belonging to PROC7, with Hy component belonging to PROC3. To update Ez, it is necessary to receive Ey component belonging to PROC5, with Hycomponent from PROC1.

Figure 5 (a) shows the complete communications between PROC4 and other processes in the parallel HIE-FDTD method. Figure 5 (b) shows that the parallel HIE-FDTD method requires the communication of Ey component in the x- and z-directions when performing Ex and Ez iterations. It is the difference between it and the parallel FDTD method.

images

Figure 5: The communications between PROC4 and its neighboring processes using the parallel HIE-FDTD method: (a) Overall view and (b) the communication of Eycomponent in the x- and z-directions.

Assuming that the size of the field components array is sizex×sizey×sizez, which needs to be augmented for the reception of the components from neighboring processes as follows,

Ai(sizex,sizey,sizez)Ai(sizex+1,sizey,sizez+1),

where A=[E,H] and i=[x,y,z].

The details of the derived data types implementation, transmission, and reception of field components are documented in [3]. The procedure for the parallel HIE-FDTD method is provided here:

1) MPI initialization

2) Read parameters used in simulation

3) Create a two-dimensional Cartesian topology (no division along the y-direction)

4) Create the derived data types for communications

5) Start updating field components

Update Ey component

Communicate Ey component for updating of Ex and Ezcomponents

Update Ex and Ez components

Communicate Ex and Ez components

Update the H-field components

Communicate the H-field components

6) End.

images

Figure 6: The structure of the FSS: (a) overall view of the FSS, (b) the size of the narrow cross slot unit, and (c) the size of the wide cross slot unit.

IV. NUMERICAL RESULTS

To verify the accuracy and efficiency of the implementation of the proposed parallel HIE-FDTD method based on the MPI library, a numerical example of a FSS is simulated. Figure 6 (a) shows the structure of the FSS. Its length in both x- and z-directions is 720 mm. The surface comprises two different cross-slot units, as shown in Figs. 6 (b) and (c).

The narrow cross slot has a width of 6 mm and a length of 42 mm, and the wide cross slot has a width of 15 mm and a length of 48 mm. The thickness of the FSS is 0.235 mm, of which metal is 0.035 mm thick and the substrate is 0.2 mm thick. The εr of the substrate is 4.5 and σ is 0.004 S/m. The thickness of the metal is the fine structure of the FSS which greatly confines the computational efficiency. A plane wave polarized along the x-direction is incident perpendicular to the FSS. The excitation source is a modulated Gaussian pulse with a frequency range from 2.5 GHz to 4 GHz. The time dependence of the excitation function is given asfollows:

Ex(t)=cos(2πfret)exp(-4π((t-t0)/τ)2), (13)

where fre = 3.125 GHz, τ = 2.67 ns, and t0=0.9τ=2.4 ns.

One observation point is located at 120 mm behind the center of the surface. We use the serial FDTD, the serial HIE-FDTD method, and the parallel HIE-FDTD method to compute the electric field at the observation point and the transmission coefficient of the FSS. The minimum grids in the x- and z-directions are 1 mm. In the y-direction, the minimum grid is 0.035 mm. The total number of grids is 396×35×396. According to the time stability condition, the time step size in the FDTD method is

Δtf=1/c1/Δx2+1/Δy2+1/Δz2=0.0583 ps, while in the HIE-FDTD method, the time step is

Δt=1/c1/Δx2+1/Δz2=2.36 ps, which is 40.48 times larger than that in the FDTD method. The simulation history is 8 ns, which can ensure the complete convergence of time-domain signals. It corresponds to 323,842 time steps in the FDTD method and 8000 time steps in the HIE-FDTD method. The simulation is implemented on Intel(R) Xeon(R) Gold 6248R with 3.00 GHz CPU and 1 TB memory.

Figure 7 shows the value of Ex component at the observation point calculated by using the parallel HIE-FDTD method, the serial HIE-FDTD method, and the serial FDTD method. Figure 8 presents the calculated transmission coefficient of the FSS. From these figures, it is obvious that the calculated results of the parallel HIE-FDTD agree very well with those of the serial HIE-FDTD method and the serial FDTD method, whether in the time domain or frequency domain. The transmission coefficient of the FFS exceeds 0.9 within the range from 2.9 GHz to 3.65 GHz. Figures 7 and 8 validate the high computational accuracy of the parallel HIE-FDTD method.

images

Figure 7: The value of the Ex components at the observation point calculated by using the proposed parallel HIE-FDTD method, the serial HIE-FDTD method, and the serial FDTD method.

images

Figure 8: The result of the transmission coefficient of the FSS calculated by using the proposed parallel HIE method, the serial HIE-FDTD method, and the serial FDTD method.

Table 1 displays the computation time of the serial FDTD method, the serial HIE-FDTD method, and the parallel HIE-FDTD method with 32 processes. We also introduce the speedup factors Sp(k) with the following definition:

Sp(k)=p×RuntimewithpcoresRuntimewithkcores, (14)

where p is the reference number of processors and k is the number of processors used in calculation. S1(k)of the proposed method is showed in Fig. 9.

The results demonstrate that the simulation speed of the serial HIE-FDTD method is 29.3 times faster than the serial FDTD, which is due to the larger time step in the HIE-FDTD method. Moreover, the simulation speed of the proposed parallel HIE-FDTD method with 32 processes is 25 times faster than the serial HIE-FDTD method. The parallel efficiency of the proposed method reaches 81.2 %. It can conclude that the proposed parallel HIE-FDTD method considerably reduces the runtime over the serial FDTD and the serial HIE-FDTD, while the accuracy of the proposed method is still maintained.

Table 1: The time step size, total time steps, and computing time of different methods

Method Δt(ps) Total Steps Computing Time (h)
FDTD 0.0583 323,842 901.40
HIE-FDTD 2.36 8000 30.77
P-HIE-FDTD 2.36 8000 1.18

images

Figure 9: S1(k) obtained for a space size of 396×35×396 in case of the proposed parallel HIE-FDTD method.

Table 2: Comparison of computation efficiency

Number of Processes Number of Subdomains Computing Time (s) Parallel Efficiency
1 1×1×1 6652.02 100%
2 2×1×1 3496.58 95.1%
4 2×1×2 1812.13 91.8%
8 4×1×2 952.54 87.3%
12 4×1×3 687.61 80.6%
25 5×1×5 318.16 83.6%
30 6×1×5 268.99 82.4%
32 8×1×4 256.00 81.2%

The parallel efficiency of the proposed method is defined as δ=T1/Tnn. Here, T1 represents the computing time of the HIE-FDTD method with a single process; n is the number of the processes and Tn is the computing time of the HIE-FDTD method with n processes. Table 2 presents the computing time and the parallel efficiency of the proposed parallel HIE-FDTD method. It can be observed that the efficiency maintains above 80% for different numbers of processes, which proves that this method is very suitable for parallel computing.

V. CONCLUSION

This paper describes a parallel HIE-FDTD method implemented through the MPI library. Parallel computing is realized by creating a two-dimensional topology that divides the computational volume along two directions. The differences of the field components transmitted between the parallel HIE-FDTD method and parallel FDTD method are discussed. The function for communication and derived data types provided by the MPI library are employed to transmit HIE-FDTD field components. The numerical example indicates the high computational accuracy and excellent parallel efficiency of the proposed method. It shows that the parallel efficiency maintains above 80% for different numbers of processes, which proves that this method is very suitable for parallel computing.

ACKNOWLEDGMENT

This work was supported by the National Key Research and Development Program of China under No. 2020YFA0709800, and by the National Natural Science Foundations of China under No. 62122061, and also by the Shaanxi Natural Science Basic Research Project under No. 2023-JC-QN-0673.

REFERENCES

[1] K. S. Yee, “Numerical solution of initial boundary value problems involving Maxwell’s equations in isotropic media,” IEEE Trans. Antennas Propagat., vol. AP-14, pp. 302-307, 1966.

[2] A. Taflove and S. C. Hagness, Computational Electrodynamics: The Finite-Difference Time-Domain Method, 3rd ed. Boston, MA, USA: Artech House, 2005.

[3] Guiffaut and K. Mahdjoubi, “A parallel FDTD algorithm using the MPI library,” IEEE Antennas Propag. Mag., vol. 43, no. 2, pp. 94-103, Apr. 2001.

[4] T. Namiki, “A new FDTD algorithm based on alternating-direction implicit method,” IEEE Trans. Microw. Theory Tech., vol. 47, no. 10, pp. 2003-2007, Oct. 1999.

[5] Y. Yang, R. S. Chen, and E. K. N. Yung, “The unconditionally stable Crank–Nicolson FDTD method for three-dimensional Maxwell’s equations,” Microw. Opt. Tech. Lett., vol. 39, pp. 97-101, Oct. 2003.

[6] J. Shibayama, M. Muraki, J. Yamauchi, and H. Nakano, “Efficient implicit FDTD algorithm based on locally one-dimensional scheme,” Electron. Lett., vol. 41, no. 19, pp. 1046-1047, Sep. 2005.

[7] S. Garcia, T. Lee, and S. Hagness, “On the accuracy of the ADI-FDTD method,” IEEE Antennas Wireless Propag. Lett., vol. 1, no. 1, pp. 31-34, Jan. 2002.

[8] M. Li, K. P. Ma, D. M. Hockanson, J. L. Drewniak, T. H. Hubing, and T. P. Van Doren, “Numerical and experimental corroboration of an FDTD thin slot model for slots near corners of shielding enclosures,” IEEE Trans. Electromagn. Compat., vol. 39, no. 3, pp. 225-232, Aug. 1997.

[9] J. Chen and J. G. Wang, “A 3D hybrid implicit-explicit FDTD scheme with weakly conditional stability,” Microw. Opt. Technol. Lett. 48, 2291-2294, 2006.

[10] J. Chen and J. Wang, “Comparison between HIE-FDTD method and ADI FDTD method,” Microw. Opti. Technol. Lett., vol. 49, no. 5, pp. 1001-1005, Mar. 2007.

BIOGRAPHIES

images

Qin Nan was born in Yan’an, China. He completed his B.S. in Northwest University, Xi’an, China, in 2022. He is currently working toward the Ph.D. degree in electromagnetic field and microwave technology at Xi’an Jiaotong University, Xi’an, China. His research interests include the fast FDTD method and parallel computing.

images

Chunhui Mou was born in Yantai, China. She received the B.S. and M.S. degrees from Xidian University, Xi’an, China, in 2012 and 2015, and the Ph.D. degree from Xi’an Jiaotong University, Xi’an, China, in 2023, all in electromagnetic field and microwave technology.

She is currently working in Xi’an Jiaotong University, Xi’an, China, as a postdoctoral researcher. Her research interests include the fast FDTD method, FDTD mesh generation method, and multi-physical field calculation.

images

Juan Chen was born in Chongqing, China. She received the Ph.D. degree from Xi’an Jiaotong University, Xi’an, China, in 2008, in electromagnetic field and microwave technology.

She is currently working in Xi’an Jiaotong University, Xi’an, China, as a professor. Her research interests include computational electromagnetics, microwave device design, etc.

ABSTRACT

I. INTRODUCTION

II. THEORY OF THE HIE-FDTD METHOD

III. PARALLELISM WITH THE MPI LIBRARY

images

images

images

images

images

images

IV. NUMERICAL RESULTS

images

images

images

V. CONCLUSION

ACKNOWLEDGMENT

REFERENCES

BIOGRAPHIES