diff --git a/exercises/exercise-basic/injection2p2cproblem.hh b/exercises/exercise-basic/injection2p2cproblem.hh index f564bffe04205ab4d8a137a1fd7a255c22bf9886..ab6ba0387f1591bf642661e6f2456a22564641cd 100644 --- a/exercises/exercise-basic/injection2p2cproblem.hh +++ b/exercises/exercise-basic/injection2p2cproblem.hh @@ -251,7 +251,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); // initially we have some nitrogen dissolved // saturation mole fraction would be diff --git a/exercises/exercise-basic/injection2pniproblem.hh b/exercises/exercise-basic/injection2pniproblem.hh index 7642c96a53db03c2eb80ba88f526f50fed8890ed..5d44bbceb375c88a48d642e630d69c8bbfd8be08 100644 --- a/exercises/exercise-basic/injection2pniproblem.hh +++ b/exercises/exercise-basic/injection2pniproblem.hh @@ -253,7 +253,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/exercise-basic/injection2pproblem.hh b/exercises/exercise-basic/injection2pproblem.hh index a4f762b51cb01f347ca5cb2dd2815dcbcc2cae78..789a0311f827259a5fed1f4b506fc1c82dc6b306 100644 --- a/exercises/exercise-basic/injection2pproblem.hh +++ b/exercises/exercise-basic/injection2pproblem.hh @@ -250,7 +250,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh b/exercises/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh index 0ded6f6e318a04d42753cbb792e59d6a057974b1..38ddb50090d38f3f1fe9d10df273b74854aa2650 100644 --- a/exercises/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh +++ b/exercises/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh @@ -283,7 +283,7 @@ public: PrimaryVariables values(0.0); values.setState(initialPhasePresence_); - values[pressureIdx] = pressure_ + 1. * this->gravity()[1] * (globalPos[1] - this->fvGridGeometry().bBoxMax()[1]); + values[pressureIdx] = pressure_ + 1. * this->spatialParams().gravity(globalPos)[1] * (globalPos[1] - this->fvGridGeometry().bBoxMax()[1]); values[switchIdx] = initialSw_; values[Indices::temperatureIdx] = temperature_; diff --git a/exercises/exercise-fractures/fractureproblem.hh b/exercises/exercise-fractures/fractureproblem.hh index 5088241cc9f6c900899ce79e70db7c990f274892..dc92eaa54bfa1ba6e92a1d8763d148d263d80213 100644 --- a/exercises/exercise-fractures/fractureproblem.hh +++ b/exercises/exercise-fractures/fractureproblem.hh @@ -182,7 +182,7 @@ public: const auto domainHeight = this->fvGridGeometry().bBoxMax()[1]; // we assume a constant water density of 1000 for initial conditions! - const auto& g = this->gravityAtPos(globalPos); + const auto& g = this->spatialParams().gravity(globalPos); PrimaryVariables values; Scalar densityW = 1000.0; values[pressureIdx] = 1e5 - (domainHeight - globalPos[1])*densityW*g[1]; diff --git a/exercises/exercise-fractures/matrixproblem.hh b/exercises/exercise-fractures/matrixproblem.hh index 7c475d979197ed4c24fbe0fa8d0488b6752af000..85092b7e79da06302c7c3da9e63d7bd57c30f2ff 100644 --- a/exercises/exercise-fractures/matrixproblem.hh +++ b/exercises/exercise-fractures/matrixproblem.hh @@ -199,7 +199,7 @@ public: const auto domainHeight = this->fvGridGeometry().bBoxMax()[1]; // we assume a constant water density of 1000 for initial conditions! - const auto& g = this->gravityAtPos(globalPos); + const auto& g = this->spatialParams().gravity(globalPos); PrimaryVariables values; Scalar densityW = 1000.0; values[pressureIdx] = 1e5 - (domainHeight - globalPos[1])*densityW*g[1]; diff --git a/exercises/exercise-grids/injection2pproblem.hh b/exercises/exercise-grids/injection2pproblem.hh index 910b2ff8a5dfebe6ca14442bd7ae7ddc5f3190f6..01bf863ac538750bb1eb4933eafaff53625f958c 100644 --- a/exercises/exercise-grids/injection2pproblem.hh +++ b/exercises/exercise-grids/injection2pproblem.hh @@ -241,7 +241,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/exercise-properties/problem.hh b/exercises/exercise-properties/problem.hh index f336029375bf8b5acfa01ebe3d267e6e9df92d5d..bc0cf9451316125f4f1bb0726d9edf3bb37fcdc2 100644 --- a/exercises/exercise-properties/problem.hh +++ b/exercises/exercise-properties/problem.hh @@ -157,7 +157,7 @@ public: Scalar factor = (width*alpha + (1.0 - alpha)*globalPos[0])/width; // hydrostatic pressure scaled by alpha - values[pressureH2OIdx] = 1e5 - factor*densityW*this->gravity()[1]*depth; + values[pressureH2OIdx] = 1e5 - factor*densityW*this->spatialParams().gravity(globalPos)[1]*depth; values[saturationDNAPLIdx] = 0.0; return values; @@ -203,7 +203,7 @@ public: Scalar depth = this->fvGridGeometry().bBoxMax()[1] - globalPos[1]; // hydrostatic pressure - values[pressureH2OIdx] = 1e5 - densityW*this->gravity()[1]*depth; + values[pressureH2OIdx] = 1e5 - densityW*this->spatialParams().gravity(globalPos)[1]*depth; values[saturationDNAPLIdx] = 0; return values; } diff --git a/exercises/exercise-runtimeparams/injection2pproblem.hh b/exercises/exercise-runtimeparams/injection2pproblem.hh index ea353268dfbe27f1bdffed38d1b0d2985dd416d0..d80f4949b43951ba8bbb9f83a48e379869f99eb1 100644 --- a/exercises/exercise-runtimeparams/injection2pproblem.hh +++ b/exercises/exercise-runtimeparams/injection2pproblem.hh @@ -242,7 +242,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/solution/exercise-basic/injection2pniproblem.hh b/exercises/solution/exercise-basic/injection2pniproblem.hh index 8d971152777ecdd89e5b7d1b531bb6578e5e72c2..ababa5ad22716de6f76ce610934d41371316680e 100644 --- a/exercises/solution/exercise-basic/injection2pniproblem.hh +++ b/exercises/solution/exercise-basic/injection2pniproblem.hh @@ -242,7 +242,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh b/exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh index 0ded6f6e318a04d42753cbb792e59d6a057974b1..38ddb50090d38f3f1fe9d10df273b74854aa2650 100644 --- a/exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh +++ b/exercises/solution/exercise-coupling-ff-pm/turbulence/ex_turbulence_pmproblem.hh @@ -283,7 +283,7 @@ public: PrimaryVariables values(0.0); values.setState(initialPhasePresence_); - values[pressureIdx] = pressure_ + 1. * this->gravity()[1] * (globalPos[1] - this->fvGridGeometry().bBoxMax()[1]); + values[pressureIdx] = pressure_ + 1. * this->spatialParams().gravity(globalPos)[1] * (globalPos[1] - this->fvGridGeometry().bBoxMax()[1]); values[switchIdx] = initialSw_; values[Indices::temperatureIdx] = temperature_; diff --git a/exercises/solution/exercise-fractures/fractureproblem.hh b/exercises/solution/exercise-fractures/fractureproblem.hh index 1f74f6c656009c41c7fc3d8f65f3d34dbc4f975e..e20a9bc5d3c56dff7a13ac5429a729d0cb1bc857 100644 --- a/exercises/solution/exercise-fractures/fractureproblem.hh +++ b/exercises/solution/exercise-fractures/fractureproblem.hh @@ -186,7 +186,7 @@ public: const auto domainHeight = this->fvGridGeometry().bBoxMax()[1]; // we assume a constant water density of 1000 for initial conditions! - const auto& g = this->gravityAtPos(globalPos); + const auto& g = this->spatialParams().gravity(globalPos); PrimaryVariables values; Scalar densityW = 1000.0; values[pressureIdx] = 1e5 - (domainHeight - globalPos[1])*densityW*g[1]; diff --git a/exercises/solution/exercise-fractures/matrixproblem.hh b/exercises/solution/exercise-fractures/matrixproblem.hh index ab15c84c0d76df612e5c5da4ffb7417bfd2dde9a..e967be6f5e8f496574ec0b72d572f7efae3befa4 100644 --- a/exercises/solution/exercise-fractures/matrixproblem.hh +++ b/exercises/solution/exercise-fractures/matrixproblem.hh @@ -251,7 +251,7 @@ public: const auto domainHeight = this->fvGridGeometry().bBoxMax()[1]; // we assume a constant water density of 1000 for initial conditions! - const auto& g = this->gravityAtPos(globalPos); + const auto& g = this->spatialParams().gravity(globalPos); PrimaryVariables values; Scalar densityW = 1000.0; values[pressureIdx] = 1e5 - (domainHeight - globalPos[1])*densityW*g[1]; diff --git a/exercises/solution/exercise-grids/injection2pproblem.hh b/exercises/solution/exercise-grids/injection2pproblem.hh index 101c0379150b600d40dbe7404ec669f03e0b3da2..d152c88aaa461d41cd1c8fa1f9d22af5aeb79bdf 100644 --- a/exercises/solution/exercise-grids/injection2pproblem.hh +++ b/exercises/solution/exercise-grids/injection2pproblem.hh @@ -249,7 +249,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0; diff --git a/exercises/solution/exercise-properties/problem.hh b/exercises/solution/exercise-properties/problem.hh index 1aae5fcb8c66a9d15039500ee4e94e63a9034cf4..66a822ec62742b9db02cb8a0c7fed40949652fef 100644 --- a/exercises/solution/exercise-properties/problem.hh +++ b/exercises/solution/exercise-properties/problem.hh @@ -157,7 +157,7 @@ public: Scalar factor = (width*alpha + (1.0 - alpha)*globalPos[0])/width; // hydrostatic pressure scaled by alpha - values[pressureH2OIdx] = 1e5 - factor*densityW*this->gravity()[1]*depth; + values[pressureH2OIdx] = 1e5 - factor*densityW*this->spatialParams().gravity(globalPos)[1]*depth; values[saturationDNAPLIdx] = 0.0; return values; @@ -206,7 +206,7 @@ public: Scalar depth = this->fvGridGeometry().bBoxMax()[1] - globalPos[1]; // hydrostatic pressure - values[pressureH2OIdx] = 1e5 - densityW*this->gravity()[1]*depth; + values[pressureH2OIdx] = 1e5 - densityW*this->spatialParams().gravity(globalPos)[1]*depth; values[saturationDNAPLIdx] = 0; return values; } diff --git a/exercises/solution/exercise-runtimeparams/injection2pproblem.hh b/exercises/solution/exercise-runtimeparams/injection2pproblem.hh index b2d79304a3f0a2778f1b075ad5b7b41241c7d30f..5eb8a949cc54e9e7f6d9ef013c4ffc8ea3ffa29b 100644 --- a/exercises/solution/exercise-runtimeparams/injection2pproblem.hh +++ b/exercises/solution/exercise-runtimeparams/injection2pproblem.hh @@ -248,7 +248,7 @@ public: // assume an intially hydrostatic liquid pressure profile // note: we subtract rho_w*g*h because g is defined negative - const Scalar pw = 1.0e5 - densityW*this->gravity()[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); + const Scalar pw = 1.0e5 - densityW*this->spatialParams().gravity(globalPos)[dimWorld-1]*(aquiferDepth_ - globalPos[dimWorld-1]); values[Indices::pressureIdx] = pw; values[Indices::saturationIdx] = 0.0;