diff --git a/test/freeflow/navierstokes/channel/pipe/params.input b/test/freeflow/navierstokes/channel/pipe/params.input
index 9bcb4dacc3c10c43bbeba8a960d68da7c40292c3..66b549898c5ff69a86d5b5125ea5f657adef2aea 100644
--- a/test/freeflow/navierstokes/channel/pipe/params.input
+++ b/test/freeflow/navierstokes/channel/pipe/params.input
@@ -9,8 +9,7 @@ Grading1 = 1
 [Problem]
 Name = test_ff_stokes_channel_pipe
 MeanInletVelocity = 0.1 # [m/s]
-
-[Problem]
+InitialPressure = 1.0e5 # [Pa]
 EnableGravity = false
 EnableInertiaTerms = false
 
diff --git a/test/freeflow/navierstokes/channel/pipe/problem.hh b/test/freeflow/navierstokes/channel/pipe/problem.hh
index 91668701cdd87676fa18c63501cc941ccc36c94d..21ed3446d619000aa3fa0012c0ab3a1f98095bb8 100644
--- a/test/freeflow/navierstokes/channel/pipe/problem.hh
+++ b/test/freeflow/navierstokes/channel/pipe/problem.hh
@@ -52,6 +52,7 @@ public:
     {
         name_ = getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name");
         meanInletVelocity_ = getParamFromGroup<Scalar>(this->paramGroup(), "Problem.MeanInletVelocity");
+        initialPressure_ = getParamFromGroup<Scalar>(this->paramGroup(), "Problem.InitialPressure");
         mu_ = getParam<Scalar>("Component.LiquidKinematicViscosity")*getParam<Scalar>("Component.LiquidDensity");
 
         pipeRadius_ = this->gridGeometry().bBoxMax()[0] - this->gridGeometry().bBoxMin()[0];
@@ -109,7 +110,11 @@ public:
     { return analyticalSolution(globalPos); }
 
     PrimaryVariables initialAtPos(const GlobalPosition& globalPos) const
-    { return PrimaryVariables(0.0); }
+    {
+        PrimaryVariables values(0.0);
+        values[Indices::pressureIdx] = initialPressure_;
+        return values;
+    }
 
     PrimaryVariables analyticalSolution(const GlobalPosition& globalPos) const
     {
@@ -139,6 +144,7 @@ private:
     { return globalPos[1] > this->gridGeometry().bBoxMax()[1] - eps_; }
 
     std::string name_;
+    Scalar initialPressure_;
     Scalar meanInletVelocity_;
     Scalar mu_;
     Scalar pipeRadius_, pipeLength_;