3.2 Compiling applications and libraries
Compilation is an integral part of application development that requires careful management since every piece of code requires its own set instructions to access dependent components of the OpenFOAM library. In UNIX/Linux systems these instructions are often organised and delivered to the compiler using the standard UNIXmake utility. OpenFOAM, however, is supplied with the wmake compilation script that is based on make but is considerably more versatile and easier to use; wmake can, in fact, be used on any code, not simply the OpenFOAM library. To understand the compilation process, we first need to explain certain aspects of C++ and its file structure, shown schematically in Figure 3.1. A class is defined through a set of instructions such as object construction, data storage and class member functions. The file containing the class definition takes a .C extension, e.g. a class nc would be written in the file nc.C. This file can be compiled independently of other code into a binary executable library file known as a shared object library with the .so file extension, i.e.nc.so. When compiling a piece of code, say newApp.C, that uses the nc class, nc.C need not be recompiled, rather newApp.C calls nc.so at runtime. This is known as dynamic linking.
3.2.1 Header .H files
As a means of checking errors, the piece of code being compiled must know that the classes it uses and the operations they perform actually exist. Therefore each class requires a class declaration, contained in a header file with a .H file extension, e.g.nc.H, that includes the names of the class and its functions. This file is included at the beginning of any piece of code using the class, including the class declaration code itself. Any piece of .C code can resource any number of classes and must begin with all the .H files required to declare these classes. The classes in turn can resource other classes and begin with the relevant .H files. By searching recursively down the class hierarchy we can produce a complete list of header files for all the classes on which the top level .C code ultimately depends; these .H files are known as the dependencies. With a dependency list, a compiler can check whether the source files have been updated since their last compilation and selectively compile only those that need to be.
Header files are included in the code using # include statements, e.g.
# include "otherHeader.H";
- Automatic generation and maintenance of file dependency lists, i.e. lists of files which are included in the source files and hence on which they depend.
- Multi-platform compilation and linkage, handled through appropriate directory structure.
- Multi-language compilation and linkage, e.g. C, C++, Java.
- Multi-option compilation and linkage, e.g. debug, optimised, parallel and profiling.
- Support for source code generation programs, e.g. lex, yacc, IDL, MOC.
- Simple syntax for source file lists.
- Automatic creation of source file lists for new codes.
- Simple handling of multiple shared or static libraries.
- Extensible to new machine types.
- Extremely portable, works on any machine with: make; sh, ksh or csh; lex, cc.
- Has been tested on Apollo, SUN, SGI, HP (HPUX), Compaq (DEC), IBM (AIX), Cray, Ardent, Stardent, PC Linux, PPC Linux, NEC, SX4, Fujitsu VP1000.
3.2.2 Compiling with wmake
OpenFOAM applications are organised using a standard convention that the source code of each application is placed in a directory whose name is that of the application. The top level source file takes the application name with the .C extension. For example, the source code for an application called newApp would reside is a directory newApp and the top level file would be newApp.C as shown in Figure 3.2.
The directory must also contain a Make subdirectory containing 2 files, options and files, that are described in the following sections.
3.2.2.1 Including headers
The compiler searches for the included header files in the following order, specified with the -I option in wmake:
- the $WM_PROJECT_DIR/src/OpenFOAM/lnInclude directory;
- a local lnInclude directory, i.e.newApp/lnInclude;
- the local directory, i.e.newApp;
- platform dependent paths set in files in the $WM_PROJECT_DIR/wmake/rules/$WM_ARCH/ directory, e.g./usr/X11/include and $(MPICH_ARCH_PATH)/include;
- other directories specified explicitly in the Make/options file with the -I option.
The Make/options file contains the full directory paths to locate header files using the syntax:
EXE_INC = \
-I<directoryPath1> \
-I<directoryPath2> \
… \
-I<directoryPathN>
3.2.2.2 Linking to libraries
The compiler links to shared object library files in the following directory paths, specified with the -L option in wmake:
- the $FOAM_LIBBIN directory;
- platform dependent paths set in files in the $WM_DIR/rules/$WM_ARCH/ directory, e.g./usr/X11/lib and $(MPICH_ARCH_PATH)/lib;
- other directories specified in the Make/options file.
The actual library files to be linked must be specified using the -l option and removing the lib prefix and .so extension from the library file name, e.g.libnew.so is included with the flag -lnew. By default, wmake loads the following libraries:
- the libOpenFOAM.so library from the $FOAM_LIBBIN directory;
- platform dependent libraries specified in set in files in the $WM_DIR/rules/$WM_ARCH/ directory, e.g.libm.so from /usr/X11/lib and liblam.so from $(LAM_ARCH_PATH)/lib;
- other libraries specified in the Make/options file.
The Make/options file contains the full directory paths and library names using the syntax:
EXE_LIBS = \
-L<libraryPath1> \
-L<libraryPath2> \
… \
-L<libraryPathN> \
-l<library1> \
-l<library2> \
… \
-l<libraryN>
3.2.2.3 Source files to be compiled
The compiler requires a list of .C source files that must be compiled. The list must contain the main .C file but also any other source files that are created for the specific application but are not included in a class library. For example, users may create a new class or some new functionality to an existing class for a particular application. The full list of .C source files must be included in the Make/files file. As might be expected, for many applications the list only includes the name of the main .C file, e.g.newApp.C in the case of our earlier example.
The Make/files file also includes a full path and name of the compiled executable, specified by the EXE = syntax. Standard convention stipulates the name is that of the application, i.e.newApp in our example. The OpenFOAM release offers two useful choices for path: standard release applications are stored in $FOAM_APPBIN; applications developed by the user are stored in $FOAM_USER_APPBIN.
If the user is developing their own applications, we recommend they create an applications subdirectory in their $WM_PROJECT_USER_DIR directory containing the source code for personal OpenFOAM applications. As with standard applications, the source code for each OpenFOAM application should be stored within its own directory. The only difference between a user application and one from the standard release is that the Make/files file should specify that the user’s executables are written into their $FOAM_USER_APPBIN directory. The Make/files file for our example would appear as follows:
newApp.C
EXE = $(FOAM_USER_APPBIN)/newApp
3.2.2.4 Running wmake
The wmake script is executed by typing:
wmake <optionalArguments> <optionalDirectory>
If a user wishes to build an application executable, then no <optionalArguments> are required. However <optionalArguments> may be specified for building libraries etc. as described in Table 3.1.
|
|
3.2.2.5 wmake environment variables
For information, the environment variable settings used by wmake are listed in Table 3.2.
3.2.3 Removing dependency lists: wclean and rmdepall
On execution, wmake builds a dependency list file with a .dep file extension, e.g.newApp.dep in our example, and a list of files in a Make/$WM_OPTIONS directory. If the user wishes to remove these files, perhaps after making code changes, the user can run the wclean script by typing:
wclean <optionalArguments> <optionalDirectory>
If a user wishes to remove the dependency files and files from the Make directory, then no <optionalArguments> are required. However if lib is specified in <optionalArguments> a local lnInclude directory will be deleted also.
An additional script, rmdepall removes all dependency .dep files recursively down the directory tree from the point at which it is executed. This can be useful when updating OpenFOAM libraries.
3.2.4 Compilation example: the pisoFoam application
The source code for application pisoFoam is in the $FOAM_APP/solvers/incompressible/pisoFoam directory and the top level source file is named pisoFoam.C. The pisoFoam.C source code is:
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
6 \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9 This file is part of OpenFOAM.
10
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
15
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24
25 Application
26 pisoFoam
27
28 Description
29 Transient solver for incompressible flow.
30
31 Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
32
33 \*---------------------------------------------------------------------------*/
34
35 #include "fvCFD.H"
36 #include "singlePhaseTransportModel.H"
37 #include "turbulenceModel.H"
38
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40
41 int main(int argc, char *argv[])
42 {
43 #include "setRootCase.H"
44
45 #include "createTime.H"
46 #include "createMesh.H"
47 #include "createFields.H"
48 #include "initContinuityErrs.H"
49
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51
52 Info<< "\nStarting time loop\n" << endl;
53
54 while (runTime.loop())
55 {
56 Info<< "Time = " << runTime.timeName() << nl << endl;
57
58 #include "readPISOControls.H"
59 #include "CourantNo.H"
60
61 // Pressure-velocity PISO corrector
62 {
63 // Momentum predictor
64
65 fvVectorMatrix UEqn
66 (
67 fvm::ddt(U)
68 + fvm::div(phi, U)
69 + turbulence->divDevReff(U)
70 );
71
72 UEqn.relax();
73
74 if (momentumPredictor)
75 {
76 solve(UEqn == -fvc::grad(p));
77 }
78
79 // --- PISO loop
80
81 for (int corr=0; corr<nCorr; corr++)
82 {
83 volScalarField rUA = 1.0/UEqn.A();
84
85 U = rUA*UEqn.H();
86 phi = (fvc::interpolate(U) & mesh.Sf())
87 + fvc::ddtPhiCorr(rUA, U, phi);
88
89 adjustPhi(phi, U, p);
90
91 // Non-orthogonal pressure corrector loop
92 for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
93 {
94 // Pressure corrector
95
96 fvScalarMatrix pEqn
97 (
98 fvm::laplacian(rUA, p) == fvc::div(phi)
99 );
100
101 pEqn.setReference(pRefCell, pRefValue);
102
103 if
104 (
105 corr == nCorr-1
106 && nonOrth == nNonOrthCorr
107 )
108 {
109 pEqn.solve(mesh.solver("pFinal"));
110 }
111 else
112 {
113 pEqn.solve();
114 }
115
116 if (nonOrth == nNonOrthCorr)
117 {
118 phi -= pEqn.flux();
119 }
120 }
121
122 #include "continuityErrs.H"
123
124 U -= rUA*fvc::grad(p);
125 U.correctBoundaryConditions();
126 }
127 }
128
129 turbulence->correct();
130
131 runTime.write();
132
133 Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
134 << " ClockTime = " << runTime.elapsedClockTime() << " s"
135 << nl << endl;
136 }
137
138 Info<< "End\n" << endl;
139
140 return 0;
141 }
142
143
144 // ************************************************************************* //
The code begins with a brief description of the application contained within comments over 1 line (//) and multiple lines (/*…*/). Following that, the code contains several # include statements, e.g.# include "fvCFD.H", which causes the compiler to suspend reading from the current file, pisoFoam.C to read the fvCFD.H.
pisoFoam resources the cfdTools, incompressibleRASModels and incompressibleTransportModels libraries and therefore requires the necessary header files, specified by the EXE_INC = -I… option, and links to the libraries with the EXE_LIBS = -l… option. The Make/options therefore contains the following:
2 -I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \
3 -I$(LIB_SRC)/transportModels \
4 -I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel \
5 -I$(LIB_SRC)/finiteVolume/lnInclude
6
7 EXE_LIBS = \
8 -lincompressibleRASModels \
9 -lincompressibleLESModels \
10 -lincompressibleTransportModels \
11 -lfiniteVolume \
12 -lmeshTools
pisoFoam contains only the pisoFoam.C source and the executable is written to the $FOAM_APPBIN directory as all standard applications are. The Make/files therefore contains:
The user can compile pisoFoam by going to the $FOAM_CFD/pisoFoam directory and typing:
wmake
Making dependency list for source file pisoFoam.C
SOURCE_DIR=.
SOURCE=pisoFoam.C ;
g++ -DFOAM_EXCEPTION -Dlinux -DlinuxOptMPICH
-DscalarMachine -DoptSolvers -DPARALLEL -DUSEMPI -Wall -O2 -DNoRepository
-ftemplate-depth-17 -I.../OpenFOAM/OpenFOAM-1.6/src/OpenFOAM/lnInclude
-IlnInclude
-I.
……
-lmpich -L/usr/X11/lib -lm
-o .../OpenFOAM/OpenFOAM-1.6/applications/bin/linuxOptMPICH/pisoFoam
make: Nothing to be done for ‘allFiles’.
make: ‘Make/linuxOptMPICH/dependencies’ is up to date.
make: ‘.../OpenFOAM/OpenFOAM-1.6/applications/bin/linuxOptMPICH/pisoFoam’
is up to date.
wclean
3.2.5 Debug messaging and optimisation switches
OpenFOAM provides a system of messaging that is written during runtime, most of which are to help debugging problems encountered during running of a OpenFOAM case. The switches are listed in the $WM_PROJECT_DIR/etc/controlDict file; should the user wish to change the settings they should make a copy to their $HOME directory, i.e.$HOME/.OpenFOAM/1.6/controlDict file. The list of possible switches is extensive and can be viewed by running the foamDebugSwitches application. Most of the switches correspond to a class or range of functionality and can be switched on by their inclusion in the controlDict file, and by being set to 1. For example, OpenFOAM can perform the checking of dimensional units in all calculations by setting the dimensionSet switch to 1. There are some switches that control messaging at a higher level than most, listed in Table 3.3.
In addition, there are some switches that control certain operational and optimisation issues. These switches are also listed in Table 3.3. Of particular importance is fileModificationSkew. OpenFOAM scans the write time of data files to check for modification. When running over a NFS with some disparity in the clock settings on different machines, field data files appear to be modified ahead of time. This can cause a problem if OpenFOAM views the files as newly modified and attempting to re-read this data. The fileModificationSkew keyword is the time in seconds that OpenFOAM will subtract from the file write time when assessing whether the file has been newly modified.
|
| ||||||||||||||||||||||
3.2.6 Linking new user-defined libraries to existing applications
The situation may arise that a user creates a new library, say new, and wishes the features within that library to be available across a range of applications. For example, the user may create a new boundary condition, compiled into new, that would need to be recognised by a range of solver applications, pre- and post-processing utilities, mesh tools, etc. Under normal circumstances, the user would need to recompile every application with the new linked to it.
Instead there is a simple mechanism to link one or more shared object libraries dynamically at run-time in OpenFOAM. Simply add the optional keyword entry libs to the controlDict file for a case and enter the full names of the libraries within a list (as quoted string entries). For example, if a user wished to link the libraries new1 and new2 at run-time, they would simply need to add the following to the case controlDict file:
libs
(
"libnew1.so"
"libnew2.so"
);

