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
ca0c2bd3
Commit
ca0c2bd3
authored
Feb 16, 2015
by
Georgios Dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demand planning general input to be read accordingly
parent
7fc955bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
31 deletions
+18
-31
dream/simulation/applications/DemandPlanning/ImportInput.py
dream/simulation/applications/DemandPlanning/ImportInput.py
+18
-31
No files found.
dream/simulation/applications/DemandPlanning/ImportInput.py
View file @
ca0c2bd3
...
...
@@ -44,48 +44,35 @@ def my_split(s, seps):
return
res
def
ImportInput
(
input
,
algorithmAttributes
):
# general simulation input
mime_type
,
attachement_data
=
input
[
len
(
'data:'
):].
split
(
';base64,'
,
1
)
attachement_data
=
attachement_data
.
decode
(
'base64'
)
wbin
=
xlrd
.
open_workbook
(
file_contents
=
attachement_data
)
sh
=
wbin
.
sheet_by_name
(
'Scalar_Var'
)
G
.
maxEarliness
=
withoutFormat
(
3
,
1
,
sh
,
1
)
G
.
maxLateness
=
withoutFormat
(
4
,
1
,
sh
,
1
)
G
.
maxEarliness
=
algorithmAttributes
.
get
(
'maxEarliness'
,
None
)
G
.
maxLateness
=
algorithmAttributes
.
get
(
'maxLateness'
,
None
)
# utilisation calculation
if
withoutFormat
(
9
,
1
,
sh
,
1
)
!=
''
:
G
.
minDeltaUt
=
withoutFormat
(
9
,
1
,
sh
,
1
)
G
.
minDeltaUt
=
algorithmAttributes
.
get
(
'minDelta'
,
None
)
# ACO parameters
if
withoutFormat
(
12
,
1
,
sh
,
1
)
!=
''
:
G
.
ACO
=
withoutFormat
(
12
,
1
,
sh
,
1
)
if
withoutFormat
(
13
,
1
,
sh
,
1
)
!=
''
:
G
.
popSize
=
withoutFormat
(
13
,
1
,
sh
,
1
)
if
withoutFormat
(
14
,
1
,
sh
,
1
)
!=
''
:
G
.
noGen
=
withoutFormat
(
14
,
1
,
sh
,
1
)
G
.
ACO
=
algorithmAttributes
.
get
(
'ACO'
,
None
)
G
.
popSize
=
algorithmAttributes
.
get
(
'ACOpopulationSize'
,
None
)
G
.
noGen
=
algorithmAttributes
.
get
(
'ACOnumberOfGenerations'
,
None
)
# optimisation weights for forecast IP method
if
withoutFormat
(
18
,
1
,
sh
,
1
)
!=
''
:
G
.
weightFactor
[
0
]
=
withoutFormat
(
18
,
1
,
sh
,
1
)
if
withoutFormat
(
19
,
1
,
sh
,
1
)
!=
''
:
G
.
weightFactor
[
1
]
=
withoutFormat
(
19
,
1
,
sh
,
1
)
if
withoutFormat
(
20
,
1
,
sh
,
1
)
!=
''
:
G
.
weightFactor
[
2
]
=
withoutFormat
(
20
,
1
,
sh
,
1
)
if
withoutFormat
(
21
,
1
,
sh
,
1
)
!=
''
:
G
.
weightFactor
[
3
]
=
withoutFormat
(
21
,
1
,
sh
,
1
)
G
.
weightFactor
[
0
]
=
algorithmAttributes
.
get
(
'maxAssignedQty'
,
None
)
G
.
weightFactor
[
1
]
=
algorithmAttributes
.
get
(
'minUtilisation'
,
None
)
G
.
weightFactor
[
2
]
=
algorithmAttributes
.
get
(
'minDeltaTargetUtilisation'
,
None
)
G
.
weightFactor
[
3
]
=
algorithmAttributes
.
get
(
'minTargetUtilisation'
,
None
)
# GA parameters
if
withoutFormat
(
23
,
1
,
sh
,
1
)
!=
''
:
G
.
GA
=
withoutFormat
(
23
,
1
,
sh
,
1
)
if
withoutFormat
(
24
,
1
,
sh
,
1
)
!=
''
:
G
.
popSizeGA
=
withoutFormat
(
24
,
1
,
sh
,
1
)
if
withoutFormat
(
25
,
1
,
sh
,
1
)
!=
''
:
G
.
noGenGA
=
withoutFormat
(
25
,
1
,
sh
,
1
)
if
withoutFormat
(
26
,
1
,
sh
,
1
)
!=
''
:
G
.
probXover
=
withoutFormat
(
26
,
1
,
sh
,
1
)
if
withoutFormat
(
27
,
1
,
sh
,
1
)
!=
''
:
G
.
probMutation
=
withoutFormat
(
27
,
1
,
sh
,
1
)
G
.
GA
=
algorithmAttributes
.
get
(
'GA'
,
None
)
G
.
popSizeGA
=
algorithmAttributes
.
get
(
'GApopulationSize'
,
None
)
G
.
noGenGA
=
algorithmAttributes
.
get
(
'GAnumberOfGenerations'
,
None
)
G
.
probXover
=
algorithmAttributes
.
get
(
'XOver'
,
None
)
G
.
probMutation
=
algorithmAttributes
.
get
(
'mutationProbability'
,
None
)
# Import capacity information...capacity = {Resource: {week {'originalCapacity':, 'remainingCapacity', 'minUtilisation'}
sh
=
wbin
.
sheet_by_name
(
'BN_Capa'
)
...
...
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