stormbird 0.9.0

A library for modeling modern wind propulsion devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2024, NTNU
// Author: Jarle Vinje Kramer <jarlekramer@gmail.com; jarle.a.kramer@ntnu.no>
// License: GPL v3.0 (see separate file LICENSE or https://www.gnu.org/licenses/gpl-3.0.html)

#![doc(html_no_source)]

#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]

pub mod common_utils;
pub mod section_models;
pub mod line_force_model;
pub mod lifting_line;
pub mod actuator_line;
pub mod controller;
pub mod wind;
pub mod error;
pub mod io_utils;
pub mod elliptic_wing_theory;