summaryrefslogtreecommitdiff
path: root/3758/CH1/EX1.10
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 10:59:42 +0530
committerprashantsinalkar2018-02-03 10:59:42 +0530
commitd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (patch)
tree612077a22c8142c0ae754ec11882a4e7d5dc25a4 /3758/CH1/EX1.10
parentf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (diff)
downloadScilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.gz
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.bz2
Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.zip
Modified the code
Diffstat (limited to '3758/CH1/EX1.10')
-rw-r--r--3758/CH1/EX1.10/Ex1_10.sce12
1 files changed, 0 insertions, 12 deletions
diff --git a/3758/CH1/EX1.10/Ex1_10.sce b/3758/CH1/EX1.10/Ex1_10.sce
deleted file mode 100644
index 9b94128ae..000000000
--- a/3758/CH1/EX1.10/Ex1_10.sce
+++ /dev/null
@@ -1,12 +0,0 @@
-clc;
-d1=0.3;//diameter of inner cylinder in meter
-d2=0.31; //diameter of outer cylinder in meter
-t=0.98; //torque in newton-meter
-w=2*3.14; //amgular veocity in radian/sec
-h=0.3; //height of both cylinder in meter
-v=((d1/2)*w); //calculating the tangential velocity in m/sec
-y=(d2-d1)/2; //calculating thickness of plate in meter
-s=t/((2*3.14*(d1/2)*h)*(d1/2)); //calculating shear resisitance in newton/m^2
-disp(s);
-u=(s*y)/v; //calculating viscosity of liquid
-printf('viscosity of liquid is %f newton-sec/m^2',u);