Diode : comment calculer le courant avec l'équation de Shockley en Python avec UliEngineering
Vous pouvez facilement calculer le courant traversant une diode à l’aide de l’équation de Shockley avec la bibliothèque Python UliEngineering :
shockley_diode_current.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
current = shockley_diode_current(voltage="600mV", saturation_current="1pA")
print(f"Courant de la diode : {format_value(current, 'A')}")Exemple de sortie
shockley_diode_current_output.txt
Courant de la diode : 13.9 mACheck 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