This model predicts scaled sound pressure level on airfoils of a space shuttle at various wind tunnel speeds and angles of attack.
To Locally run the project follow these instructions:
Clone the project
git clone https://github.com/Swaraj-6/Airfoil_pressure_level_prediction.gitGo to the project directory
cd my-projectInstall all dependencies and packages with specified versions
pip install .\requirements.txtStart the server
python .\app.pyTo run tests, you can copy this url http://127.0.0.1:5000 and paste it in browser, on homepage you have to put all of the following inputs:
- Frequency, in Hertzs.
- Angle of attack, in degrees.
- Chord length, in meters.
- Free-stream velocity, in meters per second.
- Suction side displacement thickness, in meters.
and below your sound pressure level in decibels will appear.
Or you can run test in api using postman application, for that follow these steps:
- http://127.0.0.1:5000/api paste this url on postman and put the request to "POST" method
- Then go to body section.
- Choose json as input (as any other form of input is not applicable).
- There you have to make a json of following manner:
{
"Frequency":1300,
"Angle_of_attack":25.5,
"Chord_length":0.0254,
"F-S_velocity":71.3,
"Suction_side":0.016104
}
- Then you can go ahead and send the request and you will see your output.

