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 /3862/CH10 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3862/CH10')
-rw-r--r-- | 3862/CH10/EX10.1/Ex10_1.sce | 31 | ||||
-rw-r--r-- | 3862/CH10/EX10.10/Ex10_10.sce | 21 | ||||
-rw-r--r-- | 3862/CH10/EX10.11/Ex10_11.sce | 15 | ||||
-rw-r--r-- | 3862/CH10/EX10.2/Ex10_2.sce | 23 | ||||
-rw-r--r-- | 3862/CH10/EX10.3/Ex10_3.sce | 24 | ||||
-rw-r--r-- | 3862/CH10/EX10.4/Ex10_4.sce | 57 | ||||
-rw-r--r-- | 3862/CH10/EX10.5/Ex10_5.sce | 30 | ||||
-rw-r--r-- | 3862/CH10/EX10.6/Ex10_6.sce | 47 | ||||
-rw-r--r-- | 3862/CH10/EX10.7/Ex10_7.sce | 23 | ||||
-rw-r--r-- | 3862/CH10/EX10.9/Ex10_9.sce | 18 |
10 files changed, 289 insertions, 0 deletions
diff --git a/3862/CH10/EX10.1/Ex10_1.sce b/3862/CH10/EX10.1/Ex10_1.sce new file mode 100644 index 000000000..bbee7efbb --- /dev/null +++ b/3862/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,31 @@ +clear +//variable declaration + +//A simply supported beam of span 3.0 m has a cross-section 120 mm × 180 mm. If the permissible stress in the material of the beam is 10 N/mm^2 + +b=(120) +d=(180) + +//I=(b*d^3)/12,Ymax=d/2 + +Z=(b*(d**2))/6 +fper=(10) + +L=3 +Mmax=fper*Z + +//Let maximum udl beam can carry be w/metre length +//In this case, we know that maximum moment occurs at mid span and is equal to Mmax = (wL^2)/8 + +w=(Mmax*8)/((L**2)*1000000) + +printf("\n (i) w= %0.2f KN/m",w) + +// Concentrated load at distance 1 m from the support be P kN. + +a=(1) //distance of point at which load is applied from left,m +b=(2) //distance of point at which load is applied from right,m + +P=(L*Mmax)/(a*b*1000000) + +printf("\n (ii) P= %0.2f KN",P) diff --git a/3862/CH10/EX10.10/Ex10_10.sce b/3862/CH10/EX10.10/Ex10_10.sce new file mode 100644 index 000000000..9b286129c --- /dev/null +++ b/3862/CH10/EX10.10/Ex10_10.sce @@ -0,0 +1,21 @@ +clear +// +//A cantilever of 3 m span, carrying uniformly distributed load of 3 kN/m is to be designed using cast iron rectangular section. Permissible stresses in cast iron are f = 30 N/mm^2 in tension and fc = 90 N/mm^2 in compression + +L=(3) //Span of cantilever,m +w=(3) //uniformly distributed load,KN/m + +M=w*1000000*(L**2)/2 //Maximum moment**N-mm +//let b be the width and d the depth +//Z=b*(d**2)/6 + +//Since it is rectangular section, N-A lies at mid-depth, and stresses at top and bottom are same. Hence, permissible tensile stress value is reached earlier and it governs the design. +fper=30 //N/mm^2 +b=100 //mm +f=30 + +//f*Z=M + +d=sqrt((M*6)/(b*f)) + +printf("\n d= %0.1f mm",d) diff --git a/3862/CH10/EX10.11/Ex10_11.sce b/3862/CH10/EX10.11/Ex10_11.sce new file mode 100644 index 000000000..4b994d624 --- /dev/null +++ b/3862/CH10/EX10.11/Ex10_11.sce @@ -0,0 +1,15 @@ +clear +// + +//variable declaration + +// Let the diameter of the bar be ‘d’. Now, W = 800 N L = 1 m = 1000 mm +L=1000 +W=800 +M=W*L/4 //Maximum moment,N-mm +f=150 //permissible stress,N/mm^2 + +d=((((M*32)/(%pi*f)))**(0.33)) + +printf("\n d= %0.2f mm",d) +printf("\n select 25mm bar ") diff --git a/3862/CH10/EX10.2/Ex10_2.sce b/3862/CH10/EX10.2/Ex10_2.sce new file mode 100644 index 000000000..587addef3 --- /dev/null +++ b/3862/CH10/EX10.2/Ex10_2.sce @@ -0,0 +1,23 @@ +clear +// + +//variable declaration + +//A circular steel pipe of external diameter 60 mm and thickness 8 mm is used as a simply supported beam over an effective span of 2 m. If permissible stress in steel is 150 N/mm^2, + +D=(60) //external diameter,mm +d=(44) //Thickness,mm + +I=(%pi*((D**4)-(d**4)))/64 //Area moment of inertia**mm^4 +Ymax=(30) //extreme fibre distance,mm + +Z=I/Ymax +fper=(150) + +Mmax=fper*Z + +//Let maximum load it can carry be P kN. +L=(2) +P=(4*Mmax)/(L*1000000) + +printf("\n P= %0.2f KN",P) diff --git a/3862/CH10/EX10.3/Ex10_3.sce b/3862/CH10/EX10.3/Ex10_3.sce new file mode 100644 index 000000000..f1812eaac --- /dev/null +++ b/3862/CH10/EX10.3/Ex10_3.sce @@ -0,0 +1,24 @@ +clear +//the cross-section of a cantilever beam of 2.5 m span. Material used is steel for which maximum permissible stress is 150 N/mm^2 + +//variable declaration + +A=(180) //width of I-beam,mm +H=(400) //height of I-beam,mm +a=(170) //width of inter rectancle if I-beam consider as Rectangle with width 10,mm +h=(380) //Height of inter rectancle if I-beam consider as Rectangle with width 10,mm + +I=((A*(H**3))/12)-((a*(h**3))/12) +ymax=(200) //extreme fibre,mm + +Z=I/ymax +fper=(150) + +Mmax=fper*Z + +//If udl is w kN/m, maximum moment in cantilever + +L=2 //m + +w=Mmax/(L*1000000) +printf("\n w= %0.2f KN/m",w) diff --git a/3862/CH10/EX10.4/Ex10_4.sce b/3862/CH10/EX10.4/Ex10_4.sce new file mode 100644 index 000000000..d71fd3afc --- /dev/null +++ b/3862/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,57 @@ +clear +//Compare the moment carrying capacity of the section given in example 10.3 with equivalent section of the same area but (i) square section (ii) rectangular section with depth twice the width and (iii) a circular section. + +// +//variable declaration + +A=180.0*10.0+380.0*10.0+180.0*10.0 + +//If ‘a’ is the size of the equivalent square section, + +a=(sqrt(A)) //mm + +I=(a*(a**3))/12 //Moment of inertia of this section** mm^4 + +ymax=a/2 + +Z=I/ymax + +f=150.0 + +Mcc=f*Z //Moment carrying capacity + +MccI=136985000.0 + +Ratio=MccI/Mcc +printf("\n (i) Moment carryingcapacity of Isection/ Moment carryingcapacityof equivalent squaresection= %0.3f ",Ratio) + + +//Equivalent rectangular section of depth twice the width. Let b be the width,Depth d = 2b. Equating its area to area of I-section,we get +b=sqrt(7400/2) + +ymax=b + +I=b*(((2*b)**3))/12 + +M=f*I/ymax + + +MccI=136985000 + +Ratio=MccI/M +printf("\n (ii) Moment carryingcapacity of I-section/ Moment carryingcapacityof equivalent squaresection= %0.3f ",Ratio) + +//Equivalent circular section. Let diameter be d. + +d=sqrt(7400*4/%pi) + +I=(%pi*(d**4))/64 +ymax=d/2 +Z=I/ymax +fper=(150) +M=fper*Z + +MccI=136985000 + +Ratio=MccI/M +printf("\n (i) Moment carryingcapacity of Isection/ Moment carryingcapacityof equivalent squaresection= %0.3f ",Ratio) diff --git a/3862/CH10/EX10.5/Ex10_5.sce b/3862/CH10/EX10.5/Ex10_5.sce new file mode 100644 index 000000000..288ee40dc --- /dev/null +++ b/3862/CH10/EX10.5/Ex10_5.sce @@ -0,0 +1,30 @@ +clear +//variable declaration + +//A symmetric I-section of size 180 mm × 40 mm, 8 mm thick is strengthened with 240 mm × 10 mm rectangular plate on top flange. If permissible stress in the material is 150 N/mm^2, determine how much concentrated load the beam of this section can carry at centre of 4 m span. + +b1=(240) +b=(180) +t=(10) +h=(400) +w=(8) + +A=(240*10+180*8+384*8+180*8) //Area of section,A + +Y=(240*10*405+180*8*(400-4)+384*8*200+180*8*4)/A + +I=(b1*(t**3)/12)+(b1*t*((((h+5)-Y)**2)))+(b*(w**3)/12)+(b*w*((((h-4)-Y)**2)))+(w*((h-16)**3)/12)+((h-16)*w*((((h/2)-Y)**2)))+(b*(w**3)/12)+(b*w*(((4-Y)**2))) + +ytop=(h+t/2)-Y +ybottom=Y +ymax=Y + +Z=I/ymax +fper=150 +M=fper*Z/1000000 //Momnent carrying capacity of the section + +//Let P kN be the central concentrated load the simply supported beam can carry. Then max bending movement in the beam + +P=M*4/(w/2) + +printf("\n P= %0.3f KN",P) diff --git a/3862/CH10/EX10.6/Ex10_6.sce b/3862/CH10/EX10.6/Ex10_6.sce new file mode 100644 index 000000000..77cc47027 --- /dev/null +++ b/3862/CH10/EX10.6/Ex10_6.sce @@ -0,0 +1,47 @@ +clear +//The cross-section of a cast iron beam. The top flange is in compression and bottom flange is in tension. Permissible stress in tension is 30 N/mm^2 and its value in compression is 90 N/mm^2 +//variable declaration +// +b1=(75) +h1=50 +h2=50 +b2=(150) +t=(25) +h=(200) + + +A=(75*50+25*100+150*50) //Area of section,A + +Y=(75*50*175+25*100*100+150*50*25)/A + +I=(b1*(h1**3)/12)+(b1*h1*((((h-(h1/2))-Y)**2)))+(t*((h-h1-h2)**3)/12)+(t*(h-h1-h2)*((((h/2)-Y)**2)))+(b2*(h2**3)/12)+(b2*h2*((((h2/2)-Y)**2))) + + + +ytop=(h-Y) +ybottom=Y + + +Z1=I/ytop +fperc=90 +//Top fibres are in compression. Hence from consideration of compression strength, moment carrying capacity of the beam is given by + +M1=fperc*Z1/1000000 //Momnent carrying capacity of the section,KN-m. + +//Bottom fibres are in tension. Hence from consideration of tension, moment carrying capacity of the section is given by + +Z2=I/ybottom + +fpert=30 + +M2=fpert*Z2/1000000 //Momnent carrying capacity of the section,KN-m. + + +//Actual moment carrying capacity is the lower value of the above two values. Hence moment carrying capacity of the section is +Mmax=min(M1,M2) + +L=(5) +w=sqrt(Mmax*8/(L**2)) + +printf("\n w= %0.3f KN/m",w) +printf("\n calculation mistake in book") diff --git a/3862/CH10/EX10.7/Ex10_7.sce b/3862/CH10/EX10.7/Ex10_7.sce new file mode 100644 index 000000000..169f0f1f1 --- /dev/null +++ b/3862/CH10/EX10.7/Ex10_7.sce @@ -0,0 +1,23 @@ +clear +//The diameter of a concrete flag post varies from 240 mm at base to 120 mm at top. The height of the post is 10 m. If the post is subjected to a horizontal force of 600 N at top +//Consider a section y metres from top. Diameter at this section is d. +//d=120+12*y +//I=%pi*(d**4)/64 +//Z=I*2/d=%pi*(d**3)/32 +//variable declaration +//M=600*1000*y //moment,N-mm +//f*Z=M,f is extreme fibre stress. +// +y=(5) +printf("\n y= %0.2f m",y) + +//Stress at this section f is given by +P=600 +M=P*y*1000 +d=120+12*y +I=%pi*(d**4)/64 +Z=I*2/d + +f=M/Z + +printf("\n f= %0.3f N/mm^2",f) diff --git a/3862/CH10/EX10.9/Ex10_9.sce b/3862/CH10/EX10.9/Ex10_9.sce new file mode 100644 index 000000000..b78881941 --- /dev/null +++ b/3862/CH10/EX10.9/Ex10_9.sce @@ -0,0 +1,18 @@ +clear +//Design a timber beam is to carry a load of 5 kN/m over a simply supported span of 6 m. Permissible stress in timber is 10 N/mm2. Keep depth twice the width. + +//variable declaration +w=(5) //KN/m +L=(6) //m + +M=w*1000000*(L**2)/8 //Maximum bending moment**N-mm + +//Let b be the width and d the depth. Then in this problem d = 2b. +//Z=b*(d**2)/6=2*(b**3)/3 +f=10 //N/mm^2 +//f*Z=M +b=(((M*3)/(2*f))**(0.3333)) +printf("\n b= %0.0f mm",b) + +d=2*b +printf("\n d= %0.0f mm",d) |