Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
tensor.h
Go to the documentation of this file.
1#pragma once
2
3#include "grid.h"
4#include "operator.h"
5#include "evaluation.h"
6#include "evaluationX.h"
7#include "dg/functors.h"
8#include "dg/blas1.h"
9
15namespace dg
16{
17 //separate algorithms from interface!!
18
49template<class container>
51{
52 using container_type = container;
54 SparseTensor( ):m_mat_idx(3,-1) {}
55
60 template<class Topology>
61 SparseTensor( const Topology& grid){
62 construct(grid);
63 }
64
69 SparseTensor( const container& copyable ){
70 construct(copyable);
71 }
76 template<class Topology>
77 void construct( const Topology& grid){
78 m_mat_idx.resize(3,0);
79 for( int i=0; i<3; i++)
80 m_mat_idx( i,i) = 1;
81 m_values.resize(2);
82 dg::assign( dg::evaluate( dg::zero, grid), m_values[0]);
83 dg::assign( dg::evaluate( dg::one, grid), m_values[1]);
84 }
89 void construct( const container& copyable ){
90 m_mat_idx.resize(3,0);
91 for( int i=0; i<3; i++)
92 m_mat_idx( i,i) = 1;
93 m_values.assign(2,copyable);
94 dg::blas1::copy( 0., m_values[0]);
95 dg::blas1::copy( 1., m_values[1]);
96 }
97
103 template<class OtherContainer>
104 SparseTensor( const SparseTensor<OtherContainer>& src): m_mat_idx(3,-1), m_values(src.values().size()){
105 for(unsigned i=0; i<3; i++)
106 for(unsigned j=0; j<3; j++)
107 m_mat_idx(i,j)=src.idx(i,j);
108
109 for( unsigned i=0; i<src.values().size(); i++)
110 dg::assign( src.values()[i], m_values[i]);
111 }
112
119 int idx(unsigned i, unsigned j)const{
120 return m_mat_idx(i,j);
121 }
130 int& idx(unsigned i, unsigned j){
131 return m_mat_idx(i,j);
132 }
133
141 const container& value(size_t i, size_t j)const{
142 int k = m_mat_idx(i,j);
143 return m_values[k];
144 }
145 //if you're looking for this function: YOU DON'T NEED IT!! (ALIASING)
146 //T& value(size_t i, size_t j);
151 std::vector<container>& values() {
152 return m_values;
153 }
158 const std::vector<container>& values()const{
159 return m_values;
160 }
161
167 SparseTensor tmp(*this);
168 tmp.m_mat_idx = m_mat_idx.transpose();
169 return tmp;
170 }
171
172 private:
173 dg::SquareMatrix<int> m_mat_idx;
174 std::vector<container> m_values;
175};
176
177}//namespace dg
A square nxn matrix.
Definition operator.h:31
void resize(unsigned m, T val=T())
Resize.
Definition operator.h:117
SquareMatrix transpose() const
Transposition.
Definition operator.h:156
Function discretization routines.
base topology classes
DG_DEVICE T one(T x, Ts ...xs)
Definition functions.h:24
DG_DEVICE T zero(T x, Ts ...xs)
This enum can be used in dg::evaluate.
Definition functions.h:19
void copy(const ContainerTypeIn &source, ContainerTypeOut &target)
Definition blas1.h:243
void assign(const from_ContainerType &from, ContainerType &to, Params &&... ps)
Generic way to assign the contents of a from_ContainerType object to a ContainerType object optionall...
Definition blas1.h:767
auto evaluate(Functor &&f, const Topology &g)
Evaluate a function on grid coordinates
Definition evaluation.h:74
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Class for 2x2 and 3x3 matrices sharing elements.
Definition tensor.h:51
void construct(const Topology &grid)
Construct the unit tensor.
Definition tensor.h:77
SparseTensor(const SparseTensor< OtherContainer > &src)
Type conversion from other value types.
Definition tensor.h:104
int idx(unsigned i, unsigned j) const
read index into the values array at the given position
Definition tensor.h:119
SparseTensor transpose() const
Return the transpose of the currrent tensor.
Definition tensor.h:166
SparseTensor()
no value is set, Indices default to -1
Definition tensor.h:54
SparseTensor(const container &copyable)
Construct the unit tensor.
Definition tensor.h:69
container container_type
Definition tensor.h:52
std::vector< container > & values()
Return write access to the values array.
Definition tensor.h:151
int & idx(unsigned i, unsigned j)
write index into the values array at the given position
Definition tensor.h:130
const std::vector< container > & values() const
Return read access to the values array.
Definition tensor.h:158
void construct(const container &copyable)
Construct the unit tensor.
Definition tensor.h:89
SparseTensor(const Topology &grid)
Construct the unit tensor.
Definition tensor.h:61
const container & value(size_t i, size_t j) const
Read access the underlying container.
Definition tensor.h:141