ug4
|
Geometry and shape functions for 1st order Vertex-Centered Finite Volume. More...
#include <fv1ib_geom.h>
Classes | |
class | BF |
boundary face More... | |
class | SCV |
sub control volume structure More... | |
class | SCVF |
Sub-Control Volume Face structure. More... | |
Public Types | |
typedef TElem | elem_type |
type of element More... | |
typedef LagrangeP1< ref_elem_type > | local_shape_fct_set_type |
type of Shape function used More... | |
typedef reference_element_traits< TElem >::reference_element_type | ref_elem_type |
type of reference element More... | |
typedef traits::scv_type | scv_type |
type of SubControlVolume More... | |
typedef fv1_traits< ref_elem_type, TWorldDim > | traits |
used traits More... | |
Public Member Functions | |
void | adapt (GridObject *elem, const MathVector< TWorldDim > *vCornerCoords, const ISubsetHandler *ish=NULL) |
adapt integration points for elements cut by the inner boundary More... | |
void | adapt_integration_points (GridObject *elem, const MathVector< TWorldDim > *vCornerCoords, const ISubsetHandler *ish=NULL) |
adapt integration points for elements cut by the inner boundary More... | |
void | adapt_normals (GridObject *elem, const MathVector< TWorldDim > *vCornerCoords, const ISubsetHandler *ish=NULL) |
adapt normals for elements cut by the inner boundary More... | |
void | add_boundary_subset (int subsetIndex) |
add subset that is interpreted as boundary subset. More... | |
const std::vector< BF > & | bf (int si) const |
returns reference to vector of boundary faces for subsetIndex More... | |
const BF & | bf (int si, size_t i) const |
returns the boundary face i for subsetIndex More... | |
void | clear_boundary_subsets () |
reset all boundary subsets More... | |
const MathVector< worldDim > * | corners () const |
get vector of the global coordinates of corners for current element More... | |
FV1IBGeometry () | |
construct object and initialize local values and sizes More... | |
size_t | num_bf () const |
number of all boundary faces More... | |
size_t | num_bf (int si) const |
number of boundary faces on subset 'subsetIndex' More... | |
size_t | num_boundary_subsets () |
number of registered boundary subsets More... | |
size_t | num_scv () const |
number of SubControlVolumes More... | |
size_t | num_scv_ips () const |
returns number of all scv ips More... | |
size_t | num_scvf () const |
number of SubControlVolumeFaces More... | |
size_t | num_scvf_ips () const |
returns number of all scvf ips More... | |
size_t | num_sh () const |
number of shape functions More... | |
void | remove_boundary_subset (int subsetIndex) |
removes subset that is interpreted as boundary subset. More... | |
const SCV & | scv (size_t i) const |
const access to SubControlVolume number i More... | |
const MathVector< worldDim > * | scv_global_ips () const |
returns all ips of scv as they appear in scv loop More... | |
const MathVector< dim > * | scv_local_ips () const |
returns all ips of scv as they appear in scv loop More... | |
const SCVF & | scvf (size_t i) const |
const access to SubControlVolumeFace number i More... | |
const MathVector< worldDim > * | scvf_global_ips () const |
returns all ips of scvf as they appear in scv loop More... | |
const MathVector< dim > * | scvf_local_ips () const |
returns all ips of scvf as they appear in scv loop More... | |
void | update (GridObject *elem, const MathVector< worldDim > *vCornerCoords, const ISubsetHandler *ish=NULL) |
update data for given element More... | |
void | update_boundary_faces (GridObject *elem, const MathVector< worldDim > *vCornerCoords, const ISubsetHandler *ish=NULL) |
update boundary data for given element More... | |
void | update_local_data () |
update local data More... | |
Public Attributes | |
MathVector< worldDim > | m_MidPoint |
MathVector< worldDim > | vSCVF_PosOnEdge [numSCVF] |
new members for adaptions More... | |
Static Public Attributes | |
static const int | dim = ref_elem_type::dim |
dimension of reference element More... | |
static const size_t | nip = 1 |
number of integration points More... | |
static const size_t | nsh = local_shape_fct_set_type::nsh |
number of shape functions More... | |
static const size_t | numSCV |
number of SubControlVolumes More... | |
static const size_t | numSCVF |
number of SubControlVolumeFaces More... | |
static const int | order = 1 |
order More... | |
static const bool | staticLocalData = true |
flag indicating if local data may change More... | |
static const bool | usesHangingNodes = false |
Hanging node flag: this Geometry does not support hanging nodes. More... | |
static const int | worldDim = TWorldDim |
dimension of world More... | |
Protected Attributes | |
ReferenceMapping< ref_elem_type, worldDim > | m_mapping |
Reference Mapping. More... | |
std::map< int, std::vector< BF > > | m_mapVectorBF |
TElem * | m_pElem |
pointer to current element More... | |
const ref_elem_type & | m_rRefElem |
Reference Element. More... | |
const local_shape_fct_set_type & | m_rTrialSpace |
Shape function set. More... | |
std::vector< BF > | m_vEmptyVectorBF |
MathVector< worldDim > | m_vGlobSCVF_IP [numSCVF] |
MathVector< dim > | m_vLocSCVF_IP [numSCVF] |
SCV | m_vSCV [numSCV] |
SubControlVolumes. More... | |
SCVF | m_vSCVF [numSCVF] |
SubControlVolumeFaces. More... | |
MathVector< worldDim > | m_vvGloMid [dim+1][maxMid] |
MathVector< dim > | m_vvLocMid [dim+1][maxMid] |
local and global geom object midpoints for each dimension More... | |
Static Protected Attributes | |
static const int | maxMid = numSCVF + 1 |
max number of geom objects in all dimensions More... | |
Geometry and shape functions for 1st order Vertex-Centered Finite Volume.
TElem | Element type |
TWorldDim | (physical) world dimension |
typedef TElem ug::FV1IBGeometry< TElem, TWorldDim >::elem_type |
type of element
typedef LagrangeP1<ref_elem_type> ug::FV1IBGeometry< TElem, TWorldDim >::local_shape_fct_set_type |
type of Shape function used
typedef reference_element_traits<TElem>::reference_element_type ug::FV1IBGeometry< TElem, TWorldDim >::ref_elem_type |
type of reference element
typedef traits::scv_type ug::FV1IBGeometry< TElem, TWorldDim >::scv_type |
type of SubControlVolume
typedef fv1_traits<ref_elem_type, TWorldDim> ug::FV1IBGeometry< TElem, TWorldDim >::traits |
used traits
FV1IBGeometry::FV1IBGeometry | ( | ) |
construct object and initialize local values and sizes
References ug::FV1IBGeometry< TElem, TWorldDim >::update_local_data().
void FV1IBGeometry::adapt | ( | GridObject * | elem, |
const MathVector< TWorldDim > * | vCornerCoords, | ||
const ISubsetHandler * | ish = NULL |
||
) |
adapt integration points for elements cut by the inner boundary
References UG_LOG, ug::VecDot(), and ug::VecSubtract().
void FV1IBGeometry::adapt_integration_points | ( | GridObject * | elem, |
const MathVector< TWorldDim > * | vCornerCoords, | ||
const ISubsetHandler * | ish = NULL |
||
) |
adapt integration points for elements cut by the inner boundary
References UG_THROW.
void FV1IBGeometry::adapt_normals | ( | GridObject * | elem, |
const MathVector< TWorldDim > * | vCornerCoords, | ||
const ISubsetHandler * | ish = NULL |
||
) |
|
inline |
add subset that is interpreted as boundary subset.
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
|
inline |
returns reference to vector of boundary faces for subsetIndex
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF, and ug::FV1IBGeometry< TElem, TWorldDim >::m_vEmptyVectorBF.
|
inline |
returns the boundary face i for subsetIndex
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF, ug::FV1IBGeometry< TElem, TWorldDim >::num_bf(), UG_ASSERT, and UG_THROW.
|
inline |
reset all boundary subsets
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
|
inline |
get vector of the global coordinates of corners for current element
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vvGloMid.
|
inline |
number of all boundary faces
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::bf().
|
inline |
number of boundary faces on subset 'subsetIndex'
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
|
inline |
number of registered boundary subsets
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
|
inline |
number of SubControlVolumes
References ug::FV1IBGeometry< TElem, TWorldDim >::numSCV.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scv().
|
inline |
returns number of all scv ips
References ug::FV1IBGeometry< TElem, TWorldDim >::numSCV.
|
inline |
number of SubControlVolumeFaces
References ug::FV1IBGeometry< TElem, TWorldDim >::numSCVF.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scvf().
|
inline |
returns number of all scvf ips
References ug::FV1IBGeometry< TElem, TWorldDim >::numSCVF.
|
inline |
number of shape functions
References ug::FV1IBGeometry< TElem, TWorldDim >::nsh.
|
inline |
removes subset that is interpreted as boundary subset.
References ug::FV1IBGeometry< TElem, TWorldDim >::m_mapVectorBF.
|
inline |
const access to SubControlVolume number i
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vSCV, ug::FV1IBGeometry< TElem, TWorldDim >::num_scv(), and UG_ASSERT.
|
inline |
returns all ips of scv as they appear in scv loop
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vvGloMid.
|
inline |
returns all ips of scv as they appear in scv loop
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vvLocMid.
|
inline |
const access to SubControlVolumeFace number i
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vSCVF, ug::FV1IBGeometry< TElem, TWorldDim >::num_scvf(), and UG_ASSERT.
|
inline |
returns all ips of scvf as they appear in scv loop
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vGlobSCVF_IP.
|
inline |
returns all ips of scvf as they appear in scv loop
References ug::FV1IBGeometry< TElem, TWorldDim >::m_vLocSCVF_IP.
void FV1IBGeometry::update | ( | GridObject * | elem, |
const MathVector< worldDim > * | vCornerCoords, | ||
const ISubsetHandler * | ish = NULL |
||
) |
update data for given element
References ug::AveragePositions(), ug::MatVecMult(), and UG_ASSERT.
void FV1IBGeometry::update_boundary_faces | ( | GridObject * | elem, |
const MathVector< worldDim > * | vCornerCoords, | ||
const ISubsetHandler * | ish = NULL |
||
) |
update boundary data for given element
References ug::AveragePositions(), ug::CollectEdgesSorted(), ug::CollectFacesSorted(), ug::CollectVertices(), ug::ComputeBFMidID(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::detj, dim, ug::ISubsetHandler::get_subset_index(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::globalIP, ug::ISubsetHandler::grid(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::JtInv, ug::FV1IBGeometry< TElem, TWorldDim >::BF::localIP, ug::MatVecMult(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::nodeId, ug::FV1IBGeometry< TElem, TWorldDim >::BF::Normal, ug::FV1IBGeometry< TElem, TWorldDim >::BF::num_sh(), ug::ROID_PYRAMID, UG_ASSERT, ug::VecTwoNorm(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::vGlobalGrad, ug::FV1IBGeometry< TElem, TWorldDim >::BF::vGloPos, ug::FV1IBGeometry< TElem, TWorldDim >::BF::vLocalGrad, ug::FV1IBGeometry< TElem, TWorldDim >::BF::vLocPos, ug::FV1IBGeometry< TElem, TWorldDim >::BF::vMidID, ug::FV1IBGeometry< TElem, TWorldDim >::BF::Vol, and ug::FV1IBGeometry< TElem, TWorldDim >::BF::vShape.
void FV1IBGeometry::update_local_data | ( | ) |
update local data
References ug::AveragePositions(), ug::ComputeSCVFMidID(), ug::ComputeSCVMidID(), and ug::ROID_PYRAMID.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::FV1IBGeometry().
|
static |
dimension of reference element
|
protected |
Reference Mapping.
|
protected |
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::add_boundary_subset(), ug::FV1IBGeometry< TElem, TWorldDim >::bf(), ug::FV1IBGeometry< TElem, TWorldDim >::clear_boundary_subsets(), ug::FV1IBGeometry< TElem, TWorldDim >::num_bf(), ug::FV1IBGeometry< TElem, TWorldDim >::num_boundary_subsets(), and ug::FV1IBGeometry< TElem, TWorldDim >::remove_boundary_subset().
MathVector<worldDim> ug::FV1IBGeometry< TElem, TWorldDim >::m_MidPoint |
|
protected |
pointer to current element
|
protected |
Reference Element.
|
protected |
Shape function set.
|
protected |
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::bf().
|
protected |
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scvf_global_ips().
|
protected |
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scvf_local_ips().
|
protected |
SubControlVolumes.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scv().
|
protected |
SubControlVolumeFaces.
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scvf().
|
protected |
|
protected |
local and global geom object midpoints for each dimension
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::scv_local_ips().
|
staticprotected |
max number of geom objects in all dimensions
|
static |
number of integration points
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::SCVF::num_ip(), ug::FV1IBGeometry< TElem, TWorldDim >::SCV::num_ip(), and ug::FV1IBGeometry< TElem, TWorldDim >::BF::num_ip().
|
static |
number of shape functions
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::SCVF::num_sh(), ug::FV1IBGeometry< TElem, TWorldDim >::SCV::num_sh(), ug::FV1IBGeometry< TElem, TWorldDim >::BF::num_sh(), and ug::FV1IBGeometry< TElem, TWorldDim >::num_sh().
|
static |
number of SubControlVolumes
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::num_scv(), and ug::FV1IBGeometry< TElem, TWorldDim >::num_scv_ips().
|
static |
number of SubControlVolumeFaces
Referenced by ug::FV1IBGeometry< TElem, TWorldDim >::num_scvf(), and ug::FV1IBGeometry< TElem, TWorldDim >::num_scvf_ips().
|
static |
order
|
static |
flag indicating if local data may change
|
static |
Hanging node flag: this Geometry does not support hanging nodes.
MathVector<worldDim> ug::FV1IBGeometry< TElem, TWorldDim >::vSCVF_PosOnEdge[numSCVF] |
new members for adaptions
|
static |
dimension of world