Kapazitiver Blindwiderstand: Online-Rechner & Python-Code

English Deutsch

Verwende diesen Online-Rechner, um den Blindwiderstand eines Kondensators in Ω bei einer bestimmten Frequenz zu berechnen, gegeben seine Kapazität.

Siehe auch Induktiver 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.
F
Hz

Formel:

$$X_C = \frac{1}{2\pi fC}$$

Python-Code:

Der bevorzugte Weg ist die Verwendung von UliEngineerings UliEngineering.Electronics.Reactance.capacitive_reactance:

capacitive_reactance_example.py
from UliEngineering.Electronics.Reactance import *
# Du kannst entweder Strings wie "150 pF" oder Werte wie 150e-12 übergeben

capacitive_reactance("150 pF", "10 MHz") # returns 106.1032953945969

Oder erhalte einen menschenlesbaren Wert:

capacitive_reactance_usage.py
from UliEngineering.Electronics.Reactance import *
from UliEngineering.EngineerIO import *

# Wert als String berechnen
xc = auto_format(capacitive_reactance, "150 pF", "10 MHz") # "106 Ω"

# ... oder direkt ausgeben
auto_print(capacitive_reactance, "150 pF", "10 MHz") # gibt "106 Ω" aus

Falls du UliEngineering nicht verwenden kannst und es manuell machen möchtest, hier ist ein minimales Beispiel:

capacitive_reactance_minimal.py
import math
def capacitive_reactance(f, c):
    """Berechne den kapazitiven Blindwiderstand"""
    return 1./(2*math.pi*f*c)

Check out similar posts by category: Calculators, Electronics, Python