"description":"A buffer where entities of the same group can be held until the next station is ready to process them. Entities of other groups cannot be accepted",
"description":"A station processing batches for some time given by a distribution provided by the entities that are processed. A random number of batch units is scrapped",
"_class":"node",
"allOf":[{
"$ref":"#/node"
},{
"type":"object",
"properties":{
"name":{
"type":"string",
"default":"Machine"
},
"id":{
"type":"string",
"default":"M",
"required":true
},
"processingTime":{
"$ref":"#/definitions/_dist",
"required":true
},
"interruption":{
"type":"object",
"properties":{
"failure":{
"$ref":"#/definitions/_failureDist",
"required":true
}
}
},
"scrapping":{
"$ref":"#/definitions/_dist",
"required":true
}
}
}
]
}
},
"application_configuration":{
"input":{
"view":{
"title":"ProductionLine",
"type":"object_view",
"gadget":"Input_viewProductionLine"
},
"view_management":{
"gadget":"Input_viewDocumentManagement",
"type":"object_view",
"title":"Manage document"
},
"view_machine_shift_spreadsheet":{
"gadget":"Input_viewSpreadsheet",
"type":"object_view",
"title":"Machine Shifts Spreadsheet",
"configuration":{
"columns":[{
"name":"Date",
"type":"string",
"format":"date-time"
},{
"name":"Machine",
"type":"string"
},{
"name":"Start",
"type":"string"
},{
"name":"Stop",
"type":"string"
}
]
}
},
"view_operator_shift_spreadsheet":{
"gadget":"Input_viewSpreadsheet",
"type":"object_view",
"title":"Product Builder Shifts Spreadsheet",
"configuration":{
"columns":[{
"name":"Date",
"type":"string",
"format":"date-time"
},{
"name":"Product Builder",
"type":"string"
},{
"name":"Start",
"type":"string"
},{
"name":"Stop",
"type":"string"
}
]
}
},
"view_operator_skill_spreadsheet":{
"gadget":"Input_viewSpreadsheet",
"type":"object_view",
"title":"Product Builder Skills",
"configuration":{
"columns":[{
"name":"Product Builder",
"type":"string"
},{
"name":"Skills",
"type":"array"
}
]
}
},
"view_wip_spreadsheet":{
"gadget":"Input_viewSpreadsheet",
"type":"object_view",
"title":"WIP Spreadsheet",
"configuration":{
"columns":[{
"name":"ID",
"type":"string"
},{
"name":"StationID",
"type":"string"
},{
"name":"Remaining Units",
"type":"number"
},{
"name":"Type",
"type":"string"
},{
"name":"Batch ID",
"type":"string"
}
]
}
},
"view_run_simulation":{
"title":"Run Simulation",
"type":"object_view",
"gadget":"Input_viewSimulation"
},
"view_result":{
"gadget":"Input_viewResultList",
"type":"object_view",
"title":"Results"
}
},
"output":{
"view_station_utilization":{
"title":"StationUtilization",
"type":"object_view",
"gadget":"Output_viewStationUtilisationGraph",
"configuration":{
"columns":[]
}
},
"view_queue_stats":{
"title":"Queue Statistics",
"type":"object_view",
"gadget":"Output_viewQueueStatGraph",
"configuration":{
"columns":[
]
}
},
"view_exit_stats":{
"title":"Exit Statistics",
"type":"object_view",
"gadget":"Output_viewExitStatistics",
"configuration":{
"properties":{
"throughput":{
"type":"number"
},
"taktTime":{
"type":"number"
},
"lifespan":{
"type":"number"
}
}
}
},
"view_operator_gantt":{
"title":"Operator Gantt",
"type":"object_view",
"gadget":"Output_viewJobGantt",
"configuration":{
"properties":{}
}
},
"view_debug_json":{
"title":"Debug Json",
"type":"object_view",
"gadget":"Output_viewDebugJson"
}
},
"preprocessing":{
"plugin_list":[{
"plugin":"ReadShiftFromSpreadsheet",
"input_id":"ShiftSpreadsheet"
},{
"plugin":"ReadWipFromSpreadsheet",
"input_id":"WipSpreadsheet"
}
]
},
"processing":{
"plugin_list":[{
"plugin":"plugin.PartJobShop",
"input_id":"Simulation"
}
]
},
"postprocessing":{
"plugin_list":[{
"plugin":"CalculateConfidenceIntervals"
}
]
},
"general":{
"properties":{
"numberOfReplications":{
"title":"Number of replications",
"type":"integer",
"description":"Number of replications to run",
"default":10
},
"maxSimTime":{
"title":"Length of Experiment",
"description":"Length of the simulationrun",
"type":"number",
"default":100
},
"confidenceLevel":{
"title":"Confidence level",
"type":"number",
"default":0.95,
"description":"Confidence level for statistical analysis of stochastic experiments"
},
"processTimeout":{
"title":"Process Timeout",
"type":"number",
"default":10,
"description":"Number of seconds before the calculation process is interrupted"
},
"currentDate":{
"default":"2014/10/01",
"description":"The day the experiment starts, in YYYY/MM/DD format",
"title":"Simulation Start Time",
"type":"string"
},
"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",
"type":"number"
},
"trace":{
"default":"No",
"enum":["No","Yes"],
"description":"Create an excel trace file (Yes or No)",
"title":"OutputTrace",
"type":"string"
},
"seed":{
"default":"1",
"description":"When using the same seed, the random number generator produce the same sequence of numbers",
"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",
"type":"string"
},
"throughputTarget":{
"default":10,
"description":"The daily throughput target in units.",