From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3886/CH2/EX2.5/Ex2_5.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3886/CH2/EX2.5/Ex2_5.sce (limited to '3886/CH2/EX2.5/Ex2_5.sce') diff --git a/3886/CH2/EX2.5/Ex2_5.sce b/3886/CH2/EX2.5/Ex2_5.sce new file mode 100644 index 000000000..c7c6c6239 --- /dev/null +++ b/3886/CH2/EX2.5/Ex2_5.sce @@ -0,0 +1,17 @@ +//Determining the resultant +clc +//Given- +//inclination of 200N force with x axis calculated by using slope of 200N force as shown in fig.2.8 +theta1=atand(1/2) //degree +//inclination of 120N force with x axis calculated by using slope of 120N force as shown in fig.2.8 +theta2=atand(4/3) //degree +//summation of forces in X direction +Fx=200*cosd(26.565)-120*cosd(53.13)-50*cosd(60)+100*sind(40) //N +//summation of forces in Y direction +Fy=200*sind(26.565)+120*sind(53.13)-50*sind(60)-100*cosd(40) //N +//Resultant +R=sqrt((Fx)^2+(Fy)^2) //N +//inclination of resultant w.r.t X axis +alpha=atand(65.5/146.2) //degree +printf("The resultant of given forces :-\nR=%.1f N.\n",R) +printf("Inclination of resultant w.r.t X-axis :-\nalpha=%.1f degree.",alpha) -- cgit