Next Article in Journal
Analysis of Preload of Three-Stator Ultrasonic Motor
Previous Article in Journal
Gas–Liquid Two-Phase Flow Pattern Identification of a Centrifugal Pump Based on SMOTE and Artificial Neural Network
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Prediction of Static Characteristic Parameters of an Insulated Gate Bipolar Transistor Using Artificial Neural Network

1
College of Integrated Circuit Science and Engineering, Nanjing University of Posts and Telecommunications, Nanjing 210023, China
2
National and Local Joint Engineering Laboratory for RF Integration and Micro-Packaging Technologies, Nanjing University of Posts and Telecommunications, Nanjing 210023, China
3
State Key Laboratory of Electronic Thin Films and Integrated Devices, University of Electronic Science and Technology of China, Chengdu 610054, China
*
Authors to whom correspondence should be addressed.
Micromachines 2022, 13(1), 4; https://doi.org/10.3390/mi13010004
Submission received: 2 November 2021 / Revised: 1 December 2021 / Accepted: 20 December 2021 / Published: 21 December 2021
(This article belongs to the Section D1: Semiconductor Devices)

Abstract

:
Breakdown voltage (BV), on-state voltage (Von), static latch-up voltage (Vlu), static latch-up current density (Jlu), and threshold voltage (Vth), etc., are critical static characteristic parameters of an IGBT for researchers. Von and Vth can characterize the conduction capability of the device, while BV, Vlu, and Jlu can help designers analyze the safe operating area (SOA) of the device and its reliability. In this paper, we propose a multi-layer artificial neural network (ANN) framework to predict these characteristic parameters. The proposed scheme can accurately fit the relationship between structural parameters and static characteristic parameters. Given the structural parameters of the device, characteristic parameters can be generated accurately and efficiently. Compared with technology computer-aided design (TCAD) simulation, the average errors of our scheme for each characteristic parameter are within 8%, especially for BV and Vth, while the errors are controlled within 1%, and the evaluation speed is improved more than 107 times. In addition, since the prediction process is mathematically a matrix operation process, there is no convergence problem, which there is in a TCAD simulation.

1. Introduction

The insulated gate bipolar transistor (IGBT) is widely used in power electronics due to its superior performance [1,2]. Analysis of its static characteristic parameters has always been a key part of the design process, given that these parameters, such as on-state voltage (Von) and threshold voltage (Vth), can characterize the conduction capability of the device [3,4]. In addition, breakdown voltage (BV), static latch-up voltage (Vlu), and static latch-up current density (Jlu) are helpful when evaluating the safe operating area of the device and its reliability [5,6,7]. Conventionally, technology computer-aided design (TCAD) simulation tools are used to obtain these characteristic parameters of the device before experimental testing because of the advantage of low prediction errors [1,2,3,4]. However, this method may suffer from non-convergence when solving the semiconductor physical equations, thus decreasing the efficiency of obtaining the characteristic parameters.
Recently, machine learning techniques for predicting the electrical characteristic parameters of the semiconductor device have been booming due to their ability to learn the relationship between structural parameters and characteristics efficiently [8,9,10,11,12,13]. However, most work is limited to providing only one characteristic parameter, such as the threshold voltage of a junctionless nanowire transistor [11] or the breakdown voltage of a lateral power device [12]. As for those that can output multiple characteristics, the characteristic parameters are extracted from the current–voltage (I-V) curve and capacitance–voltage (C-V) curve, which still relies on human-intensive operation [13]. In addition, machine learning is applied to predict the current value of IGBTs in circuits and suppress the current imbalance of parallel-connected IGBTs through artificial neural networks, or to predict the remaining lifetime of the IGBTs operating in circuits [14,15,16]. However, the focus of these works is on monitoring and optimizing IGBT operations in the circuit, rather than on exploring the relationship between the device’s structural parameters and characteristic parameters.
In this paper, we propose a simple multi-layer artificial neural network (ANN) framework to predict the vital static characteristic parameters of the IGBT, including BV, Von, Vth, Vlu, and Jlu. The proposed method enables designers to predict the static characteristic parameters effectively, speeding up the device design process. After testing, for the same testing samples, the prediction speed of the ANN is improved by more than 107 times compared to TCAD simulation. This method avoids the non-convergence problem of TCAD simulations, and, if supported by experimental data, the method’s predictions will be closer to the experimental test values.

2. Dataset Generation and Division

