Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


afpt (version 1.0.0)

computeChemicalPower: Convert mechanical power to chemical power

Description

Computes the chemical power, i.e. the rate at which chemical energy is consumed, during flight. It takes into account the basal metabolic rate, and the energy needed by the flight muscles to provide the mechanical power required for flight.

Usage

# S3 method for power.mechanical
computeChemicalPower(power.mech, bird, ...)
# S3 method for numeric
computeChemicalPower(power.mech, bird, ...)

Arguments

power.mech

mechanical power (either numeric (W) or as an mechanical power object (class power.mechanical)

bird

object describing the relevant morphological parameters of the bird (or bat); this object should be created using the Bird constructor.

optional arguments (none yet)

Value

Chemical power of same type as inpute power.chem.

Details

Chemical power is computed as Pchem=R(Pmechη+BMR) as described by Pennycuick (2008). Here R is the respiration factor, η is the muscle conversion efficiency and BMR the basal metabolic rate, see Bird.

References

Pennycuick, C. J. (2008). Modelling the flying bird. Amsterdam, The Netherlands: Elsevier.

See Also

Bird, computeFlappingPower, mech2chem, chem2mech

Examples

Run this code
# NOT RUN {
## Define a bird:
myBird = Bird(
  massTotal = 0.215, #  (kg) total body mass
  wingSpan = 0.67, #  (m) maximum wing span
  wingArea = 0.0652, #  (m2) maximum wing area
  type = "passerine"
)

## for maximum continuous power
power.max <- computeAvailablePower(myBird)
print(power.max)
#   [1] 5.233528

## convert to chemical power
power.max.chem <- computeChemicalPower(power.max,myBird)
print(power.max.chem)
#   [1] 27.28913

# }

Run the code above in your browser using DataLab