Mobile QR Code QR CODE

  1. (State Grid Key Laboratory of Power Industrial Chip Reliability Technology, Beijing Smart-Chip Microelectronics Technology Co., Ltd, China)
  2. (School of Electronics and Information Technology, Sun Yat-sen University, China)



Analog circuit, matching device, optimization, placement, EDA, MOSFETs.

I. INTRODUCTION

With ongoing scientific and technological advancements, the demand for analog integrated circuits (ICs) is rising rapidly in emerging fields such as 5G communication, the Internet of Things (IoT), and smart wearable devices. To meet the increasing requirements of circuit design, continuous improvements in Electronic Design Automation (EDA) technology are essential. While digital ICs have seen the development of highly automated EDA software, the automation level in EDA tools for analog ICs remains relatively low [1]. Within this context, automated layout generation technology for analog ICs, a critical aspect of analog EDA efforts, has become a key focus of current research.

Significant progress has been made in automated layout generation techniques. BAG [2] draws inspiration from the digital integrated circuit design flow, devising a set of templates for transistor layout and wiring. Using parameterized code design and synthesis, it generates actual layouts. MAGICAL [3], leveraging artificial intelligence, pioneers a fully automated analog IC layout system. Starting from unannotated netlists, it performs automated layout constraint extraction and device generation, followed by layout and placement optimization, culminating in wiring to produce the final GDSII layout. ALIGN [4] emulates the hierarchical recognition and processing performed by humans for transistors, basic units (e.g., differential pairs, current mirrors), modules (e.g., operational transconductance amplifiers), and systems (e.g., RF transceivers). In layout, ALIGN [4] integrates algorithmic design, template design, and machine learning (ML) design approaches, enabling the creation of layouts with a complexity level comparable to that of expert designers.

However, for transistors requiring high matching accuracy, generic layout techniques may not be suitable. Transistor matching ensures that multiple transistors operating under similar conditions exhibit nearly identical electrical characteristics, such as threshold voltage (Vt), transconductance (gm), and drain current (Id). Any mismatch among transistors can lead to performance degradation, increased power consumption, or even circuit failure. In advanced technology nodes, layout-dependent effects (LDEs) are among the factors causing variations in transistor performance [5,6,7]. Among these, the well proximity effect (WPE) [7] can be observed in nanometer-scale CMOS nodes. By either shifting the well edge away from the device or maintaining equal well-to-well spacings between matched devices, the mismatch caused by WPE can be minimized. Length of diffusion (LOD) [8] results in stress variations on transistors due to changes in the length of the diffusion region. Oxide definition (OD) spacing and width [9] alter the stress in a transistor due to variations in spacing between the OD regions (active areas). Utilizing identical unit cells for matched devices can help disregard all LDEs except LOD and WPE [10]. Therefore, the study focus lies in optimizing LOD and WPE mismatch through placement techniques.

To mitigate mismatches, specialized layout placement algorithms for matched devices must be designed to enhance overall circuit performance. In the layout placement of matched devices, previous works serve as important references. The work of [11] proposed a universal algorithm for fitting arbitrary capacitance ratios in Common-Centroid (CC) unit capacitor arrays. This algorithm effectively addresses non-integer and identical ratios to minimize mismatches. The work of [12] introduced a general algorithm for automated CC placement of IC component arrays. Initially, it constructs an algorithm to obtain placement schemes close to optimal solutions, followed by an iterative algorithm to search for even better placement schemes. The work of [13] represents nodes as vertices and source-drain connections between transistor fingers as edges, establishing a ``half diffusion graph'' to maximize diffusion sharing while generating the optimal two-dimensional CC layout. The work of [14] incorporates considerations for thermal effects, minimizing device mismatches induced by thermal gradients while satisfying symmetry and CC constraints. The work of [15] proposed a constructive, performance-aware CC layout and routing algorithm for transistor arrays. Their method specifically considers performance variations induced by stress based on Length of Diffusion (LOD), maximizes diffusion sharing, and mitigates the impacts of parasitic resistance and electromigration (EM). The work of [16] reviewed numerous previous works on CC layout and examined scenarios where non-CC layouts might be more suitable than CC layouts.

Our contributions can be summarized as follows:

1. We have designed a comprehensive algorithmic system that spans from netlist and initial placement to final placement. This system achieves efficient layout design while also ensuring compatibility with other algorithms and scalability.

2. The designed algorithm is utilized to transform transistors under Common-Centroid (CC) layout and to determine the merging situation of adjacent transistors to minimize the layout area by using the PyCell API, which can adapt to different technology nodes.

3. Through experimentation, it has been empirically demonstrated that our system and algorithms, compared to existing methods, can optimize transistor layout area while ensuring device matching and reduce parasitic effects.

In the next section, we will provide an overview of the system for automated matching placement generation throughout the entire process. Section III outlines the improvements made in our work regarding matched device placement algorithms. Section IV discusses the experimental results. We conclude in Section V with a summary and future development.

II. OVERVIEW OF THE AUTOMATED MATCHING PLACEMENT GENERATION

The proposed automated placement generation for matching devices consists of five functional modules: the reading module, the identification module, the measurement module, the placement module, and the compression module. The input to the system includes the netlist file of the circuit and the GDSII file of the circuit layout, and the output is the GDSII file after layout compression. The entire system flowchart is shown in Fig. 1.

Fig. 1. System flowchart of the proposed automated placement generation for matching devices.

../../Resources/ieie/JSTS.2025.25.1.71/fig1.png

The primary function of the reading module is to parse the netlist and GDSII files, establishing a correspondence between the devices of netlist and the devices of layout. The devices used here are pcells. To ensure the proper functioning of the algorithm, the device must have at least M1 contacts on both the source (S) and drain (D) terminals. Besides, other pcell settings may affect the final performance of the algorithm. For instance, if post-layout routing is considered, the poly switch of the device's gate (G) should be turned on, and corresponding M1 contacts should be added, leading to an increase in the final inter-row spacing. Specifically, dummy devices also need to be included in the netlist. They are characterized by connections between the source and drain or between the source and gate. Identifying these characteristics allows for distinguishing dummy devices from other devices. The netlist file contains information such as device names, network connections to device ports, device types, and sizes, whereas the GDSII file encompasses process layers, geometric data, and hierarchical structures. By processing these files, the reading module gathers information on each device in both the netlist and layout, subsequently linking them together. During this process, automatically annotated layout devices are used to match the devices in the netlist. The device information (including both netlist and layout device information) that matches successfully will be used later in the PyCell API.

The primary function of the identification module is to determine the matching relationships between devices. This module inputs the circuit netlist and identifies matching relationships among devices, such as differential pairs and current mirrors. The identification method employed is based on the graph traversal technique [4], which establishes and explores the topological relationships between devices. Through this process, the module locates related devices and further identifies whether these devices exhibit matching relationships.

The primary function of the measurement module is to measure various geometric dimensions within the GDSII file. For individual devices, the measurement module can assess overall dimensions, the dimensions of each process layer, the center point position, and the port positions of the device. For each group of matching devices, it can measure the dimensions, centroids, and areas of the matching device group. Regarding the entire layout, the measurement module can determine the dimensions and area of the overall layout.

The main function of the placement module is to perform CC placement of devices based on identified matching relationships and measured data. In the field of CC layout, relevant work includes but is not limited to [12,13,14,15,16]. We have designed a simple and efficient algorithm according to the mindset of layout engineers. For the matching relationship of current mirrors, based on the CC placement principle, priority is given to placing the master device in the middle and the slave devices on both sides. For the matching relationship of differential pairs, the devices to be matched are first arranged in one to two rows, and then arranged in an ``ABBA'' pattern and follow the CC placement principle.

The primary function of the compression module is to further compress the layout of devices, reducing the area occupied by the matching device layout while ensuring matchability. The implementation of this module will be detailed in the next section.

The proposed system accomplishes the entire process from netlist and layout input to final layout output, resulting in a compact placement. Additionally, the system exhibits high compatibility, allowing the algorithms in the identification and placement modules to be easily replaced with those used in other works.

III. DEVICE MATCHING AND COMPRESSION TECHNIQUES IN AUTOMATED PLACEMENT GENERATION

After performing common-centroid placement of the devices, a significant gap often remains between them, specifically in the form of inter-row (Y Space) and inter-column (X Space) spacing. By reducing these spacings, the devices can be further compressed while maintaining their matching, resulting in a more compact placement. The compression process is illustrated in Fig. 2.

Fig. 2. Diagram of compression by reducing the inter-row spacing (Y Space) and inter-column spacing (X Space) of transistors.

../../Resources/ieie/JSTS.2025.25.1.71/fig2.png

Inter-column spacing can be compressed for adjacent transistors using port merging or well merging technology. Well merging technology supports the merging of four types of regions: N-well, P-well, N+ region, and P+ region. In contrast, port merging technology not only includes well merging but also supports the merging of active regions and metal regions. The performance of these two techniques is demonstrated in Fig. 3. However, unlike inter-column spacing, inter-row spacing can only be compressed by merging the wells.

Fig. 3. Diagram of two different transistor compression techniques: (a) well merging and (b) port merging.

../../Resources/ieie/JSTS.2025.25.1.71/fig3a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig3b.png(b)

In port merging technology, adjacent devices share the same port, requiring identical port nets, thus avoiding triggering Layout versus Schematic (LVS) errors. In well merging technology, adjacent devices share the same well, and the spacing between them is minimized without triggering Design Rule Checking (DRC) errors. On the Python platform, Synopsys's PyCell framework provides a freely accessible API for creating layouts without DRC errors. During design, PyCell API functions can succinctly express the relative positions of geometric objects, read design rules from technology files as constraint functions, and use them during layout and routing processes. To elaborate, during the design process, the PyCell API can read design rules from the technology file and incorporate them into constraint functions, which are then invoked during layout and routing. If there is no corresponding technology file for the process, the technology file must be manually created. For instance, designers can specify placing two devices as close as possible, and the PyCell API will automatically adjust the distance between the two devices while satisfying DRC rules for all layers in both devices. In well merging technology, the spacing between adjacent devices is computed by the PyCell API.

To ensure the matching of devices and prepare for subsequent port merging, the swap operation between the source port and the drain port of the MOS transistor is necessary. Fig. 4 shows the source-drain port swap operation of the MOS transistor under different finger conditions. By swapping ports, the port nets at the boundaries can be altered, enabling common-centroid (CC) placement of ports or ensuring identical neighboring port nets of adjacent transistors.

Fig. 4. Diagram of the source-drain port swap operation of the MOS transistor under the condition of (a) finger $= 1$, (b) finger $> 1$.

../../Resources/ieie/JSTS.2025.25.1.71/fig4a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig4b.png(b)

Before compression, it is necessary to transform all devices by rotating, mirroring, and swapping source and drain ports to ensure the consistency of device orientations and that ports of different nets share the same centroid. The premise of port merging is that the two ports share the same net. However, sometimes the matching placement of transistors cannot guarantee that the nets of each pair of adjacent ports are identical. To ensure matching, only one of the two techniques---well merging or port merging---can be used during the compression process. Therefore, it is necessary to determine whether it is reasonable to use the port merging technique, which may be better than the other technology. We propose a generalized algorithm to address this issue, and the algorithm flow is shown in Fig. 5. The relevant variable descriptions are presented in Table 1.

Fig. 5. Flow diagram of the proposed algorithm for determining the transistor merging strategy.

../../Resources/ieie/JSTS.2025.25.1.71/fig5.png

Table 1. Description of variables used in the proposed algorithm.

Variable Name

Description

m

The row indice of currently iterated transistor

n

The column indice of currently iterated transistor

m_end

The row number of MOS array

n_end

The column number of MOS array

count

The number of iterations for port merging attempt

Firstly, we need to obtain the number of rows and columns of the transistor array and store their values in variables ${m\_end}$ and ${n\_end}$, respectively. The algorithm iterates starting from the bottom-left transistor to the top-right transistor, sequentially iterating through all transistors within each row, and then moving to the next row after completing iteration within a row. During each iteration, the row and column indices of the currently iterated transistor are stored in variables ${m}$ and ${n}$, respectively. At the beginning of the iteration, the bottom-left transistor is considered the first row and first column transistor, and the values of variables ${m}$ and $n$ are initialized to 1. The variable count tracks the number of iterations executed and is initialized to 0.

