Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 52

TECHINICAL WORK REPORT

TIT 399

SANUSI PAUL TEMITAYO

MATRIC NO: 215359

AGRICULTURAL AND ENVIRONMENTAL ENGINEERING

FACULTY OF TECHNOLOGY

UNIVERSITY OF IBADAN
i|Page

A TECHNICAL WORK REPORT


ON
STUDENTS INDUSTRIAL TRAINING - TIT

UNDERTAKEN AT:
SALTUNS TECH COMPANY,
TECH UNIT,
FACULTY OF TECHNOLOGY, UNIVERSITY OF IBADAN.

WRITTEN AND PRESENTED BY:

SANUSI PAUL TEMITAYO


MATRIC NO: 215359
DEPARTMENT OF AGRICULTURAL AND ENVIRONMENTAL ENGINEERING,
FACULTY OF TECHNOLOGY,
UNIVERSITY OF IBADAN,
IBADAN.

IN PARTIAL FULFILMENT OF THE REQUIREMENTS FOR


THE COMPLETION OF INDUSTIAL TRAINING REPORTS

OCTOBER, 2023.
ii | P a g e

Department of Agric and Envr Engineering,


Faculty of technology,
University of Ibadan,
Ibadan.
The Director,
Industrial Training Coordinating Centre,
University of Ibadan,
Ibadan.
Dear Sir/Ma,

SUBMISSION OF TIT399 REPORT


Having completed the three months industrial training program required by the Student
Industrial Work Experience Scheme (SIWES), which started on the 3rd of July, 2023 and ended
on the 15th of September, 2023. I hereby write to inform you that the report work was compiled
and completed by me.
I therefore submit the report work as partial fulfillment of the requirements for the student
industrial work experience scheme of the University of Ibadan.
I am very grateful for your efforts and that of the ITCC as a whole towards making the
SIWES program a reality. I would be very granted if my submission is successfully granted.
Thank you for this opportunity.
Yours Faithfully,

Sanusi Paul Temitayo,


215359.
iii | P a g e

CERTIFICATION

I, SANUSI PAUL TEMITAYO with matriculation number 215359, hereby declare that I
undergo three months of Industrial Training Program at Tech company, computer programming
unit, Faculty of Technology, University of Ibadan, Ibadan and that this report is written by me to
the best of the practical knowledge I gained during the course of the training program.
iv | P a g e

ACKNOWLEDGEMENT

First of all, my sincerest gratitude goes to my God, the lord of all that exist.

Then to my dear parents MR.& MRS. SANUSI for taking care of me and showing me the way of
The Lord.

Then to my families (deserving honorary mentioning are my siblings, for being there for me and
helping me in my time of need) and friends.

Then to all the members of the best department in the world, The department of Agric and
Environmental Engineering.

Then to all the members and staff of The Technical Support Unit.

Then to my immediate supervisor, ENGR. SALAMI EMMANUEL for his effort to make sure I
have a quality experience. His ability to tutor and train me to be a good programmer in that short
period still amazes me. Thanks to you sir.

I really appreciate you, sir.

Also, to my course mates whom we did the industrial training together. I must say, your
commitment to make the best out of the program was all that was needed to keep me motivated.

Finally, I would like to appreciate the Industrial Training coordinating Centre (ITCC) for giving
us the opportunity to learn that which cannot be taught within the four walls of the lecture room;
WORK EXPERIENCE.
v|Page

DEDICATION

This report work is dedicated to the glory of God, and my parents. To my amiable brother and
sisters Sanusi Temitope Mayor and Sanusi Oluwatobi, lovely younger sister Sanusi Tolani Mary.

TABLE OF CONTENT
vi | P a g e

Submission letter____________________________________________________________ II
Certification________________________________________________________________III
Acknowledgement __________________________________________________________IV
Dedication________________________________________________________________ V
Table of Contents____________________________________________________________VI
Abstract ___________________________________________________________________
VIII
Introduction _______________________________________________________________IX
An Overview of Technical Support Unit_________________________________________ X
CHAPTER 1
WORKSHOP SAFETY

 What is a workshop? ___________________________________________________ 1


 Worker safety _________________________________________________________1
 Work piece safety ______________________________________________________2
 Machine safety ________________________________________________________ 2
 General workshop safety rules ____________________________________________ 3
CHAPTER 2
MAJOR OPERATIONS CARRIED OUT IN THE WORKSHOP

 Major Operations carried out in the workshop ________________________________5


CHAPTER 3
WELDING PROCESSESS

 Arc Welding processes __________________________________________________7


 Common Terms used in welding _____________________________________ 10
 Types of Weld Joints __________________________________________________ 12
CHAPTER 4
WELDING TOOLS AND EQUIPMENT

 Welding tools _________________________________________________________17


 Welding equipment ____________________________________________________ 22
vii | P a g e

CHAPTER 5
WELDING DEFECTS AND REMEDIES

 Welding defects and remedies __________________________________________29


CHAPTER 6
FABRICATION OF AN ARC FRAME BURGLARY

 Fabrication of an arc frame burglary ____________________________________ 37


 Conclusion __________________________________________________________28
 Recommendation _____________________________________________________28
 References ___________________________________________________________29
viii | P a g e

ABSTRACT
This report is a detailed summary of everything I was able to learnt and researched during the
course of three months industrial training program at the Saltuns tech company at their computer
programming unit, University of Ibadan, Ibadan.
This Report contains Chapters on computer programming, mainly C++

