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.19/19.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.19/19.sce')
-rwxr-xr-x | 650/CH3/EX3.19/19.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/650/CH3/EX3.19/19.sce b/650/CH3/EX3.19/19.sce new file mode 100755 index 000000000..d69cb1ea1 --- /dev/null +++ b/650/CH3/EX3.19/19.sce @@ -0,0 +1,22 @@ +clc;
+u=0.153; //Ns/m^2
+r=0.05; // m
+N=30; // rps
+t=2/10^5; //s
+L=0.2; // m
+
+tau=u*(2*%pi*N*r/t);
+
+F=tau*2*%pi*r*L;
+
+T=F*r;
+
+w=2*%pi*N;
+P=T*w;
+
+disp("The torque on the bearing is found to be ");
+disp(T);
+disp("Nm");
+disp("and the power required to overcome the frictional resistance is ");
+disp(P);
+disp("W");
\ No newline at end of file |