|
| |
| |
| |
|
Statistics |
| Unique Visitors: 53 |
| Total Unique Visitors: 229656 |
| Visitors Out: 927 |
| Total Visitors Out: 2490 |
|
|
|
| |
|
|
| |
|
| Syphon |
| 2009-08-04 00:26:00 |
Syphon is a long bent pipe which is used to transfer liquid from a reservoir at a higher elevation to another reservoir at a lower level when the two reservoir are seperated by a hill or a high level ground as shown in figure.The point c is at the highest of the syphon is called the summit.As the point C is above the free surface of the water in the tank A, the pressure at C will be less than atmospheric pressure.Syphon is used in the following casesto carry water from one reservoir to another reservoir seperated by a hill or ridge.to take out the liquid from tank which is not having any outlet.to empty a channel not provided with any outlet sluice....
|
| |
|
| Methods for finding different Part family |
| 2009-06-20 10:05:00 |
1.Visual InspectionIt is the least sphosticated and least expensive method. It involves classification of parts into family by looking either the physical parts or photograghs and arranging them into similar group.2.Production flow analysis (PFA)It is a method of identifying part family and associated machine tool grouping by analysing the route sheet (process planning) for parts produced in a given machine shop. It groups together the parts that have similar operation sequence and machine routings. The disadvantages is it blindly accept the excisting route sheet without considering whether they are logical or consistent.3.Parts Classification and CodingWe are considering both the design and manufacturing attitudes of each Parts.Design Attitudes:-basic internal shape and external shape,Le...
|
| |
|
| Part Family -Definition |
| 2009-06-20 10:01:00 |
It is a collection of parts which are similar either because of design attitude or manufaturing attitudes. The parts within the family are different but their similarities areclose enough to put them under the same part family....
|
| |
|
| AUTOMATED PROCESS PLANNING |
| 2009-06-20 09:27:00 |
Group Technology(GT)It is manufacturing phylosphy similar parts are identified and grouped together to take their advantages of their similarity in manufacturing and design.Parts Classfication and CodingIt is concern with identifying the similarities and relating this similarities to a coding system. Two typesDesign Attributes:-Such as geometrical shape and sizeManufaturing Attributes:-Such as sequence of processing step required to make the part....
|
| |
|
| Program to reverse any number |
| 2009-06-20 08:48:00 |
14. Write a program to reverse any number?#include#includevoid main(){int n,d r=0;clrscr()printf("enter the no");scanf("%d",&n);while(n>0){d=n%10;r=(r*10)+d;n=n/10;}printf("reverse %d",r);getch();}Algorithum1.start2.read the number n,d,r3.calculate d=n%10r=(r*10)+dn=n/104.print r5.stopResultThe program is sucessfully executed and desired output is obtainedOutputenter 234432...
|
| |
|
| Evaluate Y=Xˆn |
| 2009-06-20 01:07:00 |
13. write a program to evaluate Y=Xˆn?
#include
#include
void main()
{
int Y=1,X,n,i=i;
clrscr();
printf("enter two numbers");
scanf("%d%d",&X&n);
while(i...
|
| |
|
| Find the factorial of a number |
| 2009-06-20 00:49:00 |
12.Write a program to find the factorial of a number?#include#includevoid main(){int n,f=1,i=i;clrscr();printf("enter the no.");scanf("%d",&n);while(i...
|
| |
|
|
| find the largest among three numbers |
| 2009-06-20 00:18:00 |
10. Write a program find the largest among three numbers?#include #includevoid main(){int a,b,c;clrscr();printf(" enter three nos.");scanf("%d%d%d",&a,&b,&c);if((a>b)&&(a>c)printf("large%d",a);elseif((b>c)&&(b>c))printf("large%d",b);elseprintf("large%d',c);getch();}Algorithum1.start2.read a,b,c3.if (a>b)&(a>c)4.print large is a5.else6.if (b>c)&(b>a)7.print large is b6.else7.print large is c8.stopResultThe program is sucessfully executed and desired is obtainedOutputenter three numbers1 3 5large 5...
|
| |
|
| find the largest of given two numbers |
| 2009-06-20 00:06:00 |
9. Write a Program to find the largest of given numbers?#include#includevoid main(){int a,b;printf("enter the numbers");scanf(%d%d",&a,&b);if(a>b)printf("large %d ",a);elseprintf("small %d", a);getch();}Algorithum1.start2.read a,b3.if (a>b)4.print large5.else6.print small7.stopResultThe program is sucessfully executed and desired output is obtainedOutputenter numbers2 4large 4...
|
| |
|
| |
 |