Como calcular a corrente do diodo usando a equação de Shockley em Python usando UliEngineering
Você pode calcular facilmente a corrente através de um diodo usando a equação de Shockley com a biblioteca Python UliEngineering:
V
⚠
A
⚠
shockley_diode_current.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
current = shockley_diode_current(voltage="600mV", saturation_current="1pA")
print(f"Diode current: {format_value(current, 'A')}")Exemplo de saída
shockley_diode_current_output.txt
Diode current: 13.9 mACheck out similar posts by category:
Calculators, 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