-
Notifications
You must be signed in to change notification settings - Fork 0
/
MDR_makespan.py
514 lines (443 loc) · 22.7 KB
/
MDR_makespan.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
import copy
import random
import numpy as np
import time
from Data_reader import TP,TRT,m,n,N,tot_number_operations,M_ij,PP,AGV_power,AUX_power,IDLE_power
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
## Mixed Dispatching Rule Meta-heuristic algorithm
# Parameters SETTINGS
max_gen_mks = 500
population_number_mks = 20
M = list(range(1, m + 1))
I = list(range(1, n + 1))
O_ij = {job: list(range(1, N[job]+1)) for job in range(1, n + 1)}
T_ijm = TP
sorted_M_ij = {}
for job_op, machines in M_ij.items():
sorted_machines = sorted(machines, key=lambda machine: TP.get((job_op[0], job_op[1], machine)))
sorted_M_ij[job_op] = sorted_machines
# Compute the difference in processing time for sequential machines in sorted_M_ij
diff_best = {}
for job_op, machines in sorted_M_ij.items():
for i, machine in enumerate(machines):
# Calculate the difference in processing times between this machine and the best one
current_time = TP[(job_op[0], job_op[1], machine)]
best_time = TP[(job_op[0], job_op[1], machines[0])]
diff_best[(job_op[0], job_op[1], machine)] = current_time - best_time
scheduled_jobs_orig = [x for x in TP.keys()]
total_Operation = tot_number_operations
iteration = []
history=[]
gen = 0
current_min_makespan = 10000
initial_t = time.time()
while gen < max_gen_mks:
print(gen)
# initialisation available operations
scheduled_jobs = [jobs for jobs in scheduled_jobs_orig if jobs[1] == 1]
scheduling = []
operation_done = {job: 0 for job in range(1, n + 1)}
precedence_machine = {job: 0 for job in range(1, n + 1)}
finish_time_machine = {ma: 0 for ma in range(1, m + 1)}
finish_time_job = {j: 0 for j in range(1, n + 1)}
# First decision, first ranking of available jobs
rand = random.random()
if rand < 0.8:
scheduled_jobs = sorted(scheduled_jobs, key=lambda x: (diff_best.get(x), random.random()))
else:
# Shortest processing time job applied to the shortest processing time machine
scheduled_jobs = sorted(scheduled_jobs, key=lambda x: (TP[x], random.random()))
while len(scheduled_jobs) != 0:
for mission in scheduled_jobs:
if len(scheduled_jobs) != 0:
job = mission[0]
machine = mission[2]
# eligible_machine is the list of machines that could be assigned considering current availability
# eligible_job the list of jobs that could be assigned on the machine we want to assign considering current availability
eligible_machines = []
eligible_jobs = []
for other_missions in scheduled_jobs:
if other_missions[2] not in eligible_machines:
eligible_machines.append(other_missions[2])
if other_missions[2] == machine and other_missions[0] not in eligible_jobs:
eligible_jobs.append(other_missions[0])
# Adjusting the if condition to work with lists
if all(finish_time_machine.get(other_eligible_machine) >= finish_time_machine[machine] for other_eligible_machine in eligible_machines) and (all(
finish_time_job[other_eligible_job] + TRT[precedence_machine[other_eligible_job], machine] >=
finish_time_job[job] + TRT[precedence_machine[job], machine] for other_eligible_job
in eligible_jobs) or finish_time_job[job] + TRT[precedence_machine[job], machine] <= finish_time_machine[machine]):
operation_number = mission[1]
# Precedence machine of the job
machine_pre = precedence_machine.get(job)
transport = TRT[(machine_pre, machine)]
real_transport = TRT[(machine_pre, machine)]
# Compute transportation time interference
if machine in finish_time_machine or job in finish_time_job:
if machine in finish_time_machine and job in finish_time_job:
start_time = max(finish_time_job[job], finish_time_machine[machine])
else:
if machine in finish_time_machine:
start_time = finish_time_machine[machine]
else:
start_time = finish_time_job[job]
else:
start_time = 0
if job in finish_time_job and start_time - finish_time_job[job] - transport <= 0:
real_transport = - start_time + finish_time_job[job] + transport
if job in finish_time_job and start_time - finish_time_job[job] - transport > 0:
real_transport = 0
# Update all variable
scheduling.append([machine, operation_number, job])
finish_time_job[job] = start_time + real_transport + TP[(job, operation_number, machine)]
precedence_machine[job] = machine
operation_done[job] = operation_number
finish_time_machine[machine] = start_time + real_transport + TP[(job, operation_number, machine)]
# Update available operations
if N[job] != operation_number:
for mach in M_ij[job,operation_number + 1]:
scheduled_jobs.append((job, operation_number + 1, mach))
for mach in M_ij[job,operation_number]:
scheduled_jobs.remove((job, operation_number, mach))
# Next Dispatching Rule Choice
rand = random.random()
if rand < len(scheduling)/tot_number_operations: # % NOR probability increases during the scheduling assignment
# Sort the list based on the number of operations in descending order
scheduled_jobs = sorted(scheduled_jobs, key=lambda x: (N[x[0]] - operation_done[x[0]], -diff_best.get(x), random.random()),
reverse=True)
elif rand < len(scheduling)/tot_number_operations + 0.1 * (1 - len(scheduling)/tot_number_operations):
# Sort the list based on SPT
scheduled_jobs = sorted(scheduled_jobs, key=lambda x: (TP[x], random.random()))
else:
# (J,O,M) ranked based on difference between PT on that machine and best PT for that operation
scheduled_jobs = sorted(scheduled_jobs, key=lambda x: (diff_best.get(x), random.random()))
break
total_times = {machine: time + TRT[(machine,0)] for machine, time in finish_time_machine.items()}
total_makespan = max(total_times.values())
if total_makespan < current_min_makespan:
current_min_makespan = total_makespan
history.append([scheduling, total_makespan])
iteration.append([time.time()-initial_t,current_min_makespan])
gen += 1
# encoding best scheduling
os_job = []
dr_mix_population = []
job_operation_to_machine = []
history.sort(key=lambda x: x[1])
for i in range(max_gen_mks):
os_job.append([])
for job in history[i][0]:
os_job[i].append(job[2])
job_operation_to_machine.append({(entry[2], entry[1]): entry[0] for entry in history[i][0]})
for i in range(max_gen_mks):
os_machine = []
for job in range(1,n+1):
for operation in range(1,N[job]+1):
os_machine.append(job_operation_to_machine[i].get((job,operation)))
dr_mix_population.append(os_job[i] + os_machine)
final_t = time.time()
print("Total time", final_t - initial_t)
Population_mks = np.array(dr_mix_population)
'''
def Decode_T(Pop_matrix): # Do not run separately
T_list = []
for a in range(len(Pop_matrix)): # For each chromosome
T = []
for b in range(total_Operation):
m = Pop_matrix[:][a][total_Operation:total_Operation * 2][b] # Machine for the current assignment
i_j = list(M_ij.keys())[b][0] # Get the job number for this assignment
j_i = list(M_ij.keys())[b][1] # Get the assignment number for this assignment
T_total = T_ijm[i_j, j_i, m]
T.append(T_total)
T_list.append(T)
T_matrix = np.array(T_list)
return T_matrix
def Decode_OS(Pop_matrix): # Decoding
# The sum of the number of operations of eligiblemachine jobs before the current job
T_matrix = Decode_T(Pop_matrix)
O_num_list = []
O_num = 0
for i in I:
O_num_list.append(O_num)
O_num += len(O_ij[i])
# Get the corresponding job-assignment group based on the assignment code
O_M_T_total = []
for a in range(len(Pop_matrix)): # For each chromosome
O_M_T = {}
for b in range(total_Operation):
O_i = Pop_matrix[:][a][0:total_Operation][b] # OS part of each chromosome
O_j = list(Pop_matrix[:][a][0:b + 1]).count(O_i) # The number of times the current sequence number appears, i.e., the assignment number
T_matrix_column = O_num_list[O_i - 1] + O_j - 1 # Column number of the current assignment arranged in positive order
O_M = Pop_matrix[:][a][total_Operation:total_Operation * 2][T_matrix_column] # Machine selected for the current assignment
T_matrix_recent = T_matrix[a, T_matrix_column] # Time required for the current assignment
O_M_T[O_i, O_j, O_M] = T_matrix_recent # Operations sorted by OS code and corresponding equipment fixture
O_M_T_total.append(O_M_T)
return O_M_T_total
def Operation_insert(key, value):
M_arranged = {a: [] for a in M}
P_arranged = {a: [] for a in I}
AGV_arranged = []
All_arranged = {}
precedence_machine = {}
for a in range(total_Operation):
All_arranged[key[a]] = [] # Currently arranged operations
current_machine = key[a][2] # Machine for the current assignment
current_operation = key[a][1] # current assignment
current_product = key[a][0] # Current job
current_op_time = value[a] # Processing time for the current assignment
machine_pre = (precedence_machine.get(current_product) or 0)
if P_arranged[current_product] == []:
# first transport from LU
last_op_end_time = TRT[0, current_machine]
else:
# the end of previous assignment can be seen as actual finish time + transportation time to next machine
last_op_end_time = max(P_arranged[current_product])[1] + TRT[machine_pre, current_machine]
if M_arranged[current_machine] == []:
ta = max(last_op_end_time, 0)
arranged(M_arranged, current_machine, P_arranged, current_product, ta, current_op_time, All_arranged,
key, a)
if (TRT[machine_pre, current_machine] != 0):
# AGV scheduling initial time agv, transportation time, job, machine pre, machine post, initial time next assignment
AGV_arranged.append(
[last_op_end_time - TRT[machine_pre, current_machine], TRT[machine_pre, current_machine],
current_product, machine_pre, current_machine, ta])
else:
intersection = Find_gap(M_arranged[current_machine])
inters = copy.deepcopy(intersection)
while inters: # Check if it can break out of the loop!
ta = max(last_op_end_time, inters[0][0])
if ta + current_op_time <= inters[0][1]:
arranged(M_arranged, current_machine, P_arranged, current_product, ta, current_op_time,
All_arranged, key, a)
if (TRT[machine_pre, current_machine] != 0):
AGV_arranged.append(
[last_op_end_time - TRT[machine_pre, current_machine], TRT[machine_pre, current_machine],
current_product, machine_pre, current_machine, ta])
break
else:
inters.pop(0)
precedence_machine[current_product] = current_machine
# if last assignment is selected, add agv schedule to report the job to the LU area
if current_operation == N[current_product]:
AGV_arranged.append(
[ta + current_op_time, TRT[current_machine, 0], current_product, current_machine, 0, ta])
return M_arranged, P_arranged, All_arranged, AGV_arranged
def crowding_distance_sort(last_front):
num_individuals = len(last_front)
last_front_distance = [0.0] * num_individuals # Initialize ordered distances
for obj_index in range(2):
# Get indices of individuals sorted by current objective
sorted_indices = sorted(range(num_individuals), key=lambda i: last_front[i][obj_index])
# Assign large distances to boundary individuals and all individuals with same value
last_front_distance[sorted_indices[0]] += 1000
last_front_distance[sorted_indices[-1]] += 1000
# Calculate the range of the current objective for normalisation
obj_min = last_front[sorted_indices[0]][obj_index]
obj_max = last_front[sorted_indices[-1]][obj_index]
obj_range = obj_max - obj_min if obj_max - obj_min > 0 else 1 # Avoid division by zero
# Calculate distances for intermediate individuals
for i in range(1, num_individuals - 1):
distance = last_front[sorted_indices[i + 1]][obj_index] - last_front[sorted_indices[i - 1]][obj_index]
# normalized distance assigned to the correct individual
last_front_distance[sorted_indices[i]] += distance / obj_range
return last_front_distance
def check_dominance(solution1, solution2):
"""
- bool: True if solution1 dominates solution2, False otherwise.
"""
dominates = all(s1 <= s2 for s1, s2 in zip(solution1, solution2)) and any(
s1 < s2 for s1, s2 in zip(solution1, solution2))
return dominates
def fast_non_dominated_sort(combined_results):
rank_fronts = []
# number of individuals which dominates the key
domination_counter = {}
# set of individuals which the key dominates
dominated_solutions = {i: set() for i in range(len(combined_results))}
Q = set()
for index1, individual1 in enumerate(combined_results):
domination_counter[index1] = 0
for index2, individual2 in enumerate(combined_results):
if index2 != index1:
if check_dominance(individual1, individual2):
dominated_solutions[index1].add(index2)
elif check_dominance(individual2, individual1):
domination_counter[index1] += 1
if domination_counter[index1] == 0:
Q.add(index1)
rank_fronts.append(Q)
i = 1
while rank_fronts[i - 1] != set():
Q = set()
for index1 in rank_fronts[i - 1]:
for index2 in dominated_solutions[index1]:
domination_counter[index2] -= 1
if domination_counter[index2] == 0:
Q.add(index2)
i += 1
rank_fronts.append(Q)
return rank_fronts
def fitness(time1, energy1):
combined_results = []
for i in range(len(time1)):
combined_results.append([time1[i], energy1[i]])
fronts = fast_non_dominated_sort(combined_results)
selected_individuals = []
current_front = 0
Pareto_ind = len(list(fronts[0]))
while len(selected_individuals) < population_number_mks:
if len(fronts[current_front]) + len(selected_individuals) <= population_number_mks:
selected_individuals.extend(list(fronts[current_front]))
current_front += 1
else:
# Sort the last Pareto front based on crowding distance
keys_last_front = list(fronts[current_front])
# Use keys_last_front to filter the combined_results list
last_front_individuals = [combined_results[key] for key in keys_last_front]
distances = crowding_distance_sort(last_front_individuals)
sorted_last_front = [ind for _, ind in
sorted(zip(distances, keys_last_front), key=lambda x: x[0], reverse=True)]
selected_individuals.extend(
sorted_last_front[:(population_number_mks - len(selected_individuals))])
# rank individuals on the front based on crowding distance and peak the best ones
return selected_individuals, Pareto_ind
# Do not run separately
def arranged(M_arranged, current_machine, P_arranged, current_product, ta, current_op_time, All_arranged, key, a):
M_arranged[current_machine] += [(ta, ta + current_op_time)]
P_arranged[current_product] += [(ta, ta + current_op_time)]
All_arranged[key[a]] += [ta, ta + current_op_time]
return M_arranged, P_arranged, All_arranged
# Find the idle time of the machine, do not run separately
def Find_gap(M_arranged):
arranged = sorted(M_arranged)
gap_list = []
if arranged != []:
for a in range(len(arranged) + 1):
if a == 0:
if arranged[a][0] != 0:
gap_list.append([0, arranged[a][0]])
elif a == len(arranged):
gap_list.append([arranged[a - 1][1], 9999])
else:
gap_list.append([arranged[a - 1][1], arranged[a][0]])
return gap_list
def energy_calculation(ALL_arranged, makespan, AGV_scheduling):
production_energy=0
idle_energy = 0
agv_energy = 0
aux_energy = 0
total_production_time_machine = {}
# production energy
for key, time_interval in ALL_arranged.items():
job, operation, machine = key
start_time, end_time = time_interval
# Calculate energy consumed for the assignment on that machine during the time interval
production_energy += PP[(job, operation, machine)]/60 * (end_time - start_time)
total_production_time_machine[machine] = (total_production_time_machine.get(machine) or 0) + (end_time - start_time)
# machine in idle
for machine in M:
idle_energy += (makespan - (total_production_time_machine.get(machine) or 0)) * IDLE_power[machine-1] /60
# agv energy
for task in AGV_scheduling:
agv_energy += AGV_power/60 * task[1]
aux_energy = makespan * AUX_power / 60
# total energy consumed
tot_energy = production_energy + idle_energy + agv_energy + aux_energy
return round(tot_energy,2)
O_M_T_total = Decode_OS(Population_mks)
store= []
makespan_tot = []
energy_tot = []
schedule = []
for order in range(len(O_M_T_total)):
key1 = list(O_M_T_total[order].keys())
value1 = list(O_M_T_total[order].values())
schedule_result = Operation_insert(key1, value1)
makespan_schedule = history[order][1]
schedule.append(schedule_result)
# energy calculation
energy_schedule = energy_calculation(schedule_result[2], makespan_schedule, schedule_result[3])
store.append([schedule_result, makespan_schedule,energy_schedule])
makespan_tot.append(makespan_schedule)
energy_tot.append(energy_schedule)
select_index, num_pareto = fitness(makespan_tot, energy_tot)
# Find the indexes of the minimum energy values
min_makespan_indexes = select_index[:population_number_mks]
for idx in range(len(makespan_tot)):
print(makespan_tot[idx])
for idx in range(len(makespan_tot)):
print(energy_tot[idx])
print(".")
for idx in min_makespan_indexes:
print(makespan_tot[idx])
for idx in min_makespan_indexes:
print(energy_tot[idx])
DR_makespan=[]
for ind in min_makespan_indexes:
print(makespan_tot[ind])
DR_makespan.append(Population_mks[ind])
for ind in min_makespan_indexes:
print(energy_tot[ind])
def gantt(result_sch):
# ALL contains the (job,assignment,machine): [initial time,final time]
ALL = result_sch[2]
fig, ax = plt.subplots()
makespan = 0
# colors
unique_job_ids = set(range(1, n + 1))
colors = plt.cm.tab20(np.linspace(0, 1, len(unique_job_ids)))
product_colors = {} # Dictionary to store product ID-color mapping
for jobs, color in zip(unique_job_ids, colors):
product_colors[jobs] = color
for key in ALL.keys():
color = product_colors[key[0]]
ax.barh(key[2], width=ALL[key][1] - ALL[key][0], height=0.6, left=ALL[key][0], color=color, edgecolor='black',
linewidth=0.3)
ax.text(ALL[key][0] + (ALL[key][1] - ALL[key][0]) / 2, key[2], str(key[0]) + "," + str(key[1]), ha='center',
va='center', fontsize=8)
if ALL[key][1] > makespan:
makespan = ALL[key][1]
for i, (t_inizio, duration, prodotto, mac_pre, mac_post, ta) in enumerate(result_sch[3]):
if mac_pre != 0 and mac_post != 0:
ax.barh(mac_pre + 0.4, duration, left=t_inizio, height=0.2, color='orange',
edgecolor='black')
ax.text(t_inizio + duration / 2, mac_pre + 0.4, str(prodotto) + str(mac_pre) + str(mac_post), ha='center',
va='center', color='black', fontsize=6)
if mac_pre == 0:
ax.barh(mac_post - 0.4, duration, left=ta - duration, height=0.2, color='orange',
edgecolor='black')
ax.text(ta - duration / 2, mac_post - 0.4, str(prodotto) + 'LU' + str(mac_post), ha='center',
va='center', color='black', fontsize=6)
if mac_post == 0:
if duration != 0:
ax.barh(mac_pre - 0.4, duration, left=t_inizio, height=0.2, color='orange',
edgecolor='black')
ax.text(t_inizio + duration / 2, mac_pre - 0.4, str(prodotto) + str(mac_pre) + 'LU', ha='center',
va='center', color='black', fontsize=6)
# Determine the locator parameters based on the makespan
if makespan <= 100:
major_tick_locator = 5
minor_tick_locator = 1
elif makespan <= 200: # Adjust these ranges as needed
major_tick_locator = 10
minor_tick_locator = 5
elif makespan <= 400: # Adjust these ranges as needed
major_tick_locator = 25
minor_tick_locator = 5
else:
major_tick_locator = 50
minor_tick_locator = 10
# Set the locator for the major ticks
ax.xaxis.set_major_locator(ticker.MultipleLocator(major_tick_locator))
# For minor ticks, set them according to the determined interval
ax.xaxis.set_minor_locator(ticker.MultipleLocator(minor_tick_locator))
# Only draw grid lines for the minor ticks (which are at every single unit)
ax.grid(which='minor', axis='x', linestyle=':', alpha=0.1)
# Optionally, if you want to see major grid lines as well (at multiples of 5), you can enable this:
ax.grid(which='major', axis='x', linestyle=':', alpha=0.2)
ax.set_xlabel("Time")
ax.set_ylabel("Machine")
ax.set_yticks(range(1, m + 1))
ax.set_yticklabels([f"M{i}" for i in range(1, m + 1)])
plt.show()
'''