Humming Bird - Biomimicry

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Bio Inspired Humming Bird

Tanuj Agrawal, Student


Karthik Udaya Shet, Student

Abstract—this research is aimed at hovering when taking sharp turns. This is short
developing a humming bird inspired Micro compared to helicopter wings (which tend to be 10
UAV and explore its applications in defense times as long as they are wide), but comparable to
and surveillance sectors. the flappers on bats, other birds, and insects.
Hummingbirds and insects have more than wing
Keywords—bioinspired, drone, humming length in common. Hummingbird flight technique
bird, biomimetic is more similar to that of insects than other birds:
They generate lift on both the upstroke and
I. INTRODUCTION downstroke.
Robotic engineering inspired by biology—
biomimetic—has many potential applications: Designing the flaps and placing the actuators for
robot snakes can be used for rescue operations in the flaps will be carried out in CATIA or Fusion
disasters, snake-like endoscopes can be used in 360 software using the above facts about the flap
medical diagnosis, and artificial muscles can sizes. Based on the frequency of the flap
replace damaged muscles to recover the motor movements of the hummingbird which is
functions of human limbs. Conversely, the generally 22 Hz, the type of actuator can be
application of robotics technology to our decided. The cameras and wiring for surveillance
understanding of biological systems and behaviors can then be placed at the particular location along
—bio-robotic modeling and analysis—provides the body of the MUAV.
unique research opportunities: robotic
manipulation technology with optical tweezers Simulation and analysis will be carried out using
can be used to study the cell mechanics of human ANSYS 18.2 Workbench. The design needs to be
red blood cells, a surface electromyography checked for response to turbulent winds and
sensing system can help us identify the relation critical pressure for the UAV.
between muscle forces and hand movements, and Controlling the humming bird is another task at
mathematical models of brain circuitry may help hand based on either making it an autonomous
us understand how the cerebellum achieves system or complete manual control. In either case
movement control. Another such application is the mathematical model will be based on 2
Humming Bird, a hovering drone which can degrees of freedom pitch control and roll control.
change the way we look at helicopters and drone
surveillance techniques. Hovering flight stability, mathematical modelling,
control and flight simulation, flapping mechanism
and control mechanisms together would yield a
It’s hard to get a good look at hummingbirds’
proper micro control
wings, given that they’re normally beating so fast
air vehicle.
they’re a blur. But compared to wings in the
human-made world—think helicopters—the birds’
feathered appendages are relatively short and
stubby, characteristics that help these expert fliers
hover. We could think in the direction that if short
wings help hummingbirds, they might help drones
become more agile, too.
II.DESIGN PLANNING AND ANALYSIS
Hummingbird wings are generally 4 times as long
as they were wide were the best at generating the A hummingbird developed by DARPA
small tornado of air needed to keep the bird
Keeping all of the aforementioned factors and
For purposes of flight stability and controllability methods in mind, the design and mechanism of
study we only assume longitudinal flight. The the MUAV will be designed and tested for
equations of motion can be further simplified by durability and the parts can be made using
linearization around the hovering flight conditions additive manufacturing technology and some
considering only averaged aerodynamic forces elements of the drone can be made using soft
throughout one wingbeat. robotics.
The stability of the linearized system can be A dedicated flight control board would be set up
resolved by studying the eigenvalues and in the micro UAV for the control of roll, pitch,
eigenvectors of the system matrix with stability hovering, pushing through sharp bends etc.
derivatives (derivatives of cycle-averaged wing
forces with respect to respective velocities). III ANALYSIS
The pitch and roll torque moments are obtained by To test the mechanism and the forward
the so-called wing twist modulation which was kinematics, we use Live Script in MATLAB and
pioneered in the Nano Hummingbird. A are able to achieve an animation of the forward
dissymmetry between the left and right wing will kinematics. We simplify the COLIBRI design by
produce a roll moment, and a dissymmetry reducing the number of links required to actuate
between the front and back half strokes will the flapping motion of the micro UAV.
produce a pitch moment. The results can be seen here. Also the code
developed for the same is scripted below.

MATLAB Code:

lengths = [0.006 0.02 0.015 0.02 0.015];


