-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contents.m
36 lines (36 loc) · 1.26 KB
/
Contents.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
%HELICOPTER PERFORMANCE
%
% Basic functions
% induced_speed_ratio_hover - Induced speed at hover.
% induced_speed_ratio - Induced speed in forward flight.
% solidity - Rotor solidity.
% thrust_coefficient - Thrust coefficient.
% power_coefficient - Power coefficient.
% figure_of_merit - Figure of merit.
% atmosphere - Atmosphere model.
% ground_effect - Ground effect on induced speed.
%
% High level functions
% min_power_speed - Minimum power in forward flight.
% max_rate_of_climb_speed - Maximum rate of climb.
% max_cruise_speed - Maximum cruise speed.
% max_range_speed - Maximum range speed.
% mission - Mission performance.
%
% Helicopter data
% helicopter_01 - light helicopter example.
%
% Mission parameters
% mission_01 - typical mission parameters.
%
% Utility functions
% units_conversion - Performs units conversion.
%
% Examples
% example_climb - Forward flight climb exammple.
% example_max_rate_of_climb - Maximum rate of climb exammple.
% example_max_cruise - Maximum cruise speed.
% example_max_range - Maximum range speed.
% example_min_power - Minimum power speed.
% example_ground_effect - Ground effect on hover power.
% example_mission - Mission performance.