Line | Branch | Exec | Source |
---|---|---|---|
1 | // -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- | ||
2 | // vi: set et ts=4 sw=4 sts=4: | ||
3 | // | ||
4 | // SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder | ||
5 | // SPDX-License-Identifier: GPL-3.0-or-later | ||
6 | // | ||
7 | /*! | ||
8 | * \file | ||
9 | * \ingroup StaggeredDiscretization | ||
10 | * \copydoc Dumux::StaggeredFreeFlowVelocityOutput | ||
11 | */ | ||
12 | #ifndef DUMUX_STAGGERED_FF_VELOCITYOUTPUT_HH | ||
13 | #define DUMUX_STAGGERED_FF_VELOCITYOUTPUT_HH | ||
14 | |||
15 | #include <dumux/io/velocityoutput.hh> | ||
16 | #include <dumux/common/parameters.hh> | ||
17 | |||
18 | namespace Dumux { | ||
19 | |||
20 | /*! | ||
21 | * \ingroup StaggeredDiscretization | ||
22 | * \brief Velocity output for staggered free-flow models | ||
23 | */ | ||
24 | template<class GridVariables, class SolutionVector> | ||
25 | class StaggeredFreeFlowVelocityOutput : public VelocityOutput<GridVariables> | ||
26 | { | ||
27 | using ParentType = VelocityOutput<GridVariables>; | ||
28 | using GridGeometry = typename GridVariables::GridGeometry; | ||
29 | using Scalar = typename GridVariables::Scalar; | ||
30 | using FVElementGeometry = typename GridGeometry::LocalView; | ||
31 | using SubControlVolumeFace = typename GridGeometry::SubControlVolumeFace; | ||
32 | using GridVolumeVariables = typename GridVariables::GridVolumeVariables; | ||
33 | using ElementVolumeVariables = typename GridVolumeVariables::LocalView; | ||
34 | using ElementFluxVarsCache = typename GridVariables::GridFluxVariablesCache::LocalView; | ||
35 | using VolumeVariables = typename GridVariables::VolumeVariables; | ||
36 | using FluidSystem = typename VolumeVariables::FluidSystem; | ||
37 | using GridView = typename GridGeometry::GridView; | ||
38 | // TODO: should be possible to get this somehow | ||
39 | using Problem = typename std::decay_t<decltype(std::declval<GridVolumeVariables>().problem())>; | ||
40 | using Element = typename GridView::template Codim<0>::Entity; | ||
41 | using CoordScalar = typename GridView::ctype; | ||
42 | |||
43 | public: | ||
44 | using VelocityVector = typename ParentType::VelocityVector; | ||
45 | |||
46 | /*! | ||
47 | * \brief Constructor initializes the static data with the initial solution. | ||
48 | * | ||
49 | * \param gridVariables The gridVariables | ||
50 | * \param sol The solution vector | ||
51 | */ | ||
52 | 50 | StaggeredFreeFlowVelocityOutput(const GridVariables& gridVariables, const SolutionVector& sol) | |
53 | : gridVariables_(gridVariables) | ||
54 | 50 | , sol_(sol) | |
55 | { | ||
56 | // check if velocity vectors shall be written to the VTK file | ||
57 | // enable per default | ||
58 |
3/288✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✗ Branch 10 not taken.
✗ Branch 11 not taken.
✓ Branch 13 taken 50 times.
✗ Branch 14 not taken.
✓ Branch 16 taken 50 times.
✗ Branch 17 not taken.
✓ Branch 19 taken 50 times.
✗ Branch 20 not taken.
✗ Branch 22 not taken.
✗ Branch 23 not taken.
✗ Branch 25 not taken.
✗ Branch 26 not taken.
✗ Branch 28 not taken.
✗ Branch 29 not taken.
✗ Branch 31 not taken.
✗ Branch 32 not taken.
✗ Branch 34 not taken.
✗ Branch 35 not taken.
✗ Branch 37 not taken.
✗ Branch 38 not taken.
✗ Branch 40 not taken.
✗ Branch 41 not taken.
✗ Branch 43 not taken.
✗ Branch 44 not taken.
✗ Branch 46 not taken.
✗ Branch 47 not taken.
✗ Branch 49 not taken.
✗ Branch 50 not taken.
✗ Branch 52 not taken.
✗ Branch 53 not taken.
✗ Branch 55 not taken.
✗ Branch 56 not taken.
✗ Branch 58 not taken.
✗ Branch 59 not taken.
✗ Branch 61 not taken.
✗ Branch 62 not taken.
✗ Branch 64 not taken.
✗ Branch 65 not taken.
✗ Branch 67 not taken.
✗ Branch 68 not taken.
✗ Branch 70 not taken.
✗ Branch 71 not taken.
✗ Branch 73 not taken.
✗ Branch 74 not taken.
✗ Branch 76 not taken.
✗ Branch 77 not taken.
✗ Branch 79 not taken.
✗ Branch 80 not taken.
✗ Branch 82 not taken.
✗ Branch 83 not taken.
✗ Branch 85 not taken.
✗ Branch 86 not taken.
✗ Branch 88 not taken.
✗ Branch 89 not taken.
✗ Branch 91 not taken.
✗ Branch 92 not taken.
✗ Branch 94 not taken.
✗ Branch 95 not taken.
✗ Branch 97 not taken.
✗ Branch 98 not taken.
✗ Branch 100 not taken.
✗ Branch 101 not taken.
✗ Branch 103 not taken.
✗ Branch 104 not taken.
✗ Branch 106 not taken.
✗ Branch 107 not taken.
✗ Branch 109 not taken.
✗ Branch 110 not taken.
✗ Branch 112 not taken.
✗ Branch 113 not taken.
✗ Branch 115 not taken.
✗ Branch 116 not taken.
✗ Branch 118 not taken.
✗ Branch 119 not taken.
✗ Branch 121 not taken.
✗ Branch 122 not taken.
✗ Branch 124 not taken.
✗ Branch 125 not taken.
✗ Branch 127 not taken.
✗ Branch 128 not taken.
✗ Branch 130 not taken.
✗ Branch 131 not taken.
✗ Branch 133 not taken.
✗ Branch 134 not taken.
✗ Branch 136 not taken.
✗ Branch 137 not taken.
✗ Branch 139 not taken.
✗ Branch 140 not taken.
✗ Branch 142 not taken.
✗ Branch 143 not taken.
✗ Branch 145 not taken.
✗ Branch 146 not taken.
✗ Branch 148 not taken.
✗ Branch 149 not taken.
✗ Branch 151 not taken.
✗ Branch 152 not taken.
✗ Branch 154 not taken.
✗ Branch 155 not taken.
✗ Branch 157 not taken.
✗ Branch 158 not taken.
✗ Branch 160 not taken.
✗ Branch 161 not taken.
✗ Branch 163 not taken.
✗ Branch 164 not taken.
✗ Branch 166 not taken.
✗ Branch 167 not taken.
✗ Branch 169 not taken.
✗ Branch 170 not taken.
✗ Branch 172 not taken.
✗ Branch 173 not taken.
✗ Branch 175 not taken.
✗ Branch 176 not taken.
✗ Branch 178 not taken.
✗ Branch 179 not taken.
✗ Branch 181 not taken.
✗ Branch 182 not taken.
✗ Branch 184 not taken.
✗ Branch 185 not taken.
✗ Branch 187 not taken.
✗ Branch 188 not taken.
✗ Branch 190 not taken.
✗ Branch 191 not taken.
✗ Branch 193 not taken.
✗ Branch 194 not taken.
✗ Branch 196 not taken.
✗ Branch 197 not taken.
✗ Branch 199 not taken.
✗ Branch 200 not taken.
✗ Branch 202 not taken.
✗ Branch 203 not taken.
✗ Branch 205 not taken.
✗ Branch 206 not taken.
✗ Branch 208 not taken.
✗ Branch 209 not taken.
✗ Branch 211 not taken.
✗ Branch 212 not taken.
✗ Branch 214 not taken.
✗ Branch 215 not taken.
✗ Branch 289 not taken.
✗ Branch 290 not taken.
✗ Branch 292 not taken.
✗ Branch 293 not taken.
✗ Branch 295 not taken.
✗ Branch 296 not taken.
✗ Branch 298 not taken.
✗ Branch 299 not taken.
✗ Branch 301 not taken.
✗ Branch 302 not taken.
✗ Branch 304 not taken.
✗ Branch 305 not taken.
✗ Branch 307 not taken.
✗ Branch 308 not taken.
✗ Branch 310 not taken.
✗ Branch 311 not taken.
✗ Branch 313 not taken.
✗ Branch 314 not taken.
✗ Branch 316 not taken.
✗ Branch 317 not taken.
✗ Branch 319 not taken.
✗ Branch 320 not taken.
✗ Branch 322 not taken.
✗ Branch 323 not taken.
✗ Branch 325 not taken.
✗ Branch 326 not taken.
✗ Branch 328 not taken.
✗ Branch 329 not taken.
✗ Branch 331 not taken.
✗ Branch 332 not taken.
✗ Branch 334 not taken.
✗ Branch 335 not taken.
✗ Branch 337 not taken.
✗ Branch 338 not taken.
✗ Branch 340 not taken.
✗ Branch 341 not taken.
✗ Branch 343 not taken.
✗ Branch 344 not taken.
✗ Branch 346 not taken.
✗ Branch 347 not taken.
✗ Branch 349 not taken.
✗ Branch 350 not taken.
✗ Branch 352 not taken.
✗ Branch 353 not taken.
✗ Branch 355 not taken.
✗ Branch 356 not taken.
✗ Branch 358 not taken.
✗ Branch 359 not taken.
✗ Branch 361 not taken.
✗ Branch 362 not taken.
✗ Branch 364 not taken.
✗ Branch 365 not taken.
✗ Branch 367 not taken.
✗ Branch 368 not taken.
✗ Branch 370 not taken.
✗ Branch 371 not taken.
✗ Branch 373 not taken.
✗ Branch 374 not taken.
✗ Branch 376 not taken.
✗ Branch 377 not taken.
✗ Branch 379 not taken.
✗ Branch 380 not taken.
✗ Branch 382 not taken.
✗ Branch 383 not taken.
✗ Branch 385 not taken.
✗ Branch 386 not taken.
✗ Branch 388 not taken.
✗ Branch 389 not taken.
✗ Branch 391 not taken.
✗ Branch 392 not taken.
✗ Branch 394 not taken.
✗ Branch 395 not taken.
✗ Branch 397 not taken.
✗ Branch 398 not taken.
✗ Branch 400 not taken.
✗ Branch 401 not taken.
✗ Branch 403 not taken.
✗ Branch 404 not taken.
✗ Branch 406 not taken.
✗ Branch 407 not taken.
✗ Branch 409 not taken.
✗ Branch 410 not taken.
✗ Branch 412 not taken.
✗ Branch 413 not taken.
✗ Branch 415 not taken.
✗ Branch 416 not taken.
✗ Branch 418 not taken.
✗ Branch 419 not taken.
✗ Branch 421 not taken.
✗ Branch 422 not taken.
✗ Branch 424 not taken.
✗ Branch 425 not taken.
✗ Branch 427 not taken.
✗ Branch 428 not taken.
✗ Branch 430 not taken.
✗ Branch 431 not taken.
✗ Branch 433 not taken.
✗ Branch 434 not taken.
✗ Branch 436 not taken.
✗ Branch 437 not taken.
✗ Branch 439 not taken.
✗ Branch 440 not taken.
✗ Branch 442 not taken.
✗ Branch 443 not taken.
✗ Branch 445 not taken.
✗ Branch 446 not taken.
✗ Branch 448 not taken.
✗ Branch 449 not taken.
✗ Branch 451 not taken.
✗ Branch 452 not taken.
✗ Branch 454 not taken.
✗ Branch 455 not taken.
✗ Branch 457 not taken.
✗ Branch 458 not taken.
✗ Branch 460 not taken.
✗ Branch 461 not taken.
✗ Branch 463 not taken.
✗ Branch 464 not taken.
✗ Branch 466 not taken.
✗ Branch 467 not taken.
✗ Branch 469 not taken.
✗ Branch 470 not taken.
✗ Branch 472 not taken.
✗ Branch 473 not taken.
✗ Branch 475 not taken.
✗ Branch 476 not taken.
✗ Branch 478 not taken.
✗ Branch 479 not taken.
✗ Branch 481 not taken.
✗ Branch 482 not taken.
✗ Branch 484 not taken.
✗ Branch 485 not taken.
✗ Branch 487 not taken.
✗ Branch 488 not taken.
✗ Branch 490 not taken.
✗ Branch 491 not taken.
✗ Branch 493 not taken.
✗ Branch 494 not taken.
✗ Branch 496 not taken.
✗ Branch 497 not taken.
✗ Branch 499 not taken.
✗ Branch 500 not taken.
✗ Branch 502 not taken.
✗ Branch 503 not taken.
|
150 | enableOutput_ = getParamFromGroup<bool>(gridVariables.curGridVolVars().problem().paramGroup(), "Vtk.AddVelocity", true); |
59 | } | ||
60 | |||
61 | //! Returns whether to enable the velocity output or not | ||
62 | 940916 | bool enableOutput() const override { return enableOutput_; } | |
63 | |||
64 | //! returns the phase name of a given phase index | ||
65 | 1322 | std::string phaseName(int phaseIdx) const override { return FluidSystem::phaseName(phaseIdx); } | |
66 | |||
67 | //! returns the number of phases | ||
68 | 944882 | int numFluidPhases() const override { return VolumeVariables::numFluidPhases(); } | |
69 | |||
70 | //! Calculate the velocities for the scvs in the element | ||
71 | //! We assume the local containers to be bound to the complete stencil | ||
72 | 469136 | void calculateVelocity(VelocityVector& velocity, | |
73 | const Element& element, | ||
74 | const FVElementGeometry& fvGeometry, | ||
75 | const ElementVolumeVariables& elemVolVars, | ||
76 | const ElementFluxVarsCache& elemFluxVarsCache, | ||
77 | int phaseIdx) const override | ||
78 | { | ||
79 | 938272 | auto elemFaceVars = localView(gridVariables_.curGridFaceVars()); | |
80 | 469136 | elemFaceVars.bindElement(element, fvGeometry, sol_); | |
81 |
4/4✓ Branch 0 taken 469136 times.
✓ Branch 1 taken 469136 times.
✓ Branch 2 taken 469136 times.
✓ Branch 3 taken 469136 times.
|
1407408 | for (auto&& scv : scvs(fvGeometry)) |
82 | { | ||
83 | 469136 | auto dofIdxGlobal = scv.dofIndex(); | |
84 | |||
85 |
4/4✓ Branch 0 taken 1876544 times.
✓ Branch 1 taken 469136 times.
✓ Branch 2 taken 1876544 times.
✓ Branch 3 taken 469136 times.
|
2814816 | for (auto&& scvf : scvfs(fvGeometry)) |
86 | { | ||
87 | 1876544 | auto dirIdx = scvf.directionIndex(); | |
88 | 7506176 | velocity[dofIdxGlobal][dirIdx] += 0.5*elemFaceVars[scvf].velocitySelf(); | |
89 | } | ||
90 | } | ||
91 | 469136 | } | |
92 | |||
93 | private: | ||
94 | const GridVariables& gridVariables_; | ||
95 | const SolutionVector& sol_; | ||
96 | |||
97 | bool enableOutput_ = true; | ||
98 | }; | ||
99 | |||
100 | } // end namespace Dumux | ||
101 | |||
102 | #endif | ||
103 |