Commit f839990f authored by Georgios Dagkakis's avatar Georgios Dagkakis

DemandPlanning instance general fields updated (not interfaced with the algorithm yet)

parent 28cb353c
...@@ -2,57 +2,94 @@ ...@@ -2,57 +2,94 @@
"application_configuration": { "application_configuration": {
"general": { "general": {
"properties": { "properties": {
"TargetPPOS": { "MaxEarliness": {
"_default": 1, "default": 2,
"description": "Info on PPOS to be disaggregated", "description": "Maximum Earliness",
"name": "PPOS ID", "name": "Maximum Earliness",
"type": "number" "type": "number"
}, },
"TargetPPOSqty": { "MaxLateness": {
"_default": 430, "default": 2,
"description": "Info on PPOS to be disaggregated", "description": "Maximum Lateness",
"name": "PPOS Quantity", "name": "Maximum Lateness",
"type": "number" "type": "number"
}, },
"TargetPPOSweek": { "MinDelta": {
"_default": 2, "default": 0,
"description": "Week when the disaggregation has to be performed", "description": "Min Delta Target Utilisation",
"name": "PPOS Week", "name": "Min Delta Target Utilisation",
"type": "number" "type": "number"
}, },
"ke_url": { "ACO": {
"_default": "http://git.erp5.org/gitweb/dream.git/blob_plain/HEAD:/dream/simulation/Examples/DemandProfile.xlsx", "default": 2,
"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", "description": "ACO",
"name": "URL for Knowledge Extraction Spreadsheet", "name": "ACO",
"type": "string" "type": "number"
},
"ACOpopulationSize": {
"default": 5,
"description": "ACO Population size",
"name": "Population size",
"type": "number"
},
"ACO numberOfGenerations": {
"default": 8,
"description": "ACO Number of generations",
"name": "ACO Number of generations",
"type": "number"
},
"maxAssignedQty": {
"default": 10,
"description": "Maximum Assigned Quantity",
"name": "Maximum Assigned Quantity",
"type": "number"
},
"minUtilisation": {
"default": 1,
"description": "Minimum Utilisation",
"name": "Minimum Utilisation",
"type": "number"
},
"MinDeltaTargerUtilisation": {
"default": 0,
"description": "Minimum Delta Target Utilisation",
"name": "Minimum Delta Target Utilisation",
"type": "number"
},
"MinTargerUtilisation": {
"default": 2,
"description": "Minimum Delta Utilisation",
"name": "Minimum Delta Utilisation",
"type": "number"
}, },
"maxEarliness": { "GA": {
"_default": 1, "default": 1,
"description": "Info on Time Constraints for Allocation", "description": "GA",
"name": "Max Earliness", "name": "GA",
"type": "number" "type": "number"
}, },
"maxLateness": { "GApopulationSize": {
"_default": 1, "default": 5,
"description": "Info on Time Constraints for Allocation", "description": "GA population Size",
"name": "Max Lateness", "name": "GA population Size",
"type": "number" "type": "number"
}, },
"minPackingSize": { "GA numberOfGenerations": {
"_default": 10, "default": 8,
"description": "Info on minimum allocable size", "description": "GA Number of Generations",
"name": "Min Packing Size", "name": "GA Number of Generations",
"type": "number" "type": "number"
}, },
"numberOfReplications": { "XOver": {
"_default": 1, "default": 0.6,
"name": "Number of replications", "description": "x-over Probability",
"name": "x-over Probability",
"type": "number" "type": "number"
}, },
"planningHorizon": { "mutationProbability": {
"_default": 3, "default": 0.1,
"description": "Planning horizon (consistent with capacity info)", "description": "Mutation Probability",
"name": "Planning horizon", "name": "Mutation Probability",
"type": "number" "type": "number"
} }
} }
......
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