gitextract_p5f8x5gl/ ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── data/ │ ├── Batch/ │ │ └── batch_control.json │ ├── Config/ │ │ └── settings.ini │ ├── Examples/ │ │ └── OpenFOAM9/ │ │ └── airfoil_S809/ │ │ ├── 0/ │ │ │ ├── U │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nuTilda │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ └── uniform/ │ │ │ └── time │ │ ├── Allclean │ │ ├── Allrun │ │ ├── S809.obj │ │ ├── airfoil.OpenFOAM │ │ ├── constant/ │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system/ │ │ ├── controlDict │ │ ├── createPatchDict │ │ ├── extrudeMeshDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── topoSetDict │ └── Menus/ │ ├── PMenu.xml │ └── PToolBar.xml ├── docs/ │ ├── CFD_boundary_conditions.rst │ ├── GUI.inc │ ├── GUI_modification.rst │ ├── Makefile │ ├── _templates/ │ │ ├── breadcrumbs.html │ │ └── footer.html │ ├── aerodynamics_panel.rst │ ├── batchmode.rst │ ├── conf.py │ ├── conf.py_SAVE │ ├── contour_analysis.rst │ ├── dependencies.rst │ ├── images/ │ │ └── mesh_block1a.tif │ ├── index.rst │ ├── introduction.rst │ ├── license.rst │ ├── load.rst │ ├── make.bat │ ├── meshing.rst │ ├── quickstart.rst │ ├── settings.rst │ ├── spline_refine.rst │ ├── trailing_edge.rst │ ├── ui_GUI.rst │ ├── ui_menu_file.inc │ ├── ui_menu_file_exit.inc │ ├── ui_menu_file_open.inc │ ├── ui_menu_file_print.inc │ ├── ui_menu_file_print_preview.inc │ ├── ui_menu_file_save.inc │ ├── ui_menu_help.inc │ ├── ui_menu_tools.inc │ └── ui_menu_view.inc └── src/ ├── Airfoil.py ├── BatchMode.py ├── Colors.py ├── Connect.py ├── ContourAnalysis.py ├── Elliptic.py ├── FileDialog.py ├── FileSystem.py ├── GraphicsItem.py ├── GraphicsItemsCollection.py ├── GraphicsScene.py ├── GraphicsTest.py ├── GraphicsView.py ├── GuiSlots.py ├── HtmlView.py ├── IconProvider.py ├── Logger.py ├── MenusTools.py ├── Meshing.py ├── PyAero.py ├── Settings.py ├── ShortCuts.py ├── Smooth_angle_based.py ├── SplineRefine.py ├── SvpMethod.py ├── ToolBox.py ├── TrailingEdge.py └── Utils.py