how to use scipy.integrate to get the volume of a truncated sphere?

无人久伴 提交于 2019-12-06 04:13:19

问题


I'm struggling with using scipy.integrate, I used tplquad, but how can I used integrate to get the volume of (truncated)sphere? Thanks

import scipy
from scipy.integrate import quad, dblquad, tplquad
from math import*
from numpy import *

R = 0.025235 #radius
theta0 = acos(0.023895) #the angle from the edge of truncated plane to the center of
sphere

def f_1(phi,theta,r):
    return r**2*sin(theta)*phi**0
Volume = tplquad(f_1, 0.0,R, lambda y: theta0, lambda y: pi, lambda y,z: 0.0,lambda
y,z: 2*pi)

print Volume

回答1:


To truncate by angle it is convenient to use a spherical coordinate systems. Assuming the definition taken from Arkansas TU for radius (r), theta (t) and phi (p) as :

Then, you can truncate setting the limits: r1 r2 t1 t2 p1 p2:

import scipy
from scipy.integrate import quad, dblquad, tplquad
from numpy import *
# limits for radius
r1 = 0.
r2 = 1.
# limits for theta
t1 = 0
t2 = 2*pi
# limits for phi
p1 = 0
p2 = pi

def diff_volume(p,t,r):
    return r**2*sin(p)

volume = tplquad(diff_volume, r1, r2, lambda r:   t1, lambda r:   t2,
                                      lambda r,t: p1, lambda r,t: p2)[0]

To truncate by plane it is convenient to use a cartesian coordinate system (x,y,z), where x**2+y**2+z**2=R**2 (see mathworld). Here I am truncating half of the sphere to demonstrate:

from `x1=-R` to `x2=R`<br>
from `y1=0` to `y2=(R**2-x**2)**0.5`<br>
from `z1=-(R**2-x**2-y**2)**0.5` to `z2=(R**2-x**2-y**2)**0.5`<br>
(an useful example using lambdas):

R= 2.
# limits for x
x1 = -R
x2 = R

def diff_volume(z,y,x):
    return 1.

volume = tplquad(diff_volume, x1, x2,
                 lambda x: 0., lambda x: (R**2-x**2)**0.5,
                 lambda x,y: -(R**2-x**2-y**2)**0.5,
                 lambda x,y:  (R**2-x**2-y**2)**0.5 )[0]


来源:https://stackoverflow.com/questions/13188948/how-to-use-scipy-integrate-to-get-the-volume-of-a-truncated-sphere

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!