Functional Decomposition, what is it useful for and what are it's pros/cons? Where are there some worked examples of how it is used?
feedback
|
|
Functional Decomposition is the process of taking a complex process and breaking it down into its smaller, simpler parts. For instance, think about using an ATM. You could decompose the process into:
well...you get the point. You can think of programming the same way. Think of the software running that ATM:
Each of which can be broken down further. Once you've reached the most decomposed pieces of a subsystem, you can think about how to start coding those pieces. You then compose those small parts into the greater whole. Check out this Wikipedia Article: The benefit of functional decomposition is that once you start coding, you are working on the simplest components you can possibly work with for your application. Therefore developing and testing those components becomes much easier (not to mention you are better able to architect your code and project to fit your needs). The obvious downside is the time investment. To perform functional decomposition on a complex system takes more than a trivial amount of time BEFORE coding begins. Personally, I think that amount of time is well worth it. | |||
|
feedback
|
|
Here's an example: your C compiler. First there's the preprocessor: it handles Then there's the lexical analyzer. It takes a string and breaks it into tokens. Call it The compiler is then:
We've decomposed a big, difficult to understand function (the
This is more typical; compilers are fairly deep programs, most programs are broad by comparison. | |||
|
feedback
|
|
Functional decomposition is a way of breaking down the complex problem into simpler problems based on the tasks that need to be performed rather than the the data relationships. This term is usually associated with the older procedure-oriented design. A short description about the difference between procedure-oriented and object-oriented design. | |||
|
feedback
|
|
It's the same as WorkBreakDown Structures (WBS), mindMapping and top down development - basically breaking a large problem into smaller, more comprehensible sub-parts. Pros
Cons - there are no real CONS in doing a decomposition, however there are some common mistakes
| |||
|
feedback
|
|
Functional decomposition is helpful prior creating functional requirements documents. If you need a software for something, functional decomposition answers the question "What are the functions this software must provide". Decomposing is needed to fine grain functions. "I need software for energy efficiency measurement" is to general. Thats why we break this into smaller peaces until the point we clearly understand all the functions systems need to provide. This can be later used as a checklist for completeness of a system. Functional requirements document is basically textual representation of functional decomposition. Coding directly from FD may be OK for procedural languages, but it is not good enough for object oriented, because it doesn't identifies objects. Neither is good for usability planning and testing. My opinion is that you should take some time to create FD, but not to use to much time. Consult every person that knows the process you try to follow with your system to find all functions needed. I have a long experience in software design, development and selling, and I use functional decomposition as first step of development. I use it as a base for contract, so orderer of a job knows what he would get and I know what I must provide. | |||
|
feedback
|