From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2915/CH4/EX4.7/4_7.JPG | Bin 0 -> 23761 bytes 2915/CH4/EX4.7/Ex4_7.sce | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100755 2915/CH4/EX4.7/4_7.JPG create mode 100755 2915/CH4/EX4.7/Ex4_7.sce (limited to '2915/CH4/EX4.7') diff --git a/2915/CH4/EX4.7/4_7.JPG b/2915/CH4/EX4.7/4_7.JPG new file mode 100755 index 000000000..eccc64728 Binary files /dev/null and b/2915/CH4/EX4.7/4_7.JPG differ diff --git a/2915/CH4/EX4.7/Ex4_7.sce b/2915/CH4/EX4.7/Ex4_7.sce new file mode 100755 index 000000000..e4cea151e --- /dev/null +++ b/2915/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,24 @@ +clc,clear +//Example 4.7 +//To determine the length of the belt around the pulleys + +AE= 5 //radius of first pulley in cm +BF= 8 //radius of second pulley in cm +AB=15 //distance between centre of pulleys in cm + +//from the figure +CF=AE //parallel side of rectangle ACFE +BC= BF- CF +AC = sqrt(AB^2 - BC^2) //by pythagoras theorem +EF=AC//parallel side of rectangle ACFE + +angle_EAC = %pi/2 +angle_BAC = asin(BC/AB) +angle_DAE = %pi - angle_EAC - angle_BAC +angle_ABC = angle_DAE //AE and BF are parallel +angle_GBF= %pi - angle_ABC + +arc_DE=AE*angle_ABC //length of arc DE +arc_FG=BF*angle_GBF //length of arc FG +L=2*(arc_DE + EF + arc_FG) //length of belt +printf('Length of belt around pulley = %f cm',L) -- cgit