diff --git a/dumux/freeflow/stokes/localresidual.hh b/dumux/freeflow/stokes/localresidual.hh index a8ecd19886de161acb65ef25279fd50d9b78de90..25d749ab45b5e1d8a42bf3bb4128f4937ff87033 100644 --- a/dumux/freeflow/stokes/localresidual.hh +++ b/dumux/freeflow/stokes/localresidual.hh @@ -166,6 +166,8 @@ protected: * \brief Evaluates the advective fluxes over * a face of a sub-control volume. * + * \todo dilatation term has to be accounted for in outflow, coupling, neumann + * * \param flux The advective flux over the sub-control-volume face for each component * \param fluxVars The flux variables at the current SCV/boundary face */ @@ -234,7 +236,6 @@ protected: { velGradComp = velGrad[velIdx]; - // TODO: dilatation term has to be accounted for in outflow, coupling, neumann // velGradComp[velIdx] += 2./3*fluxVars.velocityDiv; velGradComp *= fluxVars.dynamicViscosity() + fluxVars.dynamicEddyViscosity(); diff --git a/dumux/implicit/model.hh b/dumux/implicit/model.hh index a7ef850f6c976846414e5cfd0c354b8fce1d49b9..59711a2fc398dc3054220d662882f1809a2f94a6 100644 --- a/dumux/implicit/model.hh +++ b/dumux/implicit/model.hh @@ -888,6 +888,9 @@ protected: /*! * \brief Applies the initial solution for all vertices of the grid. + * + * \todo the initial condition needs to be unique for + * each vertex. we should think about the API... */ void applyInitialSolution_() { @@ -899,9 +902,6 @@ protected: // iterate through leaf grid and evaluate initial // condition at the center of each sub control volume - // - // TODO: the initial condition needs to be unique for - // each vertex. we should think about the API... for (const auto& element : elements(gridView_())) { // deal with the current element fvGeometry.update(gridView_(), element); diff --git a/dumux/io/gridcreator.hh b/dumux/io/gridcreator.hh index 923af3ad05a2f79751ff5488eea825d9c846e45f..548d8913a37f24a3daed285e41f69c4352d74ef5 100644 --- a/dumux/io/gridcreator.hh +++ b/dumux/io/gridcreator.hh @@ -20,6 +20,8 @@ * \file * \brief Provides a grid creator for all supported grid managers with * input file interfaces. + * + * \todo add Petrel grids with dune-cornerpoint */ #ifndef DUMUX_GRID_CREATOR_HH #define DUMUX_GRID_CREATOR_HH @@ -1284,8 +1286,6 @@ public: #endif // HAVE_DUNE_FOAMGRID -// TODO Petrel grids with dune-cornerpoint - } // namespace Dumux #endif diff --git a/dumux/linear/amgbackend.hh b/dumux/linear/amgbackend.hh index 581b5812ab75557fffc0eb4a9c482de31679eb95..05f0fcc5651e478edbedac079a89a2de221d2f62 100644 --- a/dumux/linear/amgbackend.hh +++ b/dumux/linear/amgbackend.hh @@ -125,7 +125,7 @@ public: typedef Dune::Amg::CoarsenCriterion<Dune::Amg::SymmetricCriterion<BCRSMat, Dune::Amg::FirstDiagonal> > Criterion; - // \todo Check whether the default accumulation mode atOnceAccu is needed. + //! \todo Check whether the default accumulation mode atOnceAccu is needed. Dune::Amg::Parameters params(15,2000,1.2,1.6,Dune::Amg::atOnceAccu); params.setDefaultValuesIsotropic(GET_PROP_TYPE(TypeTag, GridView)::Traits::Grid::dimension); params.setDebugLevel(verbosity); diff --git a/dumux/material/components/h2.hh b/dumux/material/components/h2.hh index e590da7bc9d18566ae3edff46dd19cc5cb7f1791..e6ea4c9948c349c305a6023dd7e8bf3948475d75 100644 --- a/dumux/material/components/h2.hh +++ b/dumux/material/components/h2.hh @@ -87,6 +87,8 @@ public: * Taken from: * * See: R. Reid, et al. (1987, pp 208-209, 669) \cite reid1987 + * + * \todo implement the Gomez-Thodos approach... */ static Scalar vaporPressure(Scalar temperature) { @@ -96,8 +98,6 @@ public: return 0; // H2 is solid: We don't take sublimation into // account - // TODO: the Gomez-Thodos approach would probably be better... - // antoine equatuion const Scalar A = -7.76451; const Scalar B = 1.45838;