During each iteration, the placement of transistors in the first column of each row is determined based on the value of the count variable. Subsequently, the placement of transistors in the remaining columns is sequentially determined according to the port merging technique and the swapping operations of drain and source ports. If no valid transistor placement satisfies the port merging condition during the iteration, the process is terminated prematurely, and a new iteration is initiated with the count variable incremented by one. If the iteration process completes successfully and the count value is less than 2, it indicates that the port merging technique can be applied to compress the inter-column spacing of the transistor array, and the algorithm terminates. Conversely, if the count value is greater than or equal to 2, it signifies that the well merging technique can be applied to compress the inter-column spacing of the transistor array, and the algorithm terminates.

After the judgment step, the devices have not only achieved common-centroid (CC) placement of their centroids, but also CC placement of their ports. Furthermore, if the judgment result permits the use of the port merging technique, adjacent ports of devices in each row will share the same net. This configuration necessitates only minimal device movements for subsequent compression, thereby obviating the need for additional steps.

Following the outlined procedure, the appropriate compression technique is determined, and the devices are primed for compression. The centroid position of the device group prior to compression is retained as the new centroid position post-compression. Transistors closest to the centroid position are prioritized for merging to minimize inter-column and inter-row spacings, progressively extending to all transistors, with the movement pattern illustrated in Fig. 2. The movement distance for device compression is dictated by data from the system's measurement module and the specified spacing between designated layers as required by the compression module. For instance, the distance necessary for trench merging is calculated using PyCell, while port merging necessitates a complete overlap of two ports with a port centroid distance of zero. During the compression process, the total movement distance of symmetric devices with respect to the centroid on the x-axis or y-axis remains equal. Post-compression, the placement of transistors becomes notably compact, as will be clearly demonstrated in the experimental results discussed in the subsequent section.

IV. EXPERIMENTAL VALIDATION OF COMPRESSION PERFORMANCE

To validate the performance of our system and algorithm, we selected the complete differential operational amplifier circuit structure, as illustrated in Fig. 6. This circuit encompasses an n-type current mirror, two identically sized p-type current mirrors, and a matched structure of the differential pair.

Fig. 6. Schematic of a differential operational amplifier.

../../Resources/ieie/JSTS.2025.25.1.71/fig6.png

We constructed the circuit using the TSMC 65nm process and exported the netlist and layout of the circuit as input data for our system, as shown in Fig. 7. The netlist contains at least four components: device names, device types, nets connected to the devices, and device parameters. The layout corresponds to the netlist, including these four components. In this sample, we set the channel length and the single finger channel width of each MOSFET to 400 nm and 500 nm, respectively.

Fig. 7. (a) Netlist and (b) layout file corresponding to the circuit structure under TSMC 65nm process.

../../Resources/ieie/JSTS.2025.25.1.71/fig7a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig7b.png(b)

To evaluate the compression performance of our system, we compared the layout of each matched circuit structure before and after compression. The layout comparison of the differential pair structure is illustrated in Fig. 8, where each device has a finger count of 4, and inter-column spacing is compressed using the port merging technique. The layout comparison of the p-type current mirror is shown in Fig. 9, with each device having a single finger, and inter-column spacing is compressed using the port merging technique. Finally, the layout comparison of the n-type current mirror is displayed in Fig. 10, where each device has a single finger, and inter-column spacing is compressed using the well merging technique.

Fig. 8. Layout of the differential pair (a) before compression and (b) after compression.

../../Resources/ieie/JSTS.2025.25.1.71/fig8a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig8a.png(b)

Fig. 9. Layout of the p-type current mirror (a) before compression and (b) after compression.

../../Resources/ieie/JSTS.2025.25.1.71/fig9a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig9b.png(b)

Fig. 10. Layout of the n-type current mirror (a) before compression and (b) after compression.

../../Resources/ieie/JSTS.2025.25.1.71/fig10a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig10b.png(b)

Table 2 presents a comparison of the layout size and area before and after compression for each experimental case. It is evident that the layout of each matched circuit structure has been significantly reduced in both size and area. The area reduction after compression, compared to before compression, is 54.10% for the differential pair matching structure, 52.51% for the N-type current mirror matching structure, and 77.86% for the P-type current mirror matching structure. Across these three experimental cases, the average area reduction exceeds 50%.

Table 2. Comparison of dimensions and areas for each experimental cases.

