Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
amdis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
iwr
amdis
Commits
23ec2c99
Commit
23ec2c99
authored
14 years ago
by
Thomas Witkowski
Browse files
Options
Downloads
Patches
Plain Diff
Dirichlet BC with DOFVector instead of a function possible.
parent
b1872344
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
AMDiS/src/DirichletBC.cc
+8
-6
8 additions, 6 deletions
AMDiS/src/DirichletBC.cc
AMDiS/src/DirichletBC.h
+2
-1
2 additions, 1 deletion
AMDiS/src/DirichletBC.h
AMDiS/src/ProblemVec.cc
+29
-4
29 additions, 4 deletions
AMDiS/src/ProblemVec.cc
AMDiS/src/ProblemVec.h
+3
-0
3 additions, 0 deletions
AMDiS/src/ProblemVec.h
with
42 additions
and
11 deletions
AMDiS/src/DirichletBC.cc
+
8
−
6
View file @
23ec2c99
...
...
@@ -19,15 +19,16 @@ namespace AMDiS {
worldCoords
.
resize
(
omp_get_overall_max_threads
());
}
DirichletBC
::
DirichletBC
(
BoundaryType
type
,
DOFVectorBase
<
double
>
*
vec
)
:
BoundaryCondition
(
type
,
vec
->
getFESpace
()),
DOFVectorBase
<
double
>
*
vec
,
bool
apply
)
:
BoundaryCondition
(
type
,
vec
->
getFESpace
(),
vec
->
getFESpace
()),
f
(
NULL
),
dofVec
(
vec
),
applyBC
(
true
)
{
worldCoords
.
resize
(
omp_get_overall_max_threads
());
}
applyBC
(
apply
)
{}
void
DirichletBC
::
fillBoundaryCondition
(
DOFMatrix
*
matrix
,
ElInfo
*
elInfo
,
...
...
@@ -39,6 +40,7 @@ namespace AMDiS {
TEST_EXIT_DBG
(
matrix
->
getRowFESpace
()
==
rowFESpace
)(
"invalid row fe space
\n
"
);
}
void
DirichletBC
::
fillBoundaryCondition
(
DOFVectorBase
<
double
>*
vector
,
ElInfo
*
elInfo
,
const
DegreeOfFreedom
*
dofIndices
,
...
...
This diff is collapsed.
Click to expand it.
AMDiS/src/DirichletBC.h
+
2
−
1
View file @
23ec2c99
...
...
@@ -49,7 +49,8 @@ namespace AMDiS {
/// Constructor.
DirichletBC
(
BoundaryType
type
,
DOFVectorBase
<
double
>
*
vec
);
DOFVectorBase
<
double
>
*
vec
,
bool
apply
=
true
);
/// Implementation of BoundaryCondition::fillBoundaryCondition().
void
fillBoundaryCondition
(
DOFMatrix
*
matrix
,
...
...
This diff is collapsed.
Click to expand it.
AMDiS/src/ProblemVec.cc
+
29
−
4
View file @
23ec2c99
...
...
@@ -1189,14 +1189,39 @@ namespace AMDiS {
DirichletBC
*
dirichletNotApply
=
new
DirichletBC
(
type
,
b
,
componentSpaces
[
row
],
componentSpaces
[
col
],
false
);
for
(
int
i
=
0
;
i
<
nComponents
;
i
++
)
{
if
(
systemMatrix
&&
(
*
systemMatrix
)[
row
][
i
])
{
for
(
int
i
=
0
;
i
<
nComponents
;
i
++
)
if
(
systemMatrix
&&
(
*
systemMatrix
)[
row
][
i
])
if
(
i
==
col
)
(
*
systemMatrix
)[
row
][
i
]
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletApply
);
else
(
*
systemMatrix
)[
row
][
i
]
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletNotApply
);
if
(
rhs
)
rhs
->
getDOFVector
(
row
)
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletApply
);
if
(
solution
)
solution
->
getDOFVector
(
row
)
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletApply
);
}
void
ProblemVec
::
addDirichletBC
(
BoundaryType
type
,
int
row
,
int
col
,
DOFVector
<
double
>
*
vec
)
{
FUNCNAME
(
"ProblemVec::addDirichletBC()"
);
TEST_EXIT
(
row
>=
0
&&
row
<
nComponents
)(
"Wrong row number: %d
\n
"
,
row
);
TEST_EXIT
(
col
>=
0
&&
col
<
nComponents
)(
"Wrong col number: %d
\n
"
,
col
);
boundaryConditionSet
=
true
;
DirichletBC
*
dirichletApply
=
new
DirichletBC
(
type
,
vec
,
true
);
DirichletBC
*
dirichletNotApply
=
new
DirichletBC
(
type
,
vec
,
false
);
for
(
int
i
=
0
;
i
<
nComponents
;
i
++
)
if
(
systemMatrix
&&
(
*
systemMatrix
)[
row
][
i
])
if
(
i
==
col
)
(
*
systemMatrix
)[
row
][
i
]
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletApply
);
else
(
*
systemMatrix
)[
row
][
i
]
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletNotApply
);
}
}
if
(
rhs
)
rhs
->
getDOFVector
(
row
)
->
getBoundaryManager
()
->
addBoundaryCondition
(
dirichletApply
);
...
...
This diff is collapsed.
Click to expand it.
AMDiS/src/ProblemVec.h
+
3
−
0
View file @
23ec2c99
...
...
@@ -244,6 +244,9 @@ namespace AMDiS {
virtual
void
addDirichletBC
(
BoundaryType
type
,
int
row
,
int
col
,
AbstractFunction
<
double
,
WorldVector
<
double
>
>
*
b
);
virtual
void
addDirichletBC
(
BoundaryType
type
,
int
row
,
int
col
,
DOFVector
<
double
>
*
vec
);
/// Adds neumann boundary conditions.
virtual
void
addNeumannBC
(
BoundaryType
type
,
int
row
,
int
col
,
AbstractFunction
<
double
,
WorldVector
<
double
>
>
*
n
);
...
...
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