Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
dorie
dorie
Commits
a49788e6
Commit
a49788e6
authored
Aug 09, 2019
by
Lukas Riedel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Flip signs in Richards FV upwinding queries
parent
373885e6
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dune/dorie/model/richards/local_operator_FV.hh
dune/dorie/model/richards/local_operator_FV.hh
+3
-2
No files found.
dune/dorie/model/richards/local_operator_FV.hh
View file @
a49788e6
...
...
@@ -173,7 +173,8 @@ public:
// Upwinding conductivity factor
RangeU
cond_upwind_factor
(
0.0
);
if
(
dudn
<
0.0
)
{
// NOTE: Sign seems inverted due to definition of 'water_flux_n' below.
if
(
dudn
>
0.0
)
{
// inward flux
cond_upwind_factor
=
cond_o
/
cond_sat_o
;
}
...
...
@@ -188,7 +189,7 @@ public:
else
// RichardsFVUpwinding::fullUpwind
{
// No average: Use upwind conductivity
if
(
dudn
<
0.0
)
{
if
(
dudn
>
0.0
)
{
// inward flux
cond_f
=
cond_o
;
}
...
...
Write
Preview
Markdown
is supported
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