Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
38f41779
Commit
38f41779
authored
12 years ago
by
Nicolas Marsic
Browse files
Options
Downloads
Patches
Plain Diff
HexNodeBasis (missing face contribution)
parent
0e90a1f1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
FunctionSpace/CMakeLists.txt
+1
-0
1 addition, 0 deletions
FunctionSpace/CMakeLists.txt
FunctionSpace/HexNodeBasis.cpp
+247
-0
247 additions, 0 deletions
FunctionSpace/HexNodeBasis.cpp
FunctionSpace/HexNodeBasis.h
+29
-0
29 additions, 0 deletions
FunctionSpace/HexNodeBasis.h
with
277 additions
and
0 deletions
FunctionSpace/CMakeLists.txt
+
1
−
0
View file @
38f41779
...
@@ -15,6 +15,7 @@ set(SRC
...
@@ -15,6 +15,7 @@ set(SRC
TriNodeBasis.cpp
TriNodeBasis.cpp
TriEdgeBasis.cpp
TriEdgeBasis.cpp
TriNedelecBasis.cpp
TriNedelecBasis.cpp
HexNodeBasis.cpp
LocalFunctionSpace.cpp
LocalFunctionSpace.cpp
LocalFunctionSpaceScalar.cpp
LocalFunctionSpaceScalar.cpp
...
...
This diff is collapsed.
Click to expand it.
FunctionSpace/HexNodeBasis.cpp
0 → 100644
+
247
−
0
View file @
38f41779
#include
"HexNodeBasis.h"
#include
"Legendre.h"
HexNodeBasis
::
HexNodeBasis
(
const
int
order
){
// Set Basis Type //
this
->
order
=
order
;
type
=
0
;
size
=
(
order
+
1
)
*
(
order
+
1
)
*
(
order
+
1
);
nodeNbr
=
8
;
dim
=
3
;
// Alloc Temporary Space //
Polynomial
*
legendre
=
new
Polynomial
[
order
];
Polynomial
*
lifting
=
new
Polynomial
[
8
];
// Legendre Polynomial //
Legendre
::
integrated
(
legendre
,
order
);
// Lifting //
lifting
[
0
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
lifting
[
1
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
lifting
[
2
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
1
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
lifting
[
3
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
1
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
lifting
[
4
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
+
Polynomial
(
1
,
0
,
0
,
1
);
lifting
[
5
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
+
Polynomial
(
1
,
0
,
0
,
1
);
lifting
[
6
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
1
,
0
))
+
Polynomial
(
1
,
0
,
0
,
1
);
lifting
[
7
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
+
(
Polynomial
(
1
,
0
,
1
,
0
))
+
Polynomial
(
1
,
0
,
0
,
1
);
// Basis //
basis
=
new
std
::
vector
<
Polynomial
>
(
size
);
// Vertex Based (Lagrange) //
(
*
basis
)[
0
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
(
*
basis
)[
1
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
(
*
basis
)[
2
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
1
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
(
*
basis
)[
3
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
1
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
0
,
1
));
(
*
basis
)[
4
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
*
Polynomial
(
1
,
0
,
0
,
1
);
(
*
basis
)[
5
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
0
,
1
,
0
))
*
Polynomial
(
1
,
0
,
0
,
1
);
(
*
basis
)[
6
]
=
(
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
1
,
0
))
*
Polynomial
(
1
,
0
,
0
,
1
);
(
*
basis
)[
7
]
=
(
Polynomial
(
1
,
0
,
0
,
0
)
-
Polynomial
(
1
,
1
,
0
,
0
))
*
(
Polynomial
(
1
,
0
,
1
,
0
))
*
Polynomial
(
1
,
0
,
0
,
1
);
// Edge Based //
// Keep counting
int
i
=
8
;
// Points definig Edges
int
edge1
[
12
]
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
0
,
1
,
2
,
3
};
int
edge2
[
12
]
=
{
1
,
2
,
3
,
0
,
5
,
6
,
7
,
4
,
4
,
5
,
6
,
7
};
for
(
int
l
=
1
;
l
<
order
;
l
++
){
for
(
int
e
=
0
;
e
<
12
;
e
++
){
(
*
basis
)[
i
]
=
legendre
[
l
].
compose
(
lifting
[
edge1
[
e
]]
-
lifting
[
edge2
[
e
]])
*
((
*
basis
)[
edge1
[
e
]]
+
(
*
basis
)[
edge2
[
e
]]);
i
++
;
}
}
// Face Based //
// Points definig Faces
int
face1
[
6
]
=
{
0
,
3
,
2
,
1
,
5
,
4
};
int
face2
[
6
]
=
{
1
,
7
,
6
,
0
,
6
,
7
};
int
face3
[
6
]
=
{
2
,
6
,
5
,
4
,
7
,
3
};
int
face4
[
6
]
=
{
3
,
2
,
1
,
5
,
4
,
0
};
for
(
int
l1
=
1
;
l1
<
order
;
l1
++
){
for
(
int
l2
=
1
;
l2
<
order
;
l2
++
){
for
(
int
f
=
0
;
f
<
6
;
f
++
){
(
*
basis
)[
i
]
=
Polynomial
(
42
,
0
,
0
,
0
);
i
++
;
}
}
}
// Cell Based //
Polynomial
px
=
Polynomial
(
2
,
1
,
0
,
0
);
Polynomial
py
=
Polynomial
(
2
,
0
,
1
,
0
);
Polynomial
pz
=
Polynomial
(
2
,
0
,
0
,
1
);
px
=
px
-
Polynomial
(
1
,
0
,
0
,
0
);
py
=
py
-
Polynomial
(
1
,
0
,
0
,
0
);
pz
=
pz
-
Polynomial
(
1
,
0
,
0
,
0
);
for
(
int
l1
=
1
;
l1
<
order
;
l1
++
){
for
(
int
l2
=
1
;
l2
<
order
;
l2
++
){
for
(
int
l3
=
1
;
l3
<
order
;
l3
++
){
(
*
basis
)[
i
]
=
legendre
[
l1
].
compose
(
px
)
*
legendre
[
l2
].
compose
(
py
)
*
legendre
[
l3
].
compose
(
pz
);
i
++
;
}
}
}
// Free Temporary Sapce //
delete
[]
legendre
;
delete
[]
lifting
;
}
HexNodeBasis
::~
HexNodeBasis
(
void
){
delete
basis
;
}
/*
#include <cstdio>
int main(void){
const int P = 2;
const double d = 0.05;
HexNodeBasis b(P);
const std::vector<Polynomial>& basis = b.getBasis();
printf("\n");
printf("clear all;\n");
printf("\n");
printf("\n");
printf("Order = %d\n", b.getOrder());
printf("Type = %d\n", b.getType());
printf("Size = %d\n", b.getSize());
printf("NodeNumber = %d\n", b.getNodeNbr());
printf("Dimension = %d\n", b.getDim());
printf("\n");
printf("function r = p(i, x, y, z)\n");
printf("p = zeros(%d, 1);\n", b.getSize());
printf("\n");
for(int i = 0; i < b.getSize(); i++)
printf("p(%d) = %s;\n", i + 1, basis[i].toString().c_str());
printf("\n");
printf("r = p(i, 1);\n");
printf("end\n");
printf("\n");
/*
printf("d = %f;\nx = [0:d:1];\ny = x;\nz = x;\n\nlx = length(x);\nly = length(y);\nlz = length(z);\n\n", d);
for(int i = 0; i < b.getSize(); i++)
printf("p%d = zeros(lx, ly, lz);\n", i + 1);
printf("\n");
printf("for i = 1:lx\n");
printf("for j = 1:ly\n");
printf("for k = 1:lz\n");
printf("\n");
for(int i = 0; i < b.getSize(); i++)
printf("p%d(j, i, k) = p(%d, x(i), y(j), z(k));\n", i + 1, i + 1);
printf("end\n");
printf("end\n");
printf("end\n");
printf("\n");
printf("SizeOfBasis = %lu\n", sizeof(b) + sizeof(basis) * b.getSize());
printf("\n");
printf("\n");
for(int i = b.getSize(); i > 0; i--){
printf("figure;\n");
printf("hold on;\n");
printf("for k = 1:lz\n");
printf("surf(x, y, p%d(:, :, k) + z(k));\n", i);
printf("end\n");
printf("hold off;\n");
}
printf("\n");
*/
return
0
;
}
*/
This diff is collapsed.
Click to expand it.
FunctionSpace/HexNodeBasis.h
0 → 100644
+
29
−
0
View file @
38f41779
#ifndef _HEXNODEBASIS_H_
#define _HEXNODEBASIS_H_
#include
"BasisScalar.h"
/**
@class HexNodeBasis
@brief A Node-Basis for Hexahedrons
This class can instantiate a Node-Based Basis
(high or low order) for Hexahedrons.@n
It uses
<a href="http://www.hpfem.jku.at/publications/szthesis.pdf">Zaglmayr's</a>
Basis for @em high @em order Polynomial%s generation.@n
*/
class
HexNodeBasis
:
public
BasisScalar
{
public:
//! Returns a new Node-Basis for Hexahedrons of the given order
//! @param order The order of the Basis
HexNodeBasis
(
const
int
order
);
//! @return Deletes this Basis
//!
virtual
~
HexNodeBasis
(
void
);
};
#endif
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