Commit 647ae2b4 authored by Jérome Perrin's avatar Jérome Perrin

BatchAllInOneEmpty: use new way of defining plugins and "name" key for property names

parent 961fc005
......@@ -5,55 +5,55 @@
"confidenceLevel": {
"default": 0.95,
"description": "Confidence level for statistical analysis of stochastic experiments",
"title": "Confidence level",
"name": "Confidence level",
"type": "number"
},
"currentDate": {
"default": "2014/10/01",
"description": "The day the experiment starts, in YYYY/MM/DD format",
"title": "Simulation Start Time",
"name": "Simulation start time",
"type": "string"
},
"ke_url": {
"default": "http://git.erp5.org/gitweb/dream.git/blob_plain/HEAD:/dream/KnowledgeExtraction/Mockup_Processingtimes.xls",
"description": "The URL for knowledge extraction to access its data for example http://git.erp5.org/gitweb/dream.git/blob_plain/HEAD:/dream/KnowledgeExtraction/Mockup_Processingtimes.xls",
"title": "URL for Knowledge Extraction Spreadsheet",
"name": "URL for Knowledge Extraction Spreadsheet",
"type": "string"
},
"maxSimTime": {
"default": 100,
"description": "Length of the simulationrun",
"title": "Length of Experiment",
"description": "Length of the simulation run",
"name": "Length of experiment",
"type": "number"
},
"numberOfReplications": {
"default": 10,
"description": "Number of replications to run",
"title": "Number of replications",
"type": "integer"
"name": "Number of replications",
"type": "number"
},
"processTimeout": {
"default": 10,
"description": "Number of seconds before the calculation process is interrupted",
"title": "Process Timeout",
"name": "Process timeout",
"type": "number"
},
"seed": {
"default": "1",
"description": "When using the same seed, the random number generator produce the same sequence of numbers",
"title": "Seed for random number generator",
"name": "Seed for random number generator",
"type": "number"
},
"throughputTarget": {
"default": 10,
"description": "The daily throughput target in units.",
"title": "Daily Throughput Target",
"name": "Daily throughput target",
"type": "number"
},
"timeUnitPerDay": {
"default": 24,
"description": "Used for input and reporting widgets. Forexample, 24 means that simulation clock time unit is one hour.",
"title": "Number of time units per day",
"name": "Number of time units per day",
"type": "number"
},
"trace": {
......@@ -63,7 +63,7 @@
"No",
"Yes"
],
"title": "OutputTrace",
"name": "Output Trace",
"type": "string"
}
}
......@@ -266,40 +266,31 @@
"type": "object_view"
}
},
"postprocessing": {
"plugin_list": []
},
"preprocessing": {
"plugin_list": [
"post_processing_plugin_list": [],
"pre_processing_plugin_list": [
{
"input_id": "WIPStat",
"plugin": "GatherWIPStat.GatherWIPStat"
"_class": "GatherWIPStat.GatherWIPStat"
},
{
"input_id": "EntryData",
"plugin": "ReadEntryData.ReadEntryData"
"_class": "ReadEntryData.ReadEntryData"
},
{
"input_id": "WipSpreadsheet",
"plugin": "BatchesWIPSpreadsheet.BatchesWIPSpreadsheet"
"_class": "BatchesWIPSpreadsheet.BatchesWIPSpreadsheet"
},
{
"input_id": "SkilledOperatorsSpreadsheet",
"plugin": "ReadSkilledOperators.ReadSkilledOperators"
"_class": "ReadSkilledOperators.ReadSkilledOperators"
},
{
"input_id": "ShiftSpreadsheet",
"plugin": "ReadShiftFromSpreadsheet.ReadShiftFromSpreadsheet"
}
]
},
"processing": {
"plugin_list": [
{
"input_id": "Simulation",
"plugin": "plugin.DefaultExecutionPlugin"
"_class": "ReadShiftFromSpreadsheet.ReadShiftFromSpreadsheet"
}
]
],
"processing_plugin": {
"_class": "plugin.DefaultExecutionPlugin"
}
},
"class_definition": {
......@@ -389,18 +380,24 @@
"required": true
}
},
"name": "Interruptions",
"type": "object"
},
"name": {
"name": "Name",
"default": "Machine",
"type": "string"
},
"processingTime": {
"$ref": "#/definitions/_dist",
"name": "Processing time",
"description": "TODO: describe processing time",
"required": true
},
"scrapping": {
"$ref": "#/definitions/_dist",
"name": "Scrapping",
"description": "TODO: describe scrapping",
"required": true
}
},
......@@ -762,7 +759,7 @@
},
"_schedulingRule": {
"default": "FIFO",
"description": "Scheduling Rule, one of FIFO Priority EDD EOD NumStages RPC LPT SPT MS WINQ",
"description": "Scheduling Rule of this buffer",
"enum": [
"FIFO",
"Priority",
......@@ -822,7 +819,6 @@
"type": "object"
},
"_failure": {
"description": "Fixed",
"properties": {
"Time to Failure": {
"$ref": "#/definitions/_dist"
......@@ -840,7 +836,6 @@
"type": "object"
},
"_fixed": {
"description": "Fixed",
"properties": {
"mean": {
"default": 0,
......@@ -848,7 +843,7 @@
"type": "number"
}
},
"title": "Fixed",
"name": "Fixed",
"type": "object"
},
"_gama": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment