2#ifndef DUNE_GENEO_ZEMBASIS_HH
3#define DUNE_GENEO_ZEMBASIS_HH
5#include <dune/pdelab/backend/istl/geneo/subdomainbasis.hh>
12template<
class GFS,
class LFS,
class X,
int dim, const
int d>
17 ZEMBasis(
const GFS& gfs, LFS& lfs, X& part_unity) {
18 using Dune::PDELab::Backend::native;
20 this->local_basis.resize(6);
23 std::vector<Dune::FieldVector<double,dim>> a(3);
27 for (
int k = 0; k < 3; k++){
28 this->local_basis[k] = std::make_shared<X>(part_unity);
29 for (
auto iter = native(*this->local_basis[k]).begin(); iter != native(*this->local_basis[k]).end(); iter++){
30 for(
int j = 0; j< dim; j++)
31 (*iter)[j] *= a[k][j];
36 for(
int k = 0; k < 3; k++){
38 this->local_basis[k+3] = std::make_shared<X>(part_unity);
40 for (
auto it = gfs.gridView().template begin<0>(); it != gfs.gridView().template end<0>(); ++it) {
43 auto geo = it->geometry();
44 const auto gt = geo.type();
45 const auto& ref_el = Dune::ReferenceElements<double, d>::general(gt);
47 auto& coeffs = lfs.finiteElement().localCoefficients();
48 for (std::size_t i = 0; i < coeffs.size(); ++i) {
50 auto local_pos = ref_el.position (coeffs.localKey(i).subEntity(), coeffs.localKey(i).codim());
51 auto global_pos = geo.global(local_pos);
53 auto subindex = gfs.entitySet().indexSet().subIndex(*it, coeffs.localKey(i).subEntity(), coeffs.localKey(i).codim());
56 if(!(native(zv)[subindex][0] > 0.0)){
57 auto val = global_pos;
58 double val_h = val[k];
59 val[k] = val[(k+1)%3];
62 for(
int j = 0; j < dim; j++){
63 native(*this->local_basis[k+3])[subindex][j] *= (global_pos[j] - val[j]);
65 native(zv)[subindex][0] = 1;
Definition: zembasis.hh:14