Auto saved by Logseq
This commit is contained in:
parent
008b5ec920
commit
5d67a8d09e
|
@ -2004,11 +2004,17 @@
|
||||||
extra:: 理解:当每个功能都只被一个组件完成时,并且组件之间的配合十分完美时,这种架构允许在不改变的情况下只改变一组而不影响整体功能。也就是说各个组件可以单独设计
|
extra:: 理解:当每个功能都只被一个组件完成时,并且组件之间的配合十分完美时,这种架构允许在不改变的情况下只改变一组而不影响整体功能。也就是说各个组件可以单独设计
|
||||||
- 1.各个组件分别实现一个或多个功能Each chunk implements one or a few functions entirely. ·
|
- 1.各个组件分别实现一个或多个功能Each chunk implements one or a few functions entirely. ·
|
||||||
- 2.组件之间的关系是明确的,这种关系往往是实现一个产品功能的基础 ·The interactions between chunks are well defined. ·Modular architecture has simplicity and reusability for a product family or platform.
|
- 2.组件之间的关系是明确的,这种关系往往是实现一个产品功能的基础 ·The interactions between chunks are well defined. ·Modular architecture has simplicity and reusability for a product family or platform.
|
||||||
- ▪ 槽形模块架构 Slot-modular (the most common type)
|
- ▪ 槽形模块架构 Slot-modular (the most common type) #flashcard
|
||||||
|
extra:: 例子:汽车上的收音机接口与速度仪、仪表盘的接口都不同
|
||||||
- 每个接口都与于其它接口类型不同, Each of the interfaces between chunks in a slot-modular architecture is of a different type from the others –
|
- 每个接口都与于其它接口类型不同, Each of the interfaces between chunks in a slot-modular architecture is of a different type from the others –
|
||||||
- 产品中的组件不能互换 therefore the various chunks in the product cannot be interchanged 例子:汽车上的收音机接口与速度仪、仪表盘的接口都不同
|
- 产品中的组件不能互换 therefore the various chunks in the product cannot be interchanged
|
||||||
- ▪ 总线模型 Bus-modular 有一个通用总线,其他组件通过同类型的接口连接到这个总线上 There is a common bus to which the other chunks connect via the same type of interface 例子:轨道照明
|
- ▪ 总线模型 Bus-modular #flashcard
|
||||||
- ▪ 组合型模块架构 Sectional-modular 所有接口都是同类型的,但是没有一个所有组件都与之相联的元件。组装是通过将同样的接口相连接而完成的 1.All interfaces are of the same type, there is no single element to which all the other chunks attach 2.The assembly is built up by connecting the chunks to each other via identical interfaces 例子:分体沙发
|
extra:: 例子:轨道照明
|
||||||
|
- 有一个通用总线,其他组件通过同类型的接口连接到这个总线上 There is a common bus to which the other chunks connect via the same type of interface
|
||||||
|
- ▪ 组合型模块架构 Sectional-modular
|
||||||
|
extra:: 例子:分体沙发
|
||||||
|
- 所有接口都是同类型的,但是没有一个所有组件都与之相联的元件。 1.All interfaces are of the same type, there is no single element to which all the other chunks attach
|
||||||
|
- 组装是通过将同样的接口相连接而完成的2.The assembly is built up by connecting the chunks to each other via identical interfaces
|
||||||
- ▪ There are implications to the decisions you make about product architecture ·
|
- ▪ There are implications to the decisions you make about product architecture ·
|
||||||
- Product change
|
- Product change
|
||||||
- ·Modular chunks allow changes to be made to a few isolated functional elements of the product without necessarily affecting the design of other chunks ·
|
- ·Modular chunks allow changes to be made to a few isolated functional elements of the product without necessarily affecting the design of other chunks ·
|
||||||
|
|
Loading…
Reference in a new issue