贝内特大气方程

时间:2016-06-06 21:44:48

标签: python physics

如何在Python中实现Bennett大气方程?

等式是:

enter image description here

其中e.age:java.lang.Integer是以度为单位的真实高度,以弧分为单位的折射h

1 个答案:

答案 0 :(得分:0)

您应该查看mathematical functions in Python

如果cot是余切,这个非常简单的脚本将完成这项工作:

import math
def R(h):
  return 1.02 / math.tan( h + 10.3 / (h + 5.11) )
print R(1)