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
8c5d295a
Commit
8c5d295a
authored
3 years ago
by
Giammarco, Kristin M
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
ae11070c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Example63_FindAdvisor.mp
+65
-0
65 additions, 0 deletions
Example63_FindAdvisor.mp
with
65 additions
and
0 deletions
Example63_FindAdvisor.mp
0 → 100644
+
65
−
0
View file @
8c5d295a
/* example63_Find_Advisor.mp
modeling human interactions
Human interaction and organizational processes can be modeled as well as technological
system and subsystem interactions.
In this example, the process of a student finding an advisor for a potentially
MP-related research topic is modeled. Alternate behaviors for humans are described in
terms of possible decisions they could make.
Because the same modeling approach can be used for human systems and technological systems,
it becomes possible to have integrated behavior models containing both humans and
technology to study the possible interactions among them.
Run for scope 1 (there is no iteration in this example, so increaasing the scope will not
produce more scenarios).
The "Sequence" or "Swim Lanes" layouts are the most appropriate for browsing traces here.
The "Sequence" mode yields views very similar to the UML or SysML Sequence Diagrams.
*/
/*—————————————————————————————
Actors
———————————————————————————————*/
SCHEMA FindAdvisor
ROOT Student: Hear_about_MP
Get_intrigued
Check_out_website
Try_out_MP_modeling
( Like_MP | Decide_MP_not_for_me );
Like_MP: Email_Advisor
Discuss_research_interests
( Do_an_awesome_MP_project | Find_another_approach );
ROOT Advisor: ( Set_up_meeting
Discuss_research_interests
( Assess_MP_as_a_good_fit Advise_an_awesome_MP_project |
Recommend_another_approach ) |
Does_something_else );
/*—————————————————————————————
Interactions
———————————————————————————————*/
COORDINATE $a: Email_Advisor FROM Student,
$b: Set_up_meeting FROM Advisor
DO ADD $a PRECEDES $b; OD;
COORDINATE $a: Discuss_research_interests FROM Student,
$b: ( Assess_MP_as_a_good_fit | Recommend_another_approach ) FROM Advisor
DO ADD $a PRECEDES $b; OD;
COORDINATE $a: Assess_MP_as_a_good_fit FROM Advisor,
$b: Do_an_awesome_MP_project FROM Student
DO ADD $a PRECEDES $b; OD;
COORDINATE $a: Recommend_another_approach FROM Advisor,
$b: Find_another_approach FROM Student
DO ADD $a PRECEDES $b; OD;
Student, Advisor SHARE ALL Discuss_research_interests;
\ 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