Skip to content
Snippets Groups Projects
Commit eaccdcab authored by Tom Fischer's avatar Tom Fischer
Browse files

[Docu] Fix doxygen warnings.

parent 383a4a29
No related branches found
No related tags found
No related merge requests found
Declares a source term that is defined on a line shaped domain.
The name of the parameter that defines the value that should be used for the source
term. The parameter have to defined on the line domain.
The user should carefully check which physical quantity that parameter is.
Declares a source term that is defined on the entire domain.
Declares a source term that is defined on a sub-domain (volumetric) with the
same dimensionality d or on a 1d (line mesh) sub-domain.
The user should carefully check which physical quantity that parameter is.
......@@ -30,11 +30,13 @@ std::unique_ptr<SourceTerm> createVolumetricSourceTerm(
auto const type = config.peekConfigParameter<std::string>("type");
if (type == "Line")
{
//! \ogs_file_param{prj__process_variables__process_variable__source_terms__source_term__type}
config.checkConfigParameter("type", "Line");
DBUG("Constructing LineSourceTerm from config.");
}
else
{
//! \ogs_file_param{prj__process_variables__process_variable__source_terms__source_term__type}
config.checkConfigParameter("type", "Volumetric");
DBUG("Constructing VolumetricSourceTerm from config.");
}
......
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