18template<
class real_type>
20 thrust::host_vector<real_type>& values,
21 thrust::host_vector<int>& column_indices,
26 for(
unsigned k=0; k<values.size(); k++)
28 if( column_indices[k] < 0 )
31 column_indices[k] = -(column_indices[k]+1);
34 column_indices[k] = -(column_indices[k]+1);
38 column_indices[k] += num_cols;
40 else if( column_indices[k] >= num_cols)
43 column_indices[k] = 2*num_cols-1-column_indices[k];
46 column_indices[k] = 2*num_cols-1-column_indices[k];
50 column_indices[k] -= num_cols;
55template<
class real_type>
57 unsigned stencil_size,
58 const RealGrid1d<real_type>& local,
59 const RealGrid1d<real_type>& global,
62 thrust::host_vector<real_type> values;
63 thrust::host_vector<int> row_offsets;
64 thrust::host_vector<int> column_indices;
66 unsigned num_rows = local.size();
67 unsigned num_cols = global.size();
68 unsigned radius = stencil_size/2;
69 int L0 = round((local.x0() - global.x0())/global.h())*global.n();
71 row_offsets.push_back(0);
72 for(
unsigned k=0; k<num_rows; k++)
74 row_offsets.push_back(stencil_size + row_offsets[k]);
75 for(
unsigned l=0; l<stencil_size; l++)
77 column_indices.push_back( L0 + (
int)(k + l) - (
int)radius);
78 values.push_back( 1.0);
81 set_boundary( values, column_indices, bcx, num_cols);
84 return {num_rows, num_cols, row_offsets, column_indices, values};
88template<
class real_type>
90 const RealGrid1d<real_type>& local,
91 const RealGrid1d<real_type>& global,
94 thrust::host_vector<real_type> values;
95 thrust::host_vector<int> row_offsets;
96 thrust::host_vector<int> column_indices;
98 unsigned num_rows = local.size();
99 unsigned num_cols = global.size();
100 int L0 = round((local.x0() - global.x0())/global.h())*global.n();
109 row_offsets.push_back( 0);
110 for(
unsigned k=0; k<local.N(); k++)
112 row_offsets.push_back(row_offsets.back() + 3*local.n());
113 for(
unsigned j=1; j<local.n(); j++)
114 row_offsets.push_back(row_offsets.back());
116 for(
unsigned j=0; j<local.n(); j++)
118 column_indices.push_back( L0 + (
int)((k-1)*global.n() + j) );
119 values.push_back(
forward(0, j ));
121 for(
unsigned j=0; j<local.n(); j++)
123 column_indices.push_back( L0 + (
int)(k*global.n() + j ));
124 values.push_back(
forward(1, j ));
126 for(
unsigned j=0; j<local.n(); j++)
128 column_indices.push_back( L0 + (
int)((k+1)*global.n() + j));
132 assert( row_offsets.size() == num_rows+1);
133 set_boundary( values, column_indices, bcx, num_cols);
136 return {num_rows, num_cols, row_offsets, column_indices, values};
139template<
class real_type>
142 int L0 = round((local.x0() - global.x0())/global.h())*global.n();
143 thrust::host_vector<real_type> values( local.size());
144 thrust::host_vector<int> row_offsets( local.size()+1);
145 thrust::host_vector<int> column_indices( local.size());
147 for(
unsigned i=0; i<local.size(); i++)
149 row_offsets[i+1] = 1 + row_offsets[i];
150 column_indices[i] = L0 + i;
153 return {local.size(), global.size(), row_offsets, column_indices, values};
176template<
class real_type>
178 unsigned window_size,
182 return detail::window_stencil( window_size, g, g, bcx);
199template<
class real_type>
204 return detail::limiter_stencil( g, g, bound);
228template<
class real_type>
230 std::array<int,2> window_size,
234 auto mx = detail::window_stencil(window_size[0], g.
gx(), g.
gx(), bcx);
235 auto my = detail::window_stencil(window_size[1], g.
gy(), g.
gy(), bcy);
241template<
class real_type>
249 auto mx = detail::limiter_stencil(g.
gx(), g.
gx(), bound);
250 auto einsy = detail::identity_matrix( g.
gy(), g.
gy());
253 auto my = detail::limiter_stencil(g.
gy(), g.
gy(), bound);
254 auto einsx = detail::identity_matrix( g.
gx(), g.
gx());
260template<
class real_type>
268 auto mx = detail::limiter_stencil(g.
gx(), g.
gx(), bound);
269 auto einsy = detail::identity_matrix( g.
gy(), g.
gy());
270 auto einsz = detail::identity_matrix( g.
gz(), g.
gz());
276 auto einsx = detail::identity_matrix( g.
gx(), g.
gx());
277 auto my = detail::limiter_stencil(g.
gy(), g.
gy(), bound);
278 auto einsz = detail::identity_matrix( g.
gz(), g.
gz());
281 auto mz = detail::limiter_stencil(g.
gz(), g.
gz(), bound);
282 auto einsy = detail::identity_matrix( g.
gy(), g.
gy());
283 auto einsx = detail::identity_matrix( g.
gx(), g.
gx());
306template<
class real_type>
308 std::array<int,2> window_size,
312 auto mx = detail::window_stencil(window_size[0], g.
gx(), g.
gx(), bcx);
313 auto my = detail::window_stencil(window_size[1], g.
gy(), g.
gy(), bcy);
314 auto mz = detail::identity_matrix( g.
gz(), g.
gz());
320template<
class real_type>
322 std::array<int,2> window_size,
326 auto mx = detail::window_stencil(window_size[0], g.
local().gx(), g.
global().gx(), bcx);
327 auto my = detail::window_stencil(window_size[1], g.
local().gy(), g.
global().gy(), bcy);
333template<
class real_type>
335 std::array<int,2> window_size,
339 auto mx = detail::window_stencil(window_size[0], g.
local().gx(), g.
global().gx(), bcx);
340 auto my = detail::window_stencil(window_size[1], g.
local().gy(), g.
global().gy(), bcy);
341 auto mz = detail::identity_matrix( g.
local().gz(), g.
global().gz());
class intended for the use in throw statements
Definition exceptions.h:83
small class holding a stringstream
Definition exceptions.h:29
A square nxn matrix.
Definition operator.h:31
#define _ping_
Definition exceptions.h:12
coo3d
3d coordinates
Definition enums.h:179
bc
Switch between boundary conditions.
Definition enums.h:15
direction
Direction of a discrete derivative.
Definition enums.h:97
@ NEU_DIR
Neumann on left, Dirichlet on right boundary.
Definition enums.h:19
@ PER
periodic boundaries
Definition enums.h:16
@ NEU
Neumann on both boundaries.
Definition enums.h:20
@ DIR
homogeneous dirichlet boundaries
Definition enums.h:17
@ DIR_NEU
Dirichlet on left, Neumann on right boundary.
Definition enums.h:18
@ backward
backward derivative (cell to the left and current cell)
Definition enums.h:99
@ forward
forward derivative (cell to the right and current cell)
Definition enums.h:98
SquareMatrix< T > tensorproduct(const SquareMatrix< T > &op1, const SquareMatrix< T > &op2)
Form the tensor product between two operators.
Definition operator_tensor.h:25
dg::MIHMatrix_t< real_type > make_mpi_matrix(const dg::IHMatrix_t< real_type > &global_cols, const ConversionPolicy &col_policy)
Convert a (row-distributed) matrix with local row and global column indices to a row distributed MPI ...
Definition mpi_projection.h:50
dg::IHMatrix_t< real_type > limiter_stencil(const RealGrid1d< real_type > &g, dg::bc bound)
A stencil for the dg Slope limiter.
Definition stencil.h:200
dg::IHMatrix_t< real_type > window_stencil(unsigned window_size, const RealGrid1d< real_type > &g, dg::bc bcx)
A 1d centered window stencil.
Definition stencil.h:177
Useful MPI typedefs and overloads of interpolation and projection.
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
static std::vector< real_type > backward(unsigned n)
Return backward DLT trafo matrix.
Definition dlt.h:139
static std::vector< real_type > forward(unsigned n)
Return forward DLT trafo matrix.
Definition dlt.h:195
Distributed memory matrix class, asynchronous communication.
Definition mpi_matrix.h:395
The simplest implementation of aRealTopology.
Definition grid.h:710
A CSR formatted sparse matrix.
Definition sparsematrix.h:96
An abstract base class for MPI distributed Nd-dimensional dG grids.
Definition mpi_grid.h:91
const RealGrid< real_type, Nd > & global() const
The global grid as a shared memory grid.
Definition mpi_grid.h:279
const RealGrid< real_type, Nd > & local() const
The local grid as a shared memory grid.
Definition mpi_grid.h:274
An abstract base class for Nd-dimensional dG grids.
Definition grid.h:95
RealGrid< real_type, 1 > gy() const
Equivalent to grid(1)
Definition grid.h:360
RealGrid< real_type, 1 > gx() const
Equivalent to grid(0)
Definition grid.h:354
RealGrid< real_type, 1 > gz() const
Equivalent to grid(2)
Definition grid.h:366