Como calcular a tensão térmica do diodo em Python usando UliEngineering

Você pode calcular facilmente a tensão térmica de um diodo usando a biblioteca Python UliEngineering:

°C
diode_thermal_voltage.py
from UliEngineering.Electronics.Diode import *
from UliEngineering.EngineerIO import *

thermal_voltage = diode_thermal_voltage("25°C")
print(f"Thermal voltage: {format_value(thermal_voltage, 'V')}")

Exemplo de saída

diode_thermal_voltage_output.txt
Thermal voltage: 25.7 mV

Check out similar posts by category: Calculators Electronics Python