Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux-course
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux-course
Commits
e395a590
Commit
e395a590
authored
6 years ago
by
Beatrix Becker
Browse files
Options
Downloads
Patches
Plain Diff
[exercise fluidsystem][2pproblem] add gnuplot output also in solution
parent
790edbe5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!21
Feature/exercise fluidsystem gnuplot
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
exercises/solution/exercise-fluidsystem/2pproblem.hh
+37
-0
37 additions, 0 deletions
exercises/solution/exercise-fluidsystem/2pproblem.hh
exercises/solution/exercise-fluidsystem/exercise-fluidsystem_a.input
+3
-0
3 additions, 0 deletions
...olution/exercise-fluidsystem/exercise-fluidsystem_a.input
with
40 additions
and
0 deletions
exercises/solution/exercise-fluidsystem/2pproblem.hh
+
37
−
0
View file @
e395a590
...
@@ -59,6 +59,9 @@
...
@@ -59,6 +59,9 @@
// The two-phase immiscible fluid system
// The two-phase immiscible fluid system
#include
<dumux/material/fluidsystems/2pimmiscible.hh>
#include
<dumux/material/fluidsystems/2pimmiscible.hh>
// The interface to create plots during simulation
#include
<dumux/io/gnuplotinterface.hh>
namespace
Dumux
{
namespace
Dumux
{
// Forward declaration of the problem class
// Forward declaration of the problem class
template
<
class
TypeTag
>
class
ExerciseFluidsystemProblemTwoP
;
template
<
class
TypeTag
>
class
ExerciseFluidsystemProblemTwoP
;
...
@@ -129,6 +132,7 @@ class ExerciseFluidsystemProblemTwoP : public PorousMediumFlowProblem<TypeTag>
...
@@ -129,6 +132,7 @@ class ExerciseFluidsystemProblemTwoP : public PorousMediumFlowProblem<TypeTag>
using
FVGridGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
);
using
FVGridGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
);
using
FVElementGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
)
::
LocalView
;
using
FVElementGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
)
::
LocalView
;
using
FluidSystem
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
);
using
FluidSystem
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
);
using
FluidState
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidState
);
enum
{
enum
{
waterPressureIdx
=
Indices
::
pressureIdx
,
waterPressureIdx
=
Indices
::
pressureIdx
,
...
@@ -157,6 +161,10 @@ public:
...
@@ -157,6 +161,10 @@ public:
// set the depth of the bottom of the reservoir
// set the depth of the bottom of the reservoir
depthBOR_
=
this
->
fvGridGeometry
().
bBoxMax
()[
dimWorld
-
1
];
depthBOR_
=
this
->
fvGridGeometry
().
bBoxMax
()[
dimWorld
-
1
];
// plot density over pressure of the phase consisting of your component
if
(
getParam
<
bool
>
(
"Output.PlotDensity"
))
plotDensity_
();
}
}
/*!
/*!
...
@@ -283,8 +291,37 @@ public:
...
@@ -283,8 +291,37 @@ public:
}
}
private
:
private
:
void
plotDensity_
()
{
FluidState
fluidState
;
fluidState
.
setTemperature
(
temperature
());
int
numberOfPoints
=
100
;
Scalar
xMin
=
1e4
;
Scalar
xMax
=
1e7
;
Scalar
spacing
=
std
::
pow
((
xMax
/
xMin
),
1.0
/
(
numberOfPoints
-
1
));
std
::
vector
<
double
>
x
(
numberOfPoints
);
std
::
vector
<
double
>
y
(
numberOfPoints
);
for
(
int
i
=
0
;
i
<
numberOfPoints
;
++
i
)
x
[
i
]
=
xMin
*
std
::
pow
(
spacing
,
i
);
for
(
int
i
=
0
;
i
<
numberOfPoints
;
++
i
)
{
fluidState
.
setPressure
(
FluidSystem
::
phase1Idx
,
x
[
i
]);
y
[
i
]
=
FluidSystem
::
density
(
fluidState
,
FluidSystem
::
phase1Idx
);
}
gnuplot_
.
resetPlot
();
gnuplot_
.
setXRange
(
xMin
,
xMax
);
gnuplot_
.
setOption
(
"set logscale x 10"
);
gnuplot_
.
setOption
(
"set key left top"
);
gnuplot_
.
setYRange
(
1440
,
1480
);
gnuplot_
.
setXlabel
(
"pressure [Pa]"
);
gnuplot_
.
setYlabel
(
"density [kg/m^3]"
);
gnuplot_
.
addDataSetToPlot
(
x
,
y
,
"YourComponentPhase_density.dat"
,
"w l t 'Phase consisting of your component'"
);
gnuplot_
.
plot
(
"YourComponentPhase_density"
);
}
Scalar
eps_
;
//! small epsilon value
Scalar
eps_
;
//! small epsilon value
Scalar
depthBOR_
;
//! depth at the bottom of the reservoir
Scalar
depthBOR_
;
//! depth at the bottom of the reservoir
Dumux
::
GnuplotInterface
<
double
>
gnuplot_
;
//! collects data for plotting
};
};
}
}
...
...
This diff is collapsed.
Click to expand it.
exercises/solution/exercise-fluidsystem/exercise-fluidsystem_a.input
+
3
−
0
View file @
e395a590
...
@@ -8,3 +8,6 @@ Name = exercise-fluidsystem_a_solution # name will be given to e.g. to the vtk r
...
@@ -8,3 +8,6 @@ Name = exercise-fluidsystem_a_solution # name will be given to e.g. to the vtk r
[Grid]
[Grid]
UpperRight = 60 60 # x-/y-coordinates of the upper-right corner of the grid [m]
UpperRight = 60 60 # x-/y-coordinates of the upper-right corner of the grid [m]
Cells = 60 60 # x-/y-resolution of the grid
Cells = 60 60 # x-/y-resolution of the grid
[Output]
PlotDensity = true # plot density over pressure for your component
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