#pragma once #include namespace op{ //!== long list of primitive operators to work on fields ==!// template< typename field> inline auto assign_to( field& g ){return [&g](auto i, auto v){ g[i] = v; };} template< typename field, typename val > inline auto multiply_add_to( field& g, val x ){return [&g,x](auto i, auto v){ g[i] += v*x; };} template< typename field> inline auto add_to( field& g ){return [&g](auto i, auto v){ g[i] += v; };} template< typename field> inline auto add_twice_to( field& g ){return [&g](auto i, auto v){ g[i] += 2*v; };} template< typename field> inline auto subtract_from( field& g ){return [&g](auto i, auto v){ g[i] -= v; };} template< typename field> inline auto subtract_twice_from( field& g ){return [&g](auto i, auto v){ g[i] -= 2*v; };} //! vanilla standard gradient class fourier_gradient{ private: real_t boxlen_, k0_; size_t n_, nhalf_; public: explicit fourier_gradient( const ConfigFile& the_config ) : boxlen_( the_config.GetValue("setup", "BoxLength") ), k0_(2.0*M_PI/boxlen_), n_( the_config.GetValue("setup","GridRes") ), nhalf_( n_/2 ) {} inline ccomplex_t gradient( const int idim, std::array ijk ) const { real_t rgrad = (ijk[idim]!=nhalf_)? (real_t(ijk[idim]) - real_t(ijk[idim] > nhalf_) * n_) : 0.0; return ccomplex_t(0.0,rgrad * k0_); } inline real_t vfac_corr( std::array ijk ) const { return 1.0; } }; }