Name Date Size #Lines LOC

..--

AcuStat/H--3,9612,958

CMakeFiles/H--5645

M2N/H--4,9143,567

M2NFixBnd/H--4,0793,063

checkphasta/H--223205

converterIO/H--2,4481,642

phSolver/H--96,64160,181

phastaIO/H--5,4543,892

shapeFunction/H--16,93315,631

svLS/H--3,8282,444

CMakeLists.txtH A D01-Nov-20226.4 KiB186157

License.txtH A D16-Apr-20151.5 KiB137

README.mdH A D07-Sep-2022728 1814

README.md

1#build and test
2
3    wget https://fluid.colorado.edu/~kjansen/PHASTA/phastaChefTests.tar.gz
4    tar xzf phastaChefTests.tar.gz # use for CASES path below
5
6Note, the following builds only the native compressible solver.  There are options that can be turned on to utilize PETSc for compressible.  Likewise there are options to build the incompressible solver with SVLS. Finally CMAKE can configure alternate compilers and optimization choices.
7
8    cmake \
9    -DCMAKE_C_COMPILER=gcc \
10    -DCMAKE_CXX_COMPILER=g++ \
11    -DCMAKE_Fortran_COMPILER=gfortran \
12    -DCMAKE_BUILD_TYPE=Debug \
13    -DPHASTA_INCOMPRESSIBLE=OFF \
14    -DPHASTA_COMPRESSIBLE=ON \
15    -DPHASTA_USE_SVLS=OFF \
16    -DPHASTA_USE_PETSC=OFF \
17    ../phasta
18