Length, µm

Height, µm

Area, µm2

Different pair

(before compression)

22.94

3.36

77.08

P-type current mirror (before compression)

20.9

3.36

70.22

N-type current mirror (before compression)

20.9

1.18

24.66

Different pair

(after compression)

14.99

2.36

35.38

P-type current mirror (after compression)

6.59

2.36

15.55

N-type current mirror (after compression)

9.92

1.18

11.71

The placement of the circuit before and after compression is shown in Fig. 11. Before compression, the circuit layout size was $22.94 \times 14.35$ $\mu$m, with an area of 329.19 $\mu$m$^2$. After compression, the circuit layout size reduced to $14.99 \times 11.26$ $\mu$m, with an area of 168.79 $\mu$m$^2$. Compared to the uncompressed version, the compressed layout area decreased by 48.73%, indicating a significant compression effect.

Fig. 11. Layout of devices (a) before compression and (b) after compression.

../../Resources/ieie/JSTS.2025.25.1.71/fig11a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig11b.png(b)

Fig. 12. Layouts with different placement after manual routing: (a) using method from [4], (b) using our approach.

../../Resources/ieie/JSTS.2025.25.1.71/fig12a.png(a)

../../Resources/ieie/JSTS.2025.25.1.71/fig12b.png(b)

Table 3. Postlayout performance analysis of layouts with different placement.

Schematic

Layout of Fig. 12(a) (RC extract)

Layout of Fig. 12(b) (RC extract)

Area (µm2)

/

250.306

192.586

Gain (dB)

32.813

32.892

32.959

UGF (MHz)

473.612

404.983

427.757

Phase Margin (°)

60.147

55.199

56.371

Total Parasitic Capacitance (fF)

0

87.68

69.90

We conducted a comparative analysis of our approach against Align [4], focusing on the performance of devices under different compact layouts. The routing between device ports was manually performed using the same wire width for all connections. Fig. 12 illustrates the resulting layouts generated by both methods, while Table 3 provides a detailed comparison of their post-layout performance metrics. Our approach achieved a 23% reduction in layout area, with a final area of 192.586 $\mu$m$^2$ compared to 250.306 $\mu$m$^2$ for the Align method. Additionally, our layout demonstrated a slight improvement in gain, increasing to 32.959 dB, along with an enhanced unity gain frequency (UGF) of 427.757 MHz. The total parasitic capacitance was also reduced by approximately 20%, underscoring the effectiveness of our method in optimizing both space and performance.

V. CONCLUSIONS

This paper presents an intelligent system for the automated placement generation of matching structures, such as current mirrors and differential pairs, with a focus on enhancing layout efficiency and compactness. The proposed system integrates several functional modules, including reading, identification, measurement, placement, and compression, to achieve a fully automated placement process from the initial netlist to the final design.Experimental validation was conducted using a fully differential operational amplifier designed with the TSMC 65nm process. Comparative analysis of device layouts before and after the application of the compression module demonstrated significant improvements in placement compactness. The layout area of the differential pair, n-type current mirror, and p-type current mirror structures was reduced by 54.10%, 52.51%, and 77.86%, respectively, achieving an average area reduction exceeding 50%. The results indicate that our system effectively addresses the challenges of common-centroid layout for matching devices, ensuring high matching accuracy while not only minimizing layout area but also reducing parasitic effects. Furthermore, compared to the Align [4] method, our approach demonstrates improved performance, offering enhancements in gain, unity-gain frequency, and overall layout efficiency. The results indicate that our system effectively addresses the challenges of common-centroid layout for matching devices, ensuring high matching accuracy and minimizing layout area. Future work will focus on extending the compression capabilities of the system to other matching devices, such as capacitors and resistors, and expanding support to include FinFET structures. This advancement will further enhance the applicability and versatility of the system in modern analog IC design.

ACKNOWLEDGMENTS

This work was supported by Laboratory Specialized Scientific Research Projects of Beijing Smart-chip Microelectronics Technology Co.,Ltd.

References

