Software High-Level Design Introduction


Rod Stephens in his book Beginning Software Engineering published by Wrox (John Wiley & Sons) in 2015 divides software design into two parts: high-level and low-level design. High-level design is a task category under the topic of software engineering. What is high-level software design? It is the process of analyzing requirements and breaking them down into their parts and presenting them in an abstract way. It shows the major pieces and how they fit together (architecture) and interact with each other.

After you gather many of the requirements of the project you can begin high-level design. What does that include?

  • the system at an abstract level
  • outlines the major pieces of the software
  • this may include a list of modules and classes
  • the type and description of the database
  • the environment of the application
  • what data design will be used
  • a list of the user internal interfaces
  • a list of external interfaces (import/export, email, files for example)
  • does not specify how it works, but what it does

When you are writing this design, be sure that it includes every aspect of the requirements. Go back and update the requirements if necessary.

It is important to break the project into pieces. Why? The next step is to work on low-level design and you need to focus on one piece at a time. In low-level design you also need to specify hoe the pieces work together.

Software development is a process of taking an objective or objectives and chopping them up into smaller and smaller pieces until you have enough information to actually start coding. Projects come in all sizes, so if the project is not small you will be breaking up the tasks into groups and assigning them to different people. You need enough information in your design so that when the pieces are fit together, things will work as expected.

What to Include in You High-Level Design

The stages of a software engineering project often blur together, and that’s as true for high-level design as it is for any other part of development. Here is a list of just some of the most common things you may want to specify in your high-level design. This list is from the book by Rod Stephens called Beginning Software Engineering. You’ll benefit yourself if you design with software design principles in mind.

  1. Security
  2. Hardware
  3. User Interface
  4. Internal Interfaces
  5. External Interfaces
  6. Architecture
  7. Reports
  8. Other Outputs
  9. Database
  10. Configuration Data
  11. Data Flows and States
  12. Training
  13. UML
  14. Structure Diagrams
  15. Behaviour Diagrams
    1. Activity Diagrams
    2. Use Case Diagrams
    3. State Machine Diagrams
  16. Interaction Diagrams (a subset of activity diagrams)
    1. Sequence Diagrams
    2. Communication Diagram
    3. Timing Diagram
    4. Interaction Overview Diagram