diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /51/CH9/EX9.16/9_16.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '51/CH9/EX9.16/9_16.sce')
-rwxr-xr-x | 51/CH9/EX9.16/9_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/51/CH9/EX9.16/9_16.sce b/51/CH9/EX9.16/9_16.sce new file mode 100755 index 000000000..b2a654fdd --- /dev/null +++ b/51/CH9/EX9.16/9_16.sce @@ -0,0 +1,15 @@ +clc;
+clear;
+W=2.45*(10^(-2));//N
+D=3.8*(10^(-2));//m
+U=12;//m/s
+
+//W=L
+d=1.23;//kg/(m^3)
+W=0.5*d*(U^2)*(D^2)*%pi*CL/4;
+CL=2*W/(d*(U^2)*%pi*(D^2)/4);
+//using this value of CL, omega*D/(2*U)=x is found as
+x=0.9;
+omega=2*U*x/D;//rad/sec
+angvel=omega*60/(2*%pi);//rpm; where angvel is angular velocity
+disp("rpm",angvel,"The angular velocity=")
\ No newline at end of file |