dBµV 到伏特在线计算器和 Python 代码

使用此在线计算器将以 dBµV 为单位的电压转换为以伏特为单位的电压。

另请参见伏特到 dBµV 在线计算器和 Python 代码

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

公式:

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

Python 代码:

dbv_to_volts_converter.py
def dbuv_to_volts(dbuv):
    """将以 dBµV 为单位的电压转换为以伏特为单位的电压"""
    return (10**(dbuv/20.))/1e6

Check out similar posts by category: Calculators, Electronics