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 /2513/CH14/EX14.2 | |
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 '2513/CH14/EX14.2')
-rwxr-xr-x | 2513/CH14/EX14.2/14_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2513/CH14/EX14.2/14_2.sce b/2513/CH14/EX14.2/14_2.sce new file mode 100755 index 000000000..89d258b2f --- /dev/null +++ b/2513/CH14/EX14.2/14_2.sce @@ -0,0 +1,18 @@ +clc
+//initialisation of variables
+v=1.34//fps
+s=3.7*10^-3//fps
+k=0.8//ft
+r=20//ft
+k1=0.04//ft
+v=3.0//fps
+v1=5.0//fps
+d=10^-1//ft
+d1=1.34//ft
+//CALCULATIONS
+K=r*k1//ft
+V=sqrt(r)//times
+D=d*(v/d1)^2//cm
+D1=d*(v1/d1)^2//cm
+//RESULTS
+printf('the minimum velocity and the gradient at the which coarse quartz=% f cm',D1)
|