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
fe0a8741
Commit
fe0a8741
authored
15 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
dg : correct sizes in shallow water 1d
parent
2cf77a37
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Solver/dgConservationLawShallowWater1d.cpp
+11
-5
11 additions, 5 deletions
Solver/dgConservationLawShallowWater1d.cpp
with
11 additions
and
5 deletions
Solver/dgConservationLawShallowWater1d.cpp
+
11
−
5
View file @
fe0a8741
...
...
@@ -8,7 +8,7 @@ class dgConservationLawShallowWater1d::advection: public dataCacheDouble {
dataCacheDouble
&
sol
;
public:
advection
(
dataCacheMap
&
cacheMap
)
:
dataCacheDouble
(
cacheMap
,
1
,
9
),
dataCacheDouble
(
cacheMap
,
1
,
6
),
sol
(
cacheMap
.
getSolution
(
this
))
{};
void
_eval
()
{
...
...
@@ -19,6 +19,12 @@ class dgConservationLawShallowWater1d::advection: public dataCacheDouble {
// flux_x
_value
(
i
,
0
)
=
(
h
+
eta
)
*
u
;
_value
(
i
,
1
)
=
.5
*
u
*
u
+
g
*
eta
;
// flux_y
_value
(
i
,
2
)
=
0
;
_value
(
i
,
3
)
=
0
;
// flux_z
_value
(
i
,
4
)
=
0
;
_value
(
i
,
5
)
=
0
;
}
}
};
...
...
@@ -44,7 +50,7 @@ class dgConservationLawShallowWater1d::source: public dataCacheDouble {
dataCacheDouble
&
xyz
,
&
solution
,
&
solutionGradient
;
public
:
source
(
dataCacheMap
&
cacheMap
)
:
dataCacheDouble
(
cacheMap
,
1
,
3
),
dataCacheDouble
(
cacheMap
,
1
,
2
),
xyz
(
cacheMap
.
getParametricCoordinates
(
this
)),
solution
(
cacheMap
.
getSolution
(
this
)),
solutionGradient
(
cacheMap
.
getSolutionGradient
(
this
))
...
...
@@ -63,7 +69,7 @@ class dgConservationLawShallowWater1d::riemann:public dataCacheDouble {
dataCacheDouble
&
normals
,
&
solL
,
&
solR
;
public:
riemann
(
dataCacheMap
&
cacheMapLeft
,
dataCacheMap
&
cacheMapRight
)
:
dataCacheDouble
(
cacheMapLeft
,
1
,
6
),
dataCacheDouble
(
cacheMapLeft
,
1
,
4
),
normals
(
cacheMapLeft
.
getNormals
(
this
)),
solL
(
cacheMapLeft
.
getSolution
(
this
)),
solR
(
cacheMapRight
.
getSolution
(
this
))
...
...
@@ -101,7 +107,7 @@ class dgConservationLawShallowWater1d::boundaryWall : public dgBoundaryCondition
dataCacheDouble
&
sol
,
&
normals
;
public:
term
(
dataCacheMap
&
cacheMap
)
:
dataCacheDouble
(
cacheMap
,
1
,
3
),
dataCacheDouble
(
cacheMap
,
1
,
2
),
sol
(
cacheMap
.
getSolution
(
this
)),
normals
(
cacheMap
.
getNormals
(
this
)){}
void
_eval
()
{
...
...
@@ -129,7 +135,7 @@ class dgConservationLawShallowWater1d::clipToPhysics : public dataCacheDouble {
double
_hMin
;
public:
clipToPhysics
(
dataCacheMap
&
cacheMap
,
double
hMin
)
:
dataCacheDouble
(
cacheMap
,
1
,
4
),
dataCacheDouble
(
cacheMap
,
1
,
2
),
sol
(
cacheMap
.
getSolution
(
this
))
{
_hMin
=
hMin
;
...
...
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