From a1795be02df752a29c57ad5d293feb132a9213a6 Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Sat, 14 Dec 2013 13:23:10 +0100
Subject: [PATCH] [Cleanup] No reason to have width/height configurable

Also do not assign a double to an integer
---
 src/one-body-sample.cc     | 13 ++++++-------
 src/one-body-sample.parset |  2 --
 2 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc
index 4b56ab13..d31ab8aa 100644
--- a/src/one-body-sample.cc
+++ b/src/one-body-sample.cc
@@ -112,17 +112,16 @@ int main(int argc, char *argv[]) {
     // {{{ Set up grid
     using Grid = Dune::ALUGrid<dims, dims, Dune::simplex, Dune::nonconforming>;
 
-    Dune::FieldVector<typename Grid::ctype, dims> lowerLeft(0);
-    Dune::FieldVector<typename Grid::ctype, dims> upperRight(1);
-    upperRight[0] = parset.get<size_t>("body.width");
-    upperRight[1] = parset.get<size_t>("body.height");
+    Dune::FieldVector<size_t, dims> lowerLeft(0);
+    Dune::FieldVector<size_t, dims> upperRight(1);
+    upperRight[0] = 5;
+    upperRight[1] = 1;
 
     std::shared_ptr<Grid> grid;
     {
       Dune::array<unsigned int, dims> elements;
-      std::fill(elements.begin(), elements.end(), 1);
-      elements[0] = parset.get<size_t>("body.width");
-      elements[1] = parset.get<size_t>("body.height");
+      for (size_t i = 0; i < dims; ++i)
+        elements[i] = upperRight[i]; // 1x1 elements
 
       grid = Dune::StructuredGridFactory<Grid>::createSimplexGrid(
           lowerLeft, upperRight, elements);
diff --git a/src/one-body-sample.parset b/src/one-body-sample.parset
index 5f61cf30..e10ed132 100644
--- a/src/one-body-sample.parset
+++ b/src/one-body-sample.parset
@@ -10,8 +10,6 @@ finalTime = 15
 youngModulus = 5e7
 poissonRatio = 0.3 # The closer we get to 0.5, the more wiggly everything gets
 density = 5000
-height  = 1
-width   = 5
 shearViscosity = 0
 bulkViscosity  = 0
 
-- 
GitLab