Open In App

Structure Charts – Software Engineering

Improve
Improve
Like Article
Like
Save
Share
Report

Structure Chart represents the hierarchical structure of modules. It breaks down the entire system into the lowest functional modules and describes the functions and sub-functions of each module of a system in greater detail. This article focuses on discussing Structure Charts in detail.

What is a Structure Chart?

Structure Chart partitions the system into black boxes (functionality of the system is known to the users, but inner details are unknown).

  1. Inputs are given to the black boxes and appropriate outputs are generated.
  2. Modules at the top level are called modules at low level.
  3. Components are read from top to bottom and left to right.
  4. When a module calls another, it views the called module as a black box, passing the required parameters and receiving results.

Symbols in Structured Chart

1. Module

It represents the process or task of the system. It is of three types:

  • Control Module: A control module branches to more than one submodule.
  • Sub Module: Sub Module is a module which is the part (Child) of another module.
  • Library Module: Library Module are reusable and invokable from any module.

Module

2. Conditional Call

It represents that control module can select any of the sub module on the basis of some condition. Condition Call

3. Loop (Repetitive call of module)

It represents the repetitive execution of module by the sub module. A curved arrow represents a loop in the module. LoopAll the submodules cover by the loop repeat execution of module.

4. Data Flow

It represents the flow of data between the modules. It is represented by a directed arrow with an empty circle at the end. Data Flow

5. Control Flow

It represents the flow of control between the modules. It is represented by a directed arrow with a filled circle at the end. Control Flow

6. Physical Storage

It is that where all the information are to be stored. Physical Storage

Example

Structure chart for an Email server

Email Server

Types of Structure Chart

  1. Transform Centered Structure: These type of structure chart are designed for the systems that receives an input which is transformed by a sequence of operations being carried out by one module.
  2. Transaction Centered Structure: These structure describes a system that processes a number of different types of transaction.

Last Updated : 02 Jan, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads