-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathFlurry.pro
More file actions
86 lines (80 loc) · 1.98 KB
/
Copy pathFlurry.pro
File metadata and controls
86 lines (80 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
TEMPLATE = app
CONFIG += console debug
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++11
INCLUDEPATH += $$PWD/include \
lib/tioga/src \
/usr/lib/openmpi/include
SOURCES += src/global.cpp \
src/matrix.cpp \
src/input.cpp \
src/ele.cpp \
src/polynomials.cpp \
src/operators.cpp \
src/geo.cpp \
src/output.cpp \
src/face.cpp \
src/flux.cpp \
src/flurry.cpp \
src/solver.cpp \
src/intFace.cpp \
src/boundFace.cpp \
src/mpiFace.cpp \
lib/tioga/src/ADT.C \
lib/tioga/src/MeshBlock.C \
lib/tioga/src/parallelComm.C \
lib/tioga/src/tioga.C \
lib/tioga/src/tiogaInterface.C \
lib/tioga/src/math.c \
lib/tioga/src/utils.c \
src/funcs.cpp \
src/solver_overset.cpp \
src/overFace.cpp \
src/geo_overset.cpp \
src/points.cpp \
src/superMesh.cpp \
src/overComm.cpp \
src/multigrid.cpp
HEADERS += include/global.hpp \
include/matrix.hpp \
include/input.hpp \
include/ele.hpp \
include/polynomials.hpp \
include/operators.hpp \
include/geo.hpp \
include/output.hpp \
include/face.hpp \
include/flux.hpp \
include/flurry.hpp \
include/solver.hpp \
include/error.hpp \
include/intFace.hpp \
include/boundFace.hpp \
include/mpiFace.hpp \
lib/tioga/src/ADT.h \
lib/tioga/src/codetypes.h \
lib/tioga/src/globals.h \
lib/tioga/src/MeshBlock.h \
lib/tioga/src/parallelComm.h \
lib/tioga/src/tioga.h \
lib/tioga/src/tiogaInterface.h \
lib/tioga/src/utils.h \
include/funcs.hpp \
include/overFace.hpp \
include/points.hpp \
include/superMesh.hpp \
include/overComm.hpp \
include/multigrid.hpp
DISTFILES += \
README.md \
bin/input_3d \
lib/tioga/src/cellVolume.f90 \
lib/tioga/src/computeCellVolume.f90 \
lib/tioga/src/kaiser.f \
lib/tioga/src/median.F90 \
lib/tioga/src/makefile
OTHER_FILES += \
bin/input_supwall \
tests/euler/cylinder/input_cyl \
planning \
makefile