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

English Deutsch

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

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

Formel:

$$U_{\text{dBµV}} = \frac{20\cdot\log(1\,000\,000 \cdot U_V)}{ \log(2) + \log(5)}$$

Python-Code:

volts_to_dbv_converter.py
import math
def volts_to_dbuv(v):
    """Wandelt eine Spannung in Volt in eine Spannung in dBµV um"""
    return (20*math.log(1e6 * v))/(math.log(2) + math.log(5))

Check out similar posts by category: Calculators, Electronics