I am trying to write a code that calculates an integral from zero to pi. But it gives an error which I do not understand how to fix. Thank you for your time.
JavaScript
x
8
1
import numpy as np
2
from math import pi,cos
3
vtheta=np.linspace(0.0,pi,1000)
4
def my_function(x):
5
Energy = np.arange(2.1,300.1,0.1)
6
return ((1.0)/(Energy-1+np.cos(x)))
7
print (my_function(vtheta).sum())
8
Advertisement
Answer
As is pointed out in the top comment:
Energy.shape == (2980,), but x.shape == (1000,)
so reduce the number of elements in Energy
or increase np.cos(x)
.
Since energy is just a numpy arrage i reduced it to size=1000.
In order to fix this they need to be the same size, so this ,for example, works:
JavaScript
1
8
1
import numpy as np
2
from math import pi,cos
3
vtheta=np.linspace(0.0,pi,1000)
4
def my_function(x):
5
Energy = np.arange(2.1,102.1,0.1) #<-- changed 300.1 to 102.1
6
return ((1.0)/(Energy-1+np.cos(x)))
7
print (my_function(vtheta).sum())
8
This is the result (with the above):
JavaScript
1
2
1
39.39900748229355
2