在Python上解决棘手的整体问题

时间:2015-03-24 12:59:52

标签: python integration trigonometry

我目前正在为物理项目解决立体角度计算问题。我的python技能是基本的,我需要一些关于如何解决这个方程式的提示/技巧,我从研究论文中获得 - 方程9b(http://ac.els-cdn.com/S0969804306002090/1-s2.0-S0969804306002090-main.pdf?_tid=7b61d61e-d162-11e4-9032-00000aab0f6c&acdnat=1427118343_91eaa37dbd9242927e86c41952074750

积分是:

arccos [p ^ 2 + r ^ 2 + h ^ 2 * tan(x)/ 2 p h tan(x)] * sin(x)dx

,h = 68,r = 24.8,p = 40.2

从x = 12.76度到x = 43.71度。

任何帮助都将不胜感激,谢谢。

1 个答案:

答案 0 :(得分:0)

内置函数math应该像这样导入:

>>> import math

math.acos()是arcos,**是取幂。还有math.tan()math.sin()。您可以使用dir(math)在数学模块中查找更多函数。使用help()功能查看其用途。 试着继续这个。这会很有趣。