Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hyteg
hyteg
Commits
f8e0712d
Commit
f8e0712d
authored
Oct 18, 2021
by
Nils Kohl
🌝
Browse files
Added output of coarse grid unknowns in MC app.
parent
617d87a8
Pipeline
#34871
failed with stages
in 113 minutes and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
apps/2020-moc/MantleConvection.cpp
View file @
f8e0712d
...
...
@@ -343,8 +343,8 @@ void runBenchmark( real_t cflMax,
const
real_t
hMin
=
MeshQuality
::
getMinimalEdgeLength
(
storage
,
level
);
const
real_t
hMax
=
MeshQuality
::
getMaximalEdgeLength
(
storage
,
level
);
const
real_t
diffusivity
=
1.0
;
const
real_t
internalHeating
=
0.0
;
const
real_t
diffusivity
=
1.0
;
const
real_t
internalHeating
=
0.0
;
const
real_t
sliceEvaluationRadius
=
domainInfo
.
rMin
+
0.5
*
(
domainInfo
.
rMax
-
domainInfo
.
rMin
);
...
...
@@ -369,7 +369,11 @@ void runBenchmark( real_t cflMax,
WALBERLA_LOG_INFO_ON_ROOT
(
" + dimensions: "
<<
(
storage
->
hasGlobalCells
()
?
"3"
:
"2"
)
)
WALBERLA_LOG_INFO_ON_ROOT
(
" + level: "
<<
level
)
WALBERLA_LOG_INFO_ON_ROOT
(
" + unknowns temperature, including boundary: "
<<
unknownsTemperature
)
WALBERLA_LOG_INFO_ON_ROOT
(
" + unknowns Stokes, including boundary: "
<<
unknownsStokes
)
for
(
uint_t
l
=
minLevel
;
l
<=
level
;
l
++
)
{
const
uint_t
unknownsStokesLevel
=
numberOfGlobalDoFs
<
P2P1TaylorHoodFunctionTag
>
(
*
storage
,
l
);
WALBERLA_LOG_INFO_ON_ROOT
(
" + unknowns Stokes, including boundary, level "
<<
l
<<
": "
<<
unknownsStokesLevel
)
}
WALBERLA_LOG_INFO_ON_ROOT
(
" + h_min: "
<<
hMin
)
WALBERLA_LOG_INFO_ON_ROOT
(
" + h_max: "
<<
hMax
)
WALBERLA_LOG_INFO_ON_ROOT
(
" - benchmark settings: "
)
...
...
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