Responsible to build the T columns belonging to inner degrees of freedom in a H1 conforming (trunk) space with shape functions in tensor product structure. More...
#include <buildH1TColumns.hh>


Public Types | |
| typedef concepts::SpaceHelper < F, SpacePreBuilder > | SpaceHelper |
Public Member Functions | |
| BuildH1InnerTColumnsLinTrunk () | |
| Default constructor. | |
| BuildH1InnerTColumnsLinTrunk (SpaceHelper &spc) | |
| Constructor. | |
| virtual BuildH1InnerTColumnsLinTrunk < F > * | clone (SpaceHelper *spc=0) const |
| virtual BuildTColumnsBase< F, SpacePreBuilder > * | clone (SpaceHelper< F, SpacePreBuilder > *spc=0) const =0 |
| Virtual copy constructor with a twist. | |
| virtual void | operator() (const concepts::Connector2 &cntr, concepts::TColumn< F > *&T1) const |
| Builds the degrees of freedom. | |
| SpacePreBuilder & | prebuild () const |
| Returns the space pre builder. | |
| SpaceHelper< F, SpacePreBuilder > & | spc () const |
| Returns pointer to space helper class. | |
| virtual bool | trunk (uint p, uint q, const ushort P[2]) const |
| Trunk space indicator function. | |
| virtual | ~BuildH1InnerTColumnsLinTrunk () |
Protected Member Functions | |
| virtual std::ostream & | info (std::ostream &os) const |
| Returns information in an output stream. | |
Protected Attributes | |
| SpaceHelper< F, SpacePreBuilder > * | spc_ |
| Space to build the degrees of freedom from. | |
Responsible to build the T columns belonging to inner degrees of freedom in a H1 conforming (trunk) space with shape functions in tensor product structure.
Using this class, only a trunk of the degrees of freedom in the interior are built: if (p + q) <= ((P[0] > P[1]) ? P[0] : P[1]) the degree of freedom with polynomial degrees p, q in each direction is built (P[i] are the maximal polynomial degrees in each direction.)
This class is registered as the default strategy in hpAdaptiveSpaceH1 to build the inner degrees of freedom. Giving the space a different class through the use of hpAdaptiveSpaceH1::buildInnerDofs, you can change that behaviour.
Definition at line 213 of file buildH1TColumns.hh.
| typedef concepts::SpaceHelper<F, SpacePreBuilder> hp2D::BuildH1InnerTColumnsLinTrunk< F >::SpaceHelper |
Reimplemented from hp2D::BuildH1InnerTColumns< F >.
Definition at line 215 of file buildH1TColumns.hh.
| hp2D::BuildH1InnerTColumnsLinTrunk< F >::BuildH1InnerTColumnsLinTrunk | ( | ) | [inline] |
Default constructor.
Definition at line 217 of file buildH1TColumns.hh.
| hp2D::BuildH1InnerTColumnsLinTrunk< F >::BuildH1InnerTColumnsLinTrunk | ( | SpaceHelper & | spc | ) | [inline] |
Constructor.
| spc | Space Helper with Space Pre Builder (mesh and distribution of degrees of freedom), boundary condition and the running index |
Definition at line 224 of file buildH1TColumns.hh.
| virtual hp2D::BuildH1InnerTColumnsLinTrunk< F >::~BuildH1InnerTColumnsLinTrunk | ( | ) | [inline, virtual] |
Definition at line 226 of file buildH1TColumns.hh.
| virtual BuildH1InnerTColumnsLinTrunk<F>* hp2D::BuildH1InnerTColumnsLinTrunk< F >::clone | ( | SpaceHelper * | spc = 0 | ) | const [virtual] |
Reimplemented from hp2D::BuildH1InnerTColumns< F >.
| virtual BuildTColumnsBase<F,SpacePreBuilder >* concepts::BuildTColumnsBase< F, SpacePreBuilder >::clone | ( | SpaceHelper< F, SpacePreBuilder > * | spc = 0 | ) | const [pure virtual, inherited] |
Virtual copy constructor with a twist.
If a copy of a space helper is created, the strategies to build the degrees of freedom of the copy should also reference the copy and not the initial space helper. This is done by giving the argument spc to clone.
| spc | Space helper class to work on for the return value. If set to 0, spc_ is used. |
| virtual std::ostream& hp2D::BuildH1InnerTColumnsLinTrunk< F >::info | ( | std::ostream & | os | ) | const [protected, virtual] |
Returns information in an output stream.
Reimplemented from hp2D::BuildH1InnerTColumns< F >.
| virtual void hp2D::BuildH1InnerTColumns< F >::operator() | ( | const concepts::Connector2 & | cntr, |
| concepts::TColumn< F > *& | T1 | ||
| ) | const [virtual, inherited] |
Builds the degrees of freedom.
| cntr | Quad which dofs should be considered |
| T1 | New T columns created for the degrees of freedom |
Implements hp2D::BuildTColumnsBase< F >.
| SpacePreBuilder & concepts::BuildTColumnsBase< F, SpacePreBuilder >::prebuild | ( | ) | const [inline, inherited] |
Returns the space pre builder.
| SpaceHelper<F,SpacePreBuilder >& concepts::BuildTColumnsBase< F, SpacePreBuilder >::spc | ( | ) | const [inline, inherited] |
Returns pointer to space helper class.
| virtual bool hp2D::BuildH1InnerTColumnsLinTrunk< F >::trunk | ( | uint | p, |
| uint | q, | ||
| const ushort | P[2] | ||
| ) | const [virtual] |
Trunk space indicator function.
For each degree of freedom, this function is called to find out if it should be built or not. If the return value is true, the degree of freedom is built, otherwise it is not.
The default behaviour of this function is to return true. Overwrite it if you want to have a trunk space (e.g. as in BuildInnerDofsLinTrunk).
| p | Polynomial degree in first direction of current degree of freedom |
| q | Polynomial degree in second direction of current degree of freedom |
| P | Maximal polynomial degree in the interior |
Reimplemented from hp2D::BuildH1InnerTColumns< F >.
SpaceHelper<F,SpacePreBuilder >* concepts::BuildTColumnsBase< F, SpacePreBuilder >::spc_ [protected, inherited] |
Space to build the degrees of freedom from.
Definition at line 266 of file spacePreBuilder.hh.