Wingwalker Airfoil and Wing Design Tools'
Project description
Wingwalker Python Module
This Python module provides core functions and scripts to create useful airfoil models and files from engineering specifications. These base models can then be used to create useful designs and implementations (VR and 3D models, 3D printer components, etc).
Philosophy
Wing selection and design can be very complex. From the choice of starting airfoil specs (custom or existing), to cost analysis, and finally to construction, the spectrum of both choices and pitfalls at each stage can become overwhelming pretty quickly, especially to someone whose primary interest is what comes after the wings are bolted on.
The goal behind this software is very straightforward: To give everyone, from the basic hobbyist to the serious (semi)professional, the ability to go quickly from theory and specs to design to real- or virtual-world production of airfoils and wings.
Wingwalker is modeled to make the process from airfoil selection to printable model as simple and straightforward as possible. For most use cases, the simplest approach, demonstrated in the examples, should be sufficient. Those with more strict or customized requirements still have access to the underlying steps, and can build up a more detailed workflow, in accordance with their needs.
Installation
$ pip install wingwalker
Usage
The following code snippet shows how to take various inputs, create a WingRequest, pass that to the module functions,
and then display and export the resulting wing point cloud.
from pyvista import PolyData, Plotter
from wingwalker.models.wing_model import WingModel, WingRequest
from wingwalker.generators.wing import generate_wing_model, generate_point_cloud_polydata
from wingwalker.io.exports import export_ply
def plot_results(model: WingModel, points: PolyData):
title = f'Point Cloud\n\n{model.wing_params.wing_type}\n{model.wing_params.planform.name}'
pl = Plotter(shape=(1, 1))
pl.add_title(title, color='grey')
pl.background_color = 'black'
point_view = pl.add_mesh(
mesh=points,
style='points',
line_width=0.1,
point_size=1.5,
color='yellow',
opacity=0.7
)
pl.show()
def main(planform, wing_type, span, base, end, twist, specfile, spec_format, iterations):
req: WingRequest = WingRequest()
req.planform = planform
req.wing_type = wing_type
req.span = span
req.base_chord = base
req.end_chord = end
req.twist = twist
req.spec_file = specfile
req.spec_format = spec_format
req.iterations = iterations
print()
# Generate and preview a point cloud for the model
model = generate_wing_model(wing_req=req)
p_cloud: PolyData = generate_point_cloud_polydata(model)
plot_results(model, p_cloud)
# Export the model to PLY format
export_name = f'wing_{wing_type}_{planform}.ply'
export_ply(model, export_name)
Generating STL files
The process too generate an STL file for processing or sending to a 3D printer is very simple. This script shows the entire process.
The requirements for the wing STL file are stored in elliptical_left_wing_256mm.json. This python script
parses the request, parses the designated airfoil specs, and then steps through the process to generate an elliptical wing
of the given dimensions.
import os
from wingwalker.build_params.wing_request import WingRequest
from wingwalker.generators.wing import get_airfoil_specs, get_lambdas, generate_wing
from wingwalker.io.exports import export_stl
config_file = 'elliptical_left_wing_256mm.json'
# Read the values from the file
wing_req: WingRequest
with open(config_file, 'r', encoding='utf-8') as fin:
json_str = fin.read()
wing_req = WingRequest.from_json(json_str)
# Retrieve the specs from the request path
af_specs = get_airfoil_specs(wing_req)
# Get lambdas (dimension functions for the given parameters)
c_func, t_func, z_func, area_func = get_lambdas(wing_req)
# Generate the actual wing model
model = generate_wing(wing_req, af_specs, c_func, t_func, z_func, area_func)
f_name = f'{wing_req.name}_geometric_wing.stl'
if os.path.exists(f_name):
os.remove(f_name)
export_stl(model, f_name)
print('Aircraft wing STL file generated.')
print(model.__repr__())
License
This software is distributed freely under the MIT license. You are free to use, abuse, modify, or ridicule the software, its products, and its processes in any way you see fit.
Output generated by the original software is published under the Create Commons license, and may also be used for any purpose, commercial or not. Users of this software may freely apply or replace the CC license with their own license or restrictions, as they desire.
Credits
wingwalker was created with cookiecutter and the py-pkgs-cookiecutter template.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wingwalker-1.0.0.tar.gz.
File metadata
- Download URL: wingwalker-1.0.0.tar.gz
- Upload date:
- Size: 152.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545ef77d3244b349c4070ebe3171a66dee0c535666b6d498d95996efede071ad
|
|
| MD5 |
b164d8ccd2212fb80ea4fb090d26355a
|
|
| BLAKE2b-256 |
9b88b548c50f6b85ddd34f62d23b6bcdb21aa5feb5758925e642ff1d2cf8cb7c
|
File details
Details for the file wingwalker-1.0.0-py3-none-any.whl.
File metadata
- Download URL: wingwalker-1.0.0-py3-none-any.whl
- Upload date:
- Size: 33.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09dcd3c8bf32419336a61ae860ec86649fce845fc8795bed39c860bfb3892db9
|
|
| MD5 |
dcbec6e900f4d5e11bcc01e7cacef5b5
|
|
| BLAKE2b-256 |
094c0409925f7ad67c5742420b7a38c1d48ef5c1bccb389516fabc36e0036452
|