Page MenuHomec4science

projection_default.hh
No OneTemporary

File Metadata

Created
Thu, Jul 11, 18:15

projection_default.hh

/**
* file projection_default.hh
*
* @author Till Junge <till.junge@altermail.ch>
*
* @date 14 Jan 2018
*
* @brief virtual base class for default projection implementation, where the
* projection operator is stored as a full fourth-order tensor per
* k-space point (as opposed to 'smart' faster implementations, such as
* ProjectionFiniteStrainFast
*
* @section LICENCE
*
* Copyright (C) 2018 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 PROJECTION_DEFAULT_H
#define PROJECTION_DEFAULT_H
#include "fft/projection_base.hh"
namespace muSpectre {
template <Dim_t DimS, Dim_t DimM>
class ProjectionDefault: public ProjectionBase<DimS, DimM>
{
public:
using Parent = ProjectionBase<DimS, DimM>;
using FFT_Engine_ptr = typename Parent::FFT_Engine_ptr;
using Ccoord = typename Parent::Ccoord;
using GFieldCollection_t = FieldCollection<DimS, DimM, true>;
using LFieldCollection_t = FieldCollection<DimS, DimM, false>;
using Field_t = TensorField<GFieldCollection_t, Real, secondOrder, DimM>;
using Proj_t = TensorField<LFieldCollection_t, Real, fourthOrder, DimM>;
using Proj_map = T4MatrixFieldMap<LFieldCollection_t, Real, DimM>;
using Vector_map = MatrixFieldMap<LFieldCollection_t, Complex, DimM*DimM, 1>;
//! Default constructor
ProjectionDefault() = delete;
//! Constructor with system sizes and formulation
ProjectionDefault(FFT_Engine_ptr engine, Formulation form);
//! Copy constructor
ProjectionDefault(const ProjectionDefault &other) = delete;
//! Move constructor
ProjectionDefault(ProjectionDefault &&other) = default;
//! Destructor
virtual ~ProjectionDefault() = default;
//! Copy assignment operator
ProjectionDefault& operator=(const ProjectionDefault &other) = delete;
//! Move assignment operator
ProjectionDefault& operator=(ProjectionDefault &&other) = delete;
//! apply the projection operator to a field
void apply_projection(Field_t & field) override final;
protected:
Proj_map Ghat;
private:
};
} // muSpectre
#endif /* PROJECTION_DEFAULT_H */

Event Timeline