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 /650/CH3/EX3.20/20.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 '650/CH3/EX3.20/20.sce')
-rwxr-xr-x | 650/CH3/EX3.20/20.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/650/CH3/EX3.20/20.sce b/650/CH3/EX3.20/20.sce new file mode 100755 index 000000000..87849c248 --- /dev/null +++ b/650/CH3/EX3.20/20.sce @@ -0,0 +1,13 @@ +clc;
+t=0.0005; // s
+P=22; //
+r=300/60; //
+R_1=0.1; //
+R_2=0.0625; //
+
+w=2*%pi*r;
+
+u=2*t*P/(%pi*w^2*((R_1)^4-(R_2)^4));
+disp("The viscosity of the oil is found to be ");
+disp(u);
+disp("Nsm-2.");
|