Jak vypočítat MOSFET gate charge loss power pomocí Python

Můžete použít UliEngineering knihovnu pro výpočet power lost to charging konkrétního MOSFETu na konkrétní gate voltage daný početkrát za sekundu:

TechOverflow calculators:
You can enter values with SI suffixes like 12.2m (equivalent to 0.012) or 14k (14000) or 32u (0.000032).
The results are calculated while you type and shown directly below the calculator, so there is no need to press return or click on a Calculate button.
C
V
Hz
mosfet_gate_charge.py
from UliEngineering.Electronics.MOSFET import mosfet_gate_charge_losses
from UliEngineering.EngineerIO import auto_format

auto_format(mosfet_gate_charge_losses, "31nC", "9V", "1MHz")
# Prints '279 mW'

Podívejte se na podobné články podle kategorie: Calculators Electronics Python