# Input files input_data_path = './input/System Design Input v08.xlsx' consumer_data_path = './input/Consumer Data Input v05 one month.xlsx' # GA parameter pop_size = 600 n_gen = 50 tourn_size = 3 crossover_prob = 0.5 mut_prob = 0.5 # Objective weights -> all minimized power_objective = 3 blocked_hours_objective = 2 possible_hours_objective = 1 parallel_schedule_objective = 100 # timeframe_objective = -1.0 # Not needed since timeframe violations are not possible due to seeding and mutation # General parameters optimization_start = 0 optimization_length = 8760 use_multiprocessing = False # Buffer in kW of that scheduled consumption needs to be below produced power [kW]. power_buffer = 1