Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MostafaMollaali
dynamic
Commits
afaf1cf8
Commit
afaf1cf8
authored
9 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[PL] added LocalAssemblerTraits
parent
72e6e9ba
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ProcessLib/LocalAssemblerTraits.h
+234
-0
234 additions, 0 deletions
ProcessLib/LocalAssemblerTraits.h
with
234 additions
and
0 deletions
ProcessLib/LocalAssemblerTraits.h
0 → 100644
+
234
−
0
View file @
afaf1cf8
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#ifndef PROCESSLIB_LOCALASSEMBLERTRAITS_H
#define PROCESSLIB_LOCALASSEMBLERTRAITS_H
namespace
ProcessLib
{
namespace
detail
{
/*! This class makes it possible to handle Eigen's block expressions transparently,
* both for fixed-size and dynamically allocated Eigen matrices.
*
* \tparam ShpPol the shape matrix policy used
* \tparam NIntPts the number of integration points for the FEM element
* \tparam NodalDOF the number of d.o.f. per node.
* If zero, this struct's methods will determine the size of
* the generated Eigen::block's at runtime. If non-zero, the
* size will be determined at compile-time.
* \tparam Dim global spatial dimension
*/
template
<
typename
ShpPol
,
unsigned
NIntPts
,
unsigned
NodalDOF
,
unsigned
Dim
>
struct
LocalAssemblerTraitsFixed
{
private:
template
<
int
N
,
int
M
>
using
Matrix
=
typename
ShpPol
::
template
MatrixType
<
N
,
M
>;
template
<
int
N
>
using
Vector
=
typename
ShpPol
::
template
VectorType
<
N
>;
public:
using
ShapeMatrices
=
typename
ShpPol
::
ShapeMatrices
;
//! Square matrix of the given space dimensionality
using
MatrixDimDim
=
Matrix
<
Dim
,
Dim
>
;
// TODO That only works if all process variables are single component
// and use the same shape fucntions.
//! Local matrix for the given number of d.o.f.\ per node and number of
//! integration points
using
LocalMatrix
=
Matrix
<
NIntPts
*
NodalDOF
,
NIntPts
*
NodalDOF
>
;
//! Local vector for the given number of d.o.f.\ per node and number of
//! integration points
using
LocalVector
=
Vector
<
NIntPts
*
NodalDOF
>
;
//! Local vector for one component of one process variable.
//! The size is the number of nodes in the element.
using
Vector1Comp
=
typename
ShapeMatrices
::
ShapeType
;
//! Laplace matrix for the given space dimensionality and number of d.o.f
//! per node.
using
LaplaceMatrix
=
Matrix
<
Dim
*
NodalDOF
,
Dim
*
NodalDOF
>
;
//! Get a block \c Dim x \c Dim whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
const
Mat
>
().
template
block
<
Dim
,
Dim
>(
0u
,
0u
))
>::
type
blockDimDim
(
Mat
const
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
Dim
&&
ncols
==
Dim
);
(
void
)
nrows
;
(
void
)
ncols
;
return
mat
.
template
block
<
Dim
,
Dim
>(
top
,
left
);
}
//! Get a block \c Dim x \c Dim whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
const
Mat
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockDimDim
(
Mat
const
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
ncols
);
return
mat
.
block
(
top
,
left
,
nrows
,
ncols
);
}
//! Get a block \c Dim x \c Dim whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
Mat
>
().
template
block
<
Dim
,
Dim
>(
0u
,
0u
))
>::
type
blockDimDim
(
Mat
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
Dim
&&
ncols
==
Dim
);
(
void
)
nrows
;
(
void
)
ncols
;
return
mat
.
template
block
<
Dim
,
Dim
>(
top
,
left
);
}
//! Get a block \c Dim x \c Dim whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
Mat
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockDimDim
(
Mat
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
ncols
);
return
mat
.
block
(
top
,
left
,
nrows
,
ncols
);
}
//! Get a block \c NIntPts x \c NIntPts whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
const
Mat
>
().
template
block
<
NIntPts
,
NIntPts
>(
0u
,
0u
))
>::
type
blockShpShp
(
Mat
const
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
NIntPts
&&
ncols
==
NIntPts
);
(
void
)
nrows
;
(
void
)
ncols
;
return
mat
.
template
block
<
NIntPts
,
NIntPts
>(
top
,
left
);
}
//! Get a block \c NIntPts x \c NIntPts whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
const
Mat
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockShpShp
(
Mat
const
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
ncols
);
return
mat
.
block
(
top
,
left
,
nrows
,
ncols
);
}
//! Get a block \c NIntPts x \c NIntPts whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
Mat
>
().
template
block
<
NIntPts
,
NIntPts
>(
0u
,
0u
))
>::
type
blockShpShp
(
Mat
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
NIntPts
&&
ncols
==
NIntPts
);
(
void
)
nrows
;
(
void
)
ncols
;
return
mat
.
template
block
<
NIntPts
,
NIntPts
>(
top
,
left
);
}
//! Get a block \c NIntPts x \c NIntPts whose upper left corner is at \c top and \c left.
template
<
typename
Mat
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
Mat
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockShpShp
(
Mat
&
mat
,
unsigned
top
,
unsigned
left
,
unsigned
nrows
,
unsigned
ncols
)
{
assert
(
nrows
==
ncols
);
return
mat
.
block
(
top
,
left
,
nrows
,
ncols
);
}
//! Get a block \c NIntPts x 1 starting at the \c top'th row.
template
<
typename
Vec
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
const
Vec
>
().
template
block
<
NIntPts
,
1
>(
0u
,
0u
))
>::
type
blockShp
(
Vec
const
&
vec
,
unsigned
top
,
unsigned
nrows
)
{
assert
(
nrows
==
NIntPts
);
(
void
)
nrows
;
return
vec
.
template
block
<
NIntPts
,
1
>(
top
,
0
);
}
//! Get a block \c NIntPts x 1 starting at the \c top'th row.
template
<
typename
Vec
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
const
Vec
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockShp
(
Vec
const
&
vec
,
unsigned
top
,
unsigned
nrows
)
{
return
vec
.
block
(
top
,
0
,
nrows
,
1
);
}
//! Get a block \c NIntPts x 1 starting at the \c top'th row.
template
<
typename
Vec
>
static
typename
std
::
enable_if
<
NodalDOF
!=
0
,
decltype
(
std
::
declval
<
Vec
>
().
template
block
<
NIntPts
,
1
>(
0u
,
0u
))
>::
type
blockShp
(
Vec
&
vec
,
unsigned
top
,
unsigned
nrows
)
{
assert
(
nrows
==
NIntPts
);
(
void
)
nrows
;
return
vec
.
template
block
<
NIntPts
,
1
>(
top
,
0
);
}
//! Get a block \c NIntPts x 1 starting at the \c top'th row.
template
<
typename
Vec
>
static
typename
std
::
enable_if
<
NodalDOF
==
0
,
decltype
(
std
::
declval
<
Vec
>
().
block
(
0u
,
0u
,
0u
,
0u
))
>::
type
blockShp
(
Vec
&
vec
,
unsigned
top
,
unsigned
nrows
)
{
return
vec
.
block
(
top
,
0
,
nrows
,
1
);
}
};
}
// namespace detail
#ifndef EIGEN_DYNAMIC_SHAPE_MATRICES
template
<
typename
ShpPol
,
unsigned
NIntPts
,
unsigned
NodalDOF
,
unsigned
Dim
>
using
LocalAssemblerTraits
=
detail
::
LocalAssemblerTraitsFixed
<
ShpPol
,
NIntPts
,
NodalDOF
,
Dim
>
;
static_assert
(
OGS_EIGEN_DYNAMIC_SHAPE_MATRICES_FLAG
==
0
,
"Inconsistent use of the macro OGS_EIGEN_DYNAMIC_SHAPE_MATRICES."
" Maybe you forgot to include some header file."
);
#else
template
<
typename
ShpPol
,
unsigned
NIntPts
,
unsigned
NodalDOF
,
unsigned
Dim
>
using
LocalAssemblerTraits
=
detail
::
LocalAssemblerTraitsFixed
<
ShapeMatrixPolicyType
<
void
,
0
>
,
0
,
0
,
0
>
;
static_assert
(
OGS_EIGEN_DYNAMIC_SHAPE_MATRICES_FLAG
==
1
,
"Inconsistent use of the macro OGS_EIGEN_DYNAMIC_SHAPE_MATRICES."
" Maybe you forgot to include some header file."
);
#endif
}
#endif // PROCESSLIB_LOCALASSEMBLERTRAITS_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment