-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetect_use_cases.sysml
More file actions
55 lines (46 loc) · 2.24 KB
/
detect_use_cases.sysml
File metadata and controls
55 lines (46 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package DETECT_Use_Cases {
doc Acknowledgement
/* This file contains content from DETECT model file for SysML v1.6 by Daniel Hettema, OUSD (R&E).
* Original content is dedicated to the Public Domain.
* Modifications Copyright (c) 2025 Sensmetry.
*/
doc Description
/* This view provides the use cases that this model is planning to address. It also provides
* active links to help the user navigate to the corresponding user instructions for each use
* case.
*
* DETECT is currently addressing the 'Determine DE Ecosystem Sizing' Use Case.
*/
private import DETECT_Input;
private import DETECT_Sizing;
use case <UC1> 'Determine DE ecosystem Sizing' defined by DETECT_Sizing::DETECT_use_case_Def {
subject redefines DETECT_Input::de_ecosystem; // right-click on "de_ecosystem", select "Go to Definition" to navigate to model data entry inputs
actor engineer defined by DETECT_Sizing::DETECT_user;
actor manager defined by DETECT_Sizing::DETECT_user;
objective {
doc
/* Determine DE ecosystem Sizing and export weighted DE Ecosystem Tool Evaluation
* Criteria and Requirements.
*/
}
doc
/* The output requirements and criteria can be tailored if necessary to make the language
* more clear to the organization.
*/
attribute redefines uc_status = DETECT_Sizing::status_e::Green; // implemented
}
use case <UC2> 'Identify DE ecosystem Tool Types'
defined by DETECT_Sizing::DETECT_use_case_Def {
subject redefines DETECT_Input::de_ecosystem;
actor engineer defined by DETECT_Sizing::DETECT_user;
actor manager defined by DETECT_Sizing::DETECT_user;
attribute redefines uc_status = DETECT_Sizing::status_e::Red; // not implemented
}
use case <UC3> 'Determine DE ecosystem Tools Based on Job Series'
defined by DETECT_Sizing::DETECT_use_case_Def {
subject redefines DETECT_Input::de_ecosystem;
actor manager defined by DETECT_Sizing::DETECT_user;
actor senior_leader defined by DETECT_Sizing::DETECT_user;
attribute redefines uc_status = DETECT_Sizing::status_e::Red; // not implemented
}
}