From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3750/CH2/EX2.4/Ex2_4.sce | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 3750/CH2/EX2.4/Ex2_4.sce (limited to '3750/CH2/EX2.4') diff --git a/3750/CH2/EX2.4/Ex2_4.sce b/3750/CH2/EX2.4/Ex2_4.sce new file mode 100644 index 000000000..8cac7b149 --- /dev/null +++ b/3750/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,35 @@ +//Strength Of Material By G.H.Ryder +//Chapter 2 +//Example 4 +//To Calculate load among rivets +clc(); + +//Initialization of Variables +P=10; //load carried by column, Unit in KN +h=8; //distance of load from centre line of column, Unit in cm +n=9; //Number of rivets +s=3; //Space between two rivets, Unit in cm + +//Calculations +SumR2=4*(s^2*2+s^2); //summation of r^2, Unit in cm^2 +//I is instantaneous centre of rotation and E is centroid fo rivets +IE=SumR2/(n*h); //Distance between I and E, Unit in cm +Loadfact=P*h/SumR2; //Load factor=p*h/summation(r^2), Unit in KN/cm + +//Load in rivets=Loadfact*Distance Of Rivet from I +LoadC=Loadfact*(s^2+(s+IE)^2)^(1/2); // Load in Rivet C, Unit in KN +LoadB=Loadfact*(s^2+IE^2)^(1/2) //Load in Rivet B , Unit in KN, The answer vary due to round off error +LoadA=Loadfact*(s^2+IE^2)^(1/2); //Load in Rivet A, Unit in KN, The answer vary due to round off error +LoadD=Loadfact*IE; //load in rivet D, Unit in KN, The answer vary due to round off error +LoadE=Loadfact*IE; //load in rivet E, Unit in KN, The answer vary due to round off error +LoadF=Loadfact*(s+IE); //load in rivet F, Unit in KN, The answer vary due to round off error + +//Results +printf("The Load in rivets are :\n\t") +printf("Load in Rivet A=%.2fKN\n\t",LoadA) +printf("Load in Rivet B=%.2fKN\n\t",LoadB) +printf("Load in Rivet C=%.2fKN\n\t",LoadC) //The answer vary due to round off error +printf("Load in Rivet D=%.2fKN\n\t",LoadD) +printf("Load in Rivet E=%.2fKN\n\t",LoadE) +printf("Load in Rivet F=%.2fKN\n\t",LoadF) + -- cgit