aboutsummaryrefslogtreecommitdiffstats
path: root/examples/placement-models-minizinc/vdns-plus-vfw-use-case/normal-silver-less-pref.dzn
blob: 1184ecebbda184224f8220cc351997f17947c51e (plain)
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
N_CLOUD_REGIONS = 3;  % e-dc-1, core-dc-1, core-dc-2
N_ATTRIBUTES = 4;
N_UTILIZATION_METRICS = 2;
N_CAPACITY_METRICS = 2;
N_VMS = 3;
C_ALLOC_THRESHOLD = 0.65;
CUST_ALLOC_THRESHOLD = 0.95;
AVG_CPU_UTILIZATION_THRESHOLD = 0.7;
PEAK_CPU_UTILIZATION_THRESHOLD = 0.95;

cust_type = SILVER;

w_metrics = [0.9, 0.1];
w_attributes = [0, 0.9, 0.05, 0.05];

%{ CORE_DC, DIRECT_CONN, MIN_GUARANTEE, SRIOV };
capabilities = [| 0, 1, 1, 1
                | 1, 0, 1, 1
                | 1, 1, 0, 1 |];

cpu_utilization = [| 0.05, 0.9
                   | 0.5, 0.94
                   | 0.5, 0.94 |];

c_alloc_capacity = [| 600, 1200
                    | 1200, 2400
                    | 2400, 4800 |];

c_total_capacity = [| 1000, 2000
                    | 2000, 4000
                    | 4000, 8000 |];

c_alloc_capacity_norm = [| 0.6, 0.6
                         | 0.6, 0.6
                         | 0.6, 0.6 |];

cust_alloc_capacity = [| 60, 120
                       | 120, 240
                       | 240, 480 |];

cust_total_capacity = [| 100, 200
                       | 200, 400
                       | 400, 800 |];

cust_alloc_capacity_norm = [| 0.6, 0.6
                            | 0.6, 0.6
                            | 0.6, 0.6 |];

vm_reqs = [| 2, 8
           | 4, 16
           | 8, 32 |];

%vm_reqs_sums = [ 14, 56 ];

vm_reqs_sums_norm = [| 0.014, 0.028
                     | 0.007, 0.014
                     | 0.0035, 0.007 |];