Skip to content
GitLab
Menu
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
4c596700
Commit
4c596700
authored
Nov 05, 2020
by
Kilian Weishaupt
Committed by
Ned Coltman
Nov 05, 2020
Browse files
[fuelcells][spatialParams] Use correct residual saturation
parent
766cb8d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
lecture/mm/fuelcell/fuelcell.input
View file @
4c596700
...
...
@@ -55,7 +55,3 @@ FreqOutput = 1 # frequency of VTK output
SolidDensity = 1430 # [kg/m^3]
SolidThermalConductivity = 15.6 # [W/(m*K)]
SolidHeatCapacity = 710 # [J/(kg*K)]
[SpatialParams]
Swr = 0.05
Snr = 0.05
lecture/mm/fuelcell/fuelcellspatialparams.hh
View file @
4c596700
...
...
@@ -96,7 +96,8 @@ public:
lambdaSolid_
=
15.6
;
// [W/(m*K)] Acosta thermal conductivity used in capillary pressure-saturation
typename
PcKrSwCurve
::
BasicParams
params
(
-
1168.75
,
8.5
,
-
0.2
,
-
700
,
0.0
);
pcKrSwCurve_
=
std
::
make_unique
<
PcKrSwCurve
>
(
params
);
typename
PcKrSwCurve
::
EffToAbsParams
effToAbsParams
(
0.05
,
0.05
);
pcKrSwCurve_
=
std
::
make_unique
<
PcKrSwCurve
>
(
params
,
effToAbsParams
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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