/* * mul.hpp * * Created on: Oct 22, 2015 * Author: i-bird */ #ifndef OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_MUL_HPP_ #define OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_MUL_HPP_ #include #include "util/util_debug.hpp" #include "util/util_num.hpp" #define HAS_VAL 1 #define HAS_POS_VAL 2 //! Evaluate the constant field function template struct has_val { //! evaluate static float call_val() { std::cerr << "Error the type " << demangle(typeid(T).name()) << "interpreted as constant field, does not have a function val() or val_pos(), please see the numeric examples in Finite Differences for more information\n"; return 0; } }; //! Evaluate the constant field function template struct has_val { //! evaluate static decltype(T::val()) call_val() { return T::val(); } }; //! Multiplication expression template struct const_mul_functor_value { //! Number of elements in the vector v_expr typedef boost::mpl::size size; //! Last element of sum typedef typename boost::mpl::at >::type last; //! sum functor std::unordered_map & cols; //! grid size const grid_sm & gs; //! grid mapping const grid_dist_id,typename last::b_grid::decomposition::extended_type> & g_map; //! grid position grid_dist_key_dx & kmap; //! coefficent typename last::stype coeff; //! spacing typename last::stype (& spacing)[last::dims]; /*! \brief constructor * * \param g_map mapping grid * \param kmap grid point (row) where we evaluate the non-zero colums * \param gs grid size * \param spacing grid spacing * \param cols non zero colums * \param coeff multiplication coefficent * */ const_mul_functor_value(const grid_dist_id,typename last::b_grid::decomposition::extended_type> & g_map, grid_dist_key_dx & kmap, const grid_sm & gs, typename last::stype (& spacing)[last::dims], std::unordered_map & cols, typename last::stype coeff) :cols(cols),gs(gs),g_map(g_map),kmap(kmap),coeff(coeff),spacing(spacing) {}; //! It call this function for every constant expression in the mul template void operator()(T& t) { typedef typename boost::mpl::at >::type cfield; coeff *= has_val::value * 1,cfield>::call_val(); } /*! \brief Get the coefficent * * \return the coefficent * */ typename last::stype getCoeff() { return coeff; } }; /*! \brief It model an expression expr1 * expr2 * * \warning expr1 MUST be a constant expression only expr2 depend form variable, this requirement ensure linearity in the solving variable of the equations * * \tparam expr1 * \tparam expr2 * */ template struct mul { //! Transform from variadic template to boost mpl vector typedef boost::mpl::vector v_expr; //! size of v_expr typedef typename boost::mpl::size::type v_sz; //! type on which this expression operate typedef typename boost::mpl::at >::type Sys_eqs; /*! \brief Calculate which colums of the Matrix are non zero * * \param g_map mapping grid * \param kmap position where the multiplication is calculated * \param gs Grid info * \param spacing of the grid * \param cols non-zero colums calculated by the function * \param coeff coefficent (constant in front of the derivative) * */ inline static void value(const grid_dist_id,typename Sys_eqs::b_grid::decomposition::extended_type> & g_map, grid_dist_key_dx & kmap, const grid_sm & gs, typename Sys_eqs::stype (& spacing )[Sys_eqs::dims], std::unordered_map & cols, typename Sys_eqs::stype coeff) { const_mul_functor_value mfv(g_map,kmap,gs,spacing,cols,coeff); // boost::mpl::for_each_ref< boost::mpl::range_c >(mfv); //! Last element of multiplication typedef typename boost::mpl::at< v_expr ,boost::mpl::int_ >::type last_m; last_m::value(g_map,kmap,gs,spacing,cols,mfv.coeff); } /*! \brief Calculate the position in the cell where the mul operator is performed * * it just return the position of the staggered property in the last expression * * \param pos position where we are calculating the derivative * \param gs Grid info * \param s_pos staggered position of the properties * */ inline static grid_key_dx position(grid_key_dx & pos, const grid_sm & gs, const comb (& s_pos)[Sys_eqs::nvar]) { return boost::mpl::at >::type::position(pos,gs,s_pos); } }; #endif /* OPENFPM_NUMERICS_SRC_FINITEDIFFERENCE_MUL_HPP_ */