Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91150819
projection_default.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 8, 10:13
Size
3 KB
Mime Type
text/x-c
Expires
Sun, Nov 10, 10:13 (2 d)
Engine
blob
Format
Raw Data
Handle
22203933
Attached To
rMUSPECTRE µSpectre
projection_default.hh
View Options
/**
* @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
*
* 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
{
/**
* base class to inherit from if one implements a projection
* operator that is stored in form of a fourth-order tensor of real
* values per k-grid point
*/
template
<
Dim_t
DimS
,
Dim_t
DimM
>
class
ProjectionDefault
:
public
ProjectionBase
<
DimS
,
DimM
>
{
public
:
using
Parent
=
ProjectionBase
<
DimS
,
DimM
>
;
//!< base class
//! polymorphic FFT pointer type
using
FFT_Engine_ptr
=
typename
Parent
::
FFT_Engine_ptr
;
using
Ccoord
=
typename
Parent
::
Ccoord
;
//!< cell coordinates type
//! global field collection
using
GFieldCollection_t
=
FieldCollection
<
DimS
,
DimM
,
true
>
;
//! local field collection for Fourier-space fields
using
LFieldCollection_t
=
FieldCollection
<
DimS
,
DimM
,
false
>
;
//! Real space second order tensor fields (to be projected)
using
Field_t
=
TensorField
<
GFieldCollection_t
,
Real
,
secondOrder
,
DimM
>
;
//! Fourier-space field containing the projection operator itself
using
Proj_t
=
TensorField
<
LFieldCollection_t
,
Real
,
fourthOrder
,
DimM
>
;
//! iterable form of the operator
using
Proj_map
=
T4MatrixFieldMap
<
LFieldCollection_t
,
Real
,
DimM
>
;
//! vectorized version of the Fourier-space second-order tensor field
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
;
Eigen
::
Map
<
Eigen
::
ArrayXXd
>
get_operator
()
override
final
;
protected
:
Proj_t
&
Gfield
;
//!< field holding the operator
Proj_map
Ghat
;
//!< iterable version of operator
private
:
};
}
// muSpectre
#endif
/* PROJECTION_DEFAULT_H */
Event Timeline
Log In to Comment