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.12/12.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.12/12.sce')
-rwxr-xr-x | 650/CH3/EX3.12/12.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/650/CH3/EX3.12/12.sce b/650/CH3/EX3.12/12.sce new file mode 100755 index 000000000..4ea5e0207 --- /dev/null +++ b/650/CH3/EX3.12/12.sce @@ -0,0 +1,18 @@ +clc
+Q=3*10^(-6); // m^3/s
+u=0.001; // Ns/m^2
+W=1;
+rho=1000; // kg/m^3
+g=9.81; // m/s^2
+d=1.016*10^(-4); // m
+
+theta=asind(3*Q*u/W/rho/g/d^3);
+disp("Exact angle of inclination =")
+disp(theta)
+
+d1=1.25*10^(-4); // m
+
+u1=W*rho*g*sind(theta)*(d1^3)/(3*Q);
+disp("Viscosity of the second liquid =")
+disp(u1)
+disp("Ns/m^2")
\ No newline at end of file |