diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH2/EX2.4 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3886/CH2/EX2.4')
-rw-r--r-- | 3886/CH2/EX2.4/2_4.txt | 5 | ||||
-rw-r--r-- | 3886/CH2/EX2.4/Ex2_4.sce | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3886/CH2/EX2.4/2_4.txt b/3886/CH2/EX2.4/2_4.txt new file mode 100644 index 000000000..36d030bf0 --- /dev/null +++ b/3886/CH2/EX2.4/2_4.txt @@ -0,0 +1,5 @@ +
+--> exec('E:\My program EM\2. Resultant and equilibrium of system of coplanar concurrent forces\Ex2_4.sce', -1)
+
+The resultant is R=161.5 N
+The inclination of resultant w.r.t. positive x-axis is alpha=18.81 degree
\ No newline at end of file diff --git a/3886/CH2/EX2.4/Ex2_4.sce b/3886/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..76affa39e --- /dev/null +++ b/3886/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,8 @@ +//Resultant of three forces that are acting on a hook
+//Resolving all forces along x and y axis gives
+Fx=70*cosd(50)+80*cosd(25)+50*cosd(45) //N
+Fy=70*sind(50)+80*sind(25)-50*sind(45) //N
+R=sqrt(Fx^2+Fy^2) //N
+alpha=atand(Fy/Fx) //degree
+printf("\nThe resultant is R=%.1f N \nThe inclination of resultant w.r.t. positive x-axis is alpha=%.2f degree",R,alpha)
+//The answers vary due to round off error
|