Skip to content
Snippets Groups Projects
Commit 61c17da3 authored by Giammarco, Kristin M's avatar Giammarco, Kristin M
Browse files

Update Application_Process.mp

parent bd2ef1c2
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
│*│ │ Model of Application Process │ │ │*│ │ Model of Application Process │ │
│*│ │ Created by Mikhail Auguston in 2018. │ │ │*│ │ Created by Mikhail Auguston in 2018. │ │
│*│ │ Edited by Pamela Dyer in September, 2021. │ │ │*│ │ Edited by Pamela Dyer in September, 2021. │ │
│*│ │ Probabilties and timing attributes, reports, │ │ │*│ │ Probabilities and timing attributes, reports, │ │
│*│ │ tables, and charts added by Kristin Giammarco in │ │ │*│ │ tables, and charts added by Kristin Giammarco in │ │
│*│ │ January, 2022. │ │ │*│ │ January, 2022. │ │
│*│ └────────────────────────────────────────────────────┘ │ │*│ └────────────────────────────────────────────────────┘ │
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
│*│ ┌─[ Purpose ]────────────────────────────────────────┐ │ │*│ ┌─[ Purpose ]────────────────────────────────────────┐ │
│*│ │ To provide a template for an application approval │ │ │*│ │ To provide a template for an application approval │ │
│*│ │ process involving multiple levels of approval, and │ │ │*│ │ process involving multiple levels of approval, and │ │
│*│ │ demonstrate an example of a schedule analyis that │ │ │*│ │ demonstrate an example of a schedule analysis that │ │
│*│ │ takes trace probability into account. │ │ │*│ │ takes trace probability into account. │ │
│*│ └────────────────────────────────────────────────────┘ │ │*│ └────────────────────────────────────────────────────┘ │
│*│ │ │*│ │
...@@ -241,10 +241,10 @@ WITHIN trace_data{ ...@@ -241,10 +241,10 @@ WITHIN trace_data{
DO DO
weighted_duration +:= weighted_duration +:=
Node$x.trace_duration/8 * #$$TP(Node$x.trace_unique_id); Node$x.trace_duration/8 * #$$TP(Node$x.trace_unique_id);
IF Node$x.trace_duration == GLOBAL.accumulated_max_duration IF Node$x.trace_duration == accumulated_max_duration
THEN d_max:= true; THEN d_max:= true;
ELSE d_max:= false; FI; ELSE d_max:= false; FI;
IF Node$x.trace_duration == GLOBAL.accumulated_min_duration IF Node$x.trace_duration == accumulated_min_duration
THEN d_min:= true; THEN d_min:= true;
ELSE d_min:= false; FI; ELSE d_min:= false; FI;
...@@ -259,15 +259,14 @@ WITHIN trace_data{ ...@@ -259,15 +259,14 @@ WITHIN trace_data{
OD; OD;
}; };
/* Comment in the following SHOW statement to view table of trace data */ /* This table shows that there are 2 maximums and 1 minimum. */
/*SHOW trace_data_summary;*/ SHOW trace_data_summary;
/* Create summary report */ /* Create summary report */
REPORT Duration_Statistics_Report { REPORT Duration_Statistics_Report {
TITLE ("Scope "$$scope" Duration Statistics"); }; TITLE ("Scope "$$scope" Duration Statistics"); };
CLEAR Duration_Statistics_Report;
SAY("There are " #$$TRACE " traces total." ) SAY("There are " #$$TRACE " traces total." )
=> Duration_Statistics_Report; => Duration_Statistics_Report;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment