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
2b6f6ac0
Commit
2b6f6ac0
authored
11 years ago
by
Amaury Johnen
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
0a5fb2b8
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
Geo/MPyramid.h
+0
-1
0 additions, 1 deletion
Geo/MPyramid.h
Numeric/JacobianBasis.cpp
+15
-3
15 additions, 3 deletions
Numeric/JacobianBasis.cpp
Numeric/JacobianBasis.h
+8
-2
8 additions, 2 deletions
Numeric/JacobianBasis.h
Numeric/bezierBasis.cpp
+23
-11
23 additions, 11 deletions
Numeric/bezierBasis.cpp
with
46 additions
and
17 deletions
Geo/MPyramid.h
+
0
−
1
View file @
2b6f6ac0
...
...
@@ -165,7 +165,6 @@ class MPyramid : public MElement {
}
static
int
faces_pyramid
(
const
int
face
,
const
int
vert
)
{
// only triangular faces
static
const
int
f
[
5
][
4
]
=
{
{
0
,
1
,
4
,
-
1
},
{
3
,
0
,
4
,
-
1
},
...
...
This diff is collapsed.
Click to expand it.
Numeric/JacobianBasis.cpp
+
15
−
3
View file @
2b6f6ac0
...
...
@@ -27,8 +27,8 @@ JacobianBasis::JacobianBasis(int tag)
{
const
int
parentType
=
ElementType
::
ParentTypeFromTag
(
tag
);
const
int
order
=
ElementType
::
OrderFromTag
(
tag
);
const
int
jacobianOrder
=
JacobianBasis
::
jacobianOrder
(
parentType
,
order
);
const
int
primJacobianOrder
=
JacobianBasis
::
jacobianOrder
(
parentType
,
1
);
const
int
jacobianOrder
=
JacobianBasis
::
jacobianOrder
(
parentType
,
order
);
const
int
primJacobianOrder
=
JacobianBasis
::
jacobianOrder
(
parentType
,
1
);
fullMatrix
<
double
>
lagPoints
;
// Sampling points
...
...
@@ -728,7 +728,8 @@ fullMatrix<double> JacobianBasis::generateJacPointsPyramid(int order)
return
points
;
}
int
JacobianBasis
::
jacobianOrder
(
int
parentType
,
int
order
)
{
int
JacobianBasis
::
jacobianOrder
(
int
parentType
,
int
order
)
{
switch
(
parentType
)
{
case
TYPE_PNT
:
return
0
;
case
TYPE_LIN
:
return
order
-
1
;
...
...
@@ -745,3 +746,14 @@ int JacobianBasis::jacobianOrder(int parentType, int order) {
return
0
;
}
}
void
JacobianBasis
::
getGradientsFromNodes
(
const
fullMatrix
<
double
>
&
nodes
,
fullMatrix
<
double
>
*
dxyzdX
,
fullMatrix
<
double
>
*
dxyzdY
,
fullMatrix
<
double
>
*
dxyzdZ
)
const
{
if
(
dxyzdX
)
gradShapeMatX
.
mult
(
nodes
,
*
dxyzdX
);
if
(
dxyzdY
)
gradShapeMatY
.
mult
(
nodes
,
*
dxyzdY
);
if
(
dxyzdZ
)
gradShapeMatZ
.
mult
(
nodes
,
*
dxyzdZ
);
}
This diff is collapsed.
Click to expand it.
Numeric/JacobianBasis.h
+
8
−
2
View file @
2b6f6ac0
...
...
@@ -14,8 +14,6 @@
class
JacobianBasis
{
private:
const
bezierBasis
*
bezier
;
fullMatrix
<
double
>
gradShapeMatX
,
gradShapeMatY
,
gradShapeMatZ
;
fullMatrix
<
double
>
gradShapeMatXFast
,
gradShapeMatYFast
,
gradShapeMatZFast
;
fullVector
<
double
>
primGradShapeBarycenterX
,
primGradShapeBarycenterY
,
primGradShapeBarycenterZ
;
...
...
@@ -41,6 +39,8 @@ class JacobianBasis {
fullMatrix
<
double
>
&
JDJ
)
const
;
public
:
const
bezierBasis
*
bezier
;
JacobianBasis
(
int
tag
);
// Get methods
...
...
@@ -106,6 +106,12 @@ class JacobianBasis {
}
// Jacobian basis order and pyramidal basis
void
getGradientsFromNodes
(
const
fullMatrix
<
double
>
&
nodes
,
fullMatrix
<
double
>
*
dxyzdX
,
fullMatrix
<
double
>
*
dxyzdY
,
fullMatrix
<
double
>
*
dxyzdZ
)
const
;
//
static
int
jacobianOrder
(
int
parentType
,
int
order
);
static
fullMatrix
<
double
>
generateJacMonomialsPyramid
(
int
order
);
static
fullMatrix
<
double
>
generateJacPointsPyramid
(
int
order
);
...
...
This diff is collapsed.
Click to expand it.
Numeric/bezierBasis.cpp
+
23
−
11
View file @
2b6f6ac0
...
...
@@ -247,6 +247,10 @@ namespace {
return
subPoints
;
}
Msg
::
Error
(
"Subpoints for pyramid p>1 not implemented !"
);
return
std
::
vector
<
fullMatrix
<
double
>
>
();
/*
std::vector< fullMatrix<double> > subPoints(8);
fullMatrix<double> ref, prox;
...
...
@@ -296,6 +300,7 @@ namespace {
}
return subPoints;
*/
}
// Matrices generation
...
...
@@ -378,18 +383,18 @@ namespace {
for
(
int
j
=
0
;
j
<
ndofs
;
j
++
)
{
bez2Lag
(
i
,
j
)
=
nChoosek
(
order
,
exponent
(
j
,
2
))
*
pow
(
point
(
i
,
2
),
exponent
(
j
,
2
))
//FIXME use pow_int
*
pow
(
1.
-
point
(
i
,
2
),
order
-
exponent
(
j
,
2
));
*
pow
_int
(
point
(
i
,
2
),
exponent
(
j
,
2
))
*
pow
_int
(
1.
-
point
(
i
,
2
),
order
-
exponent
(
j
,
2
));
double
p
=
order
+
2
-
exponent
(
j
,
2
);
double
denom
=
1.
-
point
(
i
,
2
);
bez2Lag
(
i
,
j
)
*=
nChoosek
(
p
,
exponent
(
j
,
0
))
*
nChoosek
(
p
,
exponent
(
j
,
1
))
*
pow
(
point
(
i
,
0
)
/
denom
,
exponent
(
j
,
0
))
*
pow
(
point
(
i
,
1
)
/
denom
,
exponent
(
j
,
1
))
*
pow
(
1.
-
point
(
i
,
0
)
/
denom
,
p
-
exponent
(
j
,
0
))
*
pow
(
1.
-
point
(
i
,
1
)
/
denom
,
p
-
exponent
(
j
,
1
));
*
pow
_int
(
point
(
i
,
0
)
/
denom
,
exponent
(
j
,
0
))
*
pow
_int
(
point
(
i
,
1
)
/
denom
,
exponent
(
j
,
1
))
*
pow
_int
(
1.
-
point
(
i
,
0
)
/
denom
,
p
-
exponent
(
j
,
0
))
*
pow
_int
(
1.
-
point
(
i
,
1
)
/
denom
,
p
-
exponent
(
j
,
1
));
}
}
return
bez2Lag
;
...
...
@@ -458,16 +463,23 @@ void bezierBasis::_construct(int parentType, int p)
dim
=
3
;
numLagCoeff
=
8
;
exponents
=
JacobianBasis
::
generateJacMonomialsPyramid
(
order
);
subPoints
=
generateSubPointsPyr
(
order
);
numDivisions
=
static_cast
<
int
>
(
subPoints
.
size
());
if
(
order
<
2
)
{
subPoints
=
generateSubPointsPyr
(
order
);
numDivisions
=
static_cast
<
int
>
(
subPoints
.
size
());
}
else
{
numDivisions
=
8
;
static
int
a
=
0
;
if
(
++
a
==
1
)
Msg
::
Warning
(
"Subdivision not available for pyramid p>1"
);
}
fullMatrix
<
double
>
bezierPoints
=
exponents
;
bezierPoints
.
scale
(
1.
/
(
order
+
2
));
matrixBez2Lag
=
generateBez2LagMatrixPyramid
(
exponents
,
bezierPoints
,
order
);
matrixBez2Lag
.
invert
(
matrixLag2Bez
);
subDivisor
=
generateSubDivisorPyramid
(
exponents
,
subPoints
,
matrixLag2Bez
,
order
);
if
(
order
<
2
)
subDivisor
=
generateSubDivisorPyramid
(
exponents
,
subPoints
,
matrixLag2Bez
,
order
);
return
;
}
...
...
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