diff --git a/Core/FormFactors/inc/FormFactorPyramid.h b/Core/FormFactors/inc/FormFactorPyramid.h index 232ed0ae7961cd22126419103ce7b356b90de020..b1604513d1e9fab1a95583f2a62f0006ef3f5c0f 100644 --- a/Core/FormFactors/inc/FormFactorPyramid.h +++ b/Core/FormFactors/inc/FormFactorPyramid.h @@ -55,8 +55,7 @@ protected: private: complex_t fullPyramidPrimitive(complex_t a, complex_t b, complex_t c, double z) const; - complex_t fullPyramidPrimitiveComplete(complex_t a, complex_t b, complex_t c, double z) const; - complex_t g(complex_t x, double z) const; // helper function + complex_t g(complex_t x, complex_t c, double z) const; // helper function complex_t h(complex_t x, double z) const; // helper function double m_length; double m_height; diff --git a/Core/FormFactors/src/FormFactorPyramid.cpp b/Core/FormFactors/src/FormFactorPyramid.cpp index 09803368d98b522e035c753bc0ff2fff9881d8ad..c7eeb548368b1232a68689c44747d9fd33be0ae6 100644 --- a/Core/FormFactors/src/FormFactorPyramid.cpp +++ b/Core/FormFactors/src/FormFactorPyramid.cpp @@ -91,20 +91,12 @@ complex_t FormFactorPyramid::evaluate_for_q(const cvector_t& q) const complex_t qz = q.z(); const complex_t im(0, 1); - complex_t full = fullPyramidPrimitiveComplete(qx/tga, qy/tga, qz, -R*tga); - complex_t top = fullPyramidPrimitiveComplete(qx/tga, qy/tga, qz, H-R*tga); + complex_t full = fullPyramidPrimitive(qx/tga, qy/tga, qz, -R*tga); + complex_t top = fullPyramidPrimitive(qx/tga, qy/tga, qz, H-R*tga); return std::exp(im*qz*R*tga) * (full-top) / (tga*tga); } complex_t FormFactorPyramid::fullPyramidPrimitive(complex_t a, complex_t b, complex_t c, - double z) const -{ - const complex_t im(0, 1); - complex_t result = im/(a*b)*(g(a-b-c,-z)-g(a+b-c,-z)-g(a-b+c,z)+g(a+b+c,z)); - return result; -} - -complex_t FormFactorPyramid::fullPyramidPrimitiveComplete(complex_t a, complex_t b, complex_t c, double z) const { const complex_t im(0, 1); @@ -115,7 +107,8 @@ complex_t FormFactorPyramid::fullPyramidPrimitiveComplete(complex_t a, complex_t + a * std::cos(a * z) * ((-a * a + b * b + c * c) * std::sin(b * z) + 2.0 * im * b * c * std::cos(b * z)); complex_t denominator = a * b * (a - b - c) * (a + b - c) * (a - b + c) * (a + b + c); - return -4.0 * phase * numerator / denominator; +// return -4.0 * phase * numerator / denominator; + return 2.0 * (g(a-b, c, z) - g(a+b, c, z)) / (a*b); } else if (std::norm(a*z) <= Numeric::double_epsilon && std::norm(b*z) <= Numeric::double_epsilon) { if (std::norm(c*z) <= Numeric::double_epsilon) { @@ -133,13 +126,18 @@ complex_t FormFactorPyramid::fullPyramidPrimitiveComplete(complex_t a, complex_t } } -complex_t FormFactorPyramid::g(complex_t x, double z) const +complex_t FormFactorPyramid::g(complex_t x, complex_t c, double z) const { const complex_t im(0, 1); - if (std::norm(x*z)<Numeric::double_epsilon) { - return -im*z + z*z*x/2.0; + if (std::abs(x*x-c*c) > Numeric::double_epsilon) { + return (im*c - std::exp(im*c*z)*(x*std::sin(x*z) + im*c*std::cos(x*z))) / (x*x-c*c); + } else { + if (std::norm(c*z) > Numeric::double_epsilon) { + return im * (std::exp(2.0*im*c*z) + 2.0*im*c*z - 1.0) / (4.0*c); + } else { + return -z; + } } - return (1.0 - std::exp(im*x*z))/x; } complex_t FormFactorPyramid::h(complex_t x, double z) const