Learn R Programming

afpt (version 1.0.0)

amplitude: Flapping flight optimal amplitude

Description

This function returns the angular peak amplitude of the flapping motion, optimized for minimum induced power for prescribed reduced frequency (kf), strokeplane angle (phi), and thrust-to-lift ratio (TL).

Usage

amplitude(kf, phi, TL)

Arguments

kf

reduced frequency (\(k_f = \frac{2 \pi f b}{U}\)); valid range between 1 and 6

phi

strokeplane angle in radians; valid range between 0 and 0.87 rad (50 deg)

TL

thrust requirement or the trust-to-lift ratio; valid range between 0 and 0.3

Value

Angular peak amplitude of the flapping motion in degrees.

References

Klein Heerenbrink, M., Johansson, L. C. and Hedenstr<U+00F6>m, A. 2015 Power of the wingbeat: modelling the effects of flapping wings in vertebrate flight. Proc. R. Soc. A 471, 2177 10.1098/rspa.2014.0952

See Also

computeFlappingPower

Examples

Run this code
# NOT RUN {
## reduced frequency
kf <- 2*pi*4/10 # 4 Hz at 10 m/s for 1m wing span
## strokeplane angle
phi <- 20*pi/180 # 20 degrees
## thrust ratio
TL <- 0.2
## wingbeat amplitude
theta <- amplitude(kf,phi,TL)
print(theta)
#   [1] 49.17679
# }

Run the code above in your browser using DataLab