Figure 1 shows the structural schematic diagram of the IGBT, and Figure 2 gives the curves of its static characteristic, including the breakdown characteristic curve, forward I-V characteristic curve, and transfer characteristic curve.
As shown in the figure, the prediction targets, including BV, Vth, Von, Vlu, and Jlu, are marked in the corresponding characteristic curves. In order to obtain the dataset of static characteristic parameters for IGBT with different structures, some vital structural parameters were generated randomly within a certain range. The detailed information on these structural parameters and their ranges is shown in Table 1. Moreover, during the data collection process, the static latch-up point was extracted from the forward I-V characteristic curve [7]. In addition, Von was defined as the voltage at the anode when the anode’s current density reached a certain set value (Jset), meaning that it could also be extracted from the forward I-V curve at a gate voltage VG of 15 V, with Jset defined as 100 A/cm2 [1]. We simulated the device characteristics of multiple IGBTs with the carrier lifetime of 1µs using the TCAD tool as the total dataset [17]. After finishing the total dataset collection from the simulation, the dataset was further divided into the training set and the testing set for the training process and the testing process of the ANN framework.

3. Methodology

Figure 3 shows the overall flow of the proposed approach and the designed ANN framework structure. In general, the proposed scheme can be divided into three steps: dataset processing, the training process, and the testing process. It is worth noting that, since the different input parameters have different scales, this will result in the updating of the ANN weights and biases during training being more susceptible to large-scale input parameters and the effect of input parameters with small scales on the output may be ignored. We use a normalization method to compress the structural parameters to (0, 1), and the process can eliminate the effect of unit and scale differences between input parameters in order to treat each class of input parameters equally, thereby increasing the prediction accuracy and efficiency of the ANN. Similar approaches to data pre-processing have been reported in papers related to machine learning [12,13].
The ANN is a nonlinear dynamic learning system, implemented using a mathematical method, which can handle complex nonlinear prediction problems by simulating biological neural networks. It consists of an input layer, hidden layers, and an output layer. The ANN structure for the proposed method is built using the Tensorflow library [18]. To obtain a robust framework for IGBT static characteristic parameter prediction, several trials and adjustments have been conducted. Finally, the hidden layers are set to four layers, and the number of neurons in each layer is 36, 20, 16, and eight, from first to last. Such an ANN structure has sufficient fitting ability for the static performance prediction task. Meanwhile, it also can avoid overfitting problems due to its extensive learning ability.
The ANN algorithm is capable of continuously optimizing the weights and biases between each layer to minimize the error between the predicted value and the actual value during the training process. We defined the error function by using the mean absolute error (MAE) loss function [11]. Moreover, we used the Adam optimizer to update the network parameters to reduce the error [19]. Mathematically, the MAE loss function is expressed as follows:
MAE = 1 m i = 1 m | ( y i y ^ i ) |
where m is the number of training samples, yi and ŷi are the actual value and predicted value of the output feature of the ith training sample, respectively. Moreover, to capture the nonlinear relationship between the device structure and the static characteristic parameters, each neuron is equipped with a ReLU activation function [20].

4. Results Analysis

The following numerical results validate the proposed scheme. The prediction results of the ANN for different static characteristic parameters are first shown, then the effects of the different regression algorithms and the number of training samples on the prediction errors are investigated separately, and the reasons for the high and low average errors for different characteristics parameters are explained through physical theory. In addition, the ANN method has also shown its great ability to fit the trends of the static characteristic parameters well as they change with the device’s structural parameters. Finally, we reveal the advantages in prediction speed by comparing the time of using ANN and TCAD simulation.

4.1. Prediction Results for Characteristic Parameters

Figure 4a–e are scatter plots showing the correlations between the target BV, Von, Vlu, Jlu, and Vth and those predicted by the ANN method, while the number of training samples used for the prediction of the different characteristic parameters is described in the caption text. The number of training samples is influenced by the convergence of the simulation and the complexity of the predicted characteristic parameters, which will be discussed more closely later in this paper. Compared to the TCAD simulation results, the average errors for BV prediction and Vth prediction can be controlled to within 1%. For IGBT, BV falls between the avalanche breakdown and the reach-through breakdown limits, and is governed by the open-base transistor breakdown phenomenon. The open-base transistor breakdown condition for the IGBT is given by Equation (2), where the αpnp is the common-base current gain, which is related to the injection efficiency γE, the base transport factor αT, and the multiplication coefficient M. By derivation, αT and M are in turn related to Nd and Td [21]. Vth is primarily associated with the doping concentration of the channel region, Nwell. The number of structural parameters affecting these two characteristic parameters is small, so the ANN can predict the BV and Vth of the IGBT very accurately. However, Von, Vlu, and Jlu are closely related to on-resistance, and the parameters of the drift region, buffer region, and channel region all impact the on-resistance of the device. The more structural parameters affect the static characteristic parameter, the more complex the prediction of the characteristic parameter is. Nevertheless, the average errors of our proposed scheme are all within 8%, which proves that the number of layers and neurons of the framework is well set so that it has sufficient fitting ability and can avoid overfitting problems due to the high fitting ability.
α PNP = ( γ E α T ) PNP M = 1

4.2. Comparison of Different Algorithms

To further emphasize the effectiveness of the ANN, we can compare the results of the ANN method with other predictors constructed using conventional regression algorithms, such as Gaussian process regression (GPR), support vector regression (SVR), and linear regression (LR). Table 2 shows the average errors of predictors constructed using different machine learning algorithms when predicting IGBT static characteristic parameters. The ANN achieves the most accurate predictions for each static characteristic parameter. In addition, it is worth noting that, except for the ANN, the average errors of the other three schemes for Vlu are large. This is because, for some structures with a very small Vlu, these schemes fail to capture the nonlinear condition due to the high complexity of the data distribution, so it is difficult to give accurate prediction results. However, due to the setting of the ReLU function, the multi-layer ANN we trained has a strong nonlinear fitting ability, so the prediction result is more accurate compared to the other three schemes.

4.3. Effect of Sample Size on Results

We can also analyze the influence of the number of training samples on the prediction results. The testing set consisted of 400 IGBT samples with different structural parameters, and the number of samples in the training set was increased from 400 to 4000. Figure 5 shows the variation curves of the ANN’s prediction average error for five static characteristic parameters as the number of samples in the training set increased.
It can be observed that the number of training set samples required to predict Jlu and Vlu are more than the other static characteristic parameters, and the average error is larger. This is because when the latch-up effect occurs, the internal parasitic NPN transistor of the IGBT turns on and the gate loses the ability to control the current. Under such conditions, the relationship between the device’s characteristics and the structural parameters is hard to capture, which assuredly increases the difficulty of the ANN’s prediction task.

4.4. Prediction Results with Changing Structural Parameters

Taking the Von prediction as an example, we can further analyze the fitting results of the trained ANN relating to the relationship between the structural parameters and characteristic parameters of the IGBT. Figure 6a–f show the comparisons of the prediction results of the ANN method and the TCAD simulation with different structural parameters, including Nb, Np+, Nwell, Td, Tbuffer, and L, respectively. Based on the initial structures, the structural parameters were sequentially changed. The initial structural parameters are shown in the caption. We have taken three different doping concentrations in the drift region into consideration.
As the figures show, compared with the TCAD simulation, the ANN method exhibits an accurate prediction ability in the presence of changes in the structural parameters, with the same trend as the TCAD simulation results. By comparing the points of three different colors in each figure, we can see that when other structural parameters remain unchanged, the larger Nd is, the smaller Von will be. This is because the on-state resistance of the drift region decreases with the increase of Nd, and the anode voltage Von required to reach a certain value of the anode current Jset decreases as well. In addition, larger values of the buffer region parameters Nb and Tbuffer cause a decrease in the number of holes injected from the anode P+ region into the drift region, thereby weakening the conductance modulation effect, increasing the on-state resistance, and increasing Von. An increase in the structural parameters Nwell and L in the channel region raises the threshold voltage, causing an increase in the on-state resistance and Von of the device. As the figures show, the proposed scheme can fit the effects of various structural parameters on the static characteristic parameters of the device well.

4.5. Prediction Time and Efficiency

For the prediction using the ANN method, since the testing process is mathematically a matrix calculation between the input features and the updated parameters within the ANN, the prediction time of the ANN is within 0.1 s. Yet, under the same dataset, the simulation runtime for the TCAD tool is 328,653.6 s, which does not include the time spent manually setting up the device structure. The prediction speed is therefore increased by more than 107 times compared with the TCAD simulation, and the convergence problem caused by unreasonable grid settings in the TCAD simulation is totally avoided, which is also beneficial for the efficiency when predicting the static characteristics parameters of the IGBTs with different structures.
Among the parameters of the initial structure, Nb is 1 × 1016 cm−3, Nwell is 1 × 1017 cm−3, Np+ is 1 × 1018 cm−3, Td is 80 µm, Tbuffer is 10 µm, L is 2 µm, and three different cases with Nd of 1 × 1014 cm−3, 5 × 1014 cm−3, 1 × 1015 cm−3 are considered.

5. Conclusions

In this paper, we propose a multi-layer ANN predictive framework to predict multiple static characteristic parameters of an IGBT, such as BV, Von, Vlu, Jlu, and Vth. Compared with the TCAD simulation tool, the trained ANN can achieve a speed increase of more than 107 times while ensuring the average errors are less than 8% when predicting the static characteristic parameters. Since the prediction process is a numerical operation of the matrix, it avoids the convergence problem that often occurs with TCAD simulations. The scheme confirms that ANN can capture the effects of changes to a device’s structural parameters on a device’s characteristic parameters and help designers to predict the static characteristic parameters quickly and speed up the design process. The method is extensible and when the ANN is trained with more informative datasets, the ANN will have the ability to predict the characteristics of more complexly structured devices. In addition, the method is able to predict characteristic parameters that are closer to the experimental test values based on experimental data.

Author Contributions

Conceptualization, Q.Y., Y.G., B.Z. and J.C.; methodology, Q.Y. and J.C.; software, Q.Y. and M.Z.; validation, Q.Y., J.Z. and J.Y.; resources, Q.Y., Y.G. and J.L.; data curation, Q.Y.; writing—original draft preparation, Q.Y.; writing—review and editing, Y.G., J.C. and B.Z.; visualization, Q.Y., W.T. and X.G.; supervision, Y.G., B.Z. and J.C.; funding acquisition, Y.G., J.Z. and J.Y. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported in part by the National Natural Science Foundation of China under Grant 61904083, and 61874059, in part by the Natural Science Foundation of Jiangsu Province under Grant BK20201206, BK20190237, and BK20211104, and in part by the Opening Project of State Key Laboratory of Electronic Thin Films and Integrated Devices under Grant KFJJ201907.

Data Availability Statement

The data presented in this study are available on request from the corresponding author.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Huang, J.; Huang, H.; Chen, X.B. Simulation Study of a Low ON-State Voltage Superjunction IGBT With Self-Biased PMOS. IEEE Trans. Electron. Devices 2019, 66, 3242–3246. [Google Scholar] [CrossRef]
  2. Saito, W.; Nishizawa, S.-I. Alternated Trench-Gate IGBT for Low Loss and Suppressing Negative Gate Capacitance. IEEE Trans. Electron. Devices 2020, 67, 3285–3290. [Google Scholar] [CrossRef]
  3. Jiang, M.; Wang, Y. Numerical Study of a Thyristor Injection Insulated Gate Bipolar Transistor (TI-IGBT) Using P-N-P Collector. IEEE J. Electron. Devices Soc. 2019, 7, 979–983. [Google Scholar] [CrossRef]
  4. Luo, X.; Zhang, S.; Wei, J.; Yang, Y.; Su, W.; Fan, D.; Li, C.; Li, Z.; Zhang, B. A Low Loss and On-State Voltage Superjunction IGBT with Depletion Trench. In Proceedings of the 2020 32nd International Symposium on Power Semiconductor Devices and ICs (ISPSD), Vienna, Austria, 13–18 September 2020; IEEE: Piscataway, NJ, USA, 2020; pp. 130–133. [Google Scholar]
  5. Duan, B.; Sun, L.; Yang, Y. Analysis of the Novel Snapback-Free LIGBT with Fast-Switching and Improved Latch-up Immunity by TCAD Simulation. IEEE Electron. Device Lett. 2018, 40, 63–66. [Google Scholar] [CrossRef]
  6. Antoniou, M.; Udrea, F.; Lophitis, N.; Corvasce, C.; De-Michielis, L. The P-Ring Trench Schottky IGBT: A Solution towards Latch-up Immunity and an Enhanced Safe-Operating Area. In Proceedings of the 2020 32nd International Symposium on Power Semiconductor Devices and ICs (ISPSD), Vienna, Austria, 13–18 September 2020; IEEE: Piscataway, NJ, USA, 2020; pp. 134–137. [Google Scholar]
  7. Sun, L.; Duan, B.; Wang, Y.; Yang, Y. Analysis of the Fast-Switching LIGBT With Double Gates and Integrated Schottky Barrier Diode. IEEE Trans. Electron. Devices 2019, 66, 2675–2680. [Google Scholar] [CrossRef]
  8. Bankapalli, Y.S.; Wong, H.Y. TCAD Augmented Machine Learning for Semiconductor Device Failure Troubleshooting and Reverse Engineering. In Proceedings of the 2019 International Conference on Simulation of Semiconductor Processes and Devices (SISPAD), Udine, Italy, 4–6 September 2019; IEEE: Piscataway, NJ, USA, 2020; pp. 1–4. [Google Scholar]
  9. Raju, S.S.; Wang, B.; Mehta, K.; Xiao, M.; Zhang, Y.; Wong, H.-Y. Application of Noise to Avoid Overfitting in TCAD Augmented Machine Learning. In Proceedings of the 2020 International Conference on Simulation of Semiconductor Processes and Devices (SISPAD), Kobe, Japan, 23 September 2020; IEEE: Piscataway, NJ, USA, 2020; pp. 351–354. [Google Scholar]
  10. Mehta, K.; Raju, S.S.; Xiao, M.; Wang, B.; Zhang, Y.; Wong, H.Y. Improvement of TCAD Augmented Machine Learning Using Autoencoder for Semiconductor Variation Identification and Inverse Design. IEEE Access 2020, 8, 143519–143529. [Google Scholar] [CrossRef]
  11. Carrillo-Nunez, H.; Dimitrova, N.; Asenov, A.; Georgiev, V. Machine Learning Approach for Predicting the Effect of Statistical Variability in Si Junctionless Nanowire Transistors. IEEE Electron. Device Lett. 2019, 40, 1366–1369. [Google Scholar] [CrossRef] [Green Version]
  12. Chen, J.; Alawieh, M.B.; Lin, Y.; Zhang, M.; Zhang, J.; Guo, Y.; Pan, D.Z. Powernet: SOI Lateral Power Device Breakdown Prediction With Deep Neural Networks. IEEE Access 2020, 8, 25372–25382. [Google Scholar] [CrossRef]
  13. Mehta, K.; Wong, H.-Y. Prediction of FinFET Current-Voltage and Capacitance-Voltage Curves Using Machine Learning With Autoencoder. IEEE Electron. Device Lett. 2021, 42, 136–139. [Google Scholar] [CrossRef]
  14. Zeng, X.; Li, Z.; Gao, W.; Ren, M.; Zhang, J.; Li, Z.; Zhang, B. A Novel Virtual Sensing With Artificial Neural Network and K-Means Clustering for IGBT Current Measuring. IEEE Trans. Ind. Electron. 2018, 65, 7343–7352. [Google Scholar] [CrossRef]
  15. Zeng, X.; Li, Z.; Wan, J.; Zhang, J.; Ren, M.; Gao, W.; Li, Z.; Zhang, B. Embedded Hardware Artificial Neural Network Control for Global and Real-Time Imbalance Current Suppression of Parallel Connected IGBTs. IEEE Trans. Ind. Electron. 2020, 67, 2186–2196. [Google Scholar] [CrossRef]
  16. Ali, S.H.; Heydarzadeh, M.; Dusmez, S.; Li, X.; Kamath, A.S.; Akin, B. Lifetime Estimation of Discrete IGBT Devices Based on Gaussian Process. IEEE Trans. Ind. Appl. 2018, 54, 395–403. [Google Scholar] [CrossRef]
  17. Technology Modeling Associates. Medici: Two-dimensional Device Simulation Program, Version 2.2: User’s Manual. Technology Modeling Associates, Incorporated. 1996. Available online: https://manualzz.com/doc/23606185/device-simulation-tool (accessed on 15 September 2021).
  18. Abadi, M.; Barham, P.; Chen, J.; Chen, Z.; Davis, A.; Dean, J.; Devin, M.; Ghemawat, S.; Irving, G.; Isard, M.; et al. TensorFlow: A System for Large-Scale Machine Learning. In Proceedings of the 12th USENIX Symposium on Operating Systems Design and Implementation (OSDI 16), Savannah, GA, USA, 2–4 November 2016. [Google Scholar]
  19. Kingma, D.P.; Ba, J. Adam: A Method for Stochastic Optimization. arXiv 2017, arXiv:1412.6980. [Google Scholar]
  20. Agarap, A.F. Deep Learning Using Rectified Linear Units (ReLU). arXiv 2019, arXiv:1803.08375. [Google Scholar]
  21. Baliga, B.J. Fundamentals of Power Semiconductor Devices; Springer Science & Business Media: Berlin/Heidelberg, Germany, 2010; pp. 748–751. [Google Scholar]
Figure 1. Schematic diagram of the IGBT structure.
Figure 1. Schematic diagram of the IGBT structure.
Micromachines 13 00004 g001
Figure 2. Schematic diagram of the IGBT static characteristic curves.
Figure 2. Schematic diagram of the IGBT static characteristic curves.
Micromachines 13 00004 g002
Figure 3. The overall flow and structure of the proposed ANN framework.
Figure 3. The overall flow and structure of the proposed ANN framework.
Micromachines 13 00004 g003
Figure 4. The scatter plots of the static characteristic prediction results for the testing sets of the IGBT: (a) BV, training sample size: 7600; (b) Von, training sample size: 7600; (c) Vlu, training sample size: 4250; (d) Jlu, training sample size: 4250; and (e) Vth, training sample size: 1400.
Figure 4. The scatter plots of the static characteristic prediction results for the testing sets of the IGBT: (a) BV, training sample size: 7600; (b) Von, training sample size: 7600; (c) Vlu, training sample size: 4250; (d) Jlu, training sample size: 4250; and (e) Vth, training sample size: 1400.
Micromachines 13 00004 g004aMicromachines 13 00004 g004b
Figure 5. Curves of average error for static characteristic parameters varying with the number of training set samples based on the ANN method.
Figure 5. Curves of average error for static characteristic parameters varying with the number of training set samples based on the ANN method.
Micromachines 13 00004 g005
Figure 6. (af) Comparison of predicted results from ANN and TCAD for the Von of devices under the condition that six structural parameters Nb, Np+, Nwell, Td, Tbuffer, and L are changed, respectively.
Figure 6. (af) Comparison of predicted results from ANN and TCAD for the Von of devices under the condition that six structural parameters Nb, Np+, Nwell, Td, Tbuffer, and L are changed, respectively.
Micromachines 13 00004 g006
Table 1. Structural parameters and ranges of the IGBT.
Table 1. Structural parameters and ranges of the IGBT.
Structural ParametersRange
N-drift doping, Nd (cm−3)1 × 1013–1 × 1015
N-buffer doping, Nb (cm−3)1 × 1016–5 × 1017
P-well doping, Nwell (cm−3)1 × 1017–5 × 1017
P+ anode doping, NP+ (cm−3)1 × 1017–1 × 1019
N-drift thickness, Td (µm)50–120
N-buffer thickness, Tbuffer (µm)1–20
Channel length, L (µm)1–5
Table 2. Average errors (%) of predictors constructed with different algorithms.
Table 2. Average errors (%) of predictors constructed with different algorithms.
Characteristic ParameterMachine Learning Algorithms
LRSVRGPRANN
BV26.218.52.30.5
Von56.141.712.03.7
Vth2.73.41.00.6
Vlu993.1540.2321.47.4
Jlu21.515.810.97.7
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Yao, Q.; Guo, Y.; Zhang, B.; Chen, J.; Zhang, J.; Zhang, M.; Guo, X.; Yao, J.; Tang, W.; Liu, J. Prediction of Static Characteristic Parameters of an Insulated Gate Bipolar Transistor Using Artificial Neural Network. Micromachines 2022, 13, 4. https://doi.org/10.3390/mi13010004

AMA Style

Yao Q, Guo Y, Zhang B, Chen J, Zhang J, Zhang M, Guo X, Yao J, Tang W, Liu J. Prediction of Static Characteristic Parameters of an Insulated Gate Bipolar Transistor Using Artificial Neural Network. Micromachines. 2022; 13(1):4. https://doi.org/10.3390/mi13010004

Chicago/Turabian Style

Yao, Qing, Yufeng Guo, Bo Zhang, Jing Chen, Jun Zhang, Maolin Zhang, Xiaobo Guo, Jiafei Yao, Weihua Tang, and Jianhua Liu. 2022. "Prediction of Static Characteristic Parameters of an Insulated Gate Bipolar Transistor Using Artificial Neural Network" Micromachines 13, no. 1: 4. https://doi.org/10.3390/mi13010004

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop