Page MenuHomec4science

system_factory.hh
No OneTemporary

File Metadata

Created
Sun, Jun 9, 14:37

system_factory.hh

/**
* file system_factory.hh
*
* @author Till Junge <till.junge@epfl.ch>
*
* @date 15 Dec 2017
*
* @brief System factories to help create systems with ease
*
* @section LICENCE
*
* Copyright © 2017 Till Junge
*
* µSpectre 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, or (at
* your option) any later version.
*
* µSpectre 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 GNU Emacs; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef SYSTEM_FACTORY_H
#define SYSTEM_FACTORY_H
#include "common/common.hh"
#include "common/ccoord_operations.hh"
#include "system/system_base.hh"
#include "fft/projection_finite_strain_fast.hh"
#include "fft/projection_finite_strain.hh"
#include "fft/fftw_engine.hh"
#include <memory>
namespace muSpectre {
/**
* Create a unique ptr to a Projection operator (with appropriate
* FFT_engine) to be used in a system constructor
*/
template <Dim_t DimS, Dim_t DimM,
typename FFT_Engine=FFTW_Engine<DimS, DimM>,
typename Projection=ProjectionFiniteStrainFast<DimS, DimM>>
inline
std::unique_ptr<Projection> system_input(Ccoord_t<DimS> resolutions,
Rcoord_t<DimS> lengths=CcoordOps::get_cube<DimS>(1.)) {
auto fft_ptr{std::make_unique<FFT_Engine>(resolutions, lengths)};
return std::make_unique<Projection>(std::move(fft_ptr));
}
/**
* convenience function to create a system (avoids having to build
* and move the chain of unique_ptrs
*/
template <size_t DimS, size_t DimM=DimS,
typename System=SystemBase<DimS, DimM>,
typename FFT_Engine=FFTW_Engine<DimS, DimM>,
typename Projection=ProjectionFiniteStrainFast<DimS, DimM>>
inline
System make_system(Ccoord_t<DimS> resolutions,
Rcoord_t<DimS> lengths=CcoordOps::get_cube<DimS>(1.),
Formulation form=Formulation::finite_strain) {
return System{
std::move(system_input<DimS, DimM, FFT_Engine, Projection>
(resolutions, lengths)),
form};
}
} // muSpectre
#endif /* SYSTEM_FACTORY_H */

Event Timeline