From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 896/CH7/EX7.16/16.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 896/CH7/EX7.16/16.sce (limited to '896/CH7/EX7.16') diff --git a/896/CH7/EX7.16/16.sce b/896/CH7/EX7.16/16.sce new file mode 100755 index 000000000..1690c5918 --- /dev/null +++ b/896/CH7/EX7.16/16.sce @@ -0,0 +1,12 @@ +clc +//Example 7.16 +//calculate the verticle downward velocity of air hitting an aircraft wing +l=15//m length of wing +b=3//m thickness of wing +A=l*b//m^2 area of the colliding surface of the wing +rho_air=1.21//Kg/m^3 +Vx=50//m/s +m=rho_air*A*Vx//Kg/s +Fy=9810//N Weight of the aircraft +Vy=Fy/m//m/s +printf("The verticle downward velocity of air hitting the aircraft wing is %f m/s",Vy); \ No newline at end of file -- cgit