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 --- 3308/CH14/EX14.1/Ex14_1.sce | 22 ++++++++++++++++++++++ 3308/CH14/EX14.1/Ex14_1.txt | 4 ++++ 2 files changed, 26 insertions(+) create mode 100755 3308/CH14/EX14.1/Ex14_1.sce create mode 100755 3308/CH14/EX14.1/Ex14_1.txt (limited to '3308/CH14') diff --git a/3308/CH14/EX14.1/Ex14_1.sce b/3308/CH14/EX14.1/Ex14_1.sce new file mode 100755 index 000000000..44bdaf348 --- /dev/null +++ b/3308/CH14/EX14.1/Ex14_1.sce @@ -0,0 +1,22 @@ +clc +// Given that +d=150//in mm Diameter of the solid cylinder +Hi=100 //in mm Height of the cylinder +u=0.2 // Cofficient of friction + +// Sample Problem on page no. 344 + +printf("\n # Calculation of forging force # \n") + +//cylinder is reduced in height by 50% +Hf=100/2 +//Volume before deformation= Volume after deformation +r=sqrt((3.14*75^2*100)/(3.14*50))//r is the final radius of the cylinder +E=log(Hi/Hf)//absolute value of true strain +//given that cylinder is made of 304 stainless steel +Yf=1000 //in Mpa flow stress of the material from data in the book +F = Yf*(10^6)*3.14*(r^2)*10^-6*(1+((2*u*r)/(3*Hf)))//Forging Force +F1=F/(10^6) +printf("\n\n Forging force = %d MN",F1) + + diff --git a/3308/CH14/EX14.1/Ex14_1.txt b/3308/CH14/EX14.1/Ex14_1.txt new file mode 100755 index 000000000..56865068e --- /dev/null +++ b/3308/CH14/EX14.1/Ex14_1.txt @@ -0,0 +1,4 @@ + # Calculation of forging force # + + + Forging force = 45 MN \ No newline at end of file -- cgit