mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
addressing reviewing comments
This commit is contained in:
parent
2c75adf165
commit
4f51eb35d5
@ -758,10 +758,10 @@ list (APPEND PUBLIC_HEADER_FILES
|
|||||||
opm/simulators/flow/FlowMain.hpp
|
opm/simulators/flow/FlowMain.hpp
|
||||||
opm/simulators/flow/FlowProblem.hpp
|
opm/simulators/flow/FlowProblem.hpp
|
||||||
opm/simulators/flow/FlowProblemBlackoil.hpp
|
opm/simulators/flow/FlowProblemBlackoil.hpp
|
||||||
opm/simulators/flow/FlowProblemComp.hpp
|
|
||||||
opm/simulators/flow/FlowProblemParameters.hpp
|
|
||||||
opm/simulators/flow/FlowProblemBlackoilProperties.hpp
|
opm/simulators/flow/FlowProblemBlackoilProperties.hpp
|
||||||
|
opm/simulators/flow/FlowProblemComp.hpp
|
||||||
opm/simulators/flow/FlowProblemCompProperties.hpp
|
opm/simulators/flow/FlowProblemCompProperties.hpp
|
||||||
|
opm/simulators/flow/FlowProblemParameters.hpp
|
||||||
opm/simulators/flow/FlowUtils.hpp
|
opm/simulators/flow/FlowUtils.hpp
|
||||||
opm/simulators/flow/FlowsData.hpp
|
opm/simulators/flow/FlowsData.hpp
|
||||||
opm/simulators/flow/FlowThresholdPressure.hpp
|
opm/simulators/flow/FlowThresholdPressure.hpp
|
||||||
|
@ -128,8 +128,7 @@ namespace Opm {
|
|||||||
template <class TypeTag>
|
template <class TypeTag>
|
||||||
class FlowExpProblem : public FlowProblemBlackoil<TypeTag> //, public FvBaseProblem<TypeTag>
|
class FlowExpProblem : public FlowProblemBlackoil<TypeTag> //, public FvBaseProblem<TypeTag>
|
||||||
{
|
{
|
||||||
typedef FlowProblemBlackoil<TypeTag> ParentType;
|
using ParentType = FlowProblemBlackoil<TypeTag>;
|
||||||
using BaseType = ParentType; // GetPropType<TypeTag, Properties::BaseProblem>;
|
|
||||||
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
|
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -143,7 +142,7 @@ public:
|
|||||||
{
|
{
|
||||||
// \Note: the SimulatorTimer does not carry any useful information, so PRT file (if it gets output) will contain wrong
|
// \Note: the SimulatorTimer does not carry any useful information, so PRT file (if it gets output) will contain wrong
|
||||||
// timing information.
|
// timing information.
|
||||||
BaseType::writeOutput(SimulatorTimer{}, verbose);
|
ParentType::writeOutput(SimulatorTimer{}, verbose);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user