Minor changes.
This commit is contained in:
parent
bc275a4755
commit
1143943b7f
@ -26,7 +26,7 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif // HAVE_CONFIG_H
|
#endif // HAVE_CONFIG_H
|
||||||
|
|
||||||
/// \page tutorial1 Generation of a simple carthesian grid
|
/// \page tutorial1 A simple carthesian grid
|
||||||
/// This tutorial explains how to construct a simple carthesian grid.\n\n
|
/// This tutorial explains how to construct a simple carthesian grid.\n\n
|
||||||
/// We construct a 2x2 two dimensional carthesian grid with 4 blocks of equal size.
|
/// We construct a 2x2 two dimensional carthesian grid with 4 blocks of equal size.
|
||||||
|
|
||||||
@ -50,8 +50,8 @@ int main()
|
|||||||
/// \page tutorial1
|
/// \page tutorial1
|
||||||
/// By setting <code>nz = 1</code>, we make the grid two dimensional
|
/// By setting <code>nz = 1</code>, we make the grid two dimensional
|
||||||
/// \code
|
/// \code
|
||||||
int nx = 2;
|
int nx = 3;
|
||||||
int ny = 2;
|
int ny = 3;
|
||||||
int nz = 1;
|
int nz = 1;
|
||||||
/// \endcode
|
/// \endcode
|
||||||
/// The size of each block is 1x1x1. We use standard units (SI)
|
/// The size of each block is 1x1x1. We use standard units (SI)
|
||||||
@ -84,10 +84,10 @@ int main()
|
|||||||
}
|
}
|
||||||
/// \endcode
|
/// \endcode
|
||||||
/// \page tutorial1
|
/// \page tutorial1
|
||||||
/// One can visualize the output using paraview and obtain the following image
|
/// We read the the vtu output file in \a Paraview and obtain the following grid.
|
||||||
/// \image html tutorial1.png
|
/// \image html tutorial1.png
|
||||||
|
|
||||||
/// \page tutorial1
|
/// \page tutorial1
|
||||||
/// \section sourcecode Complete source code.
|
/// \section sourcecode Source code.
|
||||||
/// \include tutorial1.cpp
|
/// \include tutorial1.cpp
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user