You are on page 1of 1

//example

n = 6; //number of departments
p = 4; //number of floors
ne = 1; //number of elevators

beta = 2; //apect ratio


A = [16, 16, 16, 36, 9, 9]; //departments area
wf = 7.1;//width of the floors
hf = 9.2;//height of the floors

he = [2]; //height of the elevators


we = [2]; //width of the elevators
delta = 10;//vertical distance

//1 2 3 4 5 6
f = [[0, 0, 0, 5, 0, 0],
[0, 0, 0, 3, 0, 0],
[0, 0, 0, 2, 0, 0],
[0, 0, 0, 0, 4, 4],
[0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0]];

ch = [[0, 1, 1, 1, 1, 1],
[0, 0, 1, 1, 1, 1],
[0, 0, 0, 1, 1, 1],
[0, 0, 0, 0, 1, 1],
[0, 0, 0, 0, 0, 1],
[0, 0, 0, 0, 0, 0]];

cv = [[0, 5, 5, 5, 5, 5],
[0, 0, 5, 5, 5, 5],
[0, 0, 0, 5, 5, 5],
[0, 0, 0, 0, 5, 5],
[0, 0, 0, 0, 0, 5],
[0, 0, 0, 0, 0, 0]];

You might also like