Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Preloaded Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Monterey Phoenix
MP Model Collection
Preloaded Examples
Commits
4350c779
Commit
4350c779
authored
4 years ago
by
Giammarco, Kristin M
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
04e19bfb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Example60_Surgery.mp
+86
-0
86 additions, 0 deletions
Example60_Surgery.mp
with
86 additions
and
0 deletions
Example60_Surgery.mp
0 → 100644
+
86
−
0
View file @
4350c779
/* Surgery example
This model shows an example of decisions made by a leader (Physician),
a subordinate(s) (Nurse(s)), and the Environment as applied in a surgery
setting.
"Identifying decision patterns using Monterey Phoenix" by Quartuccio, John,
Kristin Giammarco, and Mikhail Auguston.
Available at https://ieeexplore.ieee.org/abstract/document/7994952
Created by: J. Quartuccio (2017)
Naval Postgraduate School
*/
/*Actors*/
SCHEMA Surgery
ROOT Physician: Routine_procedure
Perception
Leadership_context
Decision;
Perception: ( Recognize_environment |
Not_recognize_environment );
Leadership_context: ( Receive_input |
Not_receive_input );
Decision: ( Correct_decision |
Incorrect_decision );
ROOT Nurses: {+ Nurse +};
Nurse: Routine_procedure
Perception
Communication;
Communication: ( Communicate_observation |
Not_communicate_observation );
ROOT Environment: Routine_procedure
Problem_state
Outcome_state;
Problem_state: ( Problem |
No_problem );
Outcome_state: ( Successful_outcome |
Failed_outcome );
/*Interactions*/
COORDINATE
$a: Leadership_context FROM Physician
DO COORDINATE
$b: ( Communicate_observation
| Not_communicate_observation ) FROM Nurses
DO ADD $b PRECEDES $a; OD;
OD;
COORDINATE
$a: Decision FROM Physician,
$b: Outcome_state FROM Environment
DO ADD $a PRECEDES $b; OD;
Physician, Nurses, Environment SHARE ALL Routine_procedure;
ENSURE (#No_problem FROM Environment == 1 ->
#Successful_outcome
FROM Environment == 1);
ENSURE(#Not_communicate_observation FROM
Nurses - #Nurse == 0 ->
#Not_receive_input FROM Physician == 1);
ENSURE(#Recognize_environment FROM Physician
- #Not_receive_input == 0 ->
#Correct_decision == 1);
ENSURE (#Receive_input FROM Physician == 1 ->
#Correct_decision FROM Physician == 1);
ENSURE (#Not_receive_input FROM Physician == 1 ->
#Incorrect_decision FROM Physician == 1);
ENSURE (#Correct_decision FROM Physician == 1 ->
#Successful_outcome FROM Environment
==1);
ENSURE (#Incorrect_decision FROM Physician == 1 ->
#Failed_outcome FROM Environment ==1);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment