Skip to content
Open
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 src/coreComponents/physicsSolvers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Contains:
# Specify solver headers
#
set( physicsSolversBase_headers
FieldApplicator.hpp
FieldStatisticsBase.hpp
LinearSolverParameters.hpp
NonlinearSolverParameters.hpp
Expand All @@ -35,7 +34,6 @@ set( physicsSolversBase_headers
# Specify solver sources
#
set( physicsSolversBase_sources
FieldApplicator.cpp
LinearSolverParameters.cpp
NonlinearSolverParameters.cpp
PhysicsSolverBase.cpp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ set( multiPhysicsSolvers_headers
CoupledReservoirAndWellsBase.hpp
CoupledReservoirAndWellKernels.hpp
CoupledSolver.hpp
FieldApplicator.hpp
PoromechanicsSolver.hpp
PoromechanicsConformingFractures.hpp
FlowProppantTransportSolver.hpp
Expand Down Expand Up @@ -70,6 +71,7 @@ set( multiPhysicsSolvers_sources
CoupledReservoirAndWellsBase.cpp
FlowProppantTransportSolver.cpp
HydrofractureSolver.cpp
FieldApplicator.cpp
MultiphasePoromechanics.cpp
OneWayCoupledFractureFlowContactMechanics.cpp
MultiphasePoromechanicsConformingFractures.cpp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,14 @@
#include "events/tasks/TasksManager.hpp"
#include "fieldSpecification/FieldSpecificationManager.hpp"
#include "fieldSpecification/FieldSpecificationBase.hpp"
#include "fieldSpecification/EquilibriumInitialCondition.hpp"
#include "common/FieldSpecificationOps.hpp"
#include "mesh/DomainPartition.hpp"
#include "mesh/MeshBody.hpp"
#include "mesh/MeshLevel.hpp"
#include "mesh/CellElementSubRegion.hpp"
#include "mesh/SurfaceElementSubRegion.hpp"
#include "functions/FunctionManager.hpp"
#include "functions/TableFunction.hpp"
#include "mesh/ElementSubRegionBase.hpp"
#include "physicsSolvers/fluidFlow/FlowSolverBase.hpp"
#include "physicsSolvers/fluidFlow/FlowSolverBaseFields.hpp"
#include "physicsSolvers/fluidFlow/CompositionalMultiphaseBase.hpp"
#include "physicsSolvers/fluidFlow/CompositionalMultiphaseBaseFields.hpp"
#include "constitutive/fluid/multifluid/MultiFluidBase.hpp"
#include "constitutive/fluid/multifluid/MultiFluidSelector.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,20 @@
#define SRC_CORECOMPONENTS_PHYSICSSOLVERS_FIELDAPPLICATOR_HPP_

#include "events/tasks/TaskBase.hpp"
#include "fieldSpecification/EquilibriumInitialCondition.hpp"
#include "functions/FunctionManager.hpp"
#include "physicsSolvers/fluidFlow/CompositionalMultiphaseBase.hpp"
#include "physicsSolvers/fluidFlow/FlowSolverBase.hpp"
#include "mesh/ElementSubRegionBase.hpp"

namespace geos
{

class EquilibriumInitialCondition;
class FunctionManager;
class FlowSolverBase;
class CompositionalMultiphaseBase;
class ElementSubRegionBase;
// class EquilibriumInitialCondition;
// class FunctionManager;
// class FlowSolverBase;
// class CompositionalMultiphaseBase;
// class ElementSubRegionBase;


/**
Expand Down
Loading