diff --git a/test/freeflow/navierstokes/angelitestproblem.hh b/test/freeflow/navierstokes/angelitestproblem.hh index a4d1305c666d8e8bfae5bd2db0ec668cf293ed2b..a6561feb94ae6a47a1f24260be959a9963320b6c 100644 --- a/test/freeflow/navierstokes/angelitestproblem.hh +++ b/test/freeflow/navierstokes/angelitestproblem.hh @@ -98,7 +98,7 @@ class AngeliTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); using TimeLoopPtr = std::shared_ptr<TimeLoop<Scalar>>; @@ -161,9 +161,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} diff --git a/test/freeflow/navierstokes/channeltestproblem.hh b/test/freeflow/navierstokes/channeltestproblem.hh index bc893ef8cb21c0c219aceaad9c3a9dbfdbeb6d86..8dfe135e62116d050512e9705d134daed5dcd849 100644 --- a/test/freeflow/navierstokes/channeltestproblem.hh +++ b/test/freeflow/navierstokes/channeltestproblem.hh @@ -110,7 +110,7 @@ class ChannelTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using TimeLoopPtr = std::shared_ptr<CheckPointTimeLoop<Scalar>>; @@ -145,9 +145,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} /*! diff --git a/test/freeflow/navierstokes/closedsystemtestproblem.hh b/test/freeflow/navierstokes/closedsystemtestproblem.hh index 35c455f70e434cdd952e6fc4b6017f85a170ea4f..3ecf2fcbe8c48bebb6b5c8cb8389cbffb59b7503 100644 --- a/test/freeflow/navierstokes/closedsystemtestproblem.hh +++ b/test/freeflow/navierstokes/closedsystemtestproblem.hh @@ -91,7 +91,7 @@ class ClosedSystemTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); public: @@ -130,9 +130,9 @@ public: * \param values Stores the source values, acts as return value * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} /*! diff --git a/test/freeflow/navierstokes/doneatestproblem.hh b/test/freeflow/navierstokes/doneatestproblem.hh index 1613a194de8984a89b084f571bf8b73affd86b9f..5ba0d15881c54bb8f6ca57cd5bdad2c1f83073f3 100644 --- a/test/freeflow/navierstokes/doneatestproblem.hh +++ b/test/freeflow/navierstokes/doneatestproblem.hh @@ -103,7 +103,7 @@ class DoneaTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); @@ -172,9 +172,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - SourceValues source(0.0); + NumEqVector source(0.0); Scalar x = globalPos[0]; Scalar y = globalPos[1]; diff --git a/test/freeflow/navierstokes/kovasznaytestproblem.hh b/test/freeflow/navierstokes/kovasznaytestproblem.hh index 27f3925dd81b3cfddfbbfe7ac2ba1f432a147aa4..ce99d609fdf58e17c81c65c1270443f2f1fca9e0 100644 --- a/test/freeflow/navierstokes/kovasznaytestproblem.hh +++ b/test/freeflow/navierstokes/kovasznaytestproblem.hh @@ -96,7 +96,7 @@ class KovasznayTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); @@ -164,9 +164,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} diff --git a/test/freeflow/navierstokesnc/channeltestproblem.hh b/test/freeflow/navierstokesnc/channeltestproblem.hh index f999ee6f8e6c9697908b8b621fbbf1fae84d8119..5cebba5386f4cd52ef2a27306866bc32b725f008 100644 --- a/test/freeflow/navierstokesnc/channeltestproblem.hh +++ b/test/freeflow/navierstokesnc/channeltestproblem.hh @@ -122,7 +122,7 @@ class ChannelNCTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using TimeLoopPtr = std::shared_ptr<CheckPointTimeLoop<Scalar>>; using GridVariables = typename GET_PROP_TYPE(TypeTag, GridVariables); @@ -161,9 +161,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} /*! diff --git a/test/freeflow/navierstokesnc/densityflowproblem.hh b/test/freeflow/navierstokesnc/densityflowproblem.hh index 3af036a487b05175aa95a7ecadec0cad01773d1e..bd6fc5e41094dd863ef5f68efd186d87b81368c7 100644 --- a/test/freeflow/navierstokesnc/densityflowproblem.hh +++ b/test/freeflow/navierstokesnc/densityflowproblem.hh @@ -111,7 +111,7 @@ class DensityDrivenFlowProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using GridVariables = typename GET_PROP_TYPE(TypeTag, GridVariables); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); @@ -152,9 +152,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \} /*! diff --git a/test/freeflow/navierstokesnc/msfreeflowtestproblem.hh b/test/freeflow/navierstokesnc/msfreeflowtestproblem.hh index 9f55cb50b241729627299a2da5f6b14da201b518..9f008b1fb086a80063b3b62c752d32ced8424f92 100644 --- a/test/freeflow/navierstokesnc/msfreeflowtestproblem.hh +++ b/test/freeflow/navierstokesnc/msfreeflowtestproblem.hh @@ -207,7 +207,7 @@ class MaxwellStefanNCTestProblem : public NavierStokesProblem<TypeTag> using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>; using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables); - using SourceValues = typename GET_PROP_TYPE(TypeTag, NumEqVector); + using NumEqVector = typename GET_PROP_TYPE(TypeTag, NumEqVector); using GridVariables = typename GET_PROP_TYPE(TypeTag, GridVariables); using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector); @@ -352,9 +352,9 @@ public: * * \param globalPos The global position */ - SourceValues sourceAtPos(const GlobalPosition &globalPos) const + NumEqVector sourceAtPos(const GlobalPosition &globalPos) const { - return SourceValues(0.0); + return NumEqVector(0.0); } // \}