如何使用 UliEngineering 在 Python 中利用 Shockley 方程计算二极管饱和电流
你可以使用 UliEngineering Python 库,根据单一工作点利用 Shockley 方程轻松计算二极管的饱和电流:
shockley_diode_saturation_current.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
saturation_current = shockley_diode_saturation_current(
voltage="600mV", current="13.4mA"
)
print(f"Saturation current: {format_value(saturation_current, 'A')}")示例输出
shockley_diode_saturation_current_output.txt
Saturation current: 966 fACheck out similar posts by category:
Electronics, Python
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow