Diode : comment calculer le courant de saturation avec l'équation de Shockley en Python avec UliEngineering

Vous pouvez facilement calculer le courant de saturation d’une diode à partir d’un point de fonctionnement à l’aide de l’équation de Shockley avec la bibliothèque Python UliEngineering :

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"Courant de saturation : {format_value(saturation_current, 'A')}")

Exemple de sortie

shockley_diode_saturation_current_output.txt
Courant de saturation : 966 fA

Check out similar posts by category: Electronics, Python