INTRODUCTION
The Students Industrial training is a Program designed to give students the needed experience
and also to prepare for to work situation they are likely to meet after graduation. It was provided
as an attempt to breach the gap between theoretical and practical curriculum of engineering,
technology, science, medical, and other professional programmes in the Nigeria educational
system. It was aimed at exposing students to needed experience in handling of machineries and
equipment which are usually not available in the educational institutions. Also, it enables
students to familiarize themselves with the environment and know how to relate with other
people, which prepare them for the outside world.
ix | P a g e

A great deal of knowledge and tremendous skills was imbibed in me during the three months of
training I went through at programming unit, at Saltuns tech company, Ibadan.

AIM AND OBJECTIVE OF INDUSTIAL TRAINING

 To provide an avenue for students in tertiary institutions of higher learning to acquire


industrial skills and experiences in their course of study.
 To provide students with an opportunity to apply their knowledge in real work and actual
practice.
 To make the transition from school to the world of work easier and to enhance students
contacts for later job placement.
 The scheme helps the student in developing intellectual skills as they are often left on
their own to take technical decisions and often analyze complex interdisciplinary
problems and proffer appropriate solutions applicable to real situations

AN OVERVIEW OF COMPUTER PROGRAMMING LANGUAGES UNIT,


SALTUNS TECH COMPANY
The tech company is located at 27, Adebojo street, new Bodija, Ibadan, Oyo State. It is
managed by different Engineers and tech professionals.

At my industrial training place, I trained how to integrate the engineering sectors with
programming languages.

My bosses there are very hardworking and who they do their work on time and efficiently.
Also my boss Engineer Salami Emmanuel is an expert in computer programming field due to
x|Page

his long time in the business for over 10 years, he has worked in different companies within
and outside Ibadan, Oyo State.

I LEARNT, DURING THIS TIME:

I learnt how to write computer programs on C ++

I learnt how to integrate engineering sector with programming languages

I was also taught how to solve various technological programs using C++ and python
1|Page

BASICS OF C++ (INTRODUCTION AND


OUR FIRST AND SECOND CODES)
Structure of a program
Probably the best way to start learning a programming language is by writing a program.
Therefore, here is our
first program:
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
Hello World!
**The first panel shows the source code for our first program.
**The second one shows the result of the program once compiled and executed. The way to
edit and compile a program depends on the compiler you are using.

The previous program is the typical program that programmer apprentices write for the
first time, and its result is the printing on screen of the "Hello World!" sentence. It is one
of the simplest programs that can be written in
C++, but it already contains the fundamental components that every C++ program has. We
are going to look line by line at the code we have just written:
// my first program in C++
This is a comment line. All lines beginning with two slash signs (//) are considered
comments and do not have any effect on the behavior of the program. The programmer
can use them to include short explanations or observations within the source code itself. In
this case, the line is a brief description of
what our program is.
#INCLUDE <IOSTREAM>
Lines beginning with a hash sign (#) are directives for the preprocessor. They are not
regular code lines
2|Page

with expressions but indications for the compiler's preprocessor. In this case the directive
#include
<iostream> tells the preprocessor to include the iostream standard file. This specific file
(iostream) includes the declarations of the basic standard input-output library in C++, and
it is included because its functionality is going to be used later in the program.
USING NAMESPACE STD;
All the elements of the standard C++ library are declared within what is called a
namespace, the namespace with the name std. So in order to access its functionality we
declare with this expression that we will be using these entities. This line is very frequent in
C++ programs that use the standard library, and in fact it will be included in most of the
source codes included in these tutorials.
INT MAIN ()
This line corresponds to the beginning of the definition of the main function. The main
function is the point
by where all C++ programs start their execution, independently of its location within the
source code. It
does not matter whether there are other functions with other names defined before or after
it - the
instructions contained within this function's definition will always be the first ones to be
executed in any
C++ program. For that same reason, it is essential that all C++ programs have a main
function.
The word main is followed in the code by a pair of parentheses (()). That is because it is a
function
declaration: In C++, what differentiates a function declaration from other types of
expressions are these
parentheses that follow its name. Optionally, these parentheses may enclose a list of
parameters within
them.
Right after these parentheses we can find the body of the main function enclosed in braces
({}). What is
contained within these braces is what the function does when it is executed.

cout << "Hello World!";


This line is a C++ statement. A statement is a simple or compound expression that can
actually produce
some effect. In fact, this statement performs the only action that generates a visible effect in
our first
program.
3|Page

cout represents the standard output stream in C++, and the meaning of the entire
statement is to insert
a sequence of characters (in this case the Hello World sequence of characters) into the
standard output
stream (which usually is the screen).
cout is declared in the iostream standard file within the std namespace, so that's why we
needed to
include that specific file and to declare that we were going to use this specific namespace
earlier in our
code.
Notice that the statement ends with a semicolon character (;). This character is used to
mark the end of
the statement and in fact it must be included at the end of all expression statements in all
C++ programs
(one of the most common syntax errors is indeed to forget to include some semicolon after a
statement).
RETURN 0;

The return statement causes the main function to finish. return may be followed by a
return code (in our
example is followed by the return code 0). A return code of 0 for the main function is
generally interpreted
as the program worked as expected without any errors during its execution. This is the
most usual way to
end a C++ console program.
You may have noticed that not all the lines of this program perform actions when the code
is executed. There were
lines containing only comments (those beginning by //). There were lines with directives for
the compiler's
preprocessor (those beginning by #). Then there were lines that began the declaration of a
function (in this case,
the main function) and, finally lines with statements (like the insertion into cout), which
were all included within
the block delimited by the braces ({}) of the main function.
The program has been structured in different lines in order to be more readable, but in C+
+, we do not have strict
rules on how to separate instructions in different lines. For example, instead of
int main ()
{
4|Page

cout << " Hello World!";


return 0;
}
We could have written:
int main () { cout << "Hello World!"; return 0; }

MY SECOND PROGRAM DURING MY INDUSTRIAL


TRAINING

// my second program in C++


#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World! ";
cout << "I'm a C++ program";
return 0;
}
Hello World! I'm a C++ program
In this case, we performed two insertions into cout in two different statements. Once again,
the separation in
different lines of code has been done just to give greater readability to the program, since
main could have been
perfectly valid defined this way:
int main () { cout << " Hello World! "; cout << " I'm a C++ program "; return 0; }
We were also free to divide the code into more lines if we considered it more convenient:
int main ()
{
cout <<
"Hello World!";
cout
<< "I'm a C++ program";
return 0;
5|Page

}
And the result would again have been exactly the same as in the previous examples.
Preprocessor directives (those that begin by #) are out of this general rule since they are not
statements. They are
lines read and processed by the preprocessor and do not produce any code by themselves.
Preprocessor directives
must be specified in their own line and do not have to end with a semicolon (;).
ADDITION OF COMMENTS TO OUR PROGRAM

Comments are parts of the source code disregarded by the compiler. They simply do
nothing. Their purpose is only
to allow the programmer to insert notes or descriptions embedded within the source code.
C++ supports two ways to insert comments:
// line comment
/* block comment */
The first of them, known as line comment, discards everything from where the pair of slash
signs (//) is found up
to the end of that same line. The second one, known as block comment, discards everything
between the /*
characters and the first appearance of the */ characters, with the possibility of including
more than one line.
If you include comments within the source code of your programs without using the
comment characters
combinations //, /* or */, the compiler will take them as if they were C++ expressions, most
likely causing one or
several error messages when you compile it.

VARIABLES
DECLARATION OF VARIABLRS CODE EXAMPLE

// operating with variables


#include <iostream>
using namespace std;
6|Page

int main ()
{
// declaring variables:
int a, b;
int result;
// process:
a = 5;
b = 2;
a = a + 1;
result = a - b;
// print out the result:
cout << result;
// terminate the program:
return 0;

VARIABLES. DATA TYPES


Declaration of variables In order to use a variable in C++, we must first declare it specifying
which data type we want it to be. The syntax to declare a new variable is to write the specifier of
the desired data type (like int, bool, float...) followed by a valid variable identifier. For example:

int a;
int b;
int c;
7|Page

To see what variable declarations look like in action within a program, we are going to see
the C++ code of the example about your mental memory proposed at the beginning of this
section:
// operating with variables
#include <iostream>
using namespace std;
int main ()
{
// declaring variables:
int a, b;
int result;
// process:
a = 5;
b = 2;
a = a + 1;
result = a - b;
// print out the result:
cout << result;
// terminate the program:
return 0;
}

INTRODUCTION TO STRINGS

Variables that can store non-numerical values that are longer than one single character are known
as strings. A first difference with fundamental data types is that in order to declare and use
objects (variables) of this type we need to include an additional header file in our source code:
and have access to the std namespace (which we already had in all our previous programs thanks
to the using namespace statement).

// my first string This is a string


#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystring = "This is a string";
cout << mystring;
return 0;
}

CONSTANTS
8|Page

Constants are expressions with a fixed value. \n newline

CHARACTER AND STRING LITERALS


There also exist non-numerical constants, like

'z'
'p'
"Hello world"
"How do you do?"
DEFINED CONSTANTS (#DEFINE)
You can define your own names for constants that you use very often without having to resort to
memoryconsuming variables, simply by using the #define preprocessor directive. Its format is:

// defined constants: calculate 31.4159


circumference
#include <iostream>
using namespace std;
#define PI 3.14159
#define NEWLINE '\n'
int main ()
{
double r=5.0; // radius
double circle;
circle = 2 * PI * r;
cout << circle;
cout << NEWLINE;
return 0;
9|Page

CHAPTER 2
PERFORMING VARIOUS OPERATION WITH C++

OPERATORS

Once we know of the existence of variables and constants, we can begin to operate with them.
For that purpose, C++ integrates operators. Unlike other languages whose operators are mainly
keywords, operators in C++ are mostly made of signs that are not part of the alphabet but are
available in all keyboards. This makes C++ code shorter and more international, since it relies
less on English words, but requires a little of learning effort in the beginning.
For example, let us have a look at the following code - I have included the evolution of the
content stored in the variables as comments:
// assignment operator a:4 b:7
#include <iostream>
using namespace std;
int main ()
{
int a, b; // a:?, b:?
a = 10; // a:10, b:?
b = 4; // a:10, b:4
a = b; // a:4, b:4
b = 7; // a:4, b:7
cout << "a:";
cout << a;
cout << " b:";
cout << b;
return 0;
}

ARITHMETIC OPERATORS ( +, -, *, /, % )

The five arithmetical operations supported by the C++ language are:


+ addition
- subtraction
10 | P a g e

* multiplication
/ division
% modulo
== Equal to
!= Not equal to
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
CONDITIONAL OPERATOR ( ? )

The conditional operator evaluates an expression returning a value if that expression is true and a
different one if
the expression is evaluated as false. Its format is:
// conditional operator 7
#include <iostream>
using namespace std;
int main ()
{
int a,b,c;
a=2;
b=7;
c = (a>b) ? a : b;
cout << c;
return 0;
}

BASIC INPUT/OUTPUT

C++ uses a convenient abstraction called streams to perform input and output operations in
sequential media such as the screen or the keyboard. A stream is an object where a program can
either insert or extract characters to/from it. We do not really need to care about many
specifications about the physical media associated with the stream - we only need to know it will
accept or provide characters sequentially. The standard C++ library includes the header file
iostream, where the standard input and output stream objects are declared.

cout << "Output sentence"; // prints Output sentence on screen


cout << 120; // prints number 120 on screen
cout << x; // prints the content of x on screen
STANDARD INPUT (CIN).

The standard input device is usually the keyboard. Handling the standard input in C++ is done
by applying the overloaded operator of extraction (>>) on the cin stream. The operator must be
11 | P a g e

followed by the variable that will store the data that is going to be extracted from the stream. For
example:

int age;
cin >> age;

EXAMPLE I CODED

// i/o example Please enter an integer value: 702


#include <iostream> The value you entered is 702 and its double is
using namespace std; 1404.
int main ()
{
int i;
cout << "Please enter an integer value: ";
cin >> i;
cout << "The value you entered is " << i;
cout << " and its double is " << i*2 << ".\n";
return 0;
}
CIN AND STRINGS

We can use cin to get strings with the extraction operator (>>) as we do with fundamental data
type variables:
cin >> mystring;
** MY CODE DURING IT

// cin with strings What's your name? Juan SouliÃ‾¿½


#include <iostream> Hello Juan SouliÃ‾¿½.
#include <string> What is your favorite team? The Isotopes
using namespace std; I like The Isotopes too!
int main ()
{
string mystr;
cout << "What's your name? ";
getline (cin, mystr);
cout << "Hello " << mystr << ".\n";
cout << "What is your favorite team? ";
getline (cin, mystr);
cout << "I like " << mystr << " too!\n";
return 0;
}

FUNCTIONS (I)
12 | P a g e

Using functions we can structure our programs in a more modular way, accessing all the
potential that structured
programming can offer to us in C++.
A function is a group of statements that is executed when it is called from some point of the
program. The
following is its format:
A function is a group of statements that is executed when it is called from some point of the
program. The following is its format: type name ( parameter1, parameter2, ...) { statements }
where: • type is the data type specifier of the data returned by the function. • name is the
identifier by which it will be possible to call the function. • parameters (as many as needed):
Each parameter consists of a data type specifier followed by an identifier, like any regular
variable declaration (for example: int x) and which acts within the function as a regular local
variable. They allow to pass arguments to the function when it is called. The different parameters
are separated by commas. • statements is the function's body. It is a block of statements
surrounded by braces { }.
Here you have the first function example:

// function example The result is 8


#include <iostream>
using namespace std;
int addition (int a, int b)
{
int r;
r=a+b;
return (r);
}
int main ()
{
int z;
z = addition (5,3);
cout << "The result is " << z;
return 0;
}

MY TASK ON THIS

// function example The first result is 5


#include <iostream> The second result is 5
using namespace std; The third result is 2
int subtraction (int a, int b) The fourth result is 6
{
int r;
13 | P a g e

r=a-b;
return (r);
}
int main ()
{
int x=5, y=3, z;
z = subtraction (7,2);
cout << "The first result is " << z << '\n';
cout << "The second result is " <<
subtraction (7,2) << '\n';
cout << "The third result is " << subtraction
(x,y) << '\n';
z= 4 + subtraction (x,y);
cout << "The fourth result is " << z << '\n';
return 0;
}
In this case I have created a function called subtraction. The only thing that this function does is
to subtract both passed parameters and to return the result. Nevertheless, if we examine function
main we will see that we have made several calls to function subtraction. We have used some
different calling methods so that you see other ways or moments when a function can be called.

FUNCTIONS (II)

Until now, in all the functions I did, the arguments passed to the functions have been passed by
value. This means that when calling a function with parameters, what we have passed to the
function were copies of their values but never the variables themselves. For example, suppose
that we called our first function addition using the following code:

int x=5, y=3, z;


z = addition ( x , y );
This way, when the function addition is called, the value of its local variables a and b become 5
and 3 respectively, but any modification to either a or b within the function addition will not
have any effect in the values of x and y outside it, because variables x and y were not themselves
passed to the function, but only copies of their values at the moment the function was called.
MY CODE ON THIS DURING MY IT

// passing parameters by reference x=2, y=6, z=14


#include <iostream>
using namespace std;
void duplicate (int& a, int& b, int& c)
{
a*=2;
b*=2;
c*=2;
}
int main ()
14 | P a g e

{
int x=1, y=3, z=7;
duplicate (x, y, z);
cout << "x=" << x << ", y=" << y << ", z="
<< z;
return 0;
}
DECLARING FUNCTIONS.

These calls were generally in function main which we have always left at the end of the source
code. If you try to repeat some of the examples of functions described so far, but placing the
function main before any of the other functions that were called from within it, you will most
likely obtain compiling errors. The reason is that to be able to call a function it must have been
declared in some earlier point of the code, like we have done in all our examples. But there is an
alternative way to avoid writing the whole code of a function before it can be used in main or in
some other function. This can be achieved by declaring just a prototype of the function before it
is used, instead of the entire definition. This declaration is shorter than the entire definition, but
significant enough for the compiler to determine its return type and the types of its parameters.
NOTE; Anyway, including a name for each variable makes the prototype more legible.

// declaring functions prototypes Type a number (0 to exit): 9


#include <iostream> Number is odd.
using namespace std; Type a number (0 to exit): 6
void odd (int a); Number is even.
void even (int a); Type a number (0 to exit): 1030
int main () Number is even.
{ Type a number (0 to exit): 0
int i; Number is even.
do {
cout << "Type a number (0 to exit): ";
cin >> i;
odd (i);
} while (i!=0);
return 0;
}
void odd (int a)
{
if ((a%2)!=0) cout << "Number is odd.\n";
else even (a);
}
void even (int a)
{
if ((a%2)==0) cout << "Number is even.\n";
else odd (a);
}
15 | P a g e

CHAPTER 3

ARRAYS
16 | P a g e

 WELDING TOOLS

The common welding tools used for gas welding purposes are as follows:
17 | P a g e

1. Spanner
Spanners are generally used for tightening or loosening various fasteners. These are designed
with drop-forge steel or carbon steel. But in welding, a double-ended spanner is used for
tightening and opening the nuts of the welding apparatus and job.

2. Hammer
Welding hammers are essential tools used for chipping to remove slab-coating from the weld
area. It is used for shaping the job. Normally a 500 grams hammer is used for the purpose.
There are three types of hammers - ball pane, cross pane, and straight one. For large-sized
jobs, a Sledgehammer may be used.

3. Pliers
Welding pliers are specially designed to effectively remove welding spatter. The multiple
jaws of the plier are used to pull the wire and install the tips and nozzles.

4. Chisel
Normally, chisels are used to cut flat, round, or angled iron and cut sheets of thick metal.
They are also used to remove unnecessary metal from a work surface by cutting it into small
pieces. But in welding, it is used for cutting the jobs and for cleaning the slag, spatter, and
surplus metal from the job after welding.
18 | P a g e

5. Tongs
Tongs are hand tools used by blacksmiths to lift and hold hot weld pieces of metal. They are
usually made of wrought iron or steel and are better than pliers or vice grips. These are
available in different sizes and shapes which are intended to hold the job while welding.

6. Cylinder Key
It is used for opening and tightening the spindle valve of the gas cylinder.

7. Wire Brush
It is used for cleaning the welding surface before and after welding. It consists of steel wires
and is made of stainless steel. Keep in mind that in welding, always use a brush with stainless
steel bristles and a chipping hammer made of stainless steel.

8. Clamps
Welding clamps are sheets of metal that temporarily hold two parts of material tightly
together. Welding clamps permit you to securely hold your work-piece, so the operator will
produce a tighter joint.
P a g e | 12
19 | P a g e

This makes it easy to run the arc and join the pieces together without worrying about moving
sheets. These types of clamps are generally available in varieties of sizes and shapes.

9. Angular Grinder
Angular grinders are commonly seen in metal fabrication and some metal shops. They are
types of handheld power tools attached to consumable stone discs or blades. These discs spin
at high speed to grind, cut or give a smooth finishing touch to weld metal.

10. Spark Lighter


It consists of a shape edges stone piece that produces a spark when it is rubbed with a
hatched cast-iron wheel. It is used for lighting the gas released from the welding torch.

11. Try Square


It is an L-shaped measuring instrument. Its blade is usually graduated in centimeters and the
same is used for job measurement purposes. It is also used for checking the right angles of a
rectangular job.

12. Tip Cleaner


There is a fine hole in the nozzle. The hole may get dirty and even closed during use. A
nozzle edges tip cleaner is used for cleaning the hole, see in the figure. A tip cleaner may also
be used for removing slag from the job after welding is done.
20 | P a g e

13. Files
These are similar to angular grinders, used to remove rough edges and burrs from the metal
you cut. The file tools are available in various shapes and sizes which are used for work
finishing purposes. Metal files are also commonly used for all kinds of other metal projects.

14. Centre Punch


The punch tools are often used to mark holes that must be drilled in secondary operations, or
as gauging marks for bend lines, shearing, spot weld locations. It is used for marking on a job
piece before cutting the same into a desired shape.

15. Scale and Weld-gauge


Scale is used for measuring the size of a job and the weld-gauge is used for measuring the
depth of the weld, see in the figure.

16. Steel Tape


Long jobs are measured by steel tape. It is marked in inches and centimeters and it is housed
in a steel or plastic case. The spring for the assembly helps in the quick and automatic
collection of the tape, see in the figure.
21 | P a g e

WELDING EQUIPMENTS

The equipment used in welding are as follows:

1. Gas Cylinder
Welding gas cylinders are made with thick steel sheets as they have to bear high gas
pressure. Manufacturers supply gas-filled cylinders to the users. Generally, oxygen and
P a g e | 14
acetylene gas cylinders are used for gas welding purposes. The two gases are supplied
in separate cylinders.

(i) Oxygen Cylinder


22 | P a g e

Oxygen gas can be stored in a cylinder for a long time. The temperature of the
cylinder remains 70° Fahrenheit and the gas pressure is kept at about 2200 pounds
per square inch.
The Oxygen cylinder is colored to black and its valve has right-handed threads.
These two points are useful in the identification of oxygen cylinders.

(ii) Acetylene Cylinder


The acetylene cylinder contains acetylene gas in liquid form. The temperature of the
cylinder remains 70° Fahrenheit and the gas pressure is kept at about 250 pounds
per square inch.
Before filling the gas, some quality of dry porous material (charcoal) and then
acetone is filled in the cylinder. Now, acetylene gas is filled in the cylinder at about
250 pounds per square inch pressure and finally, the cylinder is rotated for some
time.
The acetylene cylinder is colored to dark red and its valve has left-handed threads;
These two points are useful in the identification of acetylene cylinders. There are
also two safety valves that are mounted at the bottom of the cylinder.
Both cylinders are provided with safety caps. Acetylene cylinders should not be
used in a lying position.

2. Gas Regulator
For the welding process, the oxygen and acetylene gases reach the welding torch
through gas regulators. There are two main functions of a gas regulator:
(i) To maintain necessary gas pressure during the course of welding.
(ii) To supply the gas to the welding torch at a low pressure. The regulator's body is
generally made of brass metal.

The gas regulator is available in two types.


1. Single Stage Regulator
23 | P a g e

It mainly consists of diaphragm, spring, control-valve, body, pressure gauge,


pressure adjusting screw.
This type of regulator has two ports; (i) Inlet - through which the gas at high
pressure enters the regulator from the cylinder, (ii) outlet - through which the
gas at low pressure is pulled to the welding torch through the hose pipe.
The gas enters the regulator under high pressure through the inlet and exerts
pressure on the diaphragm. The diaphragm is supported by a spring which is
also used as a pressure adjusting device with the help of a screw.
The regulator valve and diaphragm reduce the gas pressure and supply the
same to the welding torch through the hose pipe from the outlet.

2. Double Stage Regulator


In this type of regulator, the pressure of the gas is reduced from high to low in
two steps. The device consists of two gas chambers i.e., the main chamber and
the auxiliary chamber. The device has two springs and two diaphragms.
The gas enters the main chamber and its pressure is reduced to some extent. The
gas then enters the auxiliary chamber from the main chamber at reduced
pressure. Here, the gas pressure is further reduced and the same working
pressure is carried through the hose pipe to the welding torch.

3. Hose Pipe
The hosepipe is the medium through which gas is supplied from the regulator to the
welding torch. Separate hose pipes are used for oxygen and acetylene gases.
These are made of good quality rubber and are fitted with the help of clamps in their
respective regulators and welding torches. Typically, a black or blue pipe is used for
oxygen gas while a red pipe is used for acetylene gas.

4. Welding Goggles
Goggles are used for the protection of eyes against any possible bad effect of the gas
flame. Green or blue glasses are used in the goggles which are capable to protect the eyes
from ultraviolet and infra-red radiation of the high-temperature gas flame.
24 | P a g e

5. Welding Helmet
It is an essential type of welding equipment that is considered the most important piece
of personal protective equipment that a welder should have. This helmet not only
protects the eyes and skin from serious sparks, but also from potentially vision-damaging
ultraviolet and infrared rays released by arcs.

6. Handy Gloves
Welding gloves are tools that protect a welder's hands from the dangers of welding.
Leather or asbestos gloves are used for the protection of hands against any possible burn
during welding.
These gloves allow the operator to be protected from electric shock, extreme heat, and
ultraviolet and infrared radiation, and also provide abrasion resistance and increased grip.

7. Anvil
An anvil is consisting of a strong metal (usually forged or cast steel) with a flattened top
surface upon which another object strikes. An anvil is used for hammering a hot job as
required. It is made of steel so as to have sufficient toughness, see in the figure. The
anvil is used as a forging tool in most cases.
25 | P a g e

8. Cylinder Trolley
A cylinder trolley is very helpful for conveying the two gas cylinders from one place to
another for gas welding purposes.

9. Apron
A leather apron is very useful equipment for protecting a welder's clothing against sparks
and red-hot particles. It is usually tied to the chest portion of the body.

10. Welding Torch


It is also known as a blow-pipe. The instrument is meant for producing the oxygen-
acetylene flame. It is provided with two gas adjusting knobs (one for each gas). The
desired type of flame can be produced by adjusting the two knobs. Two hose pipes are
clamped on the two inlets of the instrument.

11. Welding Power Source


This welding uses either AC or DC, but in either case, the power source selected must be
of the constant current type. This type of power source will deliver relatively constant
amperage or welding current regardless of arc length variations by the operator.
26 | P a g e

12. Electrode Holder


The electrode holder connects to the welding cable and turns the electrode on. Insulated
handles are used to guide the electrode to the welded joint.

13. Ground Clamp/Earth


The ground clamp is used to connect the ground cable to the work he connected directly
to the work or to the table or fixture upon which the work is positioned.
Being a part of the welding circuit, the ground clamps able to conduct welding current
without overheating due to electrical resistance.

14. Electrodes for Arc Welding


Both non-consumable and consumable electrodes are used for arc welding. Non-
consumable electrodes may be made of carbon, graphite or tungsten which do not
consume during the welding operation.
Consumable electrodes may be made of various metals depending upon their purpose
and the chemical composition of the metals to be welded. These consumable electrodes
may be classified into bare and coated.

15. Binding wire


27 | P a g e

Binding wires are made of galvanized, plastic coated annealed and stainless steel wire. It
is used during welding to aid the joining together of the metal work-piece It is softness,
good ductility and high strength, and is easily bent and tied in a knot. Binding wire
without coating has a diameter of 0.16 mm - 2 mm, and coated diameter from 0.2 mm to
2 mm.
28 | P a g e

CHAPTER 5
WELDING DEFECTS AND REMEDIES
Welding defects are formed in a welding work due to the weak or poor technique used by the
inexperienced or untrained welders or due to structural problems in the welding operation.
Or you can say, in a welding process, the size and shape of the metal structure are varied. It is
maybe due to the incorrect welding process or the application of the incorrect welding procedure.
An ideal weld or good weld must be one that exists with good penetration with sufficient fusion
between the filler metal and the edge preparation.
Types of Welding Defects
Following are the types of welding defects:
1. Porosity and Blowholes
2. Undercut
3. Weld crack
4. Incomplete fusion
5. Slag inclusion
6. Incomplete penetration
7. Spatter
8. Distortion
9. Hot Tear

1. Porosity and Blowhole


Porosity is a group of small bubbles and blowholes are relatively large hidden holes or
pores. They are mainly caused by trapped gases. Porosity is a result of weld metal
contamination.
.

Causes and Remedies of Porosity


29 | P a g e

Causes of Porosity Remedies of Porosity


1. Using insufficient electrode de Choosing suitable electrode and filler
oxidant. materials.
2. Applying too large gas flow. Checking the gas flow meter and ensure that it
is adapted as needed with appropriate pressure
and flow settings.
3. Using a larger arc. Make sure that arc distance is correct.
4. Existence of moisture in the process. Cleaning the metal before starting the welding
process.
5. Unsuitable gas shield. Decreasing welding speed, it will allow the
gas to escape.

2. Undercut
Undercut in welding makes imperfection, it is the formation of grooves in the weld toe,
which decreases the cross-sectional thickness of the base metal. As a result of this weld and
work-piece get weakened.

Causes and Remedies of Undercut


Causes of Undercut Remedies of Undercut
1. Incorrect use of angle, which will Using of suitable electrode angle, with more
deliver more heat to the free edges. heat delivered towards thicker components.
2. Because of too fast weld speed. Decreasing the travel speed of the electrode,
but it should not be too slow.
3. Using poor welding methods. Applying the multi pass technique.
4. Use of incorrect gas shielding and Selecting the shielding gas with the right
filler metal. structure for the material you are welding.
5. Doing too high weld current. When approaching thin areas and free edges,
use an appropriate stream to reduce them.
6. Using larger diameter electrodes. Decreasing the arc length.
30 | P a g e

3. Weld Crack
These are the most dangerous types of welding defects. It is almost not allowed by all
standards in the production. It can appear on the surface, in the weld metal, or in an area
affected by strong heat.
There are different types of cracks that occur during welding, it depends on the temperature.
1. Hot Cracks
Hot cracks happen while the welding process or during the crystallization process of the weld
joint. Temperatures at this point can exceed 10,000C.
2. Cold Cracks
These cracks occur after the weld is created and the metal temperature has passed down.
They can also be made hours or days after welding steel. This mostly occurs when the
deformation is made in the steel structure.

3. Crater Cracks
These cracks occur at the end of the welding process before the operator completes the weld
joint. They are usually made near the end of the process.
When the weld pool cools and freezes, the weld must be sufficient in volume to overcome
the metal shrinkage. Otherwise, it will make a crater crack.

Causes and Remedies of Weld Crack


Causes of Weld Crack Remedies of Weld Crack
1. Using hydrogen while welding ferrous Using suitable metals.
metals.
2. Applying low current with high Utilizing the appropriate welding speed and
welding speed. current.
3. The design concept is poor. Using proper design concept.
4. Not doing preheating before starting Preheating the metal before starting welding.
welding.
5. Contamination of base metal. Cleaning the metal surface before welding.
6. Residual stress solidification due to Giving decent cooling of the weld area.
shrinkage.
7. The high mixture of sulfur and carbon Using a correct mixture of sulfur and carbon
31 | P a g e

in the metal. in the metal.


8. Improper filling of the crater in Ensure that the crater is properly filled to
welding. prevent crater cracks.

4. Incomplete Fusion
These types of welding defects occur when there is a shortage of suitable fusion between the
metal and weld. It may also be visible between adjacent weld beads. This produces a gap
inside the joint that is not filled with molten metal.

Causes and Remedies of Incorrect Fusion


Causes of Incorrect Fusion Remedies of Incorrect Fusion
1. Contamination of metal surface. Cleaning the welding area of the metal
surface before welding.
2. Using low heat input. Utilizing the proper heat input for welding.
3. The diameter of the electrode is wrong Using the correct diameter of the electrode to
for the thickness of the material you fit the thickness of the material that you are
are welding. welding.
4. Incorrect electrode angle. Ensure the angle of the electrode is suitable
for welding.
5. Employing too fast travel speed. Decreasing the speed of arc travel.
6. The weld pool is very large and it Make sure the weld pool that you are using is
moves ahead of the arc. proper according to the movement of the arc.

5. Slag Inclusion
Slag inclusion is welding defects that are usually visible in welds. The slag is a dangerous
substance that appears as a product of stick welding, flux-core arc welding, and submerged
arc welding.
It is can occur when the flux, which is a solid shielding material applied when welding, melts
in the weld or on the surface of the weld region. Slag inclusion decreases the strength of the
joint and hence makes it weaker.
32 | P a g e

Causes and Remedies of Slag Inclusion


Causes of Slag Inclusion Remedies of Slag Inclusion
1. Poor chipping and cleaning of Through the wire brush, cleaning the weld
previous passes in multi Pass welding. bed surface before the next layer is deposited.
2. Due to the incorrect angle of Adjusting the angle of the electrode.
electrode.
3. Using too low welding current. Increasing the current density.
4. Insufficient space for puddle of molten Redesigning the joint to allow sufficient space
weld metals. for proper use of the puddle of molten weld
metals.
5. The cooling is very fast. Decreasing the rapid cooling.
6. Cleaning of the metal may be Proper cleaning of the metal before welding.
improper.
7. The speed of welding is fast Reducing the speed of the welding

6. Incomplete Penetration
In these types of welding defects, penetration is defined as the distance from the uppermost
surface of the base plate to the maximum extent of the weld nugget.
Incomplete penetration happens when the metal groove is not entirely filled, which means
that the weld metal does not fully spread through the joint thickness.

Causes and Remedies of Incomplete Penetration


Causes of Incomplete Penetration Remedies of Incomplete Penetration
1. There was too much space between Assuring that the surface is jointly fine.
the metals that are being welded
together.
33 | P a g e

2. The bead is being moved too fast, Decreasing the arc travel speed.
which does not allow sufficient
metal to accumulate in the joint.
3. Using a very low ampere setting, Selecting a decent welding current.
which results in the current not
being strong enough to melt the
metal properly.
4. Using improper joints. Improving the design of the joint.
5. Wrong position of the electrode. Make sure the position of electrode is very
accurate.
6. Using of larger diameter electrode. You must need to use proper of diameter
electrode as suitable for your welding.

7. Spatter
Spatters are tiny metal particles that are ejected from the arc during welding and accumulate on
the base metal throughout the weld bead along its length. This is particularly common happens in
gas-metal arc welding.

Causes and Remedies of Spatter


Causes of Spatter Remedies of Spatter
1. Contamination of metal surface. Cleaning metal surfaces before welding.
2. The working angle of the electrode Decreasing the arc length and increasing
is much more rigid. the electrode angle.
3. Utilizing too high ampere current Using proper polarity with adjusting the
and too low voltage settings. weld current.
4. Using the larger arc and wet Make sure to use proper arc and electrode
electrode. according to the welding.

8. Distortion
Distortion is the difference in size and location between the positions of the two metal plates
before and after welding due to the temperature grade present at several points along the weld
joints.
34 | P a g e

Or in other words, you can say that the distortion is due to uneven extension and reduction of the
weld metal and that all kinds of distortion rise with the number of metal deposition.

Causes and Remedies of Distortion


Causes of Distortion Remedies of Distortion
1. Employing incorrect welding orders. Ensure to use the correct welding order.
2. Using a large number of passes with Using the appropriate number of weld passes.
small diameter electrodes.
3. Because of high residual stresses in Make sure you use the appropriate amount of
the plate to be welded. weld metal as required by the joint. This will
decrease contraction forces.
4. Due to the slow speed of arc travel. Maintaining the speed of arc travel.
5. Not using any measuring instrument If required you can use a measuring
for dimension purpose. instrument, so that dimensional accuracy is
accurate.
6. Using too much time for welding Decreasing the time of the welding process so
process. that the volume around the metal is not even
expanded.

9. Hot Tear
In these types of welding defects, the deposited metal starts to develop crack from the nearby
edge so that it will solidify the crack increase.
Due to the tearing of grain boundaries of the weld metal before it freezes and the metal is still in
plastic condition. Therefore, it is also known as solidification cracking.

Causes and Remedies of Hot Tear


35 | P a g e

Causes of Hot Tear Remedies of Hot Tear


1. The thickness of the electrode is may Using the right thickness of the electrode
be wrong. according to the base metal to be welded.
2. Not using a suitable welding current. Ensure the use of suitable welding current as
needed.
3. It is due to the incorrect choice of Using a suitable type of material for the
proper materials. electrode.
36 | P a g e

CHAPTER 6
FABRICATION OF A RECTANGULAR FRAME BURGLARY
To fabricate a window burglary, the materials, tools and equipment needed are:
1. Steel pipe of dimension 25mm x 25mm
2. Electrode
3. Binding wire
4. Scriber
5. Arc welding machine
6. Grinder (to be use with cutting disc to cut the work-piece or grinding disc to grind the
work-piece)
7. Body filler
8. Paint
9. Steel tape
10. Try square
Procedures for the fabrication of a rectangular frame burglary:
1. The required sizes of the work-piece were measured from the materials with the steel tape
and marked out using a scriber.
2. The marked pieces were cut with a grinder with cutting disc fixed to it.
3. The marked pieces were tacked according to the design to hold the pieces together
temporary. (N.B: Tacking is the temporary welding of work-piece to allow for any
necessary correction and to hold the pieces together).
4. The work-piece was then welded permanently.
5. The wok-piece was then grinded at the welded point to give smooth surface using a
grinder with a grinding disc attached to it.
6. The body filler was use to fill any holes made on the work-piece to ensure smooth
finishing.
7. The work-piece was then painted and dried off in the sun
8. The burglary is ready for installation.
BURGLARY DESIGN
37 | P a g e

PROGRESS AND PROJECT IMAGES

The Welding Process


38 | P a g e

The Fabricated and Painted Burglary


39 | P a g e

The Fabricated and Painted Burglary


40 | P a g e

CONCLUSION
The Students’ Work Experience Program (SWEP) at the welding workshop was really a whole
new experience for me as I learnt a whole lot of new things: interpersonal relation skills,
customer management, tools handling skills, also practical understanding of what we were taught
in the classroom.
I garnered Experiences in the welding and fabrication aspect. The program has been highly
enlightening and beneficial. The objective of which the scheme was undergone was however
achieved.

RECOMMENDATION
The whole experience exceeds my expectations so I have little or nothing to recommend. I would
recommend that more students be posted to the welding workshop at the Technical Support Unit,
Faculty of Technology, University of Ibadan, Ibadan.
41 | P a g e

REFERENCES

 Dr. David Fadare & Engr 2019. A Falana. Workshop practice 1


 The Engineers Post. 2021. Arc welding and its types
 https://www.theengineerspost.com/types-of-arc-welding/

 Weld Guru Blog 2021. Welding tools https://weldguru.com/welding-tool-list/


 The Engineers Post. 2021. Welding defects https://www.theengineerspost.com/welding-
defects/

You might also like