diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc
index adb3d1480349a1de9843a889af91ddf7e60712da..55add0c6412e54124ad367d62e80ce8b0460db79 100644
--- a/src/one-body-sample.cc
+++ b/src/one-body-sample.cc
@@ -204,7 +204,6 @@ int main(int argc, char *argv[]) {
     *s4_new = s4_old;
 
     SingletonVectorType vonMisesStress;
-
     VectorType b4;
 
     auto const nodalIntegrals =
@@ -219,18 +218,21 @@ int main(int argc, char *argv[]) {
     std::fstream octave_writer("data", std::fstream::out);
     std::fstream coefficient_writer("coefficient", std::fstream::out);
     timer.reset();
-    auto const timesteps = parset.get<size_t>("timesteps");
-    octave_writer << "# name: A" << std::endl << "# type: matrix" << std::endl
-                  << "# rows: " << timesteps << std::endl << "# columns: 3"
-                  << std::endl;
-    double const h = 1.0 / timesteps;
-    auto const &neumannFunction = functions.get("neumannCondition");
-    auto const &dirichletFunction = functions.get("dirichletCondition");
+
     auto const L = parset.get<double>("boundary.friction.ruina.L");
     auto const a = parset.get<double>("boundary.friction.ruina.a");
     auto const b = parset.get<double>("boundary.friction.ruina.b");
     auto const eta = parset.get<double>("boundary.friction.eta");
     auto const mu = parset.get<double>("boundary.friction.mu");
+    auto const timesteps = parset.get<size_t>("timesteps");
+    double const h = 1.0 / timesteps;
+
+    octave_writer << "# name: A" << std::endl << "# type: matrix" << std::endl
+                  << "# rows: " << timesteps << std::endl << "# columns: 3"
+                  << std::endl;
+
+    auto const &dirichletFunction = functions.get("dirichletCondition");
+    auto const &neumannFunction = functions.get("neumannCondition");
 
     for (size_t run = 1; run <= timesteps; ++run) {
       if (parset.get<bool>("printProgress")) {