dBµV nach Volt: Online-Rechner & Python-Code

English Deutsch

Verwenden Sie diesen Online-Rechner, um eine Spannung in dBµV in eine Spannung in Volt umzuwandeln.

Siehe auch Volt nach dBµV 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.
dBµV

Formel:

$$U_{\text{Volts}} = \frac{10^{\frac{U_{dBµV}}{20}}}{1\,000\,000 \frac{V}{µV}}$$

Python-Code:

dbv_to_volts_converter.py
def dbuv_to_volts(dbuv):
    """Spannung in dBµV in Spannung in Volt umwandeln"""
    return (10**(dbuv/20.))/1e6

Check out similar posts by category: Calculators, Electronics