Induktiver Blindwiderstand: Online-Rechner & Python-Code
English
Deutsch
Verwende diesen Online-Rechner, um den Blindwiderstand einer Induktivität in Ω bei einer bestimmten Frequenz zu berechnen, gegeben ihre Induktivität.
Siehe auch Kapazitiver Blindwiderstand: Online-Rechner & Python-Code
Σ
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.
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.
H
⚠
Hz
⚠
Formel:
$$X_L = 2\pi fL$$Python-Code:
Der bevorzugte Weg ist die Verwendung von UliEngineerings UliEngineering.Electronics.Reactance.inductive_reactance:
inductive_reactance_uliengineering_example.py
from UliEngineering.Electronics.Reactance import *
# Du kannst entweder Strings wie "150 uH" oder Werte wie 150e-6 übergeben
inductive_reactance("150 uH", "10 MHz") # returns 9424.77796076938Oder erhalte einen menschenlesbaren Wert:
inductive_reactance_print_example.py
from UliEngineering.Electronics.Reactance import *
from UliEngineering.EngineerIO import *
# Wert als String berechnen
xc = auto_format(inductive_reactance, "150 uH", "10 MHz") # "9.42 kΩ"
# ... oder direkt ausgeben
auto_print(inductive_reactance, "150 uH", "10 MHz") # gibt "9.42 kΩ" ausFalls du UliEngineering nicht verwenden kannst und es manuell machen möchtest, hier ist ein minimales Beispiel:
inductive_reactance_manual.py
import math
def inductive_reactance(f, l):
"""Berechne den induktiven Blindwiderstand"""
return 2*math.pi*f*lCheck 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