├── .gitignore ├── README.md ├── Tempest.cbp ├── Tempest.pro ├── bin ├── input_box ├── input_sphere └── sphere_hex.geo ├── include ├── error.hpp ├── flux.hpp ├── geo.hpp ├── global.hpp ├── input.hpp ├── matrix.hpp ├── output.hpp ├── solver.hpp └── tempest.hpp ├── makefile └── src ├── flux.cpp ├── geo.cpp ├── global.cpp ├── input.cpp ├── matrix.cpp ├── output.cpp ├── solver.cpp ├── solver_bounds.cpp └── tempest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tempest 2 | 3D Overset Finite Volume CFD Code 3 | -------------------------------------------------------------------------------- /Tempest.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/Tempest.cbp -------------------------------------------------------------------------------- /Tempest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/Tempest.pro -------------------------------------------------------------------------------- /bin/input_box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/bin/input_box -------------------------------------------------------------------------------- /bin/input_sphere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/bin/input_sphere -------------------------------------------------------------------------------- /bin/sphere_hex.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/bin/sphere_hex.geo -------------------------------------------------------------------------------- /include/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/error.hpp -------------------------------------------------------------------------------- /include/flux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/flux.hpp -------------------------------------------------------------------------------- /include/geo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/geo.hpp -------------------------------------------------------------------------------- /include/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/global.hpp -------------------------------------------------------------------------------- /include/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/input.hpp -------------------------------------------------------------------------------- /include/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/matrix.hpp -------------------------------------------------------------------------------- /include/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/output.hpp -------------------------------------------------------------------------------- /include/solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/solver.hpp -------------------------------------------------------------------------------- /include/tempest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/include/tempest.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/makefile -------------------------------------------------------------------------------- /src/flux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/flux.cpp -------------------------------------------------------------------------------- /src/geo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/geo.cpp -------------------------------------------------------------------------------- /src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/global.cpp -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/matrix.cpp -------------------------------------------------------------------------------- /src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/output.cpp -------------------------------------------------------------------------------- /src/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/solver.cpp -------------------------------------------------------------------------------- /src/solver_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/solver_bounds.cpp -------------------------------------------------------------------------------- /src/tempest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobCrabill/Tempest/HEAD/src/tempest.cpp --------------------------------------------------------------------------------