def xIntegration(self, Amplitude):
"Integrates a given amplitude in x-space"
toBeIntegrated = Amplitude
for i in range(self.nuclearDimensionality):
toBeIntegrated = scipy.integrate.simps(toBeIntegrated, dx=self.Dx_values[i])
return toBeIntegrated
评论列表
文章目录