From e362a1a27d1e4154da2fbcaad6ea9c9bbae16f73 Mon Sep 17 00:00:00 2001 From: Klaus Mosthaf <klmos@env.dtu.dk> Date: Mon, 30 Sep 2013 14:19:45 +0000 Subject: [PATCH] Corrected typos and docu. Reviewed by Martin git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11588 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/material/components/dnapl.hh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dumux/material/components/dnapl.hh b/dumux/material/components/dnapl.hh index cdef967c57..2cfdb4a176 100644 --- a/dumux/material/components/dnapl.hh +++ b/dumux/material/components/dnapl.hh @@ -19,7 +19,7 @@ /*! * \file * \ingroup Components - * \brief A simple implementation of a DNAPL. + * \brief A simple implementation of a DNAPL (TCE). */ #ifndef DUMUX_DNAPL_HH #define DUMUX_DNAPL_HH @@ -32,7 +32,7 @@ namespace Dumux { /*! * \ingroup Components - * \brief A much simple component for an exemplary dense NAPL (TCE). + * \brief A simple implementation of TCE as exemplary component for a dense NAPL. * * \tparam Scalar The type used for scalar values */ @@ -42,7 +42,7 @@ class DNAPL : public Component<Scalar, DNAPL<Scalar> > public: /*! - * \brief A human readable name for the TCE. + * \brief A human readable name for the dense NAPL TCE. */ static const char *name() { return "DNAPL_TCE"; } @@ -99,13 +99,13 @@ public: }; /*! - * \brief Returns true iff the gas phase is assumed to be compressible + * \brief Returns true if the gas phase is assumed to be compressible */ static bool gasIsCompressible() { return true; } /*! - * \brief Returns true iff the liquid phase is assumed to be compressible + * \brief Returns true if the liquid phase is assumed to be compressible */ static bool liquidIsCompressible() { return false; } @@ -124,7 +124,7 @@ public: }; /*! - * \brief Returns true iff the gas phase is assumed to be ideal + * \brief Returns true if the gas phase is assumed to be ideal */ static bool gasIsIdeal() { return true; } @@ -148,10 +148,10 @@ public: */ static Scalar liquidViscosity(Scalar temperature, Scalar pressure) { - return 5.7e-4;//[Pa s] + return 5.7e-4;// [Pa s] }; }; -} // end namepace +} // end namespace #endif -- GitLab