Transonic NACA0012 with adaptive refinement | Viscous NACA0012 with Recirculation bubble (Swanson) | Kelvin-Helmholtz Instability |
---|---|---|
The [P]arallel [Hi]gh-Order [Li]brary for [P]DEs (PHiLiP) uses Discontinuous Galerkin methods to solve convection-diffusion problems.
The math supporting this code can be viewed in this very rough draft in progress Overleaf document.
The code itself is documented using Doxygen, and the latest documentation is hosted on codedocs.xyz.
Since deal.II is heavily used, their documentation is probably the most useful.
Another great resource is the deal.II Google Groups, where developers are actively answering questions.
Finally, I am also always available to answer questions regarding the code by e-mail at doug.shi-dong@mail.mcgill.ca
The code has been succesfully built in the following environments:
Please consult the installation instructions for details concerning required software.
Since this library is developed by graduate students at McGill, there will always be sections that are work-in-progress. Some tests currently fail and are left here as part of "to-do" fixes. Therefore, if you experience any issues with tests, please consult the following list of known test failures. https://github.com/dougshidong/PHiLiP/issues?q=is%3Aissue+is%3Aopen+label%3Atestfail
This must be build out-of-source. An in-source build is likely to fail. For example, to configure for the debug build:
$ ROOT$ export PHILIP_DIR=/path_to_PHiLiP/
$ ROOT$ mkdir build_debug
$ ROOT$ cd build_debug
$ ROOT$ cmake -DDEAL_II_DIR=/path_to_dealii_install/ $PHILIP_DIR
Once the code has been successfully built, the available make
targets can be seen using
ROOT$ make help
Of primary interest are the following:
ROOT$ make -j2 // Compile the entire code, 1D, 2D, and 3D
ROOT$ make -j2 doc // Generate the Doxygen documentation.
ROOT$ make -j2 1D // Compile the 1D version of the code
ROOT$ make -j2 2D // Compile the 2D version of the code
ROOT$ make -j2 3D // Compile the 3D version of the code
Based on past experiences, you might want to limit the number of processor to 2 or 3 (make -j 3) if you have 8GB of RAM.
The html documentation can be accessed by pointing a browser at ROOT/doc/html/index.html
. e.g. google-chrome ROOT/doc/html/index.html
.
A list of currently known failing tests is kept in the GitHub issues with testfail
tags.
Testing can be performed using CMake's ctest
functionality. After successfully compiling the project, all tests can be
run by executing:
$ ROOT$ ctest (which is equivalent to ROOT$ make test)
An alternative make target is provided to run tests with --output-on-failure:
ROOT$ make check
Additional useful commands are:
ROOT$ ctest -N (List the tests that would be run but not actually run them)
ROOT$ ctest -R <regex> (Run tests matching regular expression)
ROOT$ ctest -E <regex> (Exclude tests matching regular expression)
ROOT$ ctest -V (Enable verbose output from tests)
Note that running ctest
in Debug
will take forever since some integration tests fully solve nonlinear problems with multiple orders and multiple meshes. It is suggested to perform ctest
in Release
mode, and only use Debug
mode for debugging purposes.
Please consult the debugging quick start guide for details concerning both serial and parallel debugging.
Please consult the performance inspection quick start guide for details concerning computational bottlenecks, memory leaks, and memory usage.
Please consult the contributing checklist for details concerning making a contribution.
The code is licensed under the GNU LGPLv2.1 due to the dependence on the deal.II library.