Python: Dioden-Sättigungsstrom mit der Shockley-Gleichung mit UliEngineering berechnen
English
Deutsch
Du kannst leicht den Sättigungsstrom einer Diode aus einem Arbeitspunkt mit der Shockley-Gleichung und der UliEngineering-Python-Bibliothek berechnen:
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"Sättigungsstrom: {format_value(saturation_current, 'A')}")Beispielausgabe
shockley_diode_saturation_current_output.txt
Sättigungsstrom: 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