diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3792/CH6/EX6.4/Ex6_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3792/CH6/EX6.4/Ex6_4.sce')
-rw-r--r-- | 3792/CH6/EX6.4/Ex6_4.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3792/CH6/EX6.4/Ex6_4.sce b/3792/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..2446945df --- /dev/null +++ b/3792/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,23 @@ +// SAMPLE PROBLEM 6/4
+clc;funcprot(0);
+// Given data
+m=7.5;// kg
+rbar=250/1000;// m
+k_o=295/1000;// m
+theta_1=0;// degree
+theta_2=60;// degree
+g=9.81;// The acceleration due to gravity in m/s^2
+
+// Calculation
+// SigmaM_o=I_o*alpha;
+// alpha=28.2*cos(theta);
+wsquare=48.8;// (rad/s)^2
+// SigmaF_n=m*rbar*omega^2;
+O_n=(m*rbar*wsquare)+(m*g*sind(theta_2));// N
+// SigmaF_t=m*rbar*alpha;
+O_t=(m*g*cosd(theta_2))-(m*rbar*28.2*cosd(theta_2));// N
+O=sqrt(O_n^2+O_t^2);// N
+q=k_o^2/(rbar);// The distance in m
+// SigmaM_Q=0
+O_t=(m*g*cosd(theta_2)*(q-rbar))/q;// N
+printf("\nThe total force supported by the bearing,O=%3.1f N \nO_t=%2.2f N",O,O_t);
|