Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
9d57e757
Commit
9d57e757
authored
Feb 03, 2015
by
Ioannis Papagiannopoulos
Committed by
Jérome Perrin
Feb 03, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unused examples removed
parent
0339c80e
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
1126 deletions
+0
-1126
dream/simulation/Examples/00_new_format.json
dream/simulation/Examples/00_new_format.json
+0
-336
dream/simulation/Examples/DefaultAllInOneEmpty.json
dream/simulation/Examples/DefaultAllInOneEmpty.json
+0
-790
No files found.
dream/simulation/Examples/00_new_format.json
deleted
100644 → 0
View file @
0339c80e
{
"class_definition"
:
{
"edge"
:
{
"description"
:
"Base definition for edge"
,
"properties"
:
{
"_class"
:
{
"type"
:
"string"
},
"source"
:
{
"type"
:
"string"
},
"destination"
:
{
"type"
:
"string"
},
"name"
:
{
"type"
:
"string"
},
"required"
:
[
"_class"
,
"source"
,
"destination"
]
},
"type"
:
"object"
},
"node"
:
{
"description"
:
"Base definition for node"
,
"properties"
:
{
"_class"
:
{
"type"
:
"string"
},
"coordinate"
:
{
"properties"
:
{
"left"
:
"number"
,
"top"
:
"number"
},
"type"
:
"object"
},
"name"
:
{
"type"
:
"string"
},
"required"
:
[
"name"
,
"_class"
]
},
"type"
:
"object"
},
"Dream.Edge"
:
{
"_class"
:
"edge"
,
"allOf"
:
[
{
"$ref"
:
"#/edge"
}
],
"description"
:
"Connect stations together"
},
"Dream.Exit"
:
{
"_class"
:
"node"
,
"name"
:
"Exit"
,
"css"
:
{
"color"
:
"#F0F"
},
"description"
:
"A station where entities exits from the system"
,
"allOf"
:
[
{
"$ref"
:
"#/node"
}
]
},
"Dream.Queue"
:
{
"name"
:
"Queue"
,
"_class"
:
"node"
,
"description"
:
"A buffer where entites can be hold until the next station is ready to process them"
,
"allOf"
:
[
{
"$ref"
:
"#/node"
},
{
"type"
:
"object"
,
"properties"
:
{
"capacity"
:
{
"type"
:
"number"
,
"minimum"
:
0
},
"schedulingRule"
:
{
"type"
:
"string"
,
"enum"
:
[
"FIFO"
,
"Priority"
,
"EDD"
,
"EOD"
,
"NumStages"
,
"RPC"
,
"LPT"
,
"SPT"
,
"MS"
,
"WINQ"
]
}
}
}
]
},
"Dream.Machine"
:
{
"name"
:
"Machine"
,
"description"
:
"A station processing items for some time given by a distribution"
,
"_class"
:
"node"
,
"allOf"
:
[
{
"$ref"
:
"#/node"
},
{
"properties"
:
{
"processingTime"
:
{
"type"
:
"object"
,
"properties"
:
{
"distributionType"
:
{
"type"
:
"string"
,
"enum"
:
[
"Fixed"
,
"Exp"
,
"Normal"
]
},
"mean"
:
{
"type"
:
"number"
},
"stdev"
:
{
"type"
:
"number"
},
"min"
:
{
"type"
:
"number"
},
"max"
:
{
"type"
:
"number"
}
}
},
"failures"
:
{
"type"
:
"object"
,
"properties"
:
{
"MTTF"
:
{
"type"
:
"number"
},
"MTTR"
:
{
"type"
:
"number"
},
"repairman"
:
{
"type"
:
"string"
,
"enum"
:
[
"None"
]
},
"failureDistribution"
:
{
"oneOf"
:
[
{
"type"
:
"string"
,
"enum"
:
[
"No"
]
},
{
"type"
:
"object"
,
"properties"
:
{
"distributionType"
:
{
"type"
:
"string"
,
"enum"
:
[
"Fixed"
,
"Exp"
,
"Normal"
]
},
"mean"
:
{
"type"
:
"number"
},
"stdev"
:
{
"type"
:
"number"
},
"min"
:
{
"type"
:
"number"
},
"max"
:
{
"type"
:
"number"
}
}
}
]
}
}
}
}
}
]
},
"Dream.Source"
:
{
"name"
:
"Source"
,
"_class"
:
"node"
,
"description"
:
"A station creating entities"
,
"allOf"
:
[
{
"$ref"
:
"#/node"
},
{
"interArrivalTime"
:
{
"type"
:
"object"
,
"properties"
:
{
"distributionType"
:
{
"type"
:
"string"
,
"enum"
:
[
"Fixed"
,
"Exp"
,
"Normal"
]
},
"mean"
:
{
"type"
:
"number"
},
"stdev"
:
{
"type"
:
"number"
},
"min"
:
{
"type"
:
"number"
},
"max"
:
{
"type"
:
"number"
}
}
}
}
]
}
},
"application_configuration"
:
{
"input"
:
{
"view"
:
{
"gadget"
:
"Input_viewProductionLine"
,
"type"
:
"object_view"
,
"title"
:
"Production Line"
},
"view_shift_spreadsheet"
:
{
"gadget"
:
"Input_viewSpreadsheet"
,
"type"
:
"object_view"
,
"title"
:
"Configurable Shift Spreadsheeet (not functional yet)"
,
"configuration"
:
{
"columns"
:
[
{
"name"
:
"Date"
,
"type"
:
"string"
,
"format"
:
"date-time"
},
{
"name"
:
"Machines"
,
"type"
:
"string"
},
{
"name"
:
"Start"
,
"type"
:
"string"
},
{
"name"
:
"Stop"
,
"type"
:
"string"
}
]
}
},
"view_run_simulation"
:
{
"title"
:
"Run Siumulation"
,
"type"
:
"object_view"
,
"gadget"
:
"Input_viewSimulation"
}
},
"output"
:
{
"view_station_utilization"
:
{
"title"
:
"Station Utilization"
,
"type"
:
"object_view"
,
"gadget"
:
"Output_viewStationUtilisationGraph"
},
"view_queue_stats"
:
{
"title"
:
"Queue Statistics"
,
"type"
:
"object_view"
,
"gadget"
:
"Output_viewQueueStatGraph"
},
"view_exit_stats"
:
{
"title"
:
"Exit Statistics"
,
"type"
:
"object_view"
,
"gadget"
:
"Output_viewExitStatistics"
}
},
"preprocessing_plugin_list"
:
[
{
"plugin"
:
"ReadShiftFromSpreadsheet"
,
"input_id"
:
"Shift Spreadsheet"
}
],
"postprocessing_plugin_list"
:
[
{
"plugin"
:
"CalculateConfidenceIntervals"
}
],
"general"
:
{
"properties"
:
{
"numberOfReplications"
:
{
"type"
:
"number"
,
"title"
:
"Number of replications"
,
"description"
:
"Number of replications to run"
,
"default"
:
1
},
"lengthOfExperiment"
:
{
"type"
:
"number"
,
"description"
:
"Length of experiment"
,
"default"
:
1440
}
}
}
},
"general"
:
{
"numberOfReplications"
:
12456
},
"graph"
:
{
"node"
:
{},
"edge"
:
{}
},
"input"
:
{
"Shift Spreadsheet"
:
[
[
"2014/10/02"
,
"M1"
,
"06:00"
,
"13:00"
]
]
},
"result"
:
{},
"constraints"
:
{}
}
dream/simulation/Examples/DefaultAllInOneEmpty.json
deleted
100644 → 0
View file @
0339c80e
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment