Skip to content
Snippets Groups Projects
Commit 4b428748 authored by Simon Emmert's avatar Simon Emmert
Browse files

[tests][2pncminni] rename forgotten fvGridGeometry occurences to gridGeometry

parent 07dd5199
No related branches found
No related tags found
1 merge request!1880[tests][2pncminni] rename forgotten fvGridGeometry occurences to gridGeometry
...@@ -105,13 +105,13 @@ int main(int argc, char** argv) try ...@@ -105,13 +105,13 @@ int main(int argc, char** argv) try
const auto& leafGridView = gridManager.grid().leafGridView(); const auto& leafGridView = gridManager.grid().leafGridView();
// create the finite volume grid geometry // create the finite volume grid geometry
using FVGridGeometry = GetPropType<TypeTag, Properties::GridGeometry>; using GridGeometry = GetPropType<TypeTag, Properties::GridGeometry>;
auto fvGridGeometry = std::make_shared<FVGridGeometry>(leafGridView); auto gridGeometry = std::make_shared<GridGeometry>(leafGridView);
fvGridGeometry->update(); gridGeometry->update();
// the problem (initial and boundary conditions) // the problem (initial and boundary conditions)
using Problem = GetPropType<TypeTag, Properties::Problem>; using Problem = GetPropType<TypeTag, Properties::Problem>;
auto problem = std::make_shared<Problem>(fvGridGeometry); auto problem = std::make_shared<Problem>(gridGeometry);
// get some time loop parameters // get some time loop parameters
using Scalar = GetPropType<TypeTag, Properties::Scalar>; using Scalar = GetPropType<TypeTag, Properties::Scalar>;
...@@ -124,7 +124,7 @@ int main(int argc, char** argv) try ...@@ -124,7 +124,7 @@ int main(int argc, char** argv) try
// the solution vector // the solution vector
using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>; using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>;
SolutionVector x(fvGridGeometry->numDofs()); SolutionVector x(gridGeometry->numDofs());
if (restartTime > 0) if (restartTime > 0)
{ {
using IOFields = GetPropType<TypeTag, Properties::IOFields>; using IOFields = GetPropType<TypeTag, Properties::IOFields>;
...@@ -134,7 +134,7 @@ int main(int argc, char** argv) try ...@@ -134,7 +134,7 @@ int main(int argc, char** argv) try
using SolidSystem = GetPropType<TypeTag, Properties::SolidSystem>; using SolidSystem = GetPropType<TypeTag, Properties::SolidSystem>;
const auto fileName = getParam<std::string>("Restart.File"); const auto fileName = getParam<std::string>("Restart.File");
const auto pvName = createPVNameFunction<IOFields, PrimaryVariables, ModelTraits, FluidSystem, SolidSystem>(); const auto pvName = createPVNameFunction<IOFields, PrimaryVariables, ModelTraits, FluidSystem, SolidSystem>();
loadSolution(x, fileName, pvName, *fvGridGeometry); loadSolution(x, fileName, pvName, *gridGeometry);
} }
else else
problem->applyInitialSolution(x); problem->applyInitialSolution(x);
...@@ -142,7 +142,7 @@ int main(int argc, char** argv) try ...@@ -142,7 +142,7 @@ int main(int argc, char** argv) try
// the grid variables // the grid variables
using GridVariables = GetPropType<TypeTag, Properties::GridVariables>; using GridVariables = GetPropType<TypeTag, Properties::GridVariables>;
auto gridVariables = std::make_shared<GridVariables>(problem, fvGridGeometry); auto gridVariables = std::make_shared<GridVariables>(problem, gridGeometry);
gridVariables->init(x); gridVariables->init(x);
// initialize the vtk output module // initialize the vtk output module
...@@ -163,11 +163,11 @@ int main(int argc, char** argv) try ...@@ -163,11 +163,11 @@ int main(int argc, char** argv) try
// the assembler with time loop for instationary problem // the assembler with time loop for instationary problem
using Assembler = FVAssembler<TypeTag, DiffMethod::numeric>; using Assembler = FVAssembler<TypeTag, DiffMethod::numeric>;
auto assembler = std::make_shared<Assembler>(problem, fvGridGeometry, gridVariables, timeLoop); auto assembler = std::make_shared<Assembler>(problem, gridGeometry, gridVariables, timeLoop);
// the linear solver // the linear solver
using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>; using LinearSolver = AMGBiCGSTABBackend<LinearSolverTraits<GridGeometry>>;
auto linearSolver = std::make_shared<LinearSolver>(leafGridView, fvGridGeometry->dofMapper()); auto linearSolver = std::make_shared<LinearSolver>(leafGridView, gridGeometry->dofMapper());
// the non-linear solver // the non-linear solver
using NewtonSolver = NewtonSolver<Assembler, LinearSolver>; using NewtonSolver = NewtonSolver<Assembler, LinearSolver>;
......
...@@ -91,9 +91,9 @@ struct SolidSystem<TypeTag, TTag::Salinization> ...@@ -91,9 +91,9 @@ struct SolidSystem<TypeTag, TTag::Salinization>
template<class TypeTag> template<class TypeTag>
struct SpatialParams<TypeTag, TTag::Salinization> struct SpatialParams<TypeTag, TTag::Salinization>
{ {
using FVGridGeometry = GetPropType<TypeTag, Properties::GridGeometry>; using GridGeometry = GetPropType<TypeTag, Properties::GridGeometry>;
using Scalar = GetPropType<TypeTag, Properties::Scalar>; using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using type = SalinizationSpatialParams<FVGridGeometry, Scalar>; using type = SalinizationSpatialParams<GridGeometry, Scalar>;
}; };
// Set properties here to override the default property settings // Set properties here to override the default property settings
...@@ -188,7 +188,7 @@ class SalinizationProblem : public PorousMediumFlowProblem<TypeTag> ...@@ -188,7 +188,7 @@ class SalinizationProblem : public PorousMediumFlowProblem<TypeTag>
using ElementFluxVariablesCache = typename GridVariables::GridFluxVariablesCache::LocalView; using ElementFluxVariablesCache = typename GridVariables::GridFluxVariablesCache::LocalView;
using ElementVolumeVariables = typename GetPropType<TypeTag, Properties::GridVolumeVariables>::LocalView; using ElementVolumeVariables = typename GetPropType<TypeTag, Properties::GridVolumeVariables>::LocalView;
using Element = typename GridView::template Codim<0>::Entity; using Element = typename GridView::template Codim<0>::Entity;
using FVGridGeometry = GetPropType<TypeTag, Properties::GridGeometry>; using GridGeometry = GetPropType<TypeTag, Properties::GridGeometry>;
using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>; using SolutionVector = GetPropType<TypeTag, Properties::SolutionVector>;
using FVElementGeometry = typename GetPropType<TypeTag, Properties::GridGeometry>::LocalView; using FVElementGeometry = typename GetPropType<TypeTag, Properties::GridGeometry>::LocalView;
using SubControlVolume = typename FVElementGeometry::SubControlVolume; using SubControlVolume = typename FVElementGeometry::SubControlVolume;
...@@ -197,8 +197,8 @@ class SalinizationProblem : public PorousMediumFlowProblem<TypeTag> ...@@ -197,8 +197,8 @@ class SalinizationProblem : public PorousMediumFlowProblem<TypeTag>
using FluidState = GetPropType<TypeTag, Properties::FluidState>; using FluidState = GetPropType<TypeTag, Properties::FluidState>;
public: public:
SalinizationProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry) SalinizationProblem(std::shared_ptr<const GridGeometry> gridGeometry)
: ParentType(fvGridGeometry) : ParentType(gridGeometry)
{ {
//Fluidsystem //Fluidsystem
nTemperature_ = getParam<int>("FluidSystem.NTemperature"); nTemperature_ = getParam<int>("FluidSystem.NTemperature");
...@@ -220,7 +220,7 @@ public: ...@@ -220,7 +220,7 @@ public:
unsigned int codim = GetPropType<TypeTag, Properties::GridGeometry>::discMethod == DiscretizationMethod::box ? dim : 0; unsigned int codim = GetPropType<TypeTag, Properties::GridGeometry>::discMethod == DiscretizationMethod::box ? dim : 0;
permeability_.resize(fvGridGeometry->gridView().size(codim)); permeability_.resize(gridGeometry->gridView().size(codim));
FluidSystem::init(/*Tmin=*/temperatureLow_, FluidSystem::init(/*Tmin=*/temperatureLow_,
/*Tmax=*/temperatureHigh_, /*Tmax=*/temperatureHigh_,
/*nT=*/nTemperature_, /*nT=*/nTemperature_,
......
...@@ -42,18 +42,18 @@ namespace Dumux { ...@@ -42,18 +42,18 @@ namespace Dumux {
* \brief Spatial parameters for the salinization problem, where evaporation * \brief Spatial parameters for the salinization problem, where evaporation
* from a porous medium saturated wit brine and air leads to precipitation of salt. * from a porous medium saturated wit brine and air leads to precipitation of salt.
*/ */
template<class FVGridGeometry, class Scalar> template<class GridGeometry, class Scalar>
class SalinizationSpatialParams class SalinizationSpatialParams
: public FVSpatialParams<FVGridGeometry, Scalar, : public FVSpatialParams<GridGeometry, Scalar,
SalinizationSpatialParams<FVGridGeometry, Scalar>> SalinizationSpatialParams<GridGeometry, Scalar>>
{ {
using GridView = typename FVGridGeometry::GridView; using GridView = typename GridGeometry::GridView;
using FVElementGeometry = typename FVGridGeometry::LocalView; using FVElementGeometry = typename GridGeometry::LocalView;
using SubControlVolume = typename FVElementGeometry::SubControlVolume; using SubControlVolume = typename FVElementGeometry::SubControlVolume;
using Element = typename GridView::template Codim<0>::Entity; using Element = typename GridView::template Codim<0>::Entity;
using ParentType = FVSpatialParams<FVGridGeometry, Scalar, using ParentType = FVSpatialParams<GridGeometry, Scalar,
SalinizationSpatialParams<FVGridGeometry, Scalar>>; SalinizationSpatialParams<GridGeometry, Scalar>>;
using EffectiveLaw = RegularizedVanGenuchten<Scalar>; using EffectiveLaw = RegularizedVanGenuchten<Scalar>;
...@@ -66,8 +66,8 @@ public: ...@@ -66,8 +66,8 @@ public:
using MaterialLaw = EffToAbsLaw<EffectiveLaw>; using MaterialLaw = EffToAbsLaw<EffectiveLaw>;
using MaterialLawParams = typename MaterialLaw::Params; using MaterialLawParams = typename MaterialLaw::Params;
SalinizationSpatialParams(std::shared_ptr<const FVGridGeometry> fvGridGeometry) SalinizationSpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
: ParentType(fvGridGeometry) : ParentType(gridGeometry)
{ {
solubilityLimit_ = getParam<Scalar>("SpatialParams.SolubilityLimit", 0.26); solubilityLimit_ = getParam<Scalar>("SpatialParams.SolubilityLimit", 0.26);
referencePorosity_ = getParam<Scalar>("SpatialParams.referencePorosity", 0.11); referencePorosity_ = getParam<Scalar>("SpatialParams.referencePorosity", 0.11);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment