Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
3a7156a4
Commit
3a7156a4
authored
May 25, 2009
by
Thomas Witkowski
Browse files
Adapted demos to new AMDiS (DELETE/delete and dirichlet boundary conditions).
parent
83b6de2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
demo/src/couple.cc
View file @
3a7156a4
...
...
@@ -107,8 +107,6 @@ private:
class
Identity
:
public
AbstractFunction
<
double
,
double
>
{
public:
MEMORY_MANAGED
(
Identity
);
Identity
(
int
degree
)
:
AbstractFunction
<
double
,
double
>
(
degree
)
{}
double
operator
()(
const
double
&
x
)
const
...
...
demo/src/torus.cc
View file @
3a7156a4
...
...
@@ -142,7 +142,6 @@ int main(int argc, char* argv[])
double
rotation
=
M_PI
/
3.0
;
int
i
,
j
;
int
dim
=
torus
.
getMesh
()
->
getDim
();
int
dow
=
Global
::
getGeo
(
WORLD
);
...
...
@@ -152,30 +151,28 @@ int main(int argc, char* argv[])
const
FiniteElemSpace
*
feSpace
=
torus
.
getFESpace
();
const
BasisFunction
*
basFcts
=
feSpace
->
getBasisFcts
();
int
numBasFcts
=
basFcts
->
getNumber
();
DegreeOfFreedom
*
localIndices
=
GET_MEMORY
(
DegreeOfFreedom
,
numBasFcts
)
;
DegreeOfFreedom
*
localIndices
=
new
DegreeOfFreedom
[
numBasFcts
]
;
DOFAdmin
*
admin
=
feSpace
->
getAdmin
();
WorldVector
<
DOFVector
<
double
>*>
parametricCoords
;
for
(
i
=
0
;
i
<
dow
;
i
++
)
{
parametricCoords
[
i
]
=
new
DOFVector
<
double
>
(
feSpace
,
"parametric coords"
);
}
for
(
int
i
=
0
;
i
<
dow
;
i
++
)
parametricCoords
[
i
]
=
new
DOFVector
<
double
>
(
feSpace
,
"parametric coords"
);
std
::
map
<
DegreeOfFreedom
,
bool
>
visited
;
TraverseStack
stack
;
ElInfo
*
elInfo
=
stack
.
traverseFirst
(
torus
.
getMesh
(),
-
1
,
Mesh
::
CALL_LEAF_EL
|
Mesh
::
FILL_COORDS
);
while
(
elInfo
)
{
while
(
elInfo
)
{
basFcts
->
getLocalIndices
(
elInfo
->
getElement
(),
admin
,
localIndices
);
for
(
i
=
0
;
i
<
dim
+
1
;
i
++
)
{
for
(
int
i
=
0
;
i
<
dim
+
1
;
i
++
)
{
dof
=
localIndices
[
i
];
x
=
elInfo
->
getCoord
(
i
);
YRotation
::
rotate
(
x
,
rotation
);
if
(
!
visited
[
dof
])
{
for
(
j
=
0
;
j
<
dow
;
j
++
)
{
if
(
!
visited
[
dof
])
{
for
(
int
j
=
0
;
j
<
dow
;
j
++
)
(
*
(
parametricCoords
[
j
]))[
dof
]
=
x
[
j
];
}
visited
[
dof
]
=
true
;
}
}
...
...
@@ -192,16 +189,16 @@ int main(int argc, char* argv[])
visited
.
clear
();
elInfo
=
stack
.
traverseFirst
(
torus
.
getMesh
(),
-
1
,
Mesh
::
CALL_LEAF_EL
|
Mesh
::
FILL_COORDS
);
while
(
elInfo
)
{
while
(
elInfo
)
{
basFcts
->
getLocalIndices
(
elInfo
->
getElement
(),
admin
,
localIndices
);
for
(
i
=
0
;
i
<
dim
+
1
;
i
++
)
{
for
(
int
i
=
0
;
i
<
dim
+
1
;
i
++
)
{
dof
=
localIndices
[
i
];
x
=
elInfo
->
getCoord
(
i
);
YRotation
::
rotate
(
x
,
rotation
);
if
(
!
visited
[
dof
])
{
for
(
j
=
0
;
j
<
dow
;
j
++
)
{
if
(
!
visited
[
dof
])
{
for
(
int
j
=
0
;
j
<
dow
;
j
++
)
(
*
(
parametricCoords
[
j
]))[
dof
]
=
x
[
j
];
}
visited
[
dof
]
=
true
;
}
}
...
...
@@ -214,7 +211,7 @@ int main(int argc, char* argv[])
for
(
i
=
0
;
i
<
dow
;
i
++
)
delete
parametricCoords
[
i
];
FREE_MEMORY
(
localIndices
,
DegreeOfFreedom
,
numBasFcts
)
;
delete
[]
localIndices
;
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment