This package was written for MAE 5440 (Computational Fluid Dynamics) at Utah State University.
These projects use makefiles to facilitate compilation. To complie a project, simply naviate to the project directory (ex: "projects/navier/") and type the command make in the command line:
$ makeNote that this works in both Windows and Unix/Linux environments. To recompile, the compiled objects need to be cleaned. To remove all object files:
$ make cleanTo remove all object files and executables:
$ make verycleanEach project has a "config.f90" file. Use this file to set the working precision. Find the line
integer,parameter :: wp = spand change the equality to the desired precision prior to compilation.
| Abbr | Precision Level |
|---|---|
| sp | Single |
| dp | Double |
| ep | Extended |
| qp | Quadruple |