Skip to content
Snippets Groups Projects
MaterialUtils.h 1.96 KiB
Newer Older
  • Learn to ignore specific revisions
  • // ************************************************************************** //
    //
    //  BornAgain: simulate and fit scattering at grazing incidence
    //
    
    //! @file      Sample/Material/MaterialUtils.h
    
    //! @brief     Declares functions in namespace MaterialUtils
    
    //!
    //! @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)
    
    //
    // ************************************************************************** //
    
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    #ifndef BORNAGAIN_SAMPLE_MATERIAL_MATERIALUTILS_H
    #define BORNAGAIN_SAMPLE_MATERIAL_MATERIALUTILS_H
    
    #include "Sample/Material/Material.h"
    
    //! A number of materials-related helper functions for internal use
    
    namespace MaterialUtils
    {
    
    //! Function for calculating the reduced potential, used for obtaining the Fresnel coefficients
    //! (non-polarized material case)
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    complex_t ScalarReducedPotential(complex_t n, kvector_t k, double n_ref);
    
    
    //! Function for calculating the reduced potential, used for obtaining the Fresnel coefficients
    //! (polarized material case)
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    Eigen::Matrix2cd PolarizedReducedPotential(complex_t n, kvector_t b_field, kvector_t k,
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
                                               double n_ref);
    
    // Utility to compute magnetization correction for reduced potential and scattering length density.
    // Used with T = double, complex_t.
    
    template <typename T>
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    Eigen::Matrix2cd MagnetizationCorrection(complex_t unit_factor, double magnetic_factor,
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
                                             BasicVector3D<T> polarization);
    
    //! Checks if all non-default materials in _materials_ are of the same type and returns this type.
    //! If several types of materials are involved, InvalidMaterialType identifier is returned.
    
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    MATERIAL_TYPES checkMaterialTypes(const std::vector<const Material*>& materials);
    
    
    } // namespace MaterialUtils
    
    Wuttke, Joachim's avatar
    Wuttke, Joachim committed
    #endif // BORNAGAIN_SAMPLE_MATERIAL_MATERIALUTILS_H