Diode : comment calculer la résistance petits signaux en Python avec UliEngineering
Vous pouvez facilement calculer la résistance petits signaux d’une diode avec la bibliothèque Python UliEngineering :
shockley_diode_small_signal_resistance.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
resistance = shockley_diode_small_signal_resistance(current="1mA")
print(f"Résistance petits signaux : {format_value(resistance, 'Ω')}")Exemple de sortie
shockley_diode_small_signal_resistance_output.txt
Résistance petits signaux : 25.7 ΩCheck 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