├── .idea ├── .name ├── Piston_Theory.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Matlab └── main.m ├── NACA0012.dat~ ├── NACA2414.dat~ ├── NACA63-412~ ├── Papers ├── A Flexible Hypersonic Vehicle Model Developed With Piston Theory.pdf ├── Aerodynamic Influence Coefficients from Puston Theory - Analytical Development and Computational Procedure.pdf ├── Aeroelasticity of a generic hypersonic vehicle.pdf ├── Far Field Predicted by Piston Theory.pdf ├── International Forum on Aeroelasticity and Structural Dynamics.pdf ├── Oscillating Airfoils at High Mach Number.pdf ├── Piston Thoery - A new Aerodynamic Tool for the Aeroelastician.pdf └── Supersonic Flutter Analysis Based on a Local Piston Theory.pdf ├── Python ├── fsi │ ├── NACA0012.dat │ ├── NACA2414.dat │ ├── NACA63-412.dat │ ├── README.md │ ├── __pycache__ │ │ ├── generateShape.cpython-34.pyc │ │ └── pistonSolver.cpython-34.pyc │ ├── double_wedge.txt │ ├── main.py │ ├── pistonSolver.py │ └── pressure.txt └── solver │ ├── NACA0012.dat │ ├── NACA2414.dat │ ├── NACA63-412.dat │ ├── README.md │ ├── double_wedge.txt │ ├── generateDoubleWedge.py │ ├── main.py │ └── pressure.txt └── main.py~ /.idea/.name: -------------------------------------------------------------------------------- 1 | Piston_Theory -------------------------------------------------------------------------------- /.idea/Piston_Theory.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/.idea/Piston_Theory.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Matlab/main.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NACA0012.dat~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/NACA0012.dat~ -------------------------------------------------------------------------------- /NACA2414.dat~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NACA63-412~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Papers/A Flexible Hypersonic Vehicle Model Developed With Piston Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/A Flexible Hypersonic Vehicle Model Developed With Piston Theory.pdf -------------------------------------------------------------------------------- /Papers/Aerodynamic Influence Coefficients from Puston Theory - Analytical Development and Computational Procedure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Aerodynamic Influence Coefficients from Puston Theory - Analytical Development and Computational Procedure.pdf -------------------------------------------------------------------------------- /Papers/Aeroelasticity of a generic hypersonic vehicle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Aeroelasticity of a generic hypersonic vehicle.pdf -------------------------------------------------------------------------------- /Papers/Far Field Predicted by Piston Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Far Field Predicted by Piston Theory.pdf -------------------------------------------------------------------------------- /Papers/International Forum on Aeroelasticity and Structural Dynamics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/International Forum on Aeroelasticity and Structural Dynamics.pdf -------------------------------------------------------------------------------- /Papers/Oscillating Airfoils at High Mach Number.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Oscillating Airfoils at High Mach Number.pdf -------------------------------------------------------------------------------- /Papers/Piston Thoery - A new Aerodynamic Tool for the Aeroelastician.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Piston Thoery - A new Aerodynamic Tool for the Aeroelastician.pdf -------------------------------------------------------------------------------- /Papers/Supersonic Flutter Analysis Based on a Local Piston Theory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Papers/Supersonic Flutter Analysis Based on a Local Piston Theory.pdf -------------------------------------------------------------------------------- /Python/fsi/NACA0012.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/NACA0012.dat -------------------------------------------------------------------------------- /Python/fsi/NACA2414.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/NACA2414.dat -------------------------------------------------------------------------------- /Python/fsi/NACA63-412.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/NACA63-412.dat -------------------------------------------------------------------------------- /Python/fsi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/README.md -------------------------------------------------------------------------------- /Python/fsi/__pycache__/generateShape.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/__pycache__/generateShape.cpython-34.pyc -------------------------------------------------------------------------------- /Python/fsi/__pycache__/pistonSolver.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/__pycache__/pistonSolver.cpython-34.pyc -------------------------------------------------------------------------------- /Python/fsi/double_wedge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/double_wedge.txt -------------------------------------------------------------------------------- /Python/fsi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/main.py -------------------------------------------------------------------------------- /Python/fsi/pistonSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/pistonSolver.py -------------------------------------------------------------------------------- /Python/fsi/pressure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/fsi/pressure.txt -------------------------------------------------------------------------------- /Python/solver/NACA0012.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/NACA0012.dat -------------------------------------------------------------------------------- /Python/solver/NACA2414.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/NACA2414.dat -------------------------------------------------------------------------------- /Python/solver/NACA63-412.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/NACA63-412.dat -------------------------------------------------------------------------------- /Python/solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/README.md -------------------------------------------------------------------------------- /Python/solver/double_wedge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/double_wedge.txt -------------------------------------------------------------------------------- /Python/solver/generateDoubleWedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/generateDoubleWedge.py -------------------------------------------------------------------------------- /Python/solver/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/main.py -------------------------------------------------------------------------------- /Python/solver/pressure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/Python/solver/pressure.txt -------------------------------------------------------------------------------- /main.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kooroshg1/Piston_Theory/HEAD/main.py~ --------------------------------------------------------------------------------