Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Backofen, Rainer
amdis
Commits
3a7156a4
Commit
3a7156a4
authored
May 25, 2009
by
Thomas Witkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapted demos to new AMDiS (DELETE/delete and dirichlet boundary conditions).
parent
83b6de2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
19 deletions
+14
-19
demo/src/couple.cc
demo/src/couple.cc
+0
-2
demo/src/torus.cc
demo/src/torus.cc
+14
-17
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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