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-course
Commits
1e190f9f
Commit
1e190f9f
authored
Oct 30, 2020
by
Roman Winter
Browse files
[cleanup] remove braces
parent
7f47b54a
Changes
1
Hide whitespace changes
Inline
Side-by-side
exercises/solution/exercise-biomineralization/fluidsystems/biomin.hh
View file @
1e190f9f
...
...
@@ -332,20 +332,14 @@ public:
// assume brine with viscosity effect of Ca for the liquid phase.
if
(
phaseIdx
==
liquidPhaseIdx
)
{
return
Brine
::
liquidViscosity
(
temperature
,
pressure
);
}
// assume pure CO2 for the gas phase.
else
if
(
phaseIdx
==
gasPhaseIdx
)
{
return
CO2
::
gasViscosity
(
temperature
,
pressure
);
}
else
{
DUNE_THROW
(
Dune
::
InvalidStateException
,
"Invalid phase index "
<<
phaseIdx
);
}
}
...
...
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