Skip to content
Snippets Groups Projects
Commit e32b596b authored by Katharina Heck's avatar Katharina Heck
Browse files

[fix/doxygen] fixes copydocs of fluidmatrixinteraction problems

parent ee24969b
No related branches found
No related tags found
1 merge request!216Fix/doxygen2.10
...@@ -36,7 +36,7 @@ namespace Dumux { ...@@ -36,7 +36,7 @@ namespace Dumux {
* \param v The container, requires being() and end() method * \param v The container, requires being() and end() method
* \param filename The filename to write to * \param filename The filename to write to
* *
* \usage std::vector<double>(5, 0.0) v; writeContainerToFile(v, "myvector.txt"); * usage: std::vector<double>(5, 0.0) v; writeContainerToFile(v, "myvector.txt");
*/ */
template<typename Container> template<typename Container>
void writeContainerToFile(const Container& v, void writeContainerToFile(const Container& v,
...@@ -52,7 +52,7 @@ void writeContainerToFile(const Container& v, ...@@ -52,7 +52,7 @@ void writeContainerToFile(const Container& v,
* \param filename The filename to write to * \param filename The filename to write to
* \tparam Container The container type, requires being(), end(), push_back() method * \tparam Container The container type, requires being(), end(), push_back() method
* *
* \usage auto v = readFileToContainer<std::vector<double>>("myvector.txt"); * usage: auto v = readFileToContainer<std::vector<double>>("myvector.txt");
*/ */
template<typename Container> template<typename Container>
Container readFileToContainer(const std::string& filename) Container readFileToContainer(const std::string& filename)
......
...@@ -191,7 +191,13 @@ public: ...@@ -191,7 +191,13 @@ public:
} }
//! \copydoc InjectionProblem::initialPhasePresence() /*!
* \brief Returns the initial phase state for a control volume.
*
* \param vertex The vertex
* \param vIdxGlobal The global index of the vertex
* \param globalPos The position of the center of the element
*/
int initialPhasePresence(const Vertex &vertex, int initialPhasePresence(const Vertex &vertex,
int &vIdxGlobal, int &vIdxGlobal,
const GlobalPosition &globalPos) const const GlobalPosition &globalPos) const
......
...@@ -191,7 +191,13 @@ public: ...@@ -191,7 +191,13 @@ public:
} }
//! \copydoc InjectionProblem::initialPhasePresence() /*!
* \brief Returns the initial phase state for a control volume.
*
* \param vertex The vertex
* \param vIdxGlobal The global index of the vertex
* \param globalPos The position of the center of the element
*/
int initialPhasePresence(const Vertex &vertex, int initialPhasePresence(const Vertex &vertex,
int &vIdxGlobal, int &vIdxGlobal,
const GlobalPosition &globalPos) const const GlobalPosition &globalPos) const
......
...@@ -191,7 +191,13 @@ public: ...@@ -191,7 +191,13 @@ public:
} }
//! \copydoc InjectionProblem::initialPhasePresence() /*!
* \brief Returns the initial phase state for a control volume.
*
* \param vertex The vertex
* \param vIdxGlobal The global index of the vertex
* \param globalPos The position of the center of the element
*/
int initialPhasePresence(const Vertex &vertex, int initialPhasePresence(const Vertex &vertex,
int &vIdxGlobal, int &vIdxGlobal,
const GlobalPosition &globalPos) const const GlobalPosition &globalPos) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment