Como calcular a corrente de saturação do diodo usando a equação de Shockley em Python usando UliEngineering
Você pode calcular facilmente a corrente de saturação de um diodo a partir de um ponto de operação usando a equação de Shockley com a biblioteca Python UliEngineering:
V
⚠
A
⚠
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"Saturation current: {format_value(saturation_current, 'A')}")Exemplo de saída
shockley_diode_saturation_current_output.txt
Saturation current: 966 fACheck 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