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/CH4/EX4.7/Ex4_7.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/CH4/EX4.7/Ex4_7.sce')
-rw-r--r-- | 3845/CH4/EX4.7/Ex4_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3845/CH4/EX4.7/Ex4_7.sce b/3845/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..4aef6a974 --- /dev/null +++ b/3845/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,20 @@ +//Example 4.7
+Fx=2.7*10^5;//Force exerted in the x-direction (N)
+Fy=3.6*10^5;//Force exerted in the y-direction (N)
+m=5*10^6;//Mass of the barge (kg)
+a=7.5*10^-2;//Acceleration (m/s^2)
+theta=53.1;//Angle (deg)
+F_app=sqrt(Fx^2+Fy^2);//Resultant applied force (N)
+theta=atand(Fy/Fx);//Direction of resultant applied force (deg)
+F_net=m*a;//Net external force (N)
+F_D=F_app-F_net;//Drag force (N)
+printf('Drag force exerted by water = %0.1e N',F_D)
+printf('\nDirection of the drag force is opposite to that of the applied force.')
+//Direction of drag force, theta_F_D=53 deg south of west
+//also it may be noted that if theta_F_D is to be measured from the same reference axis as theta
+//theta_F_D=theta+180;
+//if theta_F_D>360
+// theta_F_D=theta_F_D-360;
+//end
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|