@@ -1036,13 +1036,13 @@ As preparatory steps environment variables have to be linked to LAMA. Add the fo
\\\shellcmdline{ `export OMP\_NUM\_THREADS=1`}\\
You can also find the instructions in \shellcmd{FDSimulation\_LAMA/par/README.md}.
Change to the directory: \\\shellcmdline{FDSimulation\_LAMA/src/}
Change to the directory: \\\shellcmdline{FDSimulation\_LAMA/build/}
You can compile the source code by simply entering: \\\shellcmdline{make sofi}\\ in your command line. \gCC is set to be the default \CC-compiler. To use an alternative compiler, the compiler setting can be change in the \shellcmd{Makefile}, or otherwise by executing:\\\shellcmdline{make CC=<yourCompiler> sofi}
You can compile the source code by simply entering: \\\shellcmdline{make prog}\\ in your command line. \gCC is set to be the default \CC-compiler. To use an alternative compiler, the compiler setting can be change in the \shellcmd{Makefile}, or otherwise by executing:\\\shellcmdline{make CXX=<yourCompiler> sofi}
The runtime configuration (such as the FD grid) can be changed in the \shellcmd{configuration.txt} file, located in the directory \shellcmd{FDSimulation\_LAMA/par/configuration/}. A list of all input variables and their dependencies can be found in section \ref{sec:config}.
To create a html and LaTeX or Pdf documentation of the software code itself, you can generate a doxygen documentation. Therefore change the directory to \shellcmd{FDSimulation\_LAMA/doc/} and run the command \shellcmd{make}. After running doxygen, the html, LaTeX and Pdf version of the reference manual can be found in \shellcmd{doc/html/} and \shellcmd{doc/latex/}.
To create a html and LaTeX or Pdf documentation of the software code itself, you can generate a doxygen documentation. Therefore change the directory to \shellcmd{FDSimulation\_LAMA/build/} and run the command \shellcmd{make doc}. After running doxygen, the html, LaTeX and Pdf version of the reference manual can be found in \shellcmd{build/doc/doxygen/} and \shellcmd{build/doc/theory/}.
\subsection{Example}
...
...
@@ -1231,10 +1231,10 @@ As preparatory steps environment variables have to be linked to googletest. Add
To compile all tests, change the directory: \\\shellcmdline{FDSimulation\_LAMA/src/}\\ and compile the tests by simply entering:\\\shellcmdline{make tests}
To compile all tests, change the directory: \\\shellcmdline{FDSimulation\_LAMA/src/}\\ and compile the tests by simply entering:\\\shellcmdline{make utest} and \shellcmdline{make itest}
The executable file is located in the directory:
\\\shellcmdline{FDSimulation\_LAMA/bin/Tests/}\\
\\\shellcmdline{FDSimulation\_LAMA/build/bin}\\
To execute the unit-tests change to the \shellcmd{/par} folder and run the \shellcmd{Test\_unit} file by entering:
\\\shellcmdline{./../bin/Tests/Test\_unit}\\
For faultless function of FDSimulation\_LAMA all tests should execute without failure.