From 127ab0ed6c54c2a6f93b362cb1a7b8cdc741e141 Mon Sep 17 00:00:00 2001
From: Katherina Baber <katherina.baber@gmail.com>
Date: Tue, 14 Feb 2012 12:18:08 +0000
Subject: [PATCH] corrected documentation

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7750 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 test/boxmodels/1p/1ptestproblem.hh                  | 11 ++++++-----
 test/boxmodels/1p/1ptestspatialparameters.hh        |  3 +--
 test/boxmodels/1p/test_1p.cc                        |  8 +++++++-
 test/boxmodels/1p2c/1p2coutflowproblem.hh           |  2 +-
 test/boxmodels/1p2c/1p2coutflowspatialparameters.hh |  8 ++++----
 5 files changed, 19 insertions(+), 13 deletions(-)

diff --git a/test/boxmodels/1p/1ptestproblem.hh b/test/boxmodels/1p/1ptestproblem.hh
index 6fec7003db..8f2799ca33 100644
--- a/test/boxmodels/1p/1ptestproblem.hh
+++ b/test/boxmodels/1p/1ptestproblem.hh
@@ -93,14 +93,15 @@ SET_BOOL_PROP(OnePTestProblem, EnableGravity, true);
 /*!
  * \ingroup OnePBoxModel
  * \ingroup BoxTestProblems
- * \brief Air flow in porous media
+ * \brief  Test problem for the one-phase box model:
+ * water is flowing from bottom to top through and around a low permeable lens.
  *
  * The domain is box shaped. All sides are closed (Neumann 0 boundary)
  * except the top and bottom boundaries (Dirichlet), where water is
  * flowing from bottom to top.
  *
- * In the middle of the domain, a lens with low permeability (\f$ K=10e-12f$)
- * compared to the surrounding material (\f$ K=10e-10f$) is defined.
+ * In the middle of the domain, a lens with low permeability (\f$K=10e-12\f$)
+ * compared to the surrounding material (\f$ K=10e-10\f$) is defined.
  *
  * To run the simulation execute the following line in shell:
  * <tt>./test_1p -parameterFile test_1p.input</tt>
@@ -167,14 +168,14 @@ public:
      */
     Scalar temperature() const
     { return 273.15 + 10; } // 10C
-    // \}
+
 
     void sourceAtPos(PrimaryVariables &values,
                 const GlobalPosition &globalPos) const
     {
         values = 0;
     }
-
+    // \}
     /*!
      * \name Boundary conditions
      */
diff --git a/test/boxmodels/1p/1ptestspatialparameters.hh b/test/boxmodels/1p/1ptestspatialparameters.hh
index 085f6591db..95316f1d97 100644
--- a/test/boxmodels/1p/1ptestspatialparameters.hh
+++ b/test/boxmodels/1p/1ptestspatialparameters.hh
@@ -82,8 +82,7 @@ public:
     }
 
     /*!
-     * \brief Apply the intrinsic permeability tensor to a pressure
-     *        potential gradient.
+     * \brief Return the intrinsic permeability for the current sub-control volume.
      *
      * \param element The current finite element
      * \param fvElemGeom The current finite volume geometry of the element
diff --git a/test/boxmodels/1p/test_1p.cc b/test/boxmodels/1p/test_1p.cc
index 962799c91b..6b15c4e2d8 100644
--- a/test/boxmodels/1p/test_1p.cc
+++ b/test/boxmodels/1p/test_1p.cc
@@ -48,7 +48,13 @@ void usage(const char *progName, const std::string &errorMsg)
                                         "\t-tEnd                          The end of the simulation. [s] \n"
                                         "\t-dtInitial                     The initial timestep size. [s] \n"
                                         "\t-gridFile                      The file name of the file containing the grid \n"
-                                        "\t                                   definition in DGF format\n";
+                                        "\t                                   definition in DGF format\n"
+                                        "\t-SpatialParameters.lensLowerLeftX   Dimension of the lens [m] \n"
+                                        "\t-SpatialParameters.lensLowerLeftY   Dimension of the lens [m] \n"
+                                        "\t-SpatialParameters.lensUpperRightX  Dimension of the lens [m] \n"
+                                        "\t-SpatialParameters.lensUpperRighty  Dimension of the lens [m] \n"
+                                        "\t-SpatialParameters.permeability     Permeability of the domain [mm^2] \n"
+                                        "\t-SpatialParameters.permeabilityLens Permeability of the lens [mm^2] \n";
 
         std::cout << errorMessageOut
                   << "\n";
diff --git a/test/boxmodels/1p2c/1p2coutflowproblem.hh b/test/boxmodels/1p2c/1p2coutflowproblem.hh
index a782f18970..b0516f8aa2 100644
--- a/test/boxmodels/1p2c/1p2coutflowproblem.hh
+++ b/test/boxmodels/1p2c/1p2coutflowproblem.hh
@@ -98,7 +98,7 @@ SET_BOOL_PROP(OnePTwoCOutflowProblem, EnableGravity, false);
  * is transported with the water flow from the left side to the right.
  *
  * The model domain is 1m times 1m with a discretization length of 0.05m
- * and homogeneous soil properties (\f$ K=10e-10, \Phi=0.4\f$).
+ * and homogeneous soil properties (\f$ \mathrm{K=10e-10, \Phi=0.4}\f$).
  * Initially the domain is filled with pure water.
  *
  * At the left side, a Dirichlet condition defines a nitrogen mole fraction
diff --git a/test/boxmodels/1p2c/1p2coutflowspatialparameters.hh b/test/boxmodels/1p2c/1p2coutflowspatialparameters.hh
index abe019d97f..370296fac7 100644
--- a/test/boxmodels/1p2c/1p2coutflowspatialparameters.hh
+++ b/test/boxmodels/1p2c/1p2coutflowspatialparameters.hh
@@ -91,7 +91,7 @@ public:
     };
 
     /*!
-     * \brief Define the intrinsic permeability \f$[m^2]\f$.
+     * \brief Define the intrinsic permeability \f$\mathrm{[m^2]}\f$.
      *
      * \param element The current finite element
      * \param fvElemGeom The current finite volume geometry of the element
@@ -105,7 +105,7 @@ public:
     }
 
     /*!
-     * \brief Define the porosity \f$[-]\f$.
+     * \brief Define the porosity \f$\mathrm{[-]}\f$.
      *
      * \param element The finite element
      * \param fvElemGeom The finite volume geometry
@@ -119,7 +119,7 @@ public:
     }
 
     /*!
-     * \brief Define the tortuosity \f$[?]\f$.
+     * \brief Define the tortuosity \f$\mathrm{[-]}\f$.
      *
      * \param element The finite element
      * \param fvElemGeom The finite volume geometry
@@ -133,7 +133,7 @@ public:
     }
 
     /*!
-     * \brief Define the dispersivity \f$[?]\f$.
+     * \brief Define the dispersivity.
      *
      * \param element The finite element
      * \param fvElemGeom The finite volume geometry
-- 
GitLab