diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH11/EX11.6/example11_6.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '629/CH11/EX11.6/example11_6.sce')
-rw-r--r-- | 629/CH11/EX11.6/example11_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/629/CH11/EX11.6/example11_6.sce b/629/CH11/EX11.6/example11_6.sce new file mode 100644 index 000000000..260346ef6 --- /dev/null +++ b/629/CH11/EX11.6/example11_6.sce @@ -0,0 +1,19 @@ +clear
+clc
+//Example 11.6 LIFT ON A ROTATING SPHERE
+rho=1.2; //density[Kg/m^3]
+d=0.03; //diameter [m]
+r=d/2; //radius [m]
+A=%pi*d^2/4 //area[m^2]
+Vo=10; //velocity [m/s]
+w=100*2*%pi //angular speed [rad/s]
+p=w*r/Vo //rotational parameter
+//From fig.11.17
+CL=0.26; //lift coefficient
+CD=0.64; //drag coefficient
+//Lift force
+FL=(rho*Vo^2*CL*A)/2 //[N]
+printf("\nThe lift force on the ball = %.3f N and the direction of lift is downward.\n",FL)
+//Drag force
+FD=(rho*Vo^2*CD*A)/2 //[N]
+printf("\nThe drag force on the ball = %.4f N.\n",FD)
\ No newline at end of file |