Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions CMakeLists_files.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,8 @@ list (APPEND PUBLIC_HEADER_FILES
opm/simulators/linalg/bda/openclSolverBackend.hpp
opm/simulators/linalg/bda/MultisegmentWellContribution.hpp
opm/simulators/linalg/bda/WellContributions.hpp
opm/simulators/linalg/BlackoilAmg.hpp
opm/simulators/linalg/amgcpr.hh
opm/simulators/linalg/twolevelmethodcpr.hh
opm/simulators/linalg/CPRPreconditioner.hpp
opm/simulators/linalg/ExtractParallelGridInformationToISTL.hpp
opm/simulators/linalg/FlexibleSolver.hpp
opm/simulators/linalg/FlexibleSolver_impl.hpp
Expand Down
4 changes: 3 additions & 1 deletion ebos/eclpeacemanwell.hh
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ public:
auto wellDofIt = dofVariables_.begin();
const auto& wellDofEndIt = dofVariables_.end();
for (; wellDofIt != wellDofEndIt; ++ wellDofIt) {
neighbors[wellGlobalDof].insert(wellDofIt->first);
if (wellDofIt->second->element.partitionType() == Dune::PartitionType::InteriorEntity) {
neighbors[wellGlobalDof].insert(wellDofIt->first);
}
neighbors[wellDofIt->first].insert(wellGlobalDof);
}
}
Expand Down
16 changes: 0 additions & 16 deletions flow/flow_blackoil_dunecpr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ namespace Opm {
static constexpr int value = 100;
};
template<class TypeTag>
struct UseAmg<TypeTag, TTag::EclFlowProblemSimple> { // probably not used
static constexpr bool value = true;
};
template<class TypeTag>
struct UseCpr<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr bool value = true;
};
template<class TypeTag>
struct CprMaxEllIter<TypeTag,TTag::EclFlowProblemSimple> {
static constexpr int value = 1;
};
Expand All @@ -70,17 +62,9 @@ namespace Opm {
static constexpr int value = 3;
};
template<class TypeTag>
struct CprSolverVerbose<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr int value = 0;
};
template<class TypeTag>
struct LinearSolverConfiguration<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr auto value = "ilu0";
};
template<class TypeTag>
struct SystemStrategy<TypeTag, TTag::EclFlowProblemSimple> {
static constexpr auto value = "quasiimpes";
};

template<class TypeTag>
struct FluidSystem<TypeTag, TTag::EclFlowProblemSimple>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_blackoil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_blackoil.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_gasoil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_gasoil.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_brine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_brine.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_polymer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_polymer.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
3 changes: 0 additions & 3 deletions flow/flow_ebos_oilwater_polymer_injectivity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
#include "config.h"

// Define making clear that the simulator supports AMG
#define FLOW_SUPPORT_AMG 1

#include <flow/flow_ebos_oilwater_polymer_injectivity.hpp>

#include <opm/material/common/ResetLocale.hpp>
Expand Down
Loading