Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux-lecture
Commits
71ec7ec6
Commit
71ec7ec6
authored
Feb 28, 2022
by
Katharina Heck
Committed by
Theresa Schollenberger
Apr 27, 2022
Browse files
[cleanup] fix temperatures in efm exercises
parent
d2ca5040
Pipeline
#15493
passed with stage
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lecture/efm/1p2c_2p_2p2c/CMakeLists.txt
View file @
71ec7ec6
...
...
@@ -14,7 +14,7 @@ dumux_add_test(NAME lens2p2cexercise3
CMD_ARGS --script fuzzy
--files
${
CMAKE_SOURCE_DIR
}
/lecture/references/lens-2p2c-exercise3-reference.vtu
${
CMAKE_CURRENT_BINARY_DIR
}
/lens-2p2c-00011.vtu
--command
"
${
CMAKE_CURRENT_BINARY_DIR
}
/lens2p2cexercise3 -ParameterFile
${
CMAKE_CURRENT_SOURCE_DIR
}
/exercise3.input -Problem.Name lens-2p2c"
)
--command
"
${
CMAKE_CURRENT_BINARY_DIR
}
/lens2p2cexercise3 -ParameterFile
${
CMAKE_CURRENT_SOURCE_DIR
}
/exercise3.input -Problem.Name lens-2p2c
-SpatialParams.Temperature 313.15
"
)
dumux_add_test
(
NAME lens1p2cexercise3
SOURCES lens1p2cexercise3.cc
...
...
lecture/efm/1p2c_2p_2p2c/exercise3.input
View file @
71ec7ec6
...
...
@@ -25,8 +25,7 @@ Swr = 0.05 # residual saturation of the wetting phase in the c
Snr = 0.1 # residual saturation of the nonwetting phase in the coarse soil [-]
[SpatialParams]
Temperature = 10.0 # 10 degree Celcius for 2p problem and 1p2c problem
# 40 degree Celcius for 2p2c problem
Temperature = 283.15 # 10 degree Celcius for 2p problem and 1p2c problem, 40 degree Celcius for 2p2c problem
[Boundary]
LowerPressure = 2.0e5 # Dirichlet pressure value for the boundary condition at the lower boundary [Pa]
...
...
lecture/efm/1p2c_2p_2p2c/lens2pspatialparams.hh
View file @
71ec7ec6
...
...
@@ -71,7 +71,7 @@ public:
lensK_
=
getParam
<
Scalar
>
(
"SpatialParams.Fine.Permeability"
);
outerK_
=
getParam
<
Scalar
>
(
"SpatialParams.Coarse.Permeability"
);
temperature_
=
273.15
+
getParam
<
Scalar
>
(
"SpatialParams.Temperature"
);
temperature_
=
getParam
<
Scalar
>
(
"SpatialParams.Temperature"
);
}
/*!
* \brief Function for defining the (intrinsic) permeability \f$[m^2]\f$
...
...
lecture/efm/1p2cvs2p/exercise1.input
View file @
71ec7ec6
...
...
@@ -12,7 +12,7 @@ UpperRight = 5 4 # upper right corner coordinates (x,
Cells = 40 64 # grid resolution in (x,y) direction [-]
[SpatialParams]
Temperature =
10.0
# Temperature for the entire domain [
°C]
Temperature =
283.15
# Temperature for the entire domain [
K]
Fine.Permeability = 3.1e-11 # intrinsic permeability of the fine porous medium [m^2]
Coarse.Permeability = 3.1e-10 # intrinsic permeability of the coarse porous medium [m^2]
...
...
lecture/mm/henryproblem/henry1p2c/henry1p2cspatialparameters.hh
View file @
71ec7ec6
...
...
@@ -26,7 +26,6 @@
#define DUMUX_HENRY1P2C_SPATIAL_PARAMETERS_HH
#include
<dumux/porousmediumflow/fvspatialparams1p.hh>
#include
<dumux/material/fluidmatrixinteractions/2p/linearmaterial.hh>
namespace
Dumux
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment