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/CH3/EX3.22 | |
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/CH3/EX3.22')
-rw-r--r-- | 3792/CH3/EX3.22/Ex3_22.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3792/CH3/EX3.22/Ex3_22.sce b/3792/CH3/EX3.22/Ex3_22.sce new file mode 100644 index 000000000..e6f92681d --- /dev/null +++ b/3792/CH3/EX3.22/Ex3_22.sce @@ -0,0 +1,17 @@ + // SAMPLE PROBLEM 3/22
+clc;funcprot(0);
+// Given data
+m=150;// kg
+v_1=4;// m/s
+t_0=0;// s
+t_1=4;// s
+P=600;// N
+t_2=8;// s
+theta=30;// degree
+g=9.81;// The acceleration due to gravity in m/sec^2
+
+// Calculation
+deltat=(m*0)+((m*v_1)-((v_1*2*P)/2)+(m*g*sind(theta)))/((2*P)+(m*g*sind(theta)));// s
+t_a=v_1+deltat;// s
+v_2x=((m*-v_1)+((v_1*2*P)/2)+(v_1*2*P)-(m*g*sind(theta)*t_2))/m;// m/s
+printf("\n(a)The time at which the skip reverses its direction,t_a=%1.2f s \n(b)The velocity of the skip,v_2x=%1.2f m/s",t_a,v_2x);
|