theta1 = (45*pi/180):0.1:(450*pi/180);
d = [0.15 0.21].*0.1; d_l = [-0.15 0.21].*0.1;
wing = 0.033;
A_r = -2*d(1)*lengths(3) +
2*lengths(1)*lengths(3).*cos(theta1);
B_r = -2*d(2)*lengths(3) +
Basic design mechanism of COLIBRI 2*lengths(1)*lengths(3).*sin(theta1);
C_r = d(1)^2+d(2)^2+lengths(1)^2+lengths(3)^2-
The wings have only a single degree of freedom lengths(2)^2-...
2*lengths(1).*(d(2).*sin(theta1)+d(1).*cos(theta1));
(flapping) and the wing camber is obtained
A_l = 2*lengths(1)*lengths(5).*cos(theta1) -
passively. They are made of a stiffened membrane 2*lengths(5)*d_l(1);
and have two sleeves, one on the leading edge and B_l = 2*lengths(1)*lengths(5).*sin(theta1) -
the other one on the root edge. The sleeves 2*lengths(5)*d_l(2);
accommodate the leading edge bar which is used C_l = d_l(1)^2+d_l(2)^2+lengths(5)^2+lengths(1)^2-
for flapping and the root edge bar which is lengths(4)^2-...
2*lengths(1).*(d_l(1).*cos(theta1)+d_l(2).*sin(theta1));
orthogonal to the leading edge bar in neutral theta3 = 2*atan2(-B_r-sqrt(B_r.^2-C_r.^2+A_r.^2),C_r-A_r);
position. theta2 = atan2(d(2)-lengths(3).*sin(theta3)-
lengths(1).*sin(theta1),...
d(1)-lengths(3).*cos(theta3)-lengths(1).*cos(theta1));
theta5 = 2*atan2(-B_l+sqrt(B_l.^2-C_l.^2+A_l.^2),C_l-A_l);
theta4 = atan2(d_l(2)-lengths(5).*sin(theta5)-
lengths(1).*sin(theta1),...
d_l(1)-lengths(5).*cos(theta5)-lengths(1).*cos(theta1));
l1 = lengths(1); l2 = lengths(2); l3 = lengths(3); l4 = lengths(4);
l5 = lengths(5);
for i=1:size(theta1,2)
clf;
hold on
plot([0 l1*cos(theta1(i))],[0 l1*sin(theta1(i))],'r');
plot([l1*cos(theta1(i)) l1*cos(theta1(i))+l2*cos(theta2(i))],
[l1*sin(theta1(i)) ...
Basic dynamic model
l1*sin(theta1(i))+l2*sin(theta2(i))],'r');
plot([l1*cos(theta1(i))+l2*cos(theta2(i)) l1*cos(theta1(i))
+l2*cos(theta2(i))+l3*cos(theta3(i))],...
[l1*sin(theta1(i))+l2*sin(theta2(i)) l1*sin(theta1(i))
+l2*sin(theta2(i))+l3*sin(theta3(i))],'r')
plot([l1*cos(theta1(i)) l1*cos(theta1(i))+l4*cos(theta4(i))],
[l1*sin(theta1(i)) ...
l1*sin(theta1(i))+l4*sin(theta4(i))],'r');
plot([l1*cos(theta1(i))+l4*cos(theta4(i)) l1*cos(theta1(i))
+l4*cos(theta4(i))+l5*cos(theta5(i))],...
[l1*sin(theta1(i))+l4*sin(theta4(i)) l1*sin(theta1(i))
+l4*sin(theta4(i))+l5*sin(theta5(i))],'r')
plot([l1*cos(theta1(i))+l2*cos(theta2(i))+l3*cos(theta3(i))
l1*cos(theta1(i))+l2*cos(theta2(i))+...
l3*cos(theta3(i))+wing*cos(theta3(i))],[l1*sin(theta1(i))
+l2*sin(theta2(i))+l3*sin(theta3(i)) ...
l1*sin(theta1(i))+l2*sin(theta2(i))+l3*sin(theta3(i))
+wing*sin(theta3(i))],'k','LineWidth',2);
plot([l1*cos(theta1(i))+l4*cos(theta4(i))+l5*cos(theta5(i))
l1*cos(theta1(i))+l4*cos(theta4(i))+...
l5*cos(theta5(i))+wing*cos(theta5(i))],[l1*sin(theta1(i)) IV CONCLUSION
+l4*sin(theta4(i))+l5*sin(theta5(i)) ...
Just a basic wing design and control of the
l1*sin(theta1(i))+l4*sin(theta4(i))+l5*sin(theta5(i))
+wing*sin(theta5(i))],'k','LineWidth',2); hummingbird has been studied in this research
axis([-0.5 0.5 -0.5 0.5].*0.1) with the aim to develop a basic and cost effective
axis equal MUAV for surveillance and security purposes. A
pause(0.01); swarm of such drones can be developed for the
end same purpose.
REFERENCES

[1] http://scmero.ulb.ac.be/Publications/Thesis/Ka
rasek_2014_slides.pdf
[2] https://ieeexplore.ieee.org/document/7989639
[3] https://www.researchgate.net/publication/3157
87447_COLIBRI_A_hovering_flapping_twin-
wing_robot/download
.

You might also like