From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3792/CH3/EX3.14/Ex3_14.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3792/CH3/EX3.14/Ex3_14.sce (limited to '3792/CH3/EX3.14') 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); -- cgit