Como calcular a dissipação de potência do diodo usando a equação de Shockley em Python usando UliEngineering
Você pode calcular facilmente a potência dissipada por um diodo usando a equação de Shockley com a biblioteca Python UliEngineering:
V
⚠
A
⚠
shockley_diode_power.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *
power = shockley_diode_power(voltage="600mV", saturation_current="1pA")
print(f"Diode power: {format_value(power, 'W')}")Exemplo de saída
shockley_diode_power_output.txt
Diode power: 8.32 mWCheck 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