Sie sind auf Seite 1von 2

Program to find the gyroscopic couple acting on an aeroplane and its effect on i

t.
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float m,v,k,K,N,C,I,W,Wp,R;
float pi=3.14;
clrscr();
printf(Enter Mass of the Plane in kg\n);
scanf(%f,&m);
printf(Enter linear velocity of the plane in km/hr\n );
scanf(%f,&v);
printf(Enter Radius of Gyration in metre \n);
scanf(%f,&k);
printf(Enter Radius of Curvature in metre \n);
scanf(%f,&R);
printf(Enter the number of revolutions made by the propeller \n);
scanf(%f,&N);
printf(Considering propeller rotates in anticlockwise direction, select the follo
wing and enter \n 1 if aeroplane takes a right turn\n 2 if aeroplane takes a lef
t turn);
scanf(%f,&K);
I=m*sqr(k);
printf(Moment of Inertia of Aeroplane=%fkg-sq.m \n:,I);
W=(2*pi*N)/60;
printf(Angular Velocity of Aeroplane=%frad/sec \n,W);
v=(v*5)/18;
Wp=v/R;
printf(Angular Velocity of Precession=%frad/sec \n,Wp);
C=(I*W*Wp)/1000;
printf(The Gyroscopic Couple acting on the aeroplane=%f kNm\n,C);
{
If K==1
printf(Effect of gyroscopic couple is to dip the nose and raise the tip of the ae
roplane);
else
printf(Effect of the gyroscopic couple is to dip the tip and raise the nose of th
e aeroplane);
}
getch();
}
OUTPUT:
Enter Mass of the Plane in kg
500
Enter linear velocity of the plane in km/hr
400
Enter Radius of Gyration in metre
0.3
Enter Radius of Curvature in metre
100
Enter the number of revolutions made by the propeller
3000
Considering propeller rotates in anticlockwise direction, select the following a
nd enter
1 if aeroplane takes a right turn
2 if aeroplane takes a left turn
2
Moment of Inertia of Aeroplane=45 kg-sq.m
Angular Velocity of Aeroplane=314.16rad/sec
Angular Velocity of Precession=1.11rad/sec
The Gyroscopic Couple acting on the aeroplane=15.707 kNm
Effect of the gyroscopic couple is to dip the tip and raise the nose of the aero
plane
Enter Mass of the Plane in kg
400
Enter linear velocity of the plane in km/hr
200
Enter Radius of Gyration in metre
.4
Enter Radius of Curvature in metre
50
Enter the number of revolutions made by the propeller
2400
Considering propeller rotates in anticlockwise direction, select the following a
nd enter
1 if aeroplane takes a right turn
2 if aeroplane takes a left turn
1
Moment of Inertia of Aeroplane=64kg-sq.m
Angular Velocity of Aeroplane=251.3216rad/sec
Angular Velocity of Precession=1.11rad/sec
The Gyroscopic Couple acting on the aeroplane=17.87kNm
Effect of gyroscopic couple is to dip the nose and raise the tip of the aeroplan
e

Das könnte Ihnen auch gefallen