FlowBaseVanguard.hpp
Go to the documentation of this file.
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 This file is part of the Open Porous Media project (OPM).
5
6 OPM is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 2 of the License, or
9 (at your option) any later version.
10
11 OPM is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with OPM. If not, see <http://www.gnu.org/licenses/>.
18
19 Consult the COPYING file in the top-level source directory of this
20 module for the precise wording of the license and the list of
21 copyright holders.
22*/
27#ifndef OPM_FLOW_BASE_VANGUARD_HPP
28#define OPM_FLOW_BASE_VANGUARD_HPP
29
30#include <opm/grid/common/GridEnums.hpp>
31#include <opm/grid/common/CartesianIndexMapper.hpp>
32#include <opm/grid/LookUpCellCentroid.hh>
33
34#include <opm/input/eclipse/EclipseState/Aquifer/NumericalAquifer/NumericalAquiferCell.hpp>
35#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
36
37#include <opm/models/discretization/common/fvbaseproperties.hh>
38#include <opm/models/io/basevanguard.hh>
39#include <opm/models/utils/parametersystem.hh>
40#include <opm/models/utils/propertysystem.hh>
41
44
45#include <array>
46#include <cstddef>
47#include <unordered_map>
48#include <vector>
49
50namespace Opm {
51template <class TypeTag>
52class FlowBaseVanguard;
53template<typename Grid, typename GridView> struct LookUpCellCentroid;
54}
55
56namespace Opm::Properties {
57
58namespace TTag {
60}
61
62// declare the properties required by the for the ecl simulator vanguard
63template<class TypeTag, class MyTypeTag>
64struct EquilGrid {
65 using type = UndefinedProperty;
66};
67template<class TypeTag, class MyTypeTag>
69 using type = UndefinedProperty;
70};
71template<class TypeTag, class MyTypeTag>
73 using type = UndefinedProperty;
74};
75template<class TypeTag, class MyTypeTag>
77 using type = UndefinedProperty;
78};
79template<class TypeTag, class MyTypeTag>
81 using type = UndefinedProperty;
82};
83template<class TypeTag, class MyTypeTag>
85 using type = UndefinedProperty;
86};
87template<class TypeTag, class MyTypeTag>
89 using type = UndefinedProperty;
90};
91
92#if HAVE_OPENCL || HAVE_ROCSPARSE || HAVE_CUDA
93template<class TypeTag, class MyTypeTag>
94struct NumJacobiBlocks {
95 using type = UndefinedProperty;
96};
97#endif
98
99template<class TypeTag, class MyTypeTag>
101 using type = UndefinedProperty;
102};
103
104template<class TypeTag, class MyTypeTag>
106 using type = UndefinedProperty;
107};
108
109template<class TypeTag, class MyTypeTag>
111 using type = UndefinedProperty;
112};
113
114template<class TypeTag, class MyTypeTag>
116 using type = UndefinedProperty;
117};
118
119template <class TypeTag, class MyTypeTag>
121{
122 using type = UndefinedProperty;
123};
124
125template<class TypeTag, class MyTypeTag>
127 using type = UndefinedProperty;
128};
129
130template<class TypeTag>
131struct IgnoreKeywords<TypeTag, TTag::FlowBaseVanguard> {
132 static constexpr auto value = "";
133};
134template<class TypeTag>
135struct EclDeckFileName<TypeTag, TTag::FlowBaseVanguard> {
136 static constexpr auto value = "";
137};
138template<class TypeTag>
139struct EclOutputInterval<TypeTag, TTag::FlowBaseVanguard> {
140 static constexpr int value = -1;
141};
142template<class TypeTag>
143struct EnableOpmRstFile<TypeTag, TTag::FlowBaseVanguard> {
144 static constexpr bool value = false;
145};
146template<class TypeTag>
147struct ParsingStrictness<TypeTag, TTag::FlowBaseVanguard> {
148 static constexpr auto value = "normal";
149};
150template<class TypeTag>
151struct SchedRestart<TypeTag, TTag::FlowBaseVanguard> {
152 static constexpr bool value = false;
153};
154template<class TypeTag>
155struct EdgeWeightsMethod<TypeTag, TTag::FlowBaseVanguard> {
156 static constexpr int value = 1;
157};
158
159#if HAVE_OPENCL || HAVE_ROCSPARSE || HAVE_CUDA
160template<class TypeTag>
161struct NumJacobiBlocks<TypeTag, TTag::FlowBaseVanguard> {
162 static constexpr int value = 0;
163};
164#endif
165
166template<class TypeTag>
167struct OwnerCellsFirst<TypeTag, TTag::FlowBaseVanguard> {
168 static constexpr bool value = true;
169};
170template<class TypeTag>
171struct SerialPartitioning<TypeTag, TTag::FlowBaseVanguard> {
172 static constexpr bool value = false;
173};
174
175template<class TypeTag>
176struct ZoltanImbalanceTol<TypeTag, TTag::FlowBaseVanguard> {
177 static constexpr double value = 1.1;
178};
179
180template<class TypeTag>
181struct ZoltanParams<TypeTag,TTag::FlowBaseVanguard> {
182 static constexpr auto value = "graph";
183};
184
185template <class TypeTag>
187{
188 static constexpr auto* value = "";
189};
190
191template<class TypeTag>
193 static constexpr bool value = false;
194};
195
196template<class T1, class T2>
198
199// Same as in BlackoilModelParameters.hpp but for here.
200template<class TypeTag>
201struct UseMultisegmentWell<TypeTag, TTag::FlowBaseVanguard> {
202 static constexpr bool value = true;
203};
204} // namespace Opm::Properties
205
206namespace Opm {
207
213template <class TypeTag>
214class FlowBaseVanguard : public BaseVanguard<TypeTag>,
216{
217 using ParentType = BaseVanguard<TypeTag>;
218 using Implementation = GetPropType<TypeTag, Properties::Vanguard>;
219 using Scalar = GetPropType<TypeTag, Properties::Scalar>;
220 using Simulator = GetPropType<TypeTag, Properties::Simulator>;
221 using ElementMapper = GetPropType<TypeTag, Properties::ElementMapper>;
222
223 enum { enableExperiments = getPropValue<TypeTag, Properties::EnableExperiments>() };
224
225public:
226 using Grid = GetPropType<TypeTag, Properties::Grid>;
227 using GridView = GetPropType<TypeTag, Properties::GridView>;
228
229protected:
230 static const int dimension = Grid::dimension;
231 static const int dimensionworld = Grid::dimensionworld;
232 using Element = typename GridView::template Codim<0>::Entity;
234
235public:
239 static void registerParameters()
240 {
241 Parameters::registerParam<TypeTag, Properties::EclDeckFileName>
242 ("The name of the file which contains the ECL deck to be simulated");
243 Parameters::registerParam<TypeTag, Properties::EclOutputInterval>
244 ("The number of report steps that ought to be skipped between two writes of ECL results");
245 Parameters::registerParam<TypeTag, Properties::EnableOpmRstFile>
246 ("Include OPM-specific keywords in the ECL restart file to "
247 "enable restart of OPM simulators from these files");
248 Parameters::registerParam<TypeTag, Properties::IgnoreKeywords>
249 ("List of Eclipse keywords which should be ignored. As a ':' separated string.");
250 Parameters::registerParam<TypeTag, Properties::ParsingStrictness>
251 ("Set strictness of parsing process. Available options are "
252 "normal (stop for critical errors), "
253 "high (stop for all errors) and "
254 "low (as normal, except do not stop due to unsupported "
255 "keywords even if marked critical");
256 Parameters::registerParam<TypeTag, Properties::SchedRestart>
257 ("When restarting: should we try to initialize wells and "
258 "groups from historical SCHEDULE section.");
259 Parameters::registerParam<TypeTag, Properties::EdgeWeightsMethod>
260 ("Choose edge-weighing strategy: 0=uniform, 1=trans, 2=log(trans).");
261
262#if HAVE_OPENCL || HAVE_ROCSPARSE || HAVE_CUDA
263 Parameters::registerParam<TypeTag, Properties::NumJacobiBlocks>
264 ("Number of blocks to be created for the Block-Jacobi preconditioner.");
265#endif
266
267 Parameters::registerParam<TypeTag, Properties::OwnerCellsFirst>
268 ("Order cells owned by rank before ghost/overlap cells.");
269#if HAVE_MPI
270 Parameters::registerParam<TypeTag, Properties::SerialPartitioning>
271 ("Perform partitioning for parallel runs on a single process.");
272 Parameters::registerParam<TypeTag, Properties::ZoltanImbalanceTol>
273 ("Tolerable imbalance of the loadbalancing provided by Zoltan (default: 1.1).");
274 Parameters::registerParam<TypeTag, Properties::ZoltanParams>
275 ("Configuration of Zoltan partitioner. "
276 "Valid options are: graph, hypergraph or scotch. "
277 "Alternatively, you can request a configuration to be read "
278 "from a JSON file by giving the filename here, ending with '.json.' "
279 "See https://sandialabs.github.io/Zoltan/ug_html/ug.html "
280 "for available Zoltan options.");
281 Parameters::hideParam<TypeTag, Properties::ZoltanParams>();
282 Parameters::registerParam<TypeTag, Properties::ExternalPartition>
283 ("Name of file from which to load an externally generated "
284 "partitioning of the model's active cells for MPI "
285 "distribution purposes. If empty, the built-in partitioning "
286 "method will be employed.");
287 Parameters::hideParam<TypeTag, Properties::ExternalPartition>();
288#endif
289 Parameters::registerParam<TypeTag, Properties::AllowDistributedWells>
290 ("Allow the perforations of a well to be distributed to interior of multiple processes");
291 // register here for the use in the tests without BlackoilModelParameters
292 Parameters::registerParam<TypeTag, Properties::UseMultisegmentWell>
293 ("Use the well model for multi-segment wells instead of the one for single-segment wells");
294 }
295
302 FlowBaseVanguard(Simulator& simulator)
303 : ParentType(simulator)
304 {
305 fileName_ = Parameters::get<TypeTag, Properties::EclDeckFileName>();
306 edgeWeightsMethod_ = Dune::EdgeWeightMethod(Parameters::get<TypeTag, Properties::EdgeWeightsMethod>());
307
308#if HAVE_OPENCL || HAVE_ROCSPARSE || HAVE_CUDA
309 numJacobiBlocks_ = Parameters::get<TypeTag, Properties::NumJacobiBlocks>();
310#endif
311
312 ownersFirst_ = Parameters::get<TypeTag, Properties::OwnerCellsFirst>();
313#if HAVE_MPI
314 serialPartitioning_ = Parameters::get<TypeTag, Properties::SerialPartitioning>();
315 zoltanImbalanceTol_ = Parameters::get<TypeTag, Properties::ZoltanImbalanceTol>();
316 zoltanParams_ = Parameters::get<TypeTag, Properties::ZoltanParams>();
317 externalPartitionFile_ = Parameters::get<TypeTag, Properties::ExternalPartition>();
318#endif
319 enableDistributedWells_ = Parameters::get<TypeTag, Properties::AllowDistributedWells>();
320 ignoredKeywords_ = Parameters::get<TypeTag, Properties::IgnoreKeywords>();
321 int output_param = Parameters::get<TypeTag, Properties::EclOutputInterval>();
322 if (output_param >= 0)
323 outputInterval_ = output_param;
324 useMultisegmentWell_ = Parameters::get<TypeTag, Properties::UseMultisegmentWell>();
325 enableExperiments_ = enableExperiments;
326
327 init();
328 }
329
331 { return asImp_().cartesianIndexMapper(); }
332
336 const std::array<int, dimension>& cartesianDimensions() const
337 { return asImp_().cartesianIndexMapper().cartesianDimensions(); }
338
342 int cartesianSize() const
343 { return asImp_().cartesianIndexMapper().cartesianSize(); }
344
349 { return asImp_().equilCartesianIndexMapper().cartesianSize(); }
350
354 unsigned cartesianIndex(unsigned compressedCellIdx) const
355 { return asImp_().cartesianIndexMapper().cartesianIndex(compressedCellIdx); }
356
360 unsigned cartesianIndex(const std::array<int,dimension>& coords) const
361 {
362 unsigned cartIndex = coords[0];
363 int factor = cartesianDimensions()[0];
364 for (unsigned i = 1; i < dimension; ++i) {
365 cartIndex += coords[i]*factor;
366 factor *= cartesianDimensions()[i];
367 }
368
369 return cartIndex;
370 }
371
378 int compressedIndex(int cartesianCellIdx) const
379 {
380 auto index_pair = cartesianToCompressed_.find(cartesianCellIdx);
381 if (index_pair!=cartesianToCompressed_.end())
382 return index_pair->second;
383 else
384 return -1;
385 }
386
393 int compressedIndexForInterior(int cartesianCellIdx) const
394 {
395 auto index_pair = cartesianToCompressed_.find(cartesianCellIdx);
396 if (index_pair == cartesianToCompressed_.end() ||
397 !is_interior_[index_pair->second])
398 {
399 return -1;
400 }
401 else
402 {
403 return index_pair->second;
404 }
405 }
412 void cartesianCoordinate(unsigned cellIdx, std::array<int,3>& ijk) const
413 { return asImp_().cartesianIndexMapper().cartesianCoordinate(cellIdx, ijk); }
414
418 unsigned equilCartesianIndex(unsigned compressedEquilCellIdx) const
419 { return asImp_().equilCartesianIndexMapper().cartesianIndex(compressedEquilCellIdx); }
420
427 void equilCartesianCoordinate(unsigned cellIdx, std::array<int,3>& ijk) const
428 { return asImp_().equilCartesianIndexMapper().cartesianCoordinate(cellIdx, ijk); }
429
430
437 Scalar cellCenterDepth(unsigned globalSpaceIdx) const
438 {
439 return cellCenterDepth_[globalSpaceIdx];
440 }
441
442 const std::vector<Scalar>& cellCenterDepths() const
443 {
444 return cellCenterDepth_;
445 }
446
454 Scalar cellThickness(unsigned globalSpaceIdx) const
455 {
456 assert(!cellThickness_.empty());
457 return cellThickness_[globalSpaceIdx];
458 }
459
465 std::size_t globalNumCells() const
466 {
467 const auto& grid = asImp_().grid();
468 if (grid.comm().size() == 1)
469 {
470 return grid.leafGridView().size(0);
471 }
472 const auto& gridView = grid.leafGridView();
473 constexpr int codim = 0;
474 constexpr auto Part = Dune::Interior_Partition;
475 auto local_cells = std::distance(gridView.template begin<codim, Part>(),
476 gridView.template end<codim, Part>());
477 return grid.comm().sum(local_cells);
478 }
479
482 }
483
484protected:
494 template<class CartMapper>
495 std::function<std::array<double,dimensionworld>(int)>
496 cellCentroids_(const CartMapper& cartMapper, const bool& isCpGrid) const
497 {
498 return [this, cartMapper, isCpGrid](int elemIdx) {
499 std::array<double,dimensionworld> centroid;
500 const auto rank = this->gridView().comm().rank();
501 const auto maxLevel = this->gridView().grid().maxLevel();
502 bool useEclipse = !isCpGrid || (isCpGrid && (rank == 0) && (maxLevel == 0));
503 if (useEclipse)
504 {
505 centroid = this->eclState().getInputGrid().getCellCenter(cartMapper.cartesianIndex(elemIdx));
506 }
507 else
508 {
509 LookUpCellCentroid<Grid,GridView> lookUpCellCentroid(this->gridView(), cartMapper, nullptr);
510 centroid = lookUpCellCentroid(elemIdx);
511 }
512 return centroid;
513 };
514 }
515
517 {
518 asImp_().createGrids_();
519 asImp_().filterConnections_();
520 std::string outputDir = Parameters::get<TypeTag, Properties::OutputDir>();
521 bool enableEclCompatFile = !Parameters::get<TypeTag, Properties::EnableOpmRstFile>();
522 asImp_().updateOutputDir_(outputDir, enableEclCompatFile);
523 asImp_().finalizeInit_();
524 }
525
527 {
528 std::size_t num_cells = asImp_().grid().leafGridView().size(0);
529 is_interior_.resize(num_cells);
530
531 ElementMapper elemMapper(this->gridView(), Dune::mcmgElementLayout());
532 for (const auto& element : elements(this->gridView()))
533 {
534 const auto elemIdx = elemMapper.index(element);
535 unsigned cartesianCellIdx = cartesianIndex(elemIdx);
536 cartesianToCompressed_[cartesianCellIdx] = elemIdx;
537 if (element.partitionType() == Dune::InteriorEntity)
538 {
539 is_interior_[elemIdx] = 1;
540 }
541 else
542 {
543 is_interior_[elemIdx] = 0;
544 }
545 }
546 }
547
549 {
550 int numCells = this->gridView().size(/*codim=*/0);
551 cellCenterDepth_.resize(numCells);
552
553 ElementMapper elemMapper(this->gridView(), Dune::mcmgElementLayout());
554
555 const auto num_aqu_cells = this->allAquiferCells();
556
557 for(const auto& element : elements(this->gridView())) {
558 const unsigned int elemIdx = elemMapper.index(element);
559 cellCenterDepth_[elemIdx] = cellCenterDepth(element);
560
561 if (!num_aqu_cells.empty()) {
562 const unsigned int global_index = cartesianIndex(elemIdx);
563 const auto search = num_aqu_cells.find(global_index);
564 if (search != num_aqu_cells.end()) {
565 // updating the cell depth using aquifer cell depth
566 cellCenterDepth_[elemIdx] = search->second->depth;
567 }
568 }
569 }
570 }
572 {
573 if (!this->drsdtconEnabled())
574 return;
575
576 ElementMapper elemMapper(this->gridView(), Dune::mcmgElementLayout());
577
578 int numElements = this->gridView().size(/*codim=*/0);
579 cellThickness_.resize(numElements);
580
581 for (const auto& elem : elements(this->gridView())) {
582 const unsigned int elemIdx = elemMapper.index(elem);
583 cellThickness_[elemIdx] = computeCellThickness(elem);
584 }
585 }
586
587private:
588 // computed from averaging cell corner depths
589 Scalar cellCenterDepth(const Element& element) const
590 {
591 typedef typename Element::Geometry Geometry;
592 static constexpr int zCoord = Element::dimension - 1;
593 Scalar zz = 0.0;
594
595 const Geometry& geometry = element.geometry();
596 const int corners = geometry.corners();
597 for (int i=0; i < corners; ++i)
598 zz += geometry.corner(i)[zCoord];
599
600 return zz/Scalar(corners);
601 }
602
603 Scalar computeCellThickness(const typename GridView::template Codim<0>::Entity& element) const
604 {
605 typedef typename Element::Geometry Geometry;
606 static constexpr int zCoord = Element::dimension - 1;
607 Scalar zz1 = 0.0;
608 Scalar zz2 = 0.0;
609
610 const Geometry& geometry = element.geometry();
611 // This code only works with CP-grid where the
612 // number of corners are 8 and
613 // also assumes that the first
614 // 4 corners are the top surface and
615 // the 4 next are the bottomn.
616 assert(geometry.corners() == 8);
617 for (int i=0; i < 4; ++i){
618 zz1 += geometry.corner(i)[zCoord];
619 zz2 += geometry.corner(i+4)[zCoord];
620 }
621 zz1 /=4;
622 zz2 /=4;
623 return zz2-zz1;
624 }
625
626 Implementation& asImp_()
627 { return *static_cast<Implementation*>(this); }
628
629 const Implementation& asImp_() const
630 { return *static_cast<const Implementation*>(this); }
631
632protected:
636 std::unordered_map<int,int> cartesianToCompressed_;
637
640 std::vector<Scalar> cellCenterDepth_;
641
644 std::vector<Scalar> cellThickness_;
645
648 std::vector<int> is_interior_;
649};
650
651} // namespace Opm
652
653#endif // OPM_FLOW_BASE_VANGUARD_HPP
Definition: CollectDataOnIORank.hpp:49
Helper class for grid instantiation of ECL file-format using problems.
Definition: FlowBaseVanguard.hpp:216
unsigned cartesianIndex(const std::array< int, dimension > &coords) const
Return the index of the cells in the logical Cartesian grid.
Definition: FlowBaseVanguard.hpp:360
void updateCartesianToCompressedMapping_()
Definition: FlowBaseVanguard.hpp:526
int cartesianSize() const
Returns the overall number of cells of the logically Cartesian grid.
Definition: FlowBaseVanguard.hpp:342
int compressedIndex(int cartesianCellIdx) const
Return compressed index from cartesian index.
Definition: FlowBaseVanguard.hpp:378
void updateCellThickness_()
Definition: FlowBaseVanguard.hpp:571
std::vector< Scalar > cellCenterDepth_
Cell center depths.
Definition: FlowBaseVanguard.hpp:640
const std::array< int, dimension > & cartesianDimensions() const
Returns the number of logically Cartesian cells in each direction.
Definition: FlowBaseVanguard.hpp:336
unsigned equilCartesianIndex(unsigned compressedEquilCellIdx) const
Returns the Cartesian cell id given an element index for the grid used for equilibration.
Definition: FlowBaseVanguard.hpp:418
FlowBaseVanguard(Simulator &simulator)
Create the grid for problem data files which use the ECL file format.
Definition: FlowBaseVanguard.hpp:302
int compressedIndexForInterior(int cartesianCellIdx) const
Return compressed index from cartesian index only in interior.
Definition: FlowBaseVanguard.hpp:393
const std::vector< Scalar > & cellCenterDepths() const
Definition: FlowBaseVanguard.hpp:442
unsigned cartesianIndex(unsigned compressedCellIdx) const
Returns the Cartesian cell id for identifaction with ECL data.
Definition: FlowBaseVanguard.hpp:354
static const int dimension
Definition: FlowBaseVanguard.hpp:230
std::vector< int > is_interior_
Whether a cells is in the interior.
Definition: FlowBaseVanguard.hpp:648
void updateCellDepths_()
Definition: FlowBaseVanguard.hpp:548
void callImplementationInit()
Definition: FlowBaseVanguard.hpp:516
const CartesianIndexMapper & cartesianMapper() const
Definition: FlowBaseVanguard.hpp:330
static const int dimensionworld
Definition: FlowBaseVanguard.hpp:231
void cartesianCoordinate(unsigned cellIdx, std::array< int, 3 > &ijk) const
Extract Cartesian index triplet (i,j,k) of an active cell.
Definition: FlowBaseVanguard.hpp:412
std::unordered_map< int, int > cartesianToCompressed_
Mapping between cartesian and compressed cells. It is initialized the first time it is called.
Definition: FlowBaseVanguard.hpp:636
std::vector< Scalar > cellThickness_
Cell thickness.
Definition: FlowBaseVanguard.hpp:644
GetPropType< TypeTag, Properties::GridView > GridView
Definition: FlowBaseVanguard.hpp:227
GetPropType< TypeTag, Properties::Grid > Grid
Definition: FlowBaseVanguard.hpp:226
Scalar cellCenterDepth(unsigned globalSpaceIdx) const
Returns the depth of a degree of freedom [m].
Definition: FlowBaseVanguard.hpp:437
std::size_t globalNumCells() const
Get the number of cells in the global leaf grid view. \warn This is a collective operation that needs...
Definition: FlowBaseVanguard.hpp:465
void equilCartesianCoordinate(unsigned cellIdx, std::array< int, 3 > &ijk) const
Extract Cartesian index triplet (i,j,k) of an active cell of the grid used for EQUIL.
Definition: FlowBaseVanguard.hpp:427
std::function< std::array< double, dimensionworld >(int)> cellCentroids_(const CartMapper &cartMapper, const bool &isCpGrid) const
Get function to query cell centroids for a distributed grid.
Definition: FlowBaseVanguard.hpp:496
Scalar cellThickness(unsigned globalSpaceIdx) const
Returns the thickness of a degree of freedom [m].
Definition: FlowBaseVanguard.hpp:454
typename GridView::template Codim< 0 >::Entity Element
Definition: FlowBaseVanguard.hpp:232
static void registerParameters()
Register the common run-time parameters for all ECL simulator vanguards.
Definition: FlowBaseVanguard.hpp:239
int equilCartesianSize() const
Returns the overall number of cells of the logically EquilCartesian grid.
Definition: FlowBaseVanguard.hpp:348
void setupCartesianToCompressed_()
Definition: FlowBaseVanguard.hpp:480
Definition: FlowGenericVanguard.hpp:60
bool enableDistributedWells_
Definition: FlowGenericVanguard.hpp:299
bool useMultisegmentWell_
Definition: FlowGenericVanguard.hpp:302
bool ownersFirst_
Definition: FlowGenericVanguard.hpp:292
std::string zoltanParams_
Definition: FlowGenericVanguard.hpp:296
std::unordered_map< std::size_t, const NumericalAquiferCell * > allAquiferCells() const
std::string ignoredKeywords_
Definition: FlowGenericVanguard.hpp:300
bool enableExperiments_
Definition: FlowGenericVanguard.hpp:303
bool serialPartitioning_
Definition: FlowGenericVanguard.hpp:294
const EclipseState & eclState() const
Return a reference to the internalized ECL deck.
Definition: FlowGenericVanguard.hpp:120
bool drsdtconEnabled() const
Dune::EdgeWeightMethod edgeWeightsMethod_
Definition: FlowGenericVanguard.hpp:286
double zoltanImbalanceTol_
Definition: FlowGenericVanguard.hpp:295
std::string externalPartitionFile_
Definition: FlowGenericVanguard.hpp:297
std::optional< int > outputInterval_
Definition: FlowGenericVanguard.hpp:301
std::string fileName_
Definition: FlowGenericVanguard.hpp:285
Definition: AluGridVanguard.hpp:57
Definition: BlackoilPhases.hpp:27
Definition: FlowBaseVanguard.hpp:53
Definition: FlowBaseVanguard.hpp:126
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:127
Definition: BlackoilModelParameters.hpp:41
Definition: FlowBaseVanguard.hpp:80
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:81
Definition: FlowBaseVanguard.hpp:88
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:89
Definition: FlowBaseVanguard.hpp:68
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:69
Definition: FlowBaseVanguard.hpp:64
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:65
Definition: FlowBaseVanguard.hpp:121
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:122
Definition: FlowBaseVanguard.hpp:84
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:85
Definition: FlowBaseVanguard.hpp:100
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:101
Definition: FlowBaseVanguard.hpp:72
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:73
Definition: FlowBaseVanguard.hpp:76
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:77
Definition: FlowBaseVanguard.hpp:105
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:106
Definition: FlowBaseVanguard.hpp:59
Definition: BlackoilModelParameters.hpp:89
Definition: FlowBaseVanguard.hpp:110
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:111
Definition: FlowBaseVanguard.hpp:115
UndefinedProperty type
Definition: FlowBaseVanguard.hpp:116