Sunday, May 15, 2011

LAST SEM INTERNAL MARKS

Finally marks of the last sem internal were published and i was shocked after seeing my major project marks. I got only 26 out of 40. I was not happy but when i check marks of other students then i came to know that they gave 25,26 to maximum number of students. I really do not like this. Why they have the authority to judge as when they are unable to help us? They did not help us in selecting the project. Neither they provide any other information. Only people who have interest in teaching should take teaching as their profession.

   Now my last sem marks are
QCQA =19(25)   ROBOTICS =13(25)   AMM =14(25)   POWERPLANT =20(25)

 LABS

QCQA =29(40)  AMM = 29(40)  ROBOTICS =31(40)

MAJOR PROJECT = 26(40)


MAIT really sucks when they have to give marks.



Sunday, October 25, 2009

PIN BUSHED FLEXIBLE COUPLING

hi....

to draw a pin bush flexible coupling the given data will be dia of shaft d to be joined in mm,power P to be transmitted in kw ,no. of revolution N in rpm,bearing pressure pb in n/mm2,allowable shear stress in shaft,keys,flange t in N/mm2 and allowable stress in pin s.


step 1.

find torque
T=(P*60)/(2*3.14*N) in N-m

cange it in N-mm by multiplying 1000.

Check suitability of shaft dia by

(d')3=[(16*t)/(3.14*t)]

if d'



step 2.

No. of pins n=0.02*d +5
(n should be even)

pin dia. d1=(0.5d)/sqrt(n)

take standard size of d1.


enlarged dia of pin d2= d1+2*step size(3-4) mm

assume a brass bush t1=2-3mm and rubber bush t2= 6-8mm

so d3 = d2+2*t1+2*t2



step 3

hub dia D1 = 1.75*d

pin circle dia D2 =3d

force per pin f= T*2/(D2*n)

step 4

From bearing consideration

pb=F/(l*d3)
find l from above expression.

shear stress in pin t= (F*4)/(3.14*d1*d1)





step 5

Bending moment M = F*(l/2 + e)

select e suitably e= 3-5mm


section modulus Z =(3.14*d1*d1*d1)/32

bending stress = M/Z




 C PROGRAM
the C program for the above pin bushed coupling...


#include
#include
#include
#include
float arr[20];
float *am(float d1,int d,float T,float pb,float n,float ta)
{
int d2,t1,t2,d3,e;
float a,d0,q,D1,k,F,l,ti,D2,D3,tp,z,M,c,qp,qb,w,t,l1;


/* Enlarged dia of pin */

d2=d1+2*3;
arr[0]=d2;

t1=2;
t2=6;
d3=d2+2*t1+2*t2;
arr[1]=d3;


/* STEP 3*/
D1=1.75*d;
D1 = abs(D1)+1;


/* check suitability of hub*/

k=d/D1;
k=pow(k,4);
ti=(16*T)/(3.14*D1*D1*D1);
ti=ti/(1-k);

if(ti
printf("\n\n\t");
else
D1=2*d;

arr[2]=D1;

/* PIN CIRCLE DIA*/
D2=3*d;
arr[3]=D2;

/* FORCE PER PIN*/

F=2*T/(D2*n);
arr[4]=F;

/* STEP 4*/

l=F/(pb*d3);
l=abs(l)+1;
arr[5]=l;


/* SHEAR STRESS IN PIN*/

tp=(4*F)/(3.14*d1*d1);
arr[6]=tp;

/* BENDING MOMENT
*/
e=4;
M=F*((l/2)+e);
arr[7]=M;


z=(3.14*d1*d1*d1)/32;

arr[8]=z;
qb=M/z;
arr[9]=qb;
/* PRINCIPAL STRESS IN PIN*/

c=(qb*qb)+4*(tp*tp);
qp=.5*(qb+sqrt(c));


/* KEY DIMENSIONS*/

w=d/4;
w=abs(w)+1;
t=d/6;
t=abs(t)+1;
l1=1.5*d;
l1=abs(l1)+1;
printf("\n\n\t principle stress in pin =\t%fN/mm2",qp);
arr[10]=qp;
printf("\n\n\t n=%f",n);
printf("\n\n\t d1=\%fmm",d1);
printf("\n\n\t D1=\%fmm",D1);
printf("\n\n\t ti=\t%fN/mm2",ti);
printf("\n\n\t Hub is safe");
printf("\n\n\t d2=%dmm",d2);
printf("\n\n\t d3=\t%dmm",d3);
printf("\n\n\t D2=\t%f",D2);
printf("\n\n\t Force per pin =\%fN",F);
printf("\n\n\t l=\%fmm",l);
printf("\n\n\t shear stress in pin =\t%fN/mm2",tp);
printf("\n\n\t bending moment =\t%fN-mm",M);
printf("\n\n\t section modulus =\t%fmm3",z);
printf("\n\n\t STRESS =\t%fN/mm2",qb);
printf("\n\n\t width of key =%fmm",w);
printf("\n\n\t thickness of key =\t%fmm",t);
printf("\n\n\t length of key =\t%fmm",l1);
printf("\n\n\n");
return arr;

}
main()
{
clrscr();
float farr[20];
int d,p,N,b,d2,t1,t2,d3,e,i;
float T,n,d1,a,d0,pb,ta,q,D1,k,F,l,ti,D2,D3,tp,z,M,c,qp, qb;
printf("\n\n\t\t DESIGN OF PIN BUSHED FLEXIBLE COUPLING");
printf("\n\n\n\t enter the dia of pipe to be joined in mm=\t");
scanf("%d",&d);
printf("\n\n\t enter the power to be transmitted in kw=\t");
scanf("%d",&p);
printf("\n\n\t enter the rpm of the shaft =\t");
scanf("%d",&N);
printf("\n\n\t enter the bearing pressure in N/mm2=\t");
scanf("%f",&pb);
printf("\n\n\t enter the allowable shear stress in shaft,keys ,flange =\t");
scanf("%f",&ta);
printf("\n\n\t enter the allowable stress in pin =\t");
scanf("%f",&q);

/* To find the torque*/
T=(p*60000)/(2*3.14*N);
T=(T*1000);
printf("\n\n\t torque produced =\t%fN-mm",T);

/* Suitability of shaft dia*/
a=(16*T)/(3.14*ta);
d0=pow(a,.33333);

d0=fabs(d0)+1;
if (d0
{
d0=d;
printf("\n\n\t d0=%fmm",d0);
}
else
printf("\n\n\t Dia is not secure");

/* No. of pins */
n=(0.02*d)+5;
if(abs(n)-n==0)
i=abs(n);
else
{
n=abs(n)+1;
i=abs(n)+1;
}
if(i%2==0)
n=n;
else
n=n+1;
printf("\n\n\t no. of pins =\t%f",n);

/* Pin dia*/
d1=(0.5*d)/sqrt(n);
b=abs(d1)+1;
d1=abs(d1)+1;
if(b<10)
printf("\n\n\t The value of d1 is =\t%fmm",d1);
else {
if(b%2==0)
printf("\n\n\t The value of d1 is =\t%fmm",d1);
else
{
d1=d1+1;
printf("\n\n\t The value of d1 is =\t%dmm",d1);

}
}
qp=0;

//farr[20] = am(d1,d,T,pb,n,ta);
memcpy(farr,am(d1,d,T,pb,n,ta),sizeof(am(d1,d,T,pb ,n,ta)));
if (arr[10] > q)
{
for(int i=0;arr[10]>q;i++)
{
printf("\n\n************************************** *******************");
printf("\n\n************************************** *******************");
printf("\n\n\t ITERATION NO.%d",i+1);
d1=d1+2;
memcpy(farr,am(d1,d,T,pb,n,ta),sizeof(am(d1,d,T,pb ,n,ta)));

}
}
getch();
return 0;
}

SUMMER TRAINING

when we go to have a summer training in any company we generally take the training lightly...none of our teacher told us what we have to do there ?Which company is best for trainig? How to make the project report? What when you go for a viva then they will give you a big lecture on "What you had to do in training?" So i am just answering you about how to make a good training report.


1. Regularly go to the training with a diary to note what you have seen on that day .
2. Note the things with date and also have some photographs of the machines and workspace you have visited.
3. Now you have two options of making file.
a. Either you make the report on daily bases like you write a daily report.
b. Or make the report on weekly bases. What you learnt in a full week.
4. Paste the photographs you have taken from the company.
5. Never make the report from internet 'cut copy paste'.

If you follow all the above steps then definitely you will get the maximum marks and your work will be original...

SO hope that you like it. :wub:

Thursday, October 8, 2009

confusion

these days as i am going near to completion of my graduation in mechanical engineering i have lots of thoughts in my mind. what will be my future?
Which career i should choose?Either a mba or mtech or job or ias. All my friends have their mind clear what they have to do in their life.they all started preparing for it. According to me if you have a clear vision and work hard then nothing is impossible. but i am unable to choose anything among them.
Maximum time of my day had spent with these thoughts. When i talk to a mba aspirant then my heart says you should go for mba but as i met ias aspirant or mtech aspirant then my heart try to follow them. but i still don't know what is in my heart . Should i try to have a job in a company? That will not be difficult but i don't have interest in it. Everybody says choose that career in which you have interest .

MY INTEREST

when i was a small child studying in eigth class i suddenly create interest in NDA. I want to serve my country . My mind was fully dedicated to my aim. I cleared NDA in my first attempt. I prepared for SSB instead of preparing for XII CBSE board. I even did not give preboards that's the passion i had for NDA. All my friends prepare for IIT's but i never thought of it. That time my mind was set . I was dead sure about it.I had full confidence in myself that i will be succesful. but i was conferenced out. I again gave the NDA exam .I passed the exam but again fail in interview. I never left the hopes. i was fully confident and have faith in myself. I tried for technical entry but it was the dispointment which i got . these three consequent failure totally damage my life

Due to these experiences i am still unable to create interest in any thing. Now a days i have interest in serving the poor people. When ever i saw them there is some kind of electricity get generated in my body. I want to help them but don't have an idea either by doing mba or by doing mtech i will be able to help them.

What is my destiny ? I am in search of it.