Creating system diagrams for a small app

I am learning system design (on my own) and still I am not clear on a few things. Assume there is a simple application with a front-end and a database for storing of the data.
In the system architecture diagram, will there be only two parts (UI and DB) or should I include some UI modules for calculations, for example? And what about hardware devices that the system is using?

To give a more precise example: I have an application that is used by two types of users (one has limited access). This app uses a DB and its modules are working with an external hardware device.

I am not sure how should I start with the system diagram.

0

You can make your system diagram as simple or as complex as you like. The goal is to express your design with the maximum clarity and efficiency. If two boxes are sufficient, use that. If you need more, then use more.

As you add components to your diagram, ask yourself whether they contribute substantively to the whole. For example, even through your system will likely use a disk drive, you probably don’t need to add it to the diagram since it is so common and fundamental and not especially specific to your project. But if the hardware is unusual or a big focus of the system, then including it would probably help with the clarity of the diagram.

Alternatively, the presentation of information in a UI and its storage in a database are often very different. I suspect you might end up with a middle layer that translates between the two. Such a middle layer probably deserves to be called out in your diagram.

As a final note, things get different if your diagram is going to be part of a patent application. The PTO likes hardware-oriented designs, so including HW components might be advised. Talk to someone well versed in patent applications to be sure.

6

UML had all the things what you are looking for, whether it is an small or any business/eterprise applications.

Domain Modelling

1 Draw the eagle eye view of the system [you can do this in very simple notations like boxes to identify components and lines to represent the connection between components/modules of the system

2 Start with the very basic use case bubble diagrams

3 Show the actor/system dialogue via UML diagrams

4 Write Regular & Alternate Use cases

Static analysis of the System

  1. Now go with class diagram from the use cases
  2. If you are having difficulty , then draw a simple flowchart of the system [Flowchar is very simple yet effective way to identify the system components and its fucntionaty]
  3. You can then follow the Robustness Analysis to get the more clear picture of the system- to find the model,controller and the hidden classes [functionalty of the system

Dynamic analysis of the system

1.Here sequence Diagram came to rescue and help you find out the data flows between classes and the interaction between classes

  1. you can also include the technical architecture of the system – and show the external hardware devices in any form whichever suited to you

  2. Last and not the least – Coding & testing

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Creating system diagrams for a small app

I am learning system design (on my own) and still I am not clear on a few things. Assume there is a simple application with a front-end and a database for storing of the data.
In the system architecture diagram, will there be only two parts (UI and DB) or should I include some UI modules for calculations, for example? And what about hardware devices that the system is using?

To give a more precise example: I have an application that is used by two types of users (one has limited access). This app uses a DB and its modules are working with an external hardware device.

I am not sure how should I start with the system diagram.

0

You can make your system diagram as simple or as complex as you like. The goal is to express your design with the maximum clarity and efficiency. If two boxes are sufficient, use that. If you need more, then use more.

As you add components to your diagram, ask yourself whether they contribute substantively to the whole. For example, even through your system will likely use a disk drive, you probably don’t need to add it to the diagram since it is so common and fundamental and not especially specific to your project. But if the hardware is unusual or a big focus of the system, then including it would probably help with the clarity of the diagram.

Alternatively, the presentation of information in a UI and its storage in a database are often very different. I suspect you might end up with a middle layer that translates between the two. Such a middle layer probably deserves to be called out in your diagram.

As a final note, things get different if your diagram is going to be part of a patent application. The PTO likes hardware-oriented designs, so including HW components might be advised. Talk to someone well versed in patent applications to be sure.

6

UML had all the things what you are looking for, whether it is an small or any business/eterprise applications.

Domain Modelling

1 Draw the eagle eye view of the system [you can do this in very simple notations like boxes to identify components and lines to represent the connection between components/modules of the system

2 Start with the very basic use case bubble diagrams

3 Show the actor/system dialogue via UML diagrams

4 Write Regular & Alternate Use cases

Static analysis of the System

  1. Now go with class diagram from the use cases
  2. If you are having difficulty , then draw a simple flowchart of the system [Flowchar is very simple yet effective way to identify the system components and its fucntionaty]
  3. You can then follow the Robustness Analysis to get the more clear picture of the system- to find the model,controller and the hidden classes [functionalty of the system

Dynamic analysis of the system

1.Here sequence Diagram came to rescue and help you find out the data flows between classes and the interaction between classes

  1. you can also include the technical architecture of the system – and show the external hardware devices in any form whichever suited to you

  2. Last and not the least – Coding & testing

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật