Skip to main content

A lightweight lifting-line analysis library for the lazy aerodynamicist.

Project description

LazyLLT: A Lightweight Lifting-line Analysis Library

LazyLLT is a library for quickly calculating a wing's aerodynamic properties and their respective gradients using the Lanchester–Prandtl lifting-line theory. When not calculating gradients, LazyLLT can accurately compute a wing's aerodynamic properties in under a millisecond.

LazyLLT is "lazy" in two ways:

  1. An aerodynamic analysis can be done oftentimes in under 10 lines of code.
  2. No property or design variable gradient is computed until its value is queried.

For more information, please view the documentation.

Install

pip install lazyllt

Requires Python 3.10 or higher.

Example

Example of getting the lift coefficient of a wing with an elliptical chord distribution and linear twist (washout):

from src.lazyllt import LiftingLineModel, UnsweptWing

model = LiftingLineModel(num_coefficients=35)

wing = UnsweptWing(
    span=5,
    root_chord=1,
    alpha_0=-1
)


def elliptical(z, _):
    return (1 - z ** 2) ** 0.5


wing.set_taper_function(elliptical)
wing.parametric_taper()

wing.linear_twist(
    root_twist=1,
    tip_twist=0
)

model.add_wing(wing)
solution = next(model.solve())

print("Coefficient of lift:", solution.cl)

Note on Units

LazyLLT uses the meter-kilogram-second unit system for all physical values and properties. All user-facing methods and attributes represent angles in degrees unless specified. Most internal functions and attributes use radians for ease of calculation.

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

lazyllt-1.0.1.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lazyllt-1.0.1-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file lazyllt-1.0.1.tar.gz.

File metadata

  • Download URL: lazyllt-1.0.1.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for lazyllt-1.0.1.tar.gz
Algorithm Hash digest
SHA256 ca1da4984d2e3bc91796f97173bc499bce2cf9610ef7dfe7b9aed0232dcad852
MD5 4b198a6d81db54fa7b299e0c34661812
BLAKE2b-256 da3b5df197ccfcd451e5d5bfda78241f8fba88f380e085311373eda78c6ad254

See more details on using hashes here.

File details

Details for the file lazyllt-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: lazyllt-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for lazyllt-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5142575949b514d040e41db4c8cbc49a2f069bfa4422863119cc1c56f639beb9
MD5 d06cae748d970d368906e389a2cfe6d2
BLAKE2b-256 c0937e91430c93bfca0709b5780571bc8fa0b246a8aaceb79af3feecf018e440

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page