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
Commits
2aa49985
Commit
2aa49985
authored
Sep 07, 2021
by
Kilian Weishaupt
Committed by
Timo Koch
Sep 15, 2021
Browse files
[ff][staggered] Add freeflow coupling manager (mass-momentum)
parent
73311da9
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
dumux/freeflow/navierstokes/problem.hh
View file @
2aa49985
...
...
@@ -340,7 +340,7 @@ public:
const
bool
isPreviousTimeStep
=
false
)
const
{
if
constexpr
(
isCoupled_
)
return
couplingManager_
->
getI
nsideAndOutsideDensity
(
element
,
fvGeometry
,
scvf
,
isPreviousTimeStep
);
return
couplingManager_
->
i
nsideAndOutsideDensity
(
element
,
fvGeometry
,
scvf
,
isPreviousTimeStep
);
else
{
const
auto
rho
=
asImp_
().
densityAtPos
(
scvf
.
ipGlobal
());
...
...
dumux/multidomain/CMakeLists.txt
View file @
2aa49985
...
...
@@ -2,6 +2,7 @@ add_subdirectory(boundary)
add_subdirectory
(
embedded
)
add_subdirectory
(
facet
)
add_subdirectory
(
io
)
add_subdirectory
(
staggeredfreeflow
)
file
(
GLOB DUMUX_MULTIDOMAIN_HEADERS *.hh *.inc
)
install
(
FILES
${
DUMUX_MULTIDOMAIN_HEADERS
}
...
...
dumux/multidomain/staggeredfreeflow/CMakeLists.txt
0 → 100644
View file @
2aa49985
file
(
GLOB DUMUX_MULTIDOMAIN_STAGGEREDFREEFLOW_HEADERS *.hh *.inc
)
install
(
FILES
${
DUMUX_MULTIDOMAIN_STAGGEREDFREEFLOW_HEADERS
}
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
/dumux/multidomain/staggeredfreeflow
)
dumux/multidomain/staggeredfreeflow/couplingmanager.hh
0 → 100644
View file @
2aa49985
This diff is collapsed.
Click to expand it.
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