diff options
Diffstat (limited to '3792/CH3/EX3.14')
-rw-r--r-- | 3792/CH3/EX3.14/Ex3_14.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3792/CH3/EX3.14/Ex3_14.sce b/3792/CH3/EX3.14/Ex3_14.sce new file mode 100644 index 000000000..02efc42ef --- /dev/null +++ b/3792/CH3/EX3.14/Ex3_14.sce @@ -0,0 +1,18 @@ +// SAMPLE PROBLEM 3/14
+clc;clear;funcprot(0);
+// Given data
+F=800;// lb
+v=4;/// ft/sec
+P=6;// The power output of the winch in hp
+P_i=8;// hp
+theta=30;// degree
+g=32.2;// The acceleration due to gravity in ft/sec^2
+
+// Calculation
+N=F*cosd(theta);// lb
+// SigmaF_x=0;
+T=(P*550)/v;// The tension in the cable in N
+mu_k=(T-(F*sind(theta)))/N;// The coefficient of kinetic friction
+T=(P_i*550)/v;// lb
+a=(T-(N*mu_k)-(F*sind(theta)))*(g/F);// The acceleration in ft/sec^2
+printf("\nThe corresponding instantaneous acceleration of the log,a=%2.2f ft/sec^2",a);
|