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 /1466/CH15/EX15.1/15_1.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 '1466/CH15/EX15.1/15_1.sce')
-rwxr-xr-x | 1466/CH15/EX15.1/15_1.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1466/CH15/EX15.1/15_1.sce b/1466/CH15/EX15.1/15_1.sce new file mode 100755 index 000000000..91021a399 --- /dev/null +++ b/1466/CH15/EX15.1/15_1.sce @@ -0,0 +1,20 @@ +
+clc
+//initialisation of variables
+kl=0.2
+kd=0.05
+A=4//ft^2
+g=32.2//ft/sec^2
+wa=0.081//lb
+ww=62.4//lb
+v=20//ft/sec
+//CALCULATIONS
+La=kl*A*wa*v*v/g
+Da=kd*A*wa*v*v/g
+Lw=kl*A*ww*v*v/g
+Dw=kd*A*ww*v*v/g
+//RESULTS
+printf ('\n force on the plate for fluid air= %.3f lb',La)
+printf ('\n resistance of the plate for fluid air= %.3f lb',Da)
+printf ('\n force on the plate for fluid water= %.f lb',Lw)
+printf ('\n resistance of the plate for fluid air= %.f lb',Dw)
|