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
232e2b2c
Commit
232e2b2c
authored
Jan 15, 2013
by
Praetorius, Simon
Browse files
Views.h updated to current AMDiS version, i.e. getDofIndexCoords calls modified
parent
29c5ebaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
extensions/Views.h
View file @
232e2b2c
...
...
@@ -443,7 +443,7 @@ inline void interpol_coords(Vector &vec, DOFVector<TOut> &result)
{
typedef
typename
ValueType
<
Vector
>::
type
T
;
DOFVector
<
WorldVector
<
double
>
>
coords
(
result
.
getFeSpace
(),
"coords"
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
result
.
getFeSpace
(),
coords
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
coords
);
DOFIterator
<
WorldVector
<
double
>
>
it_coords
(
&
coords
,
USED_DOFS
);
DOFIterator
<
TOut
>
it_result
(
&
result
,
USED_DOFS
);
...
...
@@ -460,7 +460,7 @@ inline void transformDOF_coords(Vector &vec,
{
typedef
typename
ValueType
<
Vector
>::
type
T
;
DOFVector
<
WorldVector
<
double
>
>
coords
(
result
.
getFeSpace
(),
"coords"
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
result
.
getFeSpace
(),
coords
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
coords
);
DOFIterator
<
WorldVector
<
double
>
>
it_coords
(
&
coords
,
USED_DOFS
);
DOFIterator
<
TOut
>
it_result
(
&
result
,
USED_DOFS
);
...
...
@@ -480,7 +480,7 @@ inline void transformDOF_coords(Vector1 &vec1, Vector2 &vec2,
typedef
typename
ValueType
<
Vector1
>::
type
T1
;
typedef
typename
ValueType
<
Vector2
>::
type
T2
;
DOFVector
<
WorldVector
<
double
>
>
coords
(
result
.
getFeSpace
(),
"coords"
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
result
.
getFeSpace
(),
coords
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
coords
);
DOFIterator
<
WorldVector
<
double
>
>
it_coords
(
&
coords
,
USED_DOFS
);
DOFIterator
<
TOut
>
it_result
(
&
result
,
USED_DOFS
);
...
...
@@ -504,7 +504,7 @@ inline void transformDOF_coords(Vector1 &vec1, Vector2 &vec2, Vector3 &vec3,
typedef
typename
ValueType
<
Vector2
>::
type
T2
;
typedef
typename
ValueType
<
Vector3
>::
type
T3
;
DOFVector
<
WorldVector
<
double
>
>
coords
(
result
.
getFeSpace
(),
"coords"
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
result
.
getFeSpace
(),
coords
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
coords
);
DOFIterator
<
WorldVector
<
double
>
>
it_coords
(
&
coords
,
USED_DOFS
);
DOFIterator
<
TOut
>
it_result
(
&
result
,
USED_DOFS
);
...
...
@@ -532,7 +532,7 @@ inline void transformDOF_coords(Vector1 &vec1, Vector2 &vec2, Vector3 &vec3, Vec
typedef
typename
ValueType
<
Vector3
>::
type
T3
;
typedef
typename
ValueType
<
Vector4
>::
type
T4
;
DOFVector
<
WorldVector
<
double
>
>
coords
(
result
.
getFeSpace
(),
"coords"
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
result
.
getFeSpace
(),
coords
);
result
.
getFeSpace
()
->
getMesh
()
->
getDofIndexCoords
(
coords
);
DOFIterator
<
WorldVector
<
double
>
>
it_coords
(
&
coords
,
USED_DOFS
);
DOFIterator
<
TOut
>
it_result
(
&
result
,
USED_DOFS
);
...
...
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