X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=examples%2Fplacement-models-minizinc%2Fvdns-plus-vfw-use-case%2Fsilver.dzn;fp=examples%2Fplacement-models-minizinc%2Fvdns-plus-vfw-use-case%2Fsilver.dzn;h=4779a41f2296729b48a8ef3b5955f15ea31c6b91;hb=aa358e298d345da0582ad1ea3b496bb44650a4f1;hp=0000000000000000000000000000000000000000;hpb=f2541009309551548ed3567adbdc8f2e5b78d185;p=optf%2Fosdf.git diff --git a/examples/placement-models-minizinc/vdns-plus-vfw-use-case/silver.dzn b/examples/placement-models-minizinc/vdns-plus-vfw-use-case/silver.dzn new file mode 100755 index 0000000..4779a41 --- /dev/null +++ b/examples/placement-models-minizinc/vdns-plus-vfw-use-case/silver.dzn @@ -0,0 +1,62 @@ +% enum CUST_TYPES = { STANDARD, SILVER, GOLD }; +% enum ATTRIBUTES = { CORE_DC, DIRECT_CONN, MIN_GUARANTEE, SRIOV }; +% enum METRICS = { AVG_CPU_UTILIZATION, PEAK_CPU_UTILIZATION }; +% enum CLOUD_REGION_CAPACITY = {CPU_CLOUD, MEMORY_CLOUD}; + +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; +N_VNFS = 2; + +w_metrics = [0.9, 0.1]; +w_attributes = [0.1, 0.9, 0.05, 0.05]; + +capabilities = [| 0, 1, 1, 1 + | 1, 0, 1, 1 + | 1, 1, 0, 1 |]; + +cpu_utilization = [| 0.05, 0.9 + | 0.1, 0.5 + | 0.6, 0.8 |]; + +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 = [| 1, 4 + | 2, 8 + | 4, 16 |]; + +%vm_reqs_sums = [ 14, 56 ]; + +vm_reqs_sums_norm = [| 0.007, 0.014 + | 0.0035, 0.007 + | 0.00175, 0.0035 |];