Dependency Structure Matrices Flashcards

1
Q

What is the main factor that causes projects to fail?

A

Complexity , and lack of awareness/understanding of it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is DSM (Dependency Structure Matrix)?

A

A tool for capturing, visualising, analysing and managing complexity. It does this by focussing of dependencies, representing connectivity in a complex system,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the structure of the DSM?

A
  • It has and equal number of rows and columns
  • It has the same row and column headings presented in the same order
  • There is an arrow in the top left cell that shows the direction of the dependency (an arrow towards a letter, indicated what that letter depends on, imagine a diagram with letters and arrows, and arrow from A to B suggests B depends on A)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a numerical DSM?

A

It is a matrix where instead of just an X to show that there is a dependency of sorts, a numerical value is used to show a weighting, for example: a probability, a duration, a cost etc.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What would you call a DSM where elements do not have a dependency on each other?

A

Parallel DSM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What would you call a DSM where one element influences another in a defined order?

A

Sequential DSM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What would you call a DSM where influence and information between elements is intertwined?

A

Coupled DSM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Assuming that elements are listed in the order that they are used, what does a dependency above the leading diagonal represent?

A

Feedback

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are 4 datatypes that can be represented in a DSM?

A

Component-based (product)
People-based (organisation)
Activity-based (process)
Parameter-based (low-level process)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does a component-based DSM represent and what is its application?

A

Component relationships

System architecting, engineering and design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does a people-based DSM represent and what is its application?

A

Organisational relationships

Organisational design, interface management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does a activity-based DSM represent and what is its application?

A

Activity input/output relationships

Project scheduling, iteration management

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does a parameter-based DSM represent and what is its application?

A

Design parameter relationships

Activity sequencing, process construction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

For a component based DSM how are the column/row orders decided?

A

Initially they are random, but then they can be reordered to ‘chunk’ them together as this can help define modules and help visualise the dependencies

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

For a activity based DSM how are the column/row orders decided?

A

A flow diagram can help represent information, and then they will be ordered in the rough order that the activities are performed. Therefore, dependencies above the leading diagonal represent feedback in the system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

In parameter based DSM how can coupling be reduced in the design?

A

By sequencing the parameters on the rows/columns cleverly, the number of dependencies above the leading diagonal can be reduced significantly, reducing the feedback and coupling in the design

17
Q

What is partitioning a DSM?

A

Partitioning is the sequencing (i.e. reordering) of the DSM rows and columns such that the new DSM does not contain many feedback marks, thus transforming the DSM into a lower triangular form (this however is very unlikely for a complex engineering system, so in the case the goal is to just eliminate as much feedback as possible)

18
Q

What is a benefit of partitioning a DSM?

A

The reduced feedback means that the rework needed in the design will be minimised

19
Q

What are some tips for partitioning a DSM manually?

A
  • If a task doesn’t depend on anything, move it to the first position
  • If a task does not provide any information (i.e. nothing depends on it) then move it to the bottom
  • You can collapse a loop (two components that both depend on each other) into one component/task (i.e if C and A are a loop, then make a new task CA)

After doing these as many times as possible, the remailing loops should be evident. You will have to expand any collapsed loops to give you the final answer and reveal all the loops in the system.

20
Q

What is tearing a DSM?

A

Tearing is the process of choosing the set of feedback marks that if removed from the matrix (and then the matrix is repartitioned) would render the matrix lower triangular.
The marks that are removed are called ‘tears’
This process minimised rework as an order can be defied to resolve process iterations when coupled tasks are encountered.

21
Q

Outline the process of tearing a DSM

A
  • Identify loops
  • Tear the task causing the feedback into parts eg. 5 into 5a and 5b. (tearing is not always possible for tasks)
  • Reorder the teared task with the other task(s) that were in the loop to remove the loop and make the matrix lower triangular.
22
Q

What is banding a DSM?

A

Banding a DSM is the addition of alternating light and dark bands to a DSM to show independent (ie parallel or concurrent) activities. The collection of bands within a DSM constitute the critical path of the system or project. One element within each band will constitute the critical or bottleneck activity.

23
Q

What is the purpose of banding?

A

It allows the activities that constitute the critical path to be identified, one activity from each band being the critical/bottleneck activity. This enables process improvement

24
Q

Outline the process of banding a DSM

A

Bands are formed as horizontal collections of tasks that are independent of one another ie. if 2 does not depend on 1, they can be in the same band. However, if 2 depends on 1 they must be in separate bands. Go down the rows applying this rule until all tasks have been put into bands.

25
Q

What is clustering a DSM?

A

Clustering a DSM is used when elements represent design components or teams with a development project, as here the goal changes from that of partitioning (reducing loops) to finding subsets of DSM elements (clusters) that are mutually exclusive, so absorb most if not all of the interactions internally.

26
Q

What is the benefit of clustering a DSM?

A

It enables process improvement as it shows the interdependency between different groups of components. (it can help identify the positioning and grouping of components in the final project, and help split the design up into project teams that each control one of these independent clusters)

27
Q

How is clustering performed on a DSM?

A

It is done in software (not manually)

28
Q

What are DMMs?

A

Domain Mapping Matrices, they are an extension on DSMs which allow for the mapping between multiple domains rather than just one. (ie. doesn’t just map tasks to other tasks, but could map tasks to people, hence DMMs are not always square and can be rectangular)

29
Q

What are MDMs?

A

Multiple Domain Matrices: They combine DSM and DMMs into a complete system model, so that a complete system can be represented and managed.

They allow for the connection of DMMs and DSMs to be mapped onto one larger matrix (to map two domains together eg. tasks and people, the MDM will contain 2 DSMs and 2 DMMs.

30
Q

What is an integration strategy with regards to a DSM?

A

Executing 2 tasks concurrently

31
Q

What is a deconstruction strategy with regards to a DSM?

A

It is the same as tearing a DSM, where the task causing the feedback is split into two tasks eg 5 into 5A and 5B, only one of which is causing the feedback, and then reordering to remove the feedback

32
Q

What is a multiple domain matrix?

A

A multiple domain matrix (MDM) models a system consisting of two domains. The MDM consists of two DSMs and two Domain Mapping Matrices (DMMs). The DSMs model a single domain as usual and the DMMs model the interactions between the domains.