Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
STYLE: add usage notes to utilities and solvers
· a83eb8c2
Mark OLESEN
authored
Dec 11, 2018
a83eb8c2
Hide whitespace changes
Inline
Side-by-side
applications/solvers/implicitSolver/faSavageHutterFoam.C
View file @
a83eb8c2
...
...
@@ -48,6 +48,13 @@ Author
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"(avalanche)
\n
"
"A depth-integrated solver for shallow granular flows using"
" Finite Area Methods."
);
#include
"setRootCase.H"
#include
"createTime.H"
#include
"createMesh.H"
...
...
applications/utilities/releaseAreaMapping/releaseAreaMapping.C
View file @
a83eb8c2
...
...
@@ -25,8 +25,8 @@ Application
releaseAreaMapping
Description
An preprocessing app
li
c
ation
to initialize
finite area fields
.
U
sed to create release areas for avalanche simulations.
Initia
li
z
ation
of
finite area fields
,
u
sed to create release areas for avalanche simulations.
Author
Matthias Rauter matthias.rauter@uibk.ac.at
...
...
@@ -41,6 +41,13 @@ Author
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"(avalanche)
\n
"
"Initialization of finite area fields,"
" used to create release areas for avalanche simulations."
);
#include
"setRootCase.H"
#include
"createTime.H"
#include
"createMesh.H"
...
...
@@ -74,7 +81,6 @@ int main(int argc, char *argv[])
{
const
entry
&
fieldsInfo
=
fields
[
fieldsI
];
if
(
!
fieldsInfo
.
isDict
())
{
FatalIOErrorIn
(
"releaseAreaMapping.C"
,
releaseArea
)
...
...
@@ -85,8 +91,6 @@ int main(int argc, char *argv[])
dictionary
fieldsDict
=
fieldsInfo
.
dict
();
Info
<<
"Reading field "
<<
fieldNames
[
fieldsI
]
<<
endl
;
areaScalarField
f
...
...
applications/utilities/slopeMesh/slopeMesh.C
View file @
a83eb8c2
...
...
@@ -25,7 +25,7 @@ Application
slopeMesh
Description
Application to c
reate simple slope geometries for testing the granular flow solver.
C
reate simple slope geometries for testing the granular flow solver.
Author
Matthias Rauter matthias.rauter@uibk.ac.at
...
...
@@ -40,6 +40,12 @@ Author
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"(avalanche)
\n
"
"Create simple slope geometries for testing the granular flow solver"
);
#include
"setRootCase.H"
#include
"createTime.H"
...
...