answersLogoWhite

0

The coupling takes hold of the pipes ends so coniderable axial tensile forces.

Easy and fast connection upto 5 times faster than welding

The pipes can cope with a non-alignment of 1-2.5 deg.

The couplings can withstand vibrations without a risk of leakage occurring

by

B.Ganesan

Enmas Andritz private Limited

Mail : ganesan.balraj@gmail.com

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

Causes of injuries in mechanical engineering?

mainly injuries happening in production and in thermal field. lot of precaution material available in market. but the awareness abt these items is important


What education and training is required for Underwater Welding?

weldng s d procecess joning f 2 simillar metals usually. 1st u study about metals nd ther heating r melting temp. nd knowing abt which type metals we use. nd study about electrodes ie most important nd welly study about diffrnt types f electrodes nd diffrnt types f welding. they r so many type s dr ie depends upon metals, wtever welding placess nd so must be needed. study abt flux. study abt power mean current which type nd hw much pwr s need fr particular welding. mainthing s saftey nd precasution


4 What is a process to Explain the mechanism of process creation in UNIX system?

Are u talking abt the KErnal process? A program under execution is called process. All processes in UNIX are created using the fork() system call. rest of the question not clear.. SiddharthGanguly


What is the abbrevation for engineer?

just like doctors after getting deir degree are honoured with d initial acronym 'Dr.',similarly engineers are also honoured with d acronym 'ER' after deir successful completion of engg studies,however only a few ppl kno abt it.eg.- ER M. Visvesvaraya.


What is typecasting in java?

typecasting is; in simple language converting form one type to another type. for example. we have the following types in INTEGER 1. byte 2. short 3. int 4. long byte consist of 1 8bits, short consist of 2 8bits, int consist of 4 8bits and long 8 8bits. now to think of this u can store a small box in a big box; but u cant do the other way round. to do the other way round u need to cut the big box into small box dimensions. and then place it. this is wht TYPECASTING will do. so i can store the numbers in INTEGER type if it falls in the range. the following is the range of each 1. byte=-128 to 127 2.short= -32768 to 32767 etc.. so the point is if i have byte a; short b; byte c; c=a+b; this will give me an error. as i am trying to store big value in small size. to do this i will have to typecast it. i.e c= (byte)a+(byte)b; the words in the bracket suggest type casted into. this is typecasting. to know more abt java i found out this amazing channel on youtube. its called as SLIDENEARD. Its a channel dedicated to java programming issues. i hope this helps your purpose.