SciPy - precision() 方法

SciPy precision() 方法用于访问包含值和单位的物理常数信息。 物理常数被视为物理学的理论方程,它描述了各种单位和不变量的值,例如真空中的光速(speed_of_light)、普朗克常数(Planck constant)、基本电荷(e)等。

语法

以下是 SciPy precision() 方法的语法 −

precision(key)

参数

此函数采用单个参数 −

  • key:此参数充当指定物理常数的字符串。

返回值

此方法返回浮点值。

示例 1

以下是基本的 SciPy precision() 方法,说明了物理常数的用法。这里,我们将物理常数表示为"真空中的光速"。

from scipy.constants import physical_constants

key = 'speed of light in vacuum'
precision = physical_constants[key][1]

print(f"The uncertainty of {key} is {precision}.")

输出

上述代码产生以下结果 −

The uncertainty of speed of light in vacuum is m s^-1.

示例 2

这里,我们将物理常数表示为"普朗克常数",以显示结果。

from scipy.constants import physical_constants

key = 'Planck constant'
precision = physical_constants[key][1]
print(f"The uncertainty of {key} is {precision}.")

输出

上述代码产生以下结果 −

The uncertainty of Planck constant is J Hz^-1.

示例 3

此程序打印字典的结果,其中包含每个物理常数的元组形式(单位不确定性)。

from scipy.constants import physical_constants

key = 'Newtonian constant of gravitation'
value, unit, uncertainty = physical_constants[key]

print(f"The uncertainty of {key} is approximately {uncertainty:.2e} {unit}.")

输出

上述代码产生以下结果 −

The uncertainty of Newtonian constant of gravitation is approximately 1.50e-15 m^3 kg^-1 s^-2.

示例

在此示例中,我们将使用 precision() 方法获得结果 质子质量

from scipy import constants
result = constants.precision('proton mass')
print("Proton Mass : ", result)

输出

上述代码产生以下结果 −

Proton Mass :  3.0491050773439597e-10

scipy_reference.html