// This file is part of monofonIC (MUSIC2) // A software package to generate ICs for cosmological simulations // Copyright (C) 2020 by Oliver Hahn // // monofonIC is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // monofonIC is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #pragma once #include namespace op{ //!== 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 subtract_from( field& g ){return [&g](auto i, auto v){ g[i] -= v; };} //! vanilla standard gradient class fourier_gradient{ private: real_t boxlen_, k0_; size_t n_, nhalf_; public: explicit fourier_gradient( const config_file& the_config ) : boxlen_( the_config.get_value("setup", "BoxLength") ), k0_(2.0*M_PI/boxlen_), n_( the_config.get_value("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; } }; }