1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sample/HardParticle/SawtoothRipple.cpp
//! @brief Implements classes SawtoothRipple*.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "Sample/HardParticle/SawtoothRipple.h"
#include "Sample/HardParticle/Ripples.h"
// ************************************************************************************************
// class SawtoothRippleBox
// ************************************************************************************************
SawtoothRippleBox::SawtoothRippleBox(const std::vector<double> P)
: ISawtoothRipple(P)
{
validateOrThrow();
}
SawtoothRippleBox::SawtoothRippleBox(double length, double width, double height, double asymmetry)
: SawtoothRippleBox(std::vector<double>{length, width, height, asymmetry})
{
}
SawtoothRippleBox* SawtoothRippleBox::clone() const
{
return new SawtoothRippleBox(m_length, m_width, m_height, m_asymmetry);
}
bool SawtoothRippleBox::contains(const R3&) const
{
// TODO: Implement SawtoothRippleBox
std::ostringstream ostr;
ostr << "Outer shape SawtoothRippleBox not yet implemented for Mesocrystal";
ostr << "\n\nStay tuned!";
throw std::runtime_error(ostr.str());
}
complex_t SawtoothRippleBox::factor_x(complex_t qx) const
{
return ripples::factor_x_box(qx, m_length);
}
// ************************************************************************************************
// class SawtoothRippleGauss
// ************************************************************************************************
SawtoothRippleGauss::SawtoothRippleGauss(const std::vector<double> P)
: ISawtoothRipple(P)
{
validateOrThrow();
}
SawtoothRippleGauss::SawtoothRippleGauss(double length, double width, double height,
double asymmetry)
: SawtoothRippleGauss(std::vector<double>{length, width, height, asymmetry})
{
}
SawtoothRippleGauss* SawtoothRippleGauss::clone() const
{
return new SawtoothRippleGauss(m_length, m_width, m_height, m_asymmetry);
}
bool SawtoothRippleGauss::contains(const R3&) const
{
throw std::runtime_error("SawtoothRippleGauss cannot be used as mesocrystal outer shape");
}
complex_t SawtoothRippleGauss::factor_x(complex_t qx) const
{
return ripples::factor_x_Gauss(qx, m_length);
}
// ************************************************************************************************
// class SawtoothRippleLorentz
// ************************************************************************************************
SawtoothRippleLorentz::SawtoothRippleLorentz(const std::vector<double> P)
: ISawtoothRipple(P)
{
validateOrThrow();
}
SawtoothRippleLorentz::SawtoothRippleLorentz(double length, double width, double height,
double asymmetry)
: SawtoothRippleLorentz(std::vector<double>{length, width, height, asymmetry})
{
}
SawtoothRippleLorentz* SawtoothRippleLorentz::clone() const
{
return new SawtoothRippleLorentz(m_length, m_width, m_height, m_asymmetry);
}
bool SawtoothRippleLorentz::contains(const R3&) const
{
throw std::runtime_error("SawtoothRippleLorentz cannot be used as mesocrystal outer shape");
}
complex_t SawtoothRippleLorentz::factor_x(complex_t qx) const
{
return ripples::factor_x_Lorentz(qx, m_length);
}
|