1 
J. Scheible and J. Lienig, ``Automation of analog IC layout: Challenges and solutions,'' Proc. of the 2015 Symposium on International Symposium on Physical Design (ISPD '15), Association for Computing Machinery, New York, NY, USA, pp. 33-40, 2015.DOI
2 
J. Crossley et al., ``BAG: A designer-oriented integrated framework for the development of AMS circuit generators,'' Proc. of 2013 IEEE/ACM International Conference on Computer-Aided Design (ICCAD), San Jose, CA, USA, pp. 74-81, 2013.DOI
3 
B. Xu et al., ``MAGICAL: Toward fully automated analog IC layout leveraging human and machine intelligence: Invited paper,'' Proc. of 2019 IEEE/ACM International Conference on Computer-Aided Design (ICCAD), Westminster, CO, USA, pp. 1-8, 2019.DOI
4 
T. Dhar et al., ``ALIGN: A system for automating analog layout,'' IEEE Design & Test, vol. 38, no. 2, pp. 8-18, April 2021.DOI
5 
J. V. Faricelli, ``Layout-dependent proximity effects in deep nanoscale CMOS,'' Proc. of CICC, pp. 1-8, 2010.DOI
6 
M. G. Bardon et al., ``Layout-induced stress effects in 14 nm 10 nm FinFETs and their impact on performance,'' Proc. IEEE Symp. on VLSI Technology, pp. T114-T115, 2013.URL
7 
T. Hook et al., ``Lateral ion implant straggle and mask proximity effect,'' IEEE Trans. Electron Devices, vol. 50, no. 9, pp. 1946-1951, 2003.DOI
8 
K. W. Su et al., ``A scaleable model for STI mechanical stress effect on layout dependence of MOS electrical characteristics,'' Proc. of CICC, pp. 245-248, 2003.DOI
9 
J. V. Faricelli, ``Layout-dependent proximity effects in deep nanoscale CMOS,'' Proc. of CICC, pp. 1-8, 2010.DOI
10 
A. K. Sharma et al., ``Performance-aware common-centroid placement and routing of transistor arrays in analog circuits,'' Proc. of ICCAD, 2021.DOI
11 
D. Sayed and M. Dessouky, ``Automatic generation of common-centroid capacitor arrays with arbitrary capacitor ratio,'' Proc. of 2002 Design, Automation and Test in Europe Conference and Exhibition, Paris, France, pp. 576-580, 2002.DOI
12 
V. Borisov, K. Langner, J. Scheible, and B. Prautsch, ``A novel approach for automatic common-centroid pattern generation,'' Proc. of 2017 14th International Conference on Synthesis, Modeling, Analysis and Simulation Methods and Applications to Circuit Design (SMACD), Giardini Naxos, Italy, pp. 1-4, 2017.DOI
13 
D. Long, X. Hong, and S. Dong, ``Optimal two-dimension common centroid layout generation for MOS transistors unit-circuit,'' Proc. of 2005 IEEE International Symposium on Circuits and Systems (ISCAS), vol. 3, Kobe, Japan, pp. 2999-3002, 2005.DOI
14 
M. P. -H. Lin, H. Zhang, M. D. F. Wong and Y. -W. Chang, ``Thermal-driven analog placement considering device matching,'' IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, vol. 30, no. 3, pp. 325-336, March 2011.DOI
15 
A. K. Sharma et al., ``Performance-aware common-centroid placement and routing of transistor arrays in analog circuits,'' Proc. of 2021 IEEE/ACM International Conference On Computer Aided Design (ICCAD), Munich, Germany, pp. 1-9, 2021.DOI
16 
N. Karmokar, M. Madhusudan, A. K. Sharma, R. Harjani, M. P.-H. Lin. and S. S. Sapatnekar, ``Common-centroid layout for active and passive devices: A review and the road ahead,'' Proc. of 2022 27th Asia and South Pacific Design Automation Conference (ASP-DAC), Taipei, Taiwan, pp. 114-121, 2022.DOI
Yanning Chen
../../Resources/ieie/JSTS.2025.25.1.71/au1.png

Yanning Chen received the B.S. degree in computer science from Capital Normal University in 2002 and received the M.S. degree in electronic and communication engineering from Beijing University of Posts and Telecommunications in 2018. She is senior engineer, director of Research and Development center, Beijing Smartchip Microelectronics Technology Co., Ltd. She has significantly contributed to industrial chip reliability by addressing key technical challenges, developing technical standards, and establishing a quality assurance system for industrial chips.

Dongyan Zhao
../../Resources/ieie/JSTS.2025.25.1.71/au2.png

Dongyan Zhao received the B.S. degree and the M.S. degree in mechanical manufacturing from Shanghai Jiao Tong University in 1992 and 1998 respectively. Dongyan Zhao is professor senior engineer, epert obtaining the special allowance of State Council, IEEE Senior member. Dongyan Zhao is general manager of Beijing Smartchip Microelectronics Technology Co. Ltd, established the first chip R&D team in China's power industry, built the largest industrial chip design enterprise in China. Dongyan Zhao was duly elected a chief expert of State Grid Corporation of China in 2022.

Fang Liu
../../Resources/ieie/JSTS.2025.25.1.71/au3.png

Fang Liu received the PHD degree in Tianjin University, Tianjin, China in 2010. In 2015, she joined Beijing Smartchip Microelectronics Technology Co. Ltd., Beijing, China. Her current research interests include reliability of integrated circuit and semiconductor devices.

Yang Zhao
../../Resources/ieie/JSTS.2025.25.1.71/au4.png

Yang Zhao is a Senior Engineer, manager of R&D Department of Beijing Smart-Chip Microelectronics Technology Co., LTD. He has long been engaged in the technical work of industrial chip testing and verification. He has more than 10 years of technical experience in the fields of IC-EMC, IC failure analysis and reliability. He is mainly responsible for the monitoring and analysis of the electric power field environment and the formulation of the related technical standards for the chips used in the electric power terminal. He has participated in the formulation /revision standard for more than 10 items, published 6 articles and 13 patents.

Zhen Fu
../../Resources/ieie/JSTS.2025.25.1.71/au5.png

Zhen Fu received the Ph.D. degree in materials science from University of Chinese Academy of Sciences in 2015. Zhen Fu is senior engineer, deputy general manager of Research and Development center, Beijing Smartchip Microelectronics Technology Co. Ltd. He has long been engaged in the technical work of the design, process, model, reliability mechanism and application analysis of semiconductor devices, solved a series of key technical problems, and successfully developed more than 20 international advanced IGBT, MOSFET and SiC power chips.

Yali Shao
../../Resources/ieie/JSTS.2025.25.1.71/au6.png

Yali Shao received the B.S.and M.S. degrees in electronic engineering from Zhejiang University, Hangzhou, China, in 2008 and 2011, respectively. She was in Texas Instruments from 2011 to 2017, and then in Analog Devices Inc. from 2017 to 2021. She current is in Beijing Smartchip Microelectronics Technology Co., Ltd. since 2021. Her research interests include analog IC design (Power IC, Driver IC, Isolation IC, and ADC IC), analog mixed-Signal design and automation, process and device basic IP,such as OTP, IO,ESD, STD, etc.

Dong Zhang
../../Resources/ieie/JSTS.2025.25.1.71/au7.png

Dong Zhang received the B.S degree in applied physics from Lanzhou University of Technology, LanZhou, China, in 2008. He then worked at RFMD (Beijing), where he was engaged in IC testing, reliability and failure analysis.In 2011, he joined Beijing Smartchip Microelectronics Technology Co., Ltd. and is responsible for analog IC automated design related work. His current research interests include analog circuit sizing and layout automation.

Yucheng Pan
../../Resources/ieie/JSTS.2025.25.1.71/au8.png

Yucheng Pan received his B.S. degree from Sun Yat-sen University, Guangdong, China, in 2022. He is currently a second-year graduate student at Sun Yat-sen University. His research interests include EDA technology for analog integrated circuits, with a particular focus on analog integrated circuit layout and routing.

Xiangyu Meng
../../Resources/ieie/JSTS.2025.25.1.71/au9.png

Xiangyu Meng received the B.Sc. and Ph.D. degrees in electrical engineering from Tsinghua University, Beijing, China, in 2011 and 2017, respectively. From 2017 to 2018, he was a Post-Doctoral Fellow with the Electronic and Computer Engineering, Hong Kong University of Science and Technology, Hong Kong. He is currently an Associate Professor with the School of Electronics and Information Technology, Sun Yat-sen University, Guangzhou, China. His research interests include Analog and RF IC design automation.