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 /3845/CH2/EX2.13/Ex2_13.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 '3845/CH2/EX2.13/Ex2_13.sce')
-rw-r--r-- | 3845/CH2/EX2.13/Ex2_13.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3845/CH2/EX2.13/Ex2_13.sce b/3845/CH2/EX2.13/Ex2_13.sce new file mode 100644 index 000000000..d9ed1cd5f --- /dev/null +++ b/3845/CH2/EX2.13/Ex2_13.sce @@ -0,0 +1,20 @@ +//Example 2.13
+x_0=0;//Position at the start of the ramp (m)
+x=200;//Position at the end of the ramp (m)
+v_0=10;//Initial velocity (m/s)
+a=2;//Acceleration (m/s^2)
+//Use the equation x=x_0+v_0*t+(1/2)*a*t^2 and rearrange to form a quadratic equation with t as the variable
+//(1/2)*a*t^2+v_0*t+(x_0-x)=0
+p=[((1/2)*a) (v_0) (x_0-x)];//Coefficients of the polynomial
+r=roots(p);//Roots of the polynomial)
+//The roots are complex-encoded due to rounding off errors. This may be checked by using
+//disp(isreal(r(1,1)))
+//disp(isreal(r(2,1)))
+//which result in 'T' if real and 'F' if an imaginary part is involved
+if real(r(2,1))<0//Taking the real part
+ printf('Time taken to travel 200m up the ramp = %0.1f s',r(1,1))
+else
+ printf('Time taken to travel 200m up the ramp = %0.1f s',r(2,1))
+end
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|