import numpy as np
import matplotlib.pyplot as plt
from scipy import integrate
from scipy import exp
import scipy as sp
import mpmath as mp
from sympy import polylog
from math import *
def F(s,y):
return (16/pi) * (sqrt((1-s)/(s+y))) * (log(s+y/2+sqrt(s*(s+y)))-log(y/2))
def fd1(w):
gw=np.exp((w-mu)/TTF)
return 1/(gw+1)
def fd123(w,y):
gwy=np.exp((w*(1+2*y)-mu)/TTF)
return 1/(gwy+1)
def fd12(w,y,z):
gwyz=np.exp((w*(1+y-z)-mu)/TTF)
return 1/(gwyz+1)
def fd13(w,y,z):
gwyz=np.exp((w*(1+y+z)-mu)/TTF)
return 1/(gwyz+1)
def bounds_y():
return [0,10]
def bounds_s(y):
return [0,1]
def bounds_w(y,z):
return [0,10]
def bounds_z(w,y,z):
return [-y,y]
def integrand1(z,w,s,y):
return 144 * w**(3) * fd13(w,y,z) * fd12(w,y,z) * (1-fd1(w)) * (1-fd123(w,y)) * F(s,y)
mu=0.22
TTF=0.5;
integrate.nquad(integrand1,[bounds_z,bounds_w,bounds_s,bounds_y])
Basically i am trying to calculate tetra-integral which depends on four variables but it kept taking too much time and eventually gave wrong answer. It also gave IntegrationWarning: The integral is probably divergent, or slowly convergent. I dont know where and what i am doing wrong.
from My integral is taking forever or it gives wrong answer after running for 2 or more hours
No comments:
Post a Comment