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
17474936
Commit
17474936
authored
15 years ago
by
Jean-François Remacle
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
2d4ff0ac
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Solver/dgAlgorithm.cpp
+3
-3
3 additions, 3 deletions
Solver/dgAlgorithm.cpp
Solver/dgGroupOfElements.h
+20
-8
20 additions, 8 deletions
Solver/dgGroupOfElements.h
with
23 additions
and
11 deletions
Solver/dgAlgorithm.cpp
+
3
−
3
View file @
17474936
...
@@ -35,8 +35,8 @@ void dgAlgorithm::residualVolume ( dofManager &dof, // the DOF manager (maybe us
...
@@ -35,8 +35,8 @@ void dgAlgorithm::residualVolume ( dofManager &dof, // the DOF manager (maybe us
if
(
claw
.
diffusiveFlux
())
(
*
claw
.
diffusiveFlux
())(
DGE
,
fDiff
);
if
(
claw
.
diffusiveFlux
())
(
*
claw
.
diffusiveFlux
())(
DGE
,
fDiff
);
for
(
int
iUVW
=
0
;
iUVW
<
group
.
getDimUVW
();
iUVW
++
)
{
for
(
int
iUVW
=
0
;
iUVW
<
group
.
getDimUVW
();
iUVW
++
)
{
// prox
ies should be done...
// prox
y to the elementary values
fullMatrix
<
double
>
fuvwe
=
Fuvw
[
iUVW
]
.
linesProxy
(
iElement
);
fullMatrix
<
double
>
fuvwe
(
Fuvw
[
iUVW
]
,
iElement
*
claw
.
nbFields
(),
claw
.
nbFields
()
);
for
(
int
iXYZ
=
0
;
iXYZ
<
group
.
getDimXYZ
();
iXYZ
++
)
{
for
(
int
iXYZ
=
0
;
iXYZ
<
group
.
getDimXYZ
();
iXYZ
++
)
{
for
(
int
iPt
=
0
;
iPt
<
group
.
getNbIntegrationPoints
();
iPt
++
)
{
for
(
int
iPt
=
0
;
iPt
<
group
.
getNbIntegrationPoints
();
iPt
++
)
{
// get the right inv jacobian matrix dU/dX element
// get the right inv jacobian matrix dU/dX element
...
@@ -46,7 +46,7 @@ void dgAlgorithm::residualVolume ( dofManager &dof, // the DOF manager (maybe us
...
@@ -46,7 +46,7 @@ void dgAlgorithm::residualVolume ( dofManager &dof, // the DOF manager (maybe us
const
double
factor
=
invJ
*
detJ
;
const
double
factor
=
invJ
*
detJ
;
// compute fluxes in the reference coordinate system at this integration point
// compute fluxes in the reference coordinate system at this integration point
for
(
int
k
=
0
;
k
<
group
.
nbFields
();
k
++
)
{
for
(
int
k
=
0
;
k
<
group
.
nbFields
();
k
++
)
{
fuvwe
(
i
,
k
)
+=
(
fConv
[
iXYZ
](
i
,
k
)
+
fDiff
[
iXYZ
](
i
,
k
))
*
factor
;
fuvwe
(
i
Pt
,
k
)
+=
(
fConv
[
iXYZ
](
i
Pt
,
k
)
+
fDiff
[
iXYZ
](
i
Pt
,
k
))
*
factor
;
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Solver/dgGroupOfElements.h
+
20
−
8
View file @
17474936
...
@@ -20,9 +20,14 @@ class functionSpace;
...
@@ -20,9 +20,14 @@ class functionSpace;
class
dgElement
{
class
dgElement
{
MElement
*
_element
;
MElement
*
_element
;
double
*
_detJ
;
const
fullMatrix
<
double
>
&
_solution
,
&
_detJ
,
&
_integration
;
public:
public:
dgElement
(
MElement
*
e
,
double
*
detJ
);
dgElement
(
MElement
*
e
,
const
fullMatrix
<
double
>
&
sol
,
const
fullMatrix
<
double
>
&
detJ
,
const
fullMatrix
<
double
>
&
integ
)
:
_element
(
e
),
_solution
(
sol
),
_detJ
(
detJ
),
_integration
(
integ
)
{}
};
};
class
dgGroupOfElements
{
class
dgGroupOfElements
{
...
@@ -50,24 +55,31 @@ class dgGroupOfElements {
...
@@ -50,24 +55,31 @@ class dgGroupOfElements {
fullMatrix
<
double
>
*
_residual
;
fullMatrix
<
double
>
*
_residual
;
// dimension of the parametric space and of the real space
// dimension of the parametric space and of the real space
// may be different if the domain is a surface in 3D (manifold)
// may be different if the domain is a surface in 3D (manifold)
int
dimUVW
,
dimXYZ
;
int
_
dimUVW
,
_
dimXYZ
,
_nbFields
;
// forbid the copy
// forbid the copy
// dgGroupOfElements (const dgGroupOfElements &e, int order) {}
// dgGroupOfElements (const dgGroupOfElements &e, int order) {}
// dgGroupOfElements & operator = (const dgGroupOfElements &e) {}
// dgGroupOfElements & operator = (const dgGroupOfElements &e) {}
public:
public:
dgGroupOfElements
(
const
std
::
vector
<
MElement
*>
&
e
,
int
);
dgGroupOfElements
(
const
std
::
vector
<
MElement
*>
&
e
,
int
pOrder
);
virtual
~
dgGroupOfElements
();
virtual
~
dgGroupOfElements
();
inline
dgElement
getDGElement
(
int
i
)
const
;
inline
dgElement
getDGElement
(
int
i
)
const
{
return
dgElement
(
_elements
[
i
],
getSolution
(
i
),
getMapping
(
i
),
*
_integration
);}
inline
int
getNbElements
()
const
{
return
_elements
.
size
();}
inline
int
getNbElements
()
const
{
return
_elements
.
size
();}
inline
int
getNbFields
()
const
{
return
_nbFields
;}
inline
int
getNbNodes
()
const
{
return
_collocation
.
size1
();}
inline
int
getNbNodes
()
const
{
return
_collocation
.
size1
();}
inline
int
getNbIntegrationPoints
()
const
{
return
_collocation
.
size2
();}
inline
int
getNbIntegrationPoints
()
const
{
return
_collocation
.
size2
();}
inline
int
getDimUVW
()
const
{
return
dimUVW
;}
inline
int
getDimUVW
()
const
{
return
_
dimUVW
;}
inline
int
getDimXYZ
()
const
{
return
dimXYZ
;}
inline
int
getDimXYZ
()
const
{
return
_
dimXYZ
;}
inline
const
fullMatrix
<
double
>
&
getCollocationMatrix
()
const
{
return
*
_collocation
;}
inline
const
fullMatrix
<
double
>
&
getCollocationMatrix
()
const
{
return
*
_collocation
;}
inline
const
fullMatrix
<
double
>
&
getRedistributionMatrix
(
int
i
)
const
{
return
*
_redistribution
[
i
];}
inline
const
fullMatrix
<
double
>
&
getRedistributionMatrix
(
int
i
)
const
{
return
*
_redistribution
[
i
];}
inline
const
fullMatrix
<
double
>
&
getSolution
()
const
{
return
*
_solution
;}
inline
const
fullMatrix
<
double
>
&
getSolution
()
const
{
return
*
_solution
;}
// get a proxy on the solution for element iElement
inline
fullMatrix
<
double
>
&
getSolution
(
int
iElement
)
const
{
return
fullMatrix
<
double
>
(
*
_solution
,
iElement
*
_nbFields
,
_nbFields
);}
inline
const
fullMatrix
<
double
>
&
getResidual
()
const
{
return
*
_solution
;}
inline
const
fullMatrix
<
double
>
&
getResidual
()
const
{
return
*
_solution
;}
inline
double
getDetJ
(
int
iElement
,
int
iGaussPoint
)
// get a proxy on the residual for element iElement
inline
fullMatrix
<
double
>
&
getResidual
(
int
iElement
)
const
{
return
fullMatrix
<
double
>
(
*
_residual
,
iElement
*
_nbFields
,
_nbFields
);}
inline
double
getDetJ
(
int
iElement
,
int
iGaussPoint
)
const
{
return
(
*
_mapping
)(
iElement
,
10
*
iGaussPoint
+
9
);}
inline
double
getInvJ
(
int
iElement
,
int
iGaussPoint
,
int
i
,
int
j
)
const
{
return
(
*
_mapping
)(
iElement
,
10
*
iGaussPoint
+
i
+
3
*
j
);}
inline
fullMatrix
<
double
>
getMapping
(
int
iElement
)
const
{
return
fullMatrix
<
double
>
(
*
_mapping
,
iElement
,
1
);}
};
};
/*class dgFace {
/*class dgFace {
...
...
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