|
| 1 | +/* |
| 2 | + Model-based development structure: modelbase, implement side, and four domains. |
| 3 | + Plan and report flow between modelbase and implement side. Per domain the |
| 4 | + implement side may be named e.g. codebase (software), hardware repo, |
| 5 | + mechanism repo, deployment repo. |
| 6 | +*/ |
| 7 | +package ModelbaseDevelopment { |
| 8 | + private import ModelbaseDevelopmentRequirements::*; |
| 9 | + |
| 10 | + item def DevelopmentPlan { |
| 11 | + doc /* Plan (to do) generated by modelbase; flows to implement side (e.g. codebase) as implementation guide. */ |
| 12 | + } |
| 13 | + |
| 14 | + item def ImplementReport { |
| 15 | + doc /* Implement report (alignment, gaps, traceability) generated by implement side; flows to modelbase. Implement side only delivers it; only modelbase decides if iteration is done. */ |
| 16 | + } |
| 17 | + |
| 18 | + part def ModelRequirements { |
| 19 | + doc /* Requirements pillar of the SysML model: requirement definitions, satisfy/derive/verify. */ |
| 20 | + } |
| 21 | + |
| 22 | + part def ModelStructure { |
| 23 | + doc /* Structure pillar: blocks, parts, connections, ports; deploy and BDD/IBD. */ |
| 24 | + } |
| 25 | + |
| 26 | + part def ModelBehaviour { |
| 27 | + doc /* Behaviour pillar: actions, activities, state machines; workflow and iteration. */ |
| 28 | + } |
| 29 | + |
| 30 | + part def PlanToDo { |
| 31 | + doc /* Development plan (to do): checkable steps, phases, implementation layout (e.g. CODEBASE_STRUCTURE); generated from the model; flows out as DevelopmentPlan item. */ |
| 32 | + } |
| 33 | + |
| 34 | + part def Modelbase { |
| 35 | + doc /* |
| 36 | + Holds the model and the plan; generates the plan (to do); receives implement report. |
| 37 | + Only the modelbase decides whether an iteration is done; when done, updates the plan |
| 38 | + for the next iteration (or closes). Composed of requirements, structure, behaviour, |
| 39 | + and plan artifact. |
| 40 | + */ |
| 41 | + part modelRequirements : ModelRequirements; |
| 42 | + part modelStructure : ModelStructure; |
| 43 | + part modelBehaviour : ModelBehaviour; |
| 44 | + part planToDo : PlanToDo; |
| 45 | + satisfy ReqPlanFromModelbase; |
| 46 | + satisfy ReqDecideByModelbase; |
| 47 | + } |
| 48 | + |
| 49 | + part def ImplementSide { |
| 50 | + doc /* |
| 51 | + Implements against plan and model; produces and delivers the implement report |
| 52 | + (alignment, gaps, traceability). Only gives the report; does not decide if |
| 53 | + iteration is done. Per domain may be named e.g. codebase (software), hardware |
| 54 | + repo, mechanism repo, deployment repo. |
| 55 | + */ |
| 56 | + satisfy ReqReportFromImplementSide; |
| 57 | + satisfy ReqTraceability; |
| 58 | + } |
| 59 | + |
| 60 | + part def SoftwareDevelopment { |
| 61 | + doc /* Software development: design and implementation against the model and plan. */ |
| 62 | + satisfy ReqFourDomains; |
| 63 | + } |
| 64 | + |
| 65 | + part def HardwareDevelopment { |
| 66 | + doc /* Hardware development: electronics/PCBA (BOM, netlists, parts) aligned with the model. */ |
| 67 | + satisfy ReqFourDomains; |
| 68 | + } |
| 69 | + |
| 70 | + part def MechanismDevelopment { |
| 71 | + doc /* Mechanism development: mechanical/mechatronic design and implementation. */ |
| 72 | + satisfy ReqFourDomains; |
| 73 | + } |
| 74 | + |
| 75 | + part def SystemDeployment { |
| 76 | + doc /* System deployment: integration, topology, operational configuration. */ |
| 77 | + satisfy ReqFourDomains; |
| 78 | + } |
| 79 | + |
| 80 | + part def ModelbaseDevelopmentDeployment { |
| 81 | + doc /* Composite: modelbase + implement side + four development domains. Workflow and iteration in behaviour. */ |
| 82 | + part modelbase : Modelbase; |
| 83 | + part implementSide : ImplementSide; |
| 84 | + part softwareDevelopment : SoftwareDevelopment; |
| 85 | + part hardwareDevelopment : HardwareDevelopment; |
| 86 | + part mechanismDevelopment : MechanismDevelopment; |
| 87 | + part systemDeployment : SystemDeployment; |
| 88 | + satisfy ReqFourDomains; |
| 89 | + } |
| 90 | +} |
0 commit comments