(eBook PDF) MATLAB An Introduction with Applications 6th download
(eBook PDF) MATLAB An Introduction with Applications 6th download
https://ebookluna.com/product/ebook-pdf-matlab-an-introduction-
with-applications-6th/
https://ebookluna.com/product/ebook-pdf-matlab-an-introduction-with-
applications-5th-edition/
ebookluna.com
https://ebookluna.com/product/original-pdf-an-introduction-to-
mathematical-statistics-and-its-applications-6th-edition/
ebookluna.com
https://ebookluna.com/product/foundations-of-computational-finance-
with-matlab-ebook-pdf/
ebookluna.com
https://ebookluna.com/product/numerical-methods-in-engineering-with-
matlab-3rd-edition/
ebookluna.com
(eBook PDF) MATLAB for Engineering Applications 4th
Edition
https://ebookluna.com/product/ebook-pdf-matlab-for-engineering-
applications-4th-edition/
ebookluna.com
https://ebookluna.com/product/ebook-pdf-living-ethics-an-introduction-
with-reading/
ebookluna.com
https://ebookluna.com/product/ebook-pdf-environmental-ethics-an-
introduction-with-readings/
ebookluna.com
https://ebookluna.com/product/ebook-pdf-fundamentals-of-
electromagnetics-with-matlab-2nd-edition/
ebookluna.com
https://ebookluna.com/product/ebook-pdf-accounting-an-
introduction-6th-australian/
ebookluna.com
vi Preface
I hope that the book will be useful and will help the users of MATLAB to
enjoy the software.
Amos Gilat
Columbus, Ohio
May, 2016
[email protected]
1
2 Introduction
one book. This book focuses primarily on the foundations of MATLAB. The
assumption is that once these foundations are well understood, the student will
be able to learn advanced topics easily by using the information in the Help
menu.
The order in which the topics are presented in this book was chosen
carefully, based on several years of experience in teaching MATLAB in an
introductory engineering course. The topics are presented in an order that
allows the student to follow the book chapter after chapter. Every topic is
presented completely in one place and then used in the following chapters.
The first chapter describes the basic structure and features of MATLAB
and how to use the program for simple arithmetic operations with scalars as
with a calculator. Script files are introduced at the end of the chapter. They
allow the student to write, save, and execute simple MATLAB programs. The
next two chapters are devoted to the topic of arrays. MATLAB’s basic data
element is an array that does not require dimensioning. This concept, which
makes MATLAB a very powerful program, can be a little difficult to grasp for
students who have only limited knowledge of and experience with linear algebra
and vector analysis. The concept of arrays is introduced gradually and then
explained in extensive detail. Chapter 2 describes how to create arrays, and
Chapter 3 covers mathematical operations with arrays.
Following the basics, more advanced topics that are related to script files
and input and output of data are presented in Chapter 4. This is followed by
coverage of two-dimensional plotting in Chapter 5. Programming with
MATLAB is introduced in Chapter 6. This includes flow control with
conditional statements and loops. User-defined functions, anonymous
functions, and function functions are covered next in Chapter 7. The coverage
of function files (user-defined functions) is intentionally separated from the
subject of script files. This has proven to be easier to understand by students
who are not familiar with similar concepts from other computer programs.
The next three chapters cover more advanced topics. Chapter 8 describes
how MATLAB can be used for carrying out calculations with polynomials, and
how to use MATLAB for curve fitting and interpolation. Chapter 9 covers
applications of MATLAB in numerical analysis. It includes solving nonlinear
equations, finding minimum or a maximum of a function, numerical
integration, and solution of first-order ordinary differential equations. Chapter
10 describes how to produce three-dimensional plots, an extension of the
chapter on two-dimensional plots. Chapter 11 covers in great detail how to use
MATLAB in symbolic operations.
The Framework of a Typical Chapter
In every chapter the topics are introduced gradually in an order that makes the
concepts easy to understand. The use of MATLAB is demonstrated extensively
within the text and by examples. Some of the longer examples in Chapters 1–3
are titled as tutorials. Every use of MATLAB is printed with a different font and
with a gray background. Additional explanations appear in boxed text with a
Introduction 3
white background. The idea is that the reader will execute these demonstrations
and tutorials in order to gain experience in using MATLAB. In addition, every
chapter includes formal sample problems that are examples of applications of
MATLAB for solving problems in math, science, and engineering. Each exam-
ple includes a problem statement and a detailed solution. Some sample prob-
lems are presented in the middle of the chapter. All of the chapters (except
Chapter 2) have a section at the end with several sample problems of applica-
tions. It should be pointed out that problems with MATLAB can be solved in
many different ways. The solutions of the sample problems are written such that
they are easy to follow. This means that in many cases the problem can be solved
by writing a shorter, or sometimes “trickier,” program. The students are encour-
aged to try to write their own solutions and compare the end results. At the end
of each chapter there is a set of homework problems. They include general prob-
lems from math and science and problems from different disciplines of engineer-
ing.
Symbolic Calculations
MATLAB is essentially a software for numerical calculations. Symbolic math
operations, however, can be executed if the Symbolic Math toolbox is installed.
The Symbolic Math toolbox is included in the student version of the software
and can be added to the standard program.
Software and Hardware
The MATLAB program, like most other software, is continually being
developed and new versions are released frequently. This book covers MATLAB
Version 9.0.0.341360, Release 2016a. It should be emphasized, however, that the
book covers the basics of MATLAB, which do not change much from version to
version. The book covers the use of MATLAB on computers that use the
Windows operating system. Everything is essentially the same when MATLAB
is used on other machines. The user is referred to the documentation of
MATLAB for details on using MATLAB on other operating systems. It is
assumed that the software is installed on the computer, and the user has basic
knowledge of operating the computer.
The Order of Topics in the Book
It is probably impossible to write a textbook where all the subjects are presented
in an order that is suitable for everyone. The order of topics in this book is such
that the fundamentals of MATLAB are covered first (arrays and array opera-
tions), and, as mentioned before, every topic is covered completely in one loca-
tion, which makes the book easy to use as a reference. The order of the topics in
this sixth edition is the same as in the previous edition. Programming is intro-
duced before user-defined functions. This allows using programming in user-
defined functions. Also, applications of MATLAB in numerical analysis follow
Chapter 8 which covers polynomials, curve fitting, and interpolation.
Chapter 1
Starting with
MATLAB
This chapter begins by describing the characteristics and purpose of the differ-
ent windows in MATLAB. Next, the Command Window is introduced in detail.
The chapter shows how to use MATLAB for arithmetic operations with scalars
in much to the way that a calculator is used. This includes the use of elementary
math functions with scalars. The chapter then shows how to define scalar vari-
ables (the assignment operator) and how to use these variables in arithmetic cal-
culations. The last section in the chapter introduces script files. It shows how to
write, save, and execute simple MATLAB programs.
and are briefly described on the following pages. More detailed descriptions are
included in the chapters where they are used. The Command History Window,
Current Folder Window, and the Workspace Window are described in Sections
1.2, 1.8.4, and 4.1, respectively.
Window Purpose
Command Window Main window, enters variables, runs
programs.
Figure Window Contains output from graphic com-
mands.
Editor Window Creates and debugs script and func-
tion files.
Help Window Provides help information.
Command History Win- Logs commands entered in the Com-
dow mand Window.
1.1 Starting MATLAB, MATLAB Windows 7
Window Purpose
Workspace Window Provides information about the vari-
ables that are stored.
Current Folder Window Shows the files in the current folder.
Figure Window: The Figure Window opens automatically when graphics com-
mands are executed, and contains graphs created by these commands. An exam-
ple of a Figure Window is shown in Figure 1-2. A more detailed description of
this window is given in Chapter 5.
all the windows except the Command Window. The closed windows can be
reopened by selecting them from the layout icon in the Toolstrip. The windows
shown in Figure 1-1 can be displayed by clicking on the layout icon and selecting
Default in the menu that opens. The various windows in Figure 1-1 are docked
to the desktop. A window can be undocked (become a separate, independent
window) by dragging it out. An independent window can be redocked by click-
ing on the pull-down menu at the top right-hand side of the window and then
selecting Dock.
It should be pointed out here that all the symbols except the left division are
the same as in most calculators. For scalars, the left division is the inverse of the
right division. The left division, however, is mostly used for operations with
arrays, which are discussed in Chapter 3.
>> 0.7854-(0.7854)^3/(1*2*3)+0.785^5/(1*2*3*4*5)...
-(0.785)^7/(1*2*3*4*5*6*7)
Type three periods ... (and press Enter) to
ans = continue the expression on the next line.
0.7071
>> The last expression is the first four
terms of the Taylor series for sin( /4).
be changed with the format command. Once the format command is entered,
all the output that follows is displayed in the specified format. Several of the
available formats are listed and described in Table 1-2.
MATLAB has several other formats for displaying numbers. Details of
these formats can be obtained by typing help format in the Command Win-
dow. The format in which numbers are displayed does not affect how MATLAB
computes and saves numbers.
Table 1-2: Display formats
4.142857142857143e+0
01
format short g Best of 5-digit fixed or >> 290/7
floating point. ans =
41.429
format long g Best of 15-digit fixed or >> 290/7
floating point. ans =
41.4285714285714
format bank Two decimal digits. >> 290/7
ans =
41.43
format compact Eliminates blank lines to allow more lines with informa-
tion displayed on the screen.
format loose Adds blank lines (opposite of compact).
Other documents randomly have
different content
than above the body, each wing expends its entire energy in pushing the body
upwards and forwards. It is necessary that the wings descend further than they
ascend; that the wings be convex on their upper surfaces, and concave on their
under ones; and that the concave or biting surfaces be brought more violently in
contact with the air during the down stroke than the convex ones during the up
stroke. The greater range of the wing below than above the body, and of the
posterior margin below than above a given line, may be readily made out by
watching the flight of the larger birds. It is well seen in the upward flight of the
lark. In the hovering of the kestrel over its quarry, and the hovering of the gull
over garbage which it is about to pick up, the wings play above and on a level
with the body rather than below it; but these are exceptional movements for
special purposes, and as they are only continued for a few seconds at a time, do
not affect the accuracy of the general statement.
Points wherein the Screws formed by the Wings differ from those employed in
navigation.—1. In the blade of the ordinary screw the integral parts are rigid and
unyielding, whereas, in the blade of the screw formed by the wing, they are
mobile and plastic (figs. 93, 95, 97, pp. 174, 175, 176). This is a curious and
interesting point, the more especially as it does not seem to be either appreciated
or understood. The mobility and plasticity of the wing is necessary, because of the
tenuity of the air, and because the pinion is an elevating and sustaining organ, as
well as a propelling one.
2. The vanes of the ordinary two-bladed screw are short, and have a
comparatively limited range, the range corresponding to their area of revolution.
The wings, on the other hand, are long, and have a comparatively wide range;
and during their elevation and depression rush through an extensive space, the
slightest movement at the root or short axis of the wing being followed by a
gigantic up or down stroke at the other (fig. 56, p. 120; figs. 64, 65, and 66,
p. 139; figs. 82 and 83, p. 158). As a consequence, the wings as a rule act upon
successive and undisturbed strata of air. The advantage gained by this
arrangement in a thin medium like the air, where the quantity of air to be
compressed is necessarily great, is simply incalculable.
3. In the ordinary screw the blades follow each other in rapid succession, so that
they travel over nearly the same space, and operate upon nearly the same
particles (whether water or air), in nearly the same interval of time. The limited
range at their disposal is consequently not utilized, the action of the two blades
being confined, as it were, to the same plane, and the blades being made to
precede or follow each other in such a manner as necessitates the work being
virtually performed only by one of them. This is particularly the case when the
motion of the screw is rapid and the mass propelled is in the act of being set in
motion, i.e. before it has acquired momentum. In this instance a large percentage
of the moving or driving power is inevitably consumed in slip, from the fact of the
blades of the screw operating on nearly the same particles of matter. The wings,
on the other hand, do not follow each other, but have a distinct reciprocating
motion, i.e. they dart first in one direction, and then in another and opposite
direction, in such a manner that they make during the one stroke the current on
which they rise and progress the next. The blades formed by the wings and the
blur or impression produced on the eye by the blades when made to vibrate
rapidly are widely separated,—the one blade and its blur being situated on the
right side of the body and corresponding to the right wing, the other on the left
and corresponding to the left wing. The right wing traverses and completely
occupies the right half of a circle, and compresses all the air contained within this
space; the left wing occupying and working up all the air in the left and remaining
half. The range or sweep of the two wings, when urged to their extreme limits,
corresponds as nearly as may be to one entire circle 77 (fig. 56, p. 120). By
separating the blades of the screw, and causing them to reciprocate, a double
result is produced, since the blades always act upon independent columns of air,
and in no instance overlap or double upon each other. The advantages possessed
by this arrangement are particularly evident when the motion is rapid. If the screw
employed in navigation be driven beyond a certain speed, it cuts out the water
contained within its blades; the blades and the water revolving as a solid mass.
Under these circumstances, the propelling power of the screw is diminished rather
than increased. It is quite otherwise with the screws formed by the wings; these,
because of their reciprocating movements, becoming more and more effective in
proportion as the speed is increased. As there seems to be no limit to the velocity
with which the wings may be driven, and as increased velocity necessarily results
in increased elevating, propelling, and sustaining power, we have here a striking
example of the manner in which nature triumphs over art even in her most
ingenious, skilful, and successful creations.
4. The vanes or blades of the screw, as commonly constructed, are fixed at a
given angle, and consequently always strike at the same degree of obliquity. The
speed, moreover, with which the blades are driven, is, as nearly as may be,
uniform. In this arrangement power is lost, the two vanes striking after each other
in the same manner, in the same direction, and almost at precisely the same
moment,—no provision being made for increasing the angle, and the propelling
power, at one stage of the stroke, and reducing it at another, to diminish the
amount of slip incidental to the arrangement. The wings, on the other hand, are
driven at a varying speed, and made to attack the air at a great variety of angles;
the angles which the pinions make with the horizon being gradually increased by
the wings being made to rotate on their long axes during the down stroke, to
increase the elevating and propelling power, and gradually decreased during the
up stroke, to reduce the resistance occasioned by the wings during their ascent.
The latter movement increases the sustaining area by placing the wings in a more
horizontal position. It follows from this arrangement that every particle of air
within the wide range of the wings is separately influenced by them, both during
their ascent and descent,—the elevating, propelling, and sustaining power being
by this means increased to a maximum, while the slip or waftage is reduced to a
minimum. These results are further secured by the undulatory or waved track
described by the wing during the down and up strokes. It is a somewhat
remarkable circumstance that the wing, when not actually engaged as a propeller
and elevator, acts as a sustainer after the manner of a parachute. This it can
readily do, alike from its form and the mode of its application, the double curve or
spiral into which it is thrown in action enabling it to lay hold of the air with avidity,
in whatever direction it is urged. I say “in whatever direction,” because, even
when it is being recovered or drawn off the wind during the back stroke, it is
climbing a gradient which arches above the body to be elevated, and so prevents
it from falling. It is difficult to conceive a more admirable, simple, or effective
arrangement, or one which would more thoroughly economize power. Indeed, a
study of the spiral configuration of the wing, and its spiral, flail-like, lashing
movements, involves some of the most profound problems in mathematics,—the
curves formed by the pinion as a pinion anatomically, and by the pinion in action,
or physiologically, being exceedingly elegant and infinitely varied; these running
into each other, and merging and blending, to consummate the triple function of
elevating, propelling, and sustaining.
Other differences might be pointed out; but the foregoing embrace the more
fundamental and striking. Enough, moreover, has probably been said to show that
it is to wing-structures and wing-movements the aëronaut must direct his
attention, if he would learn “the way of an eagle in the air,” and if he would rise
upon the whirlwind in accordance with natural laws.
The Wing at all times thoroughly under control.—The wing is moveable in all
parts, and can be wielded intelligently even to its extremity; a circumstance which
enables the insect, bat, and bird to rise upon the air and tread it as a master—to
subjugate it in fact. The wing, no doubt, abstracts an upward and onward recoil
from the air, but in doing this it exercises a selective and controlling power; it
seizes one current, evades another, and creates a third; it feels and paws the air
as a quadruped would feel and paw a treacherous yielding surface. It is not
difficult to comprehend why this should be so. If the flying creature is living,
endowed with volition, and capable of directing its own course, it is surely more
reasonable to suppose that it transmits to its travelling surfaces the peculiar
movements necessary to progression, than that those movements should be the
result of impact from fortuitous currents which it has no means of regulating. That
the bird, e.g. requires to control the wing, and that the wing requires to be in a
condition to obey the behests of the will of the bird, is pretty evident from the fact
that most of our domestic fowls can fly for considerable distances when they are
young and when their wings are flexible; whereas when they are old and the
wings stiff, they either do not fly at all or only for short distances, and with great
difficulty. This is particularly the case with tame swans. This remark also holds
true of the steamer or race-horse duck (Anas brachyptera), the younger
specimens of which only are volant. In older birds the wings become too rigid and
the bodies too heavy for flight. Who that has watched a sea-mew struggling
bravely with the storm, could doubt for an instant that the wings and feathers of
the wings are under control? The whole bird is an embodiment of animation and
power. The intelligent active eye, the easy, graceful, oscillation of the head and
neck, the folding or partial folding of one or both wings, nay more, the slight
tremor or quiver of the individual feathers of parts of the wings so rapid, that only
an experienced eye can detect it, all confirm the belief that the living wing has not
only the power of directing, controlling, and utilizing natural currents, but of
creating and utilizing artificial ones. But for this power, what would enable the bat
and bird to rise and fly in a calm, or steer their course in a gale? It is erroneous to
suppose that anything is left to chance where living organisms are concerned, or
that animals endowed with volition and travelling surfaces should be denied the
privilege of controlling the movements of those surfaces quite independently of
the medium on which they are destined to operate. I will never forget the
gratification afforded me on one occasion at Carlow (Ireland) by the flight of a
pair of magnificent swans. The birds flew towards and past me, my attention
having been roused by a peculiarly loud whistling noise made by their wings. They
flew about fifteen yards from the ground, and as their pinions were urged not
much faster than those of the heron, 78 I had abundant leisure for studying their
movements. The sight was very imposing, and as novel as it was grand. I had
seen nothing before, and certainly have seen nothing since that could convey a
more elevated conception of the prowess and guiding power which birds may
exert. What particularly struck me was the perfect command they seemed to have
over themselves and the medium they navigated. They had their wings and bodies
visibly under control, and the air was attacked in a manner and with an energy
which left little doubt in my mind that it played quite a subordinate part in the
great problem before me. The necks of the birds were stretched out, and their
bodies to a great extent rigid. They advanced with a steady, stately motion, and
swept past with a vigour and force which greatly impressed, and to a certain
extent overawed, me. Their flight was what one could imagine that of a flying
machine constructed in accordance with natural laws would be. 79
The Natural Wing, when elevated and depressed, must move forwards.—It is a
condition of natural wings, and of artificial wings constructed on the principle of
living wings, that when forcibly elevated or depressed, even in a strictly vertical
direction, they inevitably dart forward. This is well shown in fig. 81.
Fig. 81.
Fig. 82.
Fig. 83.
Figs. 82 and 83 show that when the wings are elevated (e, f, g of
fig. 82) the body falls (s of fig. 82); and that when the wings are
depressed (h, i, j of fig. 83) the body is elevated (r of fig. 83).
Fig. 82 shows that the wings are elevated as short levers (e) until
towards the termination of the up stroke, when they are gradually
expanded (f, g) to prepare them for making the down stroke.
Fig. 83 shows that the wings descend as long levers (h) until
towards the termination of the down stroke, when they are
gradually folded or flexed (i, j), to rob them of their momentum
and prepare them for making the up stroke. Compare with figs. 74
and 75, p. 145. By this means the air beneath the wings is
vigorously seized during the down stroke, while that above it is
avoided during the up stroke. The concavo-convex form of the
wings and the forward travel of the body contribute to this result.
The wings, it will be observed, act as a parachute both during the
up and down strokes. Compare with fig. 55, p. 112. Fig. 83 shows,
in addition, the compound rotation of the wing, how it rotates upon
a as a centre, with a radius m b n, and upon a c b as a centre, with
a radius k l. Compare with fig. 80, p. 149.—Original.
The Wing ascends when the Body descends, and vice versâ.—As the body of the
insect, bat, and bird falls forwards in a curve when the wing ascends, and is
elevated in a curve when the wing descends, it follows that the trunk of the
animal is urged along a waved line, as represented at 1, 2, 3, 4, 5 of fig. 81,
p. 157; the waved line a c e g i of the same figure giving the track made by the
wing. I have distinctly seen the alternate rise and fall of the body and wing when
watching the flight of the gull from the stern of a steam-boat.
The direction of the stroke in the insect, as has been already explained, is much
more horizontal than in the bat or bird (compare figs. 82 and 83 with figs. 64, 65,
and 66, p. 139). In either case, however, the down stroke must be delivered in a
more or less forward direction. This is necessary for support and propulsion. A
horizontal to-and-fro movement will elevate, and an up-and-down vertical
movement propel, but an oblique forward motion is requisite for progressive flight.
In all wings, whatever their position during the intervals of rest, and whether in
one piece or in many, this feature is to be observed in flight. The wings are slewed
downwards and forwards, i.e. they are carried more or less in the direction of the
head during their descent, and reversed or carried in an opposite direction during
their ascent. In stating that the wings are carried away from the head during the
back stroke, I wish it to be understood that they do not therefore necessarily
travel backwards in space when the insect is flying forwards. On the contrary, the
wings, as a rule, move forward in curves, both during the down and up strokes.
The fact is, that the wings at their roots are hinged and geared to the trunk so
loosely, that the body is free to oscillate in a forward or backward direction, or in
an up, down, or oblique direction. As a consequence of this freedom of
movement, and as a consequence likewise of the speed at which the insect is
travelling, the wings during the back stroke are for the most part actually
travelling forwards. This is accounted for by the fact, that the body falls
downwards and forwards in a curve during the up or return stroke of the wings,
and because the horizontal speed attained by the body is as a rule so much
greater than that attained by the wings, that the latter are never allowed time to
travel backward, the lesser movement being as it were swallowed up by the
greater. For a similar reason, the passenger of a steam-ship may travel rapidly in
the direction of the stern of the vessel, and yet be carried forward in space,—the
ship sailing much quicker than he can walk. While the wing is descending, it is
rotating upon its root as a centre (short axis). It is also, and this is a most
important point, rotating upon its anterior margin (long axis), in such a manner as
to cause the several parts of the wing to assume various angles of inclination with
the horizon.
Figs. 84 and 85 supply the necessary illustration.
Fig. 84.
Fig. 85.
In flexion, as a rule, the under surface of the wing (fig. 84 a) is arranged in the
same plane with the body, both being in a line with or making a slight angle with
the horizon (x x). 80 When the wing is made to descend, it gradually, in virtue of its
simultaneously rotating upon its long and short axes, makes a certain angle with
the horizon as represented at b. The angle is increased at the termination of the
down stroke as shown at c, so that the wing, particularly its posterior margin,
during its descent (A), is screwed or crushed down upon the air with its concave
or biting surface directed forwards and towards the earth. The same phenomena
are indicated at a b c of fig. 85, but in this figure the wing is represented as
travelling more decidedly forwards during its descent, and this is characteristic of
the down stroke of the insect’s wing—the stroke in the insect being delivered in a
very oblique and more or less horizontal direction (figs. 64, 65, and 66, p. 139;
fig. 71, p. 144). The forward travel of the wing during its descent has the effect of
diminishing the angles made by the under surface of the wing with the horizon.
Compare b c d of fig. 85 with the same letters of fig. 84. At fig. 88 (p. 166) the
angles for a similar reason are still further diminished. This figure (88) gives a very
accurate idea of the kite-like action of the wing both during its descent and
ascent.
Fig. 86.
A careful study of figs. 84, 85, 86, and 87, pp. 160, 161, and 163,
shows the great importance of the twisted configuration and curves
peculiar to the natural wing. If the wing was not curved in every
direction it could not be rolled on and off the wind during the down
and up strokes, as seen more particularly at fig. 87, p. 163. This,
however, is a vital point in progressive flight. The wing (b) is rolled
on to the wind in the direction b a, its under concave or biting
surface being crushed hard down with the effect of elevating the
body to e. The body falls to g, and the wing (f) is rolled off the wind
in the direction f j, and elevated until it assumes the position j. The
elevation of the wing is effected partly by the fall of the body, partly
by the action of the elevator muscles and elastic ligaments, and
partly by the reaction of the air, operating on its under or concave
biting surface. The wing is therefore to a certain extent resting
during the up stroke.
The concavo-convex form of the wing is admirably adapted for the
purposes of flight. In fact, the power which the wing possesses of
always keeping its concave or under surface directed downwards
and forwards enables it to seize the air at every stage of both the up
and down strokes so as to supply a persistent buoyancy. The action
of the natural wing is accompanied by remarkably little slip—the
elasticity of the organ, the resiliency of the air, and the shortening
and elongating of the elastic ligaments and muscles all co-operating
and reciprocating in such a manner that the descent of the wing
elevates the body; the descent of the body, aided by the reaction of
the air and the shortening of the elastic ligaments and muscles,
elevating the wing. The wing during the up stroke arches above the
body after the manner of a parachute, and prevents the body from
falling. The sympathy which exists between the parts of a flying
animal and the air on which it depends for support and progress is
consequently of the most intimate character.
The up stroke (B, D of figs. 84 and 85, p. 160), as will be seen from
the foregoing account, is a compound movement due in some
measure to recoil or resistance on the part of the air; to the
shortening of the muscles, elastic ligaments, and other vital
structures; to the elasticity of the wing; and to the falling of the
body in a downward and forward direction. The wing may be
regarded as rotating during the down stroke upon 1 of figs. 84 and
85, p. 160, which may be taken to represent the long and short axes
of the wing; and during the up stroke upon 2, which may be taken
to represent the yielding fulcrum furnished by the air. A second
pulsation is indicated by the numbers 3 and 4 of the same figures
(84, 85).
The Wing acts upon yielding Fulcra.—The chief peculiarity of the
wing, as has been stated, consists in its being a twisted flexible lever
specially constructed to act upon yielding fulcra (the air). The points
of contact of the wing with the air are represented at a b c d e f g h
i j k l respectively of figs. 84 and 85, p. 160; and the imaginary
points of rotation of the wing upon its long and short axes at 1, 2, 3,
and 4 of the same figures. The assumed points of rotation advance
from 1 to 3 and from 2 to 4 (vide arrows marked r and s, fig. 85);
these constituting the steps or pulsations of the wing. The actual
points of rotation correspond to the little loops a b c d f g h i j l of
fig. 85. The wing descends at A and C, and ascends at B and D.
The Wing acts as a true Kite both during the Down and Up Strokes.
—If, as I have endeavoured to explain, the wing, even when
elevated and depressed in a strictly vertical direction, inevitably and
invariably darts forward, it follows as a that the wing, as already
partly explained, flies forward as a true kite, both during the down
and up strokes, as shown at c d e f g h i j k l m of fig. 88; and that
its under concave or biting surface, in virtue of the forward travel
communicated to it by the body in motion, is closely applied to the
air, both during its ascent and descent—a fact hitherto overlooked,
but one of considerable importance, as showing how the wing
furnishes a persistent buoyancy, alike when it rises and falls.
Fig. 88.
Fig. 89.
Fig. 89.—The Centaur Beetle (Augusoma centaurus), seen from
above. Shows elytra (r) and membranous wings (e) in the extended
state. The nervures are arranged and jointed in such a manner that
the membranous wings can be folded (e) transversely across the
back beneath the elytra during repose. When so folded, the
anterior or thick margins of the membranous wings are directed
outwards and slightly downwards, the posterior or thin margins
inwards and slightly upwards. During extension the positions of the
margins are reversed by the wings twisting and rotating upon their
long axes, the anterior margins, as in bats and birds, being directed
upwards and forwards, and making a very decided angle with the
horizon. The wings in the beetles are insignificantly small when
compared with the area of the body. They are, moreover, finely
twisted upon themselves, and possess great power as propellers
and elevators.—Original.
Fig. 90.
Fig. 90.—The Water-Bug (Genus belostoma). In this insect the
superior wings (elytra or wing covers r) are semi-membranous.
They are geared to the membranous or under wings (a) by a hook,
the two acting together in flight. When so geared the upper and
under wings are delicately curved and twisted. They moreover
taper from within outwards, and from before backwards.—Original.
Fig. 91.—The Dragon-fly (Petalura gigantea). In this insect the
wings are finely curved and delicately transparent, the nervures
being most strongly developed at the roots of the wings and along
the anterior margins (e e, f f), and least so at the tips (b b), and
along the posterior margins (a a). The anterior pair (e e) are
analogous in every respect to the posterior (f f). Both make a
certain angle with the horizon, the anterior pair (e e), which are
principally used as elevators, making a smaller angle than the
posterior pair (f f), which are used as drivers. The wings of the
dragon-fly make the proper angles for flight even in repose, so that
the insect can take to wing instantly. The insect flies with
astonishing velocity.—Original.
Fig. 92.
Fig. 92.—Right wing of Beetle (Goliathus micans), dorsal surface.
This wing somewhat resembles the kestrel’s (fig. 61, p. 136) in
shape. It has an anterior thick margin, d e f, and a posterior thin
one, b a c. Strong nervures run along the anterior margin (d) until
they reach the joint (e), where the wing folds upon itself during
repose. Here the nervures split up and divaricate and gradually
become smaller and smaller until they reach the extremity of the
wing (f) and the posterior or thin margin (b); other nervures
radiate in graceful curves from the root of the wing. These also
become finer as they reach the posterior or thin margin (c a). r,
Root of the wing with its complex compound joint. The wing of the
beetle bears a certain analogy to that of the bat, the nervures
running along the anterior margin (d) of the wing, resembling the
humerus and forearm of the bat (fig. 94, d, p. 175), the joint of the
beetle’s wing (e) corresponding to the carpal or wrist-joint of the
bat’s wing (fig. 94, e), the terminal or distal nervures of the beetle
(f b) to the phalanges of the bat (fig. 94, f b). The parts marked f b
may in both instances be likened to the primary feathers of the
bird, that marked a to the secondary feathers, and c to the tertiary
feathers. In the wings of the beetle and bat no air can possibly
escape through them during the return or up stroke.—Original.
Fig. 93.
Fig. 93.—Right wing of the Beetle (Goliathus micans), as seen from
behind and from beneath. When so viewed, the anterior or thick
margin (d f) and the posterior or thin margin (b x c) are arranged
in different planes, and form a true helix or screw. Compare with
figs. 95 and 97.—Original.
Fig. 95.
Fig. 95.—Right wing of the Bat (Phyllorhina gracilis), as seen from
behind and from beneath. When so regarded, the anterior or thick
margin (d f) of the wing displays different curves from those seen
on the posterior or thin margin (b c); the anterior and posterior
margins being arranged in different planes, as in the blade of a
screw propeller.—Original.
Fig. 96.
Fig. 96.—Right wing of the Red-legged Partridge (Perdix rubra),
dorsal aspect. Shows extreme example of short rounded wing;
contrast with the wing of the albatross (fig. 62, p. 137), which
furnishes an extreme example of the long ribbon-shaped wing; d e
f, anterior margin; b a c, posterior ditto, consisting of primary (b),
secondary (a), and tertiary (c) feathers, with their respective
coverts and subcoverts; the whole overlapping and mutually
supporting each other. This wing, like the kestrel’s (fig. 61, p. 136),
was drawn from a specimen held against the light, the object being
to display the mutual relation of the feathers to each other, and
how the feathers overlap.—Original.
Fig. 97.
Fig. 97.—Right wing of Red-legged Partridge (Perdix rubra), seen
from behind and from beneath, as in the beetle (fig. 93) and bat
(fig. 95). The same lettering and explanation does for all three.—
Original.