Comment calculer la tension d'une diode avec l'équation de Shockley en Python avec UliEngineering
Vous pouvez facilement calculer la tension aux bornes d’une diode en utilisant l’équation de Shockley avec la bibliothèque Python UliEngineering :
shockley_diode_voltage.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
voltage = shockley_diode_voltage(current="10mA", saturation_current="1pA")
print(f"Diode voltage: {format_value(voltage, 'V')}")Exemple de sortie
shockley_diode_voltage_output.txt
Diode voltage: 592 mVCheck 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