Chap14: Metal Forging Processes and Equipment
Chap14: Metal Forging Processes and Equipment
Forging is a basic process in which the workpiece is shaped by compressive forces applied through various dies
and tooling.
• This chapter describes the fundamentals of forging and related processes, including design and economic
considerations.
• Open-die forging, impression-die and closed-die forging operations for producing more intricate shapes are
presented.
• Various forging operations, such as heading, piercing, coining, swaging, and cold extrusion, are then
introduced.
• A review of the design of parts to be forged, guidelines for die design and manufacturing, and selection of die
materials and lubricants in forging operations.
Why Forging: Because the metal flow in a die and the material’s grain structure can be controlled, forged parts have good
strength and toughness, and are very reliable for highly stressed and critical applications
Figure. Grain flow in a part made by three different processes. (a) Casting, (b) Machining from a blank, and (c) forging.
Open-die forging is the simplest forging operation, in which a metal workpiece (blank) is placed between two flat
dies, and squeezed by a compressional force, a process called upsetting or flat-die forging. The die surfaces may
have shallow cavities or features to produce relatively simple shapes.
Figure. (a) Solid cylindrical billet upset between two flat dies. (b) Uniform deformation of the billet without friction. (c)
Deformation with friction; note barreling of the billet caused by friction forces at the billet–die interfaces.
Barreling is caused primarily by frictional forces that oppose the outward flow of the workpiece at the die
interfaces; thus, it can be minimized by using an effective lubrication.
Barreling in hot forging:
Barreling also can develop in upsetting hot workpieces between cold dies. The material at the die surfaces cools
rapidly, while the rest remains relatively hot; consequently, the material at the top and bottom of the workpiece has
higher resistance to deformation than the material at the center. As a result, the central portion of the workpiece
expands laterally to a greater extent than do the ends. Barreling from thermal effects can be reduced or eliminated
by using heated dies.
Cogging process:
Cogging, also called drawing out, is an open-die forging operation in which the thickness of a bar is reduced by
successive forging steps at specific intervals. Because the contact area between the die and the workpiece is small, a
long section of a bar can thus be reduced in thickness without requiring large forces or heavy machinery. Cogging
of larger workpieces is usually done using mechanized equipment and computer controls, in which lateral and
vertical movements of the dies are coordinated to produce the desired part shape.
Cogging process:
Figure. (a) Schematic illustration of a cogging operation on a rectangular bar. Reduction in thickness is accompanied by
barreling. (b) Reducing the diameter of a bar by open-die forging; note the movements of the dies and the workpiece. (c) The
thickness of a ring being reduced by open-die forging.
Forging Force:
The forging force, F, in an open-die forging operation on a solid cylindrical workpiece can be estimated as:
2𝜇𝑟
𝐹=𝑌 𝑓 𝜋 𝑟 2 (1+ )
3h
2 𝜇( 𝑟0 − 𝑟 )
𝑃=𝑌𝑒𝑥𝑝 (
h )
Exp. 14.1. Calculation of Forging Force in Upsetting
A solid cylindrical workpiece made of 304 stainless steel is 150 mm in diameter and 100 mm high. It is reduced in
height by 50%, at room temperature, by open-die forging with flat dies. Assume that the coefficient of friction is
0.2.
2𝜇𝑟 2 𝜇( 𝑟0 − 𝑟 )
2
𝐹=𝑌 𝑓 𝜋 𝑟 (1+
3h
) 𝑃=𝑌𝑒𝑥𝑝 (
h )
Table. 2.3. Values of K and n for some steel materials
Material K (MPa) n
Low C, annealed 530 0.26
1020, annealed 745 0.20
4135, annealed 1015 0.17
4135, cold rolled 1100 0.14
4340, annealed 640 0.15
304 stainless, annealed 1275 0.45
410 stainless, annealed 960 0.10
Prob. 14.35. Calculation of Forging Force in Upsetting
To what thickness can a solid cylinder of 1020 steel that is 25 mm in diameter and 50 mm high be forged in a press
that can generate 445 kN?
2𝜇𝑟 2 𝜇( 𝑟0 − 𝑟 )
2
𝐹=𝑌 𝑓 𝜋 𝑟 (1+
3h
) 𝑃=𝑌𝑒𝑥𝑝 (
h )
Table. 2.3. Values of K and n for some steel materials
Material K (MPa) n
Low C, annealed 530 0.26
1020, annealed 745 0.20
4135, annealed 1015 0.17
4135, cold rolled 1100 0.14
4340, annealed 640 0.15
304 stainless, annealed 1275 0.45
410 stainless, annealed 960 0.10
Prob. 14.35. Calculation of Forging Force in Upsetting function [E]=Prob_14_15(hf,Yf)
clc
2𝜇𝑟 2 𝜇( 𝑟0 − 𝑟 )
2
𝐹=𝑌 𝑓 𝜋 𝑟 (1+
3h
) 𝑃=𝑌𝑒𝑥𝑝 ( h ) ho=50
hf(1,1)=20
i=1
while hf(i,1)<ho
Yf(i,1)=745*(log(50/hf(i,1)))^0.2;
Res(i,1)=Yf(i,1)*(24.5/hf(i,1))*(1+11.8/hf(i,1)^1.5);
error(i,1)=abs(445-Res(i,1));
if error(i,1)<2
break
end
j=i;
i=i+1;
hf(i,1)=hf(j,1)+0.1;
end
jj=j
xlswrite('Results.xlsx',hf,'A2:A200');
xlswrite('Results.xlsx',Yf,'B2:B200');
xlswrite('Results.xlsx',Res,'C2:C200');
xlswrite('Results.xlsx',error,'D2:D200');
end
Prob. 14.35. Calculation of Forging Force in Upsetting function [E]=Prob_14_15(hf,Yf)
clc
2𝜇𝑟 2 𝜇( 𝑟0 − 𝑟 )
2
𝐹=𝑌 𝑓 𝜋 𝑟 (1+
3h
) 𝑃=𝑌𝑒𝑥𝑝 ( h ) ho=50
hf(1,1)=20
i=1
while hf(i,1)<ho
Yf(i,1)=745*(log(50/hf(i,1)))^0.2;
Res(i,1)=Yf(i,1)*(24.5/hf(i,1))*(1+11.8/hf(i,1)^1.5);
error(i,1)=abs(445-Res(i,1));
if error(i,1)<2
break
end
j=i;
i=i+1;
hf(i,1)=hf(j,1)+0.1;
end
jj=j
xlswrite('Results.xlsx',hf,'A2:A200');
xlswrite('Results.xlsx',Yf,'B2:B200');
xlswrite('Results.xlsx',Res,'C2:C200');
xlswrite('Results.xlsx',error,'D2:D200');
end
14.3. Closed-die Forging
In impression-die forging, the workpiece takes the shape of the die cavity while being forged between two shaped
dies. This process is usually carried out at elevated temperatures, in order to lower the forging forces and develop
enhanced ductility of the workpiece. During deformation, some of the material flows outward and forms a flash.
Closed-die with inserts
Instead of being made as one piece, dies may be made of several pieces (segmented), including die inserts, and
particularly for complex part shapes. The inserts can easily be replaced in the case of wear or failure in a
particular region of the die, and are usually made of stronger and harder materials.
Preforming Operations:
These operations are typically used to enhance the distribution of the material into various regions of the blank,
using simple dies of various contours. In fullering, material is distributed away from a region in the dies. In edging,
it is gathered into a localized region. The part is then formed into a rough shape by a process called blocking, using
blocker dies. The final operation is the finishing of the forging in impression dies, which give the forging its final
shape; the flash is later removed by a trimming operation.
Preforming Operations:
In fullering, material is distributed away from a region in the dies. In edging, it is gathered into a localized region.
The final operation is the finishing of the forging in impression dies, which give the forging its final shape; the flash
is later removed by a trimming operation.
Preforming Operations:
Sequence of forging: In fullering, material is distributed away from a region in the dies. In edging, it is gathered
into a localized region. The part is then formed into a rough shape by a process called blocking, using blocker dies.
The final operation is the finishing of the forging in impression dies, which give the forging its final shape; the flash
is later removed by a trimming operation.
Precision-die Forging.
In flash-less of precision-die forging, a flash does not form (hence the term flashless forging), and the workpiece
completely fills the die cavity. The accurate control of the blank volume and proper die design are essential to
producing a forging with the required dimensional tolerances. Undersized blanks prevent the complete filling of
the die cavity and conversely, oversized blanks generate excessive pressures and may cause dies to fail
prematurely or the machine to jam.
Precision forging requires (a) special and more complex dies, (b) precise control of the blank’s volume and shape,
and (c) accurate positioning of the blank in the die cavity.
Also, because of the higher forces required to obtain fine details on the part, precision forging requires higher
capacity equipment.
Although steel and titanium can be precision forged, aluminum and magnesium alloys are particularly suitable,
because of the relatively low forging loads and temperatures that they require.
General Characteristics of Forging Processes
Process Advantages Limitations
Close dimensional tolerances; very thin webs and High forging forces, intricate dies, and
Precision flanges possible; machining generally not provision for removing forging from dies
necessary; very good material utilization
14.4 Various Forging Operations
Coining. A closed-die forging process, was originally used in the minting of coins, medallions, and jewelry, but
currently is used to produce a wide range of parts with high accuracy. The details of the dies are imparted in blanks
by the forging pressure. The blank is coined in a closed-die cavity. Marking parts with letters and numbers also can
be done rapidly through coining.
Lubricants should not be applied in coining, because they can become entrapped in the die cavities and, being
incompressible, prevent the full reproduction of die-surface details and surface finish.
14.4 Various Forging Operations
Heading. is essentially an upsetting operation, performed on the end of a rod or wire in order to increase the cross-
section. Typical products are nails, bolt heads, screws, rivets, and various other fasteners. Heading can be carried
out cold, warm, or hot.
14.4 Various Forging Operations
Heading. An important consideration in heading is the tendency for the bar to buckle if its unsupported length-to-diameter
ratio is too high. This ratio usually is limited to less than 3:1, but with appropriate dies, it can be higher; for example, higher
ratios can be accommodated if the diameter of the die cavity is not more than 1.5 times the bar diameter.
Heading operations are performed on machines called headers, which usually are highly automated, with production rates of
hundreds of pieces per minute for small parts.
14.4 Various Forging Operations
Piercing. This is a process of indenting (but not breaking through) the surface of a workpiece with a punch, in order
to produce a cavity or an impression. The workpiece may be confined in a container, such as a die cavity or may be
unconstrained. The extent of surface deformation of the workpiece depends on how much it is constrained from
flowing freely as the punch descends.
(a) the cross-sectional area and the tip geometry of the punch,
SAE 1008 steel is used as a portion of a roller assembly to adjust the position of a car seat. To produce the part, first, a
cylindrical blank is extruded in two operations, followed by upsetting. The upsetting operation uses a conical cross-section in the
die to produce the preform, and is oriented such that material is concentrated at the top of the part in order to ensure proper die
filling. After impression-die forming, a piercing operation is performed which forms the bore.
Disadvantages of Forging
1. Rapid oxidation in forging of metal surface at high temperature results in scaling which wears the dies.
3. Forging is limited to simple shapes and has limitation for parts having undercuts etc.
5. The initial cost of forging dies and the cost of their maintenance is high.
6. The metals gets cracked or distorted if worked below a specified temperature limit.
8. Internal defects also may develop from (a) nonuniform deformation of the material in the die cavity, (b)
temperature gradients developed throughout the workpiece during forging, and (c) microstructural changes
caused by phase transformations.
Defects in Forging Parts
1) Unfilled Section: As the name implies in this type of defect, some of the forging section remain unfilled. This is
due to poor design of die or poor forging technique. This is also due to less raw material or poor heating. This
defect can be removed by proper die design, proper availability of raw material and proper heating.
Also, incomplete forging penetration can arise due to incomplete forging. It is due to light or rapid hammer blow.
This defect can be removed by proper control on forging press.
Defects in Forging Parts
1) Unfilled Section: If there is an insufficient volume of material to fill the die cavity completely, the web may
buckle during forging and develop laps. Conversely, if the web is too thick, the excess material flows past the
already formed portions of the forging and develops internal cracks.
Defects in Forging Parts
2) Cold Shut: Cold shut includes small cracks at corners. These defects occur due to improper design of forging
die. It is also due to sharp corner, and excessive chilling in forging product. The fillet radius of the die should
be increase to remove these defects.
Defects in Forging Parts
3) Scale Pits: These are formed by squeezing of scale into the metal surface during forging. Scale pits are due to
improper cleaning of forged surface. This defect generally is associated with forging in open environment. It is
irregular deputations on the surface of forging. It can be removed by proper cleaning of forged surface.
Defects in Forging Parts
4) Die Shift: Die shift is caused by misalignment of upper die and lower die. When both these dies are not
properly aligned the forged product does not get proper dimensions. This defect can be removed by proper
alignment using half notch on upper die and half on lower die so at the time of alignment, both these notches
will be matched.
Defects in Forging Parts
5) Flakes: These are internal cracks occur due to improper cooling of forge product. When the forge product
cooled quickly, these cracks generally occur which can reduced the strength of forge product. This defect can be
removed by proper cooling.
Defects if Forging Parts
Grain flow is a directional orientation of metal grains and any inclusions that have been deformed by forging.
Individual grains are elongated in the direction of the metal flow or plastic deformation. More importantly,
nonmetallic inclusions, particles and other imperfections inherited from the casting process (forging vs casting) are
elongated in the direction of grain flow.
Webs that are too thin may also cool faster than the rest
of the metal forging, the resulting shrinkage could cause
tears or warping of the part.
Die Features: The terminology for forging dies is the following figure.
6. Allowance in Dimensions: Finishing processes, such as sizing, create less but very accurate geometric change
to the forging in the final stages of part manufacture. As with the patterns used in casting, allowances are provided
in forging-die design, when machining or grinding of the forging is necessary in order to impart final desired
dimensions and surface finish. Machining allowance should be provided at flanges, holes, and mating surfaces.
Lubrication: In the hot forging processes, the dies are lubricated and cooled by spraying dilute water based
lubricants on the heated die surfaces. This spray is produced by atomizing lubricants into small droplets using
spray devices with pressurized air.
Prerequisites for lubricants:
• Reduce the sliding friction between dies and work piece (Load and energy requirement will be reduced).
• Works as a parting agent between die and work piece. (Prevents sticking).
• Works as an insulator.
• Should be Non-Abrasive and Non- Corrosive.
• Shouldn’t create smoke (Pollution free).
• Availability with reasonable cost.
The force available in a mechanical press depends on the stroke position, and
becomes extremely high at the end of the stroke; thus, proper setup is essential to
avoid breaking the dies or equipment components.
Mechanical presses have high production rates, are easier to automate, and require
less operator skill than do other types of machines. Press capacities generally range
from 2.7 to 107 MN. Mechanical presses are preferred for forging parts requiring
high precision.
14.8 Forging Machines:
Screw Presses: These presses (Fig. c) derive their energy from a flywheel, hence they are energy limited. The
forging load is transmitted through a large vertical screw, and the ram comes to a stop when the flywheel energy
has been dissipated. If the dies do not close at the end of the cycle, the operation is repeated until the forging is
completed.
Screw presses are used for various open-die and closed-die forging operations. They
are particularly suitable for small production quantities and for thin parts with high
precision, such as turbine blades. Press capacities range from 1.4 to 280 MN.
14.8 Forging Machines:
Hydraulic Presses: A hydraulic press (Fig. d) typically consists of a frame with two or four columns, pistons,
cylinders, rams, and hydraulic pumps driven by electric motors. The ram speed can be varied during the stroke.
These presses operate at constant speeds and are load limited, whereby the press
stops if the load required exceeds its capacity. Large amounts of energy can be
transmitted from the press to the workpiece by a constant load throughout the
stroke, the speed of which can be controlled.
Because forging in a hydraulic press takes longer than in the other types of
forging machines, the workpiece may cool rapidly unless the dies are heated.
Compared with mechanical presses, hydraulic presses are slower and involve
higher initial costs, but they require less maintenance.
14.8 Forging Machines:
Hammers Presses: Hammers derive their energy from the potential energy of the ram, which is converted into
kinetic energy; thus they are energy limited. Unlike hydraulic presses, hammers operate at high speeds, minimizing
the cooling of a hot forging. Low cooling rates allow the forging of complex shapes, particularly those with thin
and deep recesses. To complete the forging, several successive blows are usually made in the same die.