Process Flow
Process Flow
PROCESS FLOW
• determines how facilities will be laid out, the working methods used the resources
needed, the technology used, and how efficient the process is.
• represents an important factor driving the competitiveness of a firm’s operations, and
hence its overall level of competitive advantage.
A PROCESS FLOW STRUCTURE GENERALLY
FALLS INTO TWO CATEGORIES
• a job shop - The job shop process flow structure represents a fairly general structure,
which is highly flexible and can use general purpose resources.
• a flow shop - a flow shop process flow structure can only use certain specialized
resources, with a fixed path for the work. As a result of this, flow shop processes tend to
be less flexible than job shop ones.
THESE GENERIC PROCESS FLOW STRUCTURE CAN BE FURTHER BROKEN DOWN
INTO FIVE DISTINCT STRUCTURES:
• Project structure, where a single project is planned with a fixed end date, such as building a
house
• Job shop structure, where each flow will be similar but slightly different, such as poster printing
• A batch process, where each flow produces a batch of identical products, such as baking
• An assembly line structure, where the flow produces a continuous supply of fixed goods, such as
a car assembly line
• Continuous flow structure, where a continuous supply of finished goods is produced, such as in
an oil refinery
THE MAIN FACTORS DIFFERENTIATING THE
DIFFERENT PROCESS STRUCTURES ARE:
• The flow – are there a large number of paths which activities can take, or is there only one possible sequence
of activities.
• Flexibility – will changing the output of the process, in terms of volume and products, alter the performance
and / or cost of the process
• Range of products – can the process produce lots of different products, or is it designed to only produce one
one specific product.
• Capital investment – does the process require investments in expensive specialist equipment or can it use
general equipment that the firm may already own or can rent
• Variable costs – how high is the cost of producing each unit
• Labour requirements – how much labour input is required, and how skilled must the labourers be
• Volume – can the process produce lots of products, or will it only create a few, or possibly one, end product
• Most of these aspects will tend to vary between extremes for different process structures.
For example, a project based structure is completely flexible with only one output, whilst
an assembly line structure is much less flexible, being optimised to produce a certain
quantity of products, but can potentially produce hundred and thousands of outputs. Each
possible structure has distinct characteristics.
PROJECT STRUCTURE
• The particular process selected for any operation will depend on the type and amount of
product to be produced. For example, the construction of one vehicle would be best done by
using a project methodology, whilst the construction of a large number would justify the
construction of an assembly line. In addition, the firm needs to consider how much capital it
has available to invest, and any economies of scale that it may achieve in the production
process. A firm also needs to consider what its marketing and business strategy is, and how it
can use its operations to develop a competitive advantage. For example, a job shop process
flow will allow the firm to develop more individual products. In contrast, the production line
and continuous flow approaches will allow companies to make products as cheaply as possible.
• In addition, the choice of process flow can depend on what stage in the product life cycle the firm is at. For
example, when a product is first introduced a job shop or batch process approach may be most relevant, in
order to respond to the changing levels of demand and make any necessary design changes. In addition, at
this stage it is difficult to construct an assembly line for a product as it is impossible to predict exactly what
the total demand will be. However, as the product moves towards maturity, so the profits and volume increase
may justify an assembly line or continuous flow process. Firms should also consider what production factors
are available in the local economy, and what their price is. For example, in a market where labour is cheap but
energy and capital is relatively expensive or scarce, a job shop may be a more efficient method of production
than as assembly line. This explains why many production operations in developing countries follow the job
shop process, and are sometimes referred to as ‘sweat shops’ whilst production facilities in developed nations
are more likely to involve assembly lines to reduce labour costs.
TYPE OF PROCESSING
PROCESS CHOICE AFFECTS NUMEROUS
ACTIVITIES/FUNCTIONS
TRY THIS!
tell what classification of process flow structure are ff:
• Catering a party- job
• A programmer that creates websites- project
• A facility producing shirts-assembly
• publishing a book- batch
• supplying electricity to homes-continuous
• soft drinks making- assembly
• veterinarian’s office-job
• cafeteria lines-assembly
• ticket collectors at sports events and concerts-batch
• tool and die shop-job
PROCESS FLOW CHART
WHAT IS THE DIFFERENCE THE BETWEEN
PROCESS AND OPERATION?
• A "Process" is defined as the flow of products from one worker to another or, the steps
which raw materials must follow to become finished product.
• An "Operation" is the specific, discreet step at which a worker performs work.
An organized combination of shapes, lines, and text that graphically illustrates a process
or structure
• Is it possible to shorten the length of time it takes for a student to complete the engineering
program?
THE BENEFITS FOR PROCESS FLOWCHART
• The process flow chart provides a visual representation of the steps in a process. Constructing a
flow chart is often one of the first activities of a process improvement effort, because of the
following benefits:
• Make process flowcharts
• Give everyone a clear understanding of the process
• Help to identify non-value-added operations
• Facilitate teamwork and communication
• Keep everyone on the same page
• Design a flow charts
• Flowchart construction etc.
CRYSTAL CLEAR COMMUNICATION
START
END
The Process Symbol represents any process, function, or action and is the most frequently
used symbol in flowcharting
• The Document Symbol is used to represent any type of hard copy input or output (i.e.
reports)
Off-page Connector Symbols are used to indicate the flow chart continues on another
page. Often the page number is placed in the shape for easy reference
The Input/Output Symbol represents data that is available for input or resulting from
processing (i.e. customer database records)
• The Decision Symbol is a junction where a decision must be made. A single entry may
have any number of alternative solutions, but only one can be chosen
• The Connector Symbol represents the exit to, or entry from, another part of the same
flow chart. It is usually used to break a flow line that will be continued elsewhere.
PROCESS MAP SYMBOLS
Some of the common uses of flowcharts include:
• Planning a new project
• Documenting a process
• Modeling a business process
• Managing workflow
• Auditing a process
• Mapping computer algorithms
• Data management
• Chemical and process engineering
FOUR FLOWCHART STRUCTURES
• Sequence
• Decision
• Repetition
• Case
SEQUENCE STRUCTURE
• In the flowchart segment below, the question “is x < y?” is asked. If the
answer is no, then process A is performed. If the answer is yes, then
process B is performed.
NO YES
x < y?
Process A Process B
DECISION STRUCTURE
• The flowchart segment below shows a decision structure with only one
action to perform.
Flowchart
NO YES
x < y?
Calculate a
as x times 2.
REPETITION STRUCTURE
• A repetition structure represents part of the program that repeats. This type
of structure is commonly known as a loop.
REPETITION STRUCTURE
• Notice the use of the diamond symbol. A loop tests a condition, and if the
condition exists, it performs an action. Then it tests the condition again. If
the condition still exists, the action is repeated. This continues until the
condition no longer exists.
REPETITION STRUCTURE
• In the flowchart segment, the question “is x < y?” is asked. If the answer is
yes, then Process A is performed. The question “is x < y?” is asked again.
Process A is repeated as long as x is less than y. When x is no longer less
than y, the repetition stops and the structure is exited.
YES
x < y? Process A
CONTROLLING A REPETITION STRUCTURE
• The action performed by a repetition structure must eventually cause the loop to
terminate. Otherwise, an infinite loop is created.
• In this flowchart segment, x is never changed. Once the loop starts, it will never end.
• QUESTION: How can this
flowchart be modified so
it is no longer an infinite YES
x < y? Display x
loop?
CONTROLLING A REPETITION STRUCTURE
YES
x < y? Display x Add 1 to x
A PRE-TEST REPETITION STRUCTURE
YES
x < y? Display x Add 1 to x
A PRE-TEST REPETITION STRUCTURE
• In a pre-test repetition structure, if the condition does not exist, the loop
will never begin.
YES
x < y? Display x Add 1 to x
A POST-TEST REPETITION STRUCTURE
CASE
years_employed
1 2 3 Other
If years_employed = 2, If years_employed = 3,
bonus is set to 200 bonus is set to 400
If years_employed = 1, If years_employed is
CASE
bonus is set to 100 years_employed any other value, bonus
is set to 800
1 2 3 Other