3#ifndef DUNE_PDELAB_FUNCTION_SELECTCOMPONENT_HH
4#define DUNE_PDELAB_FUNCTION_SELECTCOMPONENT_HH
12#include <dune/pdelab/common/function.hh>
24 template<
typename GF, std::
size_t dimR = 1>
28 typename GF::Traits::GridViewType,
29 typename GF::Traits::RangeFieldType, dimR,
30 FieldVector<typename GF::Traits::RangeFieldType, dimR>
32 SelectComponentGridFunctionAdapter<GF, dimR>
37 typename GF::Traits::GridViewType,
38 typename GF::Traits::RangeFieldType, dimR,
48 std::size_t remap[dimR];
50 void checkRemap()
const {
51 for(std::size_t c = 0; c < dimR; ++c)
52 if(remap[c] >= GF::Traits::dimRange)
54 << remap[c] <<
" >= GF::Traits::dimRange = "
55 << GF::Traits::dimRange);
62 for(std::size_t c = 0; c < dimR; ++c)
69 ( GF& gf_,
const std::vector<std::size_t> remap_) :
72 if(remap_.size() != dimR)
74 << remap_.size() <<
" but size " << dimR <<
" was "
76 std::copy(remap_.begin(), remap_.end(), remap);
84 typename GF::Traits::RangeType y_;
86 for(std::size_t c = 0; c < dimR; ++c)
91 {
return gf.getGridView(); }
93 template<
typename Time>
94 void setTime(Time time) { gf.setTime(time); }
vector space out of a tensor product of fields.
Definition: fvector.hh:92
Default exception if a function was called while the object is not in a valid state for that function...
Definition: exceptions.hh:373
Base class for all PDELab exceptions.
Definition: exceptions.hh:19
leaf of a function tree
Definition: function.hh:302
Select certain component(s) of a gridfunction.
Definition: selectcomponent.hh:34
SelectComponentGridFunctionAdapter(GF &gf_, const std::vector< std::size_t > remap_)
construct with a full index map
Definition: selectcomponent.hh:69
SelectComponentGridFunctionAdapter(GF &gf_, std::size_t first)
construct with a consecutive range of indices
Definition: selectcomponent.hh:59
A few common exception classes.
#define DUNE_THROW(E,...)
Definition: exceptions.hh:312
Dune namespace.
Definition: alignedallocator.hh:13
Dune::FieldVector< GV::Grid::ctype, GV::dimension > DomainType
domain type in dim-size coordinates
Definition: function.hh:50
R RangeType
range type
Definition: function.hh:62
traits class holding the function signature, same as in local function
Definition: function.hh:183
GV::Traits::template Codim< 0 >::Entity ElementType
codim 0 entity
Definition: function.hh:119
GV GridViewType
The type of the grid view the function lives on.
Definition: function.hh:116