Skip to main content

Interference Minimization

After site selection is complete and finalized, the next step selects the links and sectors in order to minimize interference in the network. At this stage, P2MP, deployment, and interference constraints are incorporated into optimization.

Note: the exact implementation of the objective function and/or constraints in the code might slightly differ from what is written here, but they should be equivalent.

Objective Function

The objective is to minimize the shortage in the network just as in Coverage Maximization.

miniSDEMϕi\min\sum_{i \in \mathcal{S}_{DEM}} \phi_i

or

maxminiSDEM(diϕi)\max\min_{i \in \mathcal{S}_{DEM}} \left (d_i - \phi_i \right)

However, we also want as many additional links to be included as possible in order to ensure as much redundancy in the network as possible. Otherwise, the optimizer has no incentive to include links that do not serve to minimize the shortage. Thus, we also include the term

(i,j)Lwi,ji,j\sum_{(i,j) \in \mathcal{L}} w_{i,j} \ell_{i, j}

where the weight wi,jw_{i,j} is a decreasing function of the link's length. Thus, the total objective function becomes

min(MiSDEMϕi(i,j)Lwi,ji,j)\min \left(M \sum_{i \in \mathcal{S}_{DEM}} \phi_i - \sum_{(i,j) \in \mathcal{L}} w_{i,j} \ell_{i, j} \right)

or

max(MminiSDEM(diϕi)+(i,j)Lwi,ji,j)\max \left(M \min_{i \in \mathcal{S}_{DEM}} \left (d_i - \phi_i \right) + \sum_{(i,j) \in \mathcal{L}} w_{i,j} \ell_{i, j} \right)

where MM is some large value (i.e., some relative weighting between the two components of the objective function).

Constraints

Most of the constraints are similar to those before (Flow Balance and Flow Capacity are unchanged) but with some slight modifications due to the addition of the link selection decision variable i,j\ell_{i,j}.

Time Division Multiplexing

In addition to the Time Division Multiplexing constraint from before, time division multiplexing on a link is forced to 0 if the link is not selected.

τi,ji,j          (i,j)L\tau_{i,j} \leq \ell_{i,j}\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Due to Flow Capacity, this automatically ensures that

fi,ji,jti,j          (i,j)Lf_{i,j} \leq \ell_{i,j} t_{i,j}\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Polarity

The polarity of connected sites must be opposite.

i,jpi+pj          (i,j)L:i,jSPOPSDN\ell_{i,j} \leq p_i + p_j\; \; \; \; \; \forall (i,j) \in \mathcal{L}:i,j \in \mathcal{S}_{POP}\cup\mathcal{S}_{DN}
i,j2pipj          (i,j)L:i,jSPOPSDN\ell_{i,j} \leq 2 - p_i - p_j\; \; \; \; \; \forall (i,j) \in \mathcal{L}:i,j \in \mathcal{S}_{POP}\cup\mathcal{S}_{DN}

This ensures that if i,j>0\ell_{i,j} > 0, then pipjp_i \neq p_j.

Sector

A sector can only be selected if the site is also selected.

σi,ksi          kKi,iS\sigma_{i,k} \leq s_i\; \; \; \; \; \forall k \in \mathcal{K_i},i \in \mathcal{S}

In this case, sis_i is no longer a decision variable but simply a value based on the site selection decisions of the previous optimization steps.

When a node contains multiple sectors, if one sector in the node is selected, all sectors in that node are selected. We define nkn_k to be the node that contains sector k, then

σi,k=σi,l          k,lKi:nk=nl,iS\sigma_{i, k} = \sigma_{i, l}\; \; \; \; \; \forall k,l \in \mathcal{K_i}:n_k=n_l,i \in \mathcal{S}

A link can only be selected if the sectors it is connected to are also selected.

i,jσi,k          (i,j)L:(i,j)Λi,k\ell_{i, j} \leq \sigma_{i, k}\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{i, k}
i,jσj,κ          (i,j)L:(i,j)Λj,κ\ell_{i, j} \leq \sigma_{j, \kappa}\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{j, \kappa}

Backhaul links are bi-directional but are modeled with two separate directed links. If a link is selected, its reverse must also be selected.

i,j=j,i          (i,j)L:(j,i)L\ell_{i, j} = \ell_{j, i}\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (j, i) \in \mathcal{L}

Point-to-Multipoint

A DN sector can connect to a limited number of other sectors. The number of DN-DN connections, PD\mathcal{P}_{D}, and the number of total connections, PT\mathcal{P}_{T}, are each limited (both are user-specified configurations).

jSPOPSDN:(i,j)Λi,ki,jPD          kKi,iS\sum_{j \in \mathcal{S}_{POP}\cup\mathcal{S}_{DN}:(i, j) \in \Lambda_{i, k}} \ell_{i, j} \leq \mathcal{P}_{D}\; \; \; \; \; \forall k \in \mathcal{K}_{i},\forall i \in \mathcal{S}
jSPOPSDNSCN:(i,j)Λi,ki,jPT          kKi,iS\sum_{j \in \mathcal{S}_{POP}\cup\mathcal{S}_{DN}\cup\mathcal{S}_{CN}:(i, j) \in \Lambda_{i, k}} \ell_{i, j} \leq \mathcal{P}_{T}\; \; \; \; \; \forall k \in \mathcal{K}_{i},\forall i \in \mathcal{S}

Generally, PD=2\mathcal{P}_{D} = 2 and PT=15\mathcal{P}_{T} = 15.

CNs can only have a single incoming link

iS:(i,j)Li,j1          jSCN\sum_{i \in \mathcal{S}:(i,j) \in \mathcal{L}} \ell_{i, j} \leq 1\; \; \; \; \; \forall j \in \mathcal{S}_{CN}

Deployment Guidelines

We enforce two deployment guidelines/constraints: for any two links leaving different sectors on the same site,

  • The angle between them must be at least α\alpha
  • The angle between them must be at least θ\theta if the ratio of their link distances (larger distance over smaller) is greater than ρ\rho.

Typical values are α=25\alpha = 25, θ=45\theta = 45 and ρ=3\rho = 3 (all are user-specified configurations).

We identify all link pairs (i,j)L(i, j) \in \mathcal{L} and (i,k)L{(i, k) \in \mathcal{L}} that violate these conditions. Define Q\mathcal{Q} to be the set of all such {(i,j),(i,k)}\{(i, j),(i,k)\} link pairs.

i,j+i,k1          {(i,j),(i,k)}Q\ell_{i, j} + \ell_{i, k} \leq 1\; \; \; \; \; \forall \{(i, j),(i, k)\} \in \mathcal{Q}

Interference

In order to incorporate interference into the model, we use the SINR of a link to determine its MCS class which is then used to modify its capacity. The SINR is determined based on how much time interference-causing links are transmitting and how much interference they cause while the interfered-on link is simultaneously transmitting. All of this is expressed using a linear function of various decisions variables.

The SINR (in dBm) on link (i,j)(i,j) is calculated as

SINRi,j=10log10RSLi,jNp+(k,l)τk,lIk,li,jSINR_{i,j} = 10\log_{10}\frac{RSL_{i,j}}{N_p + \sum_{(k,l)}{\tau_{k,l}I^{i,j}_{k,l}}}

where RSLi,jRSL_{i,j} is the received signal level for the link (i,j)(i, j) in mW, Ik,li,jI^{i,j}_{k,l} is the interference caused by the link (k,l)(k,l) on the link (i,j)(i, j) in mW, and NpN_p is the noise power in mW. In order for the link (k,l)(k, l) to cause interference on link (i,j)(i, j):

  • There must be LOS from site kk to site jj
  • The receiving sector for link (i,j)(i, j) must be the same as the receiving sector for the LOS (k,j)(k, j)
  • The transmitting sector for link (k,l)(k, l) must be the same as the transmitting sector for the LOS (k,j)(k, j)
  • Sites jj and kk must have opposite polarity.

Time division multiplexing is incorporated into this equation in order to scale the amount of interference based on how much time the interference-causing link is actually transmitting. While not precise, for planning purposes, this hopefully provides a reasonable approximation. For example, it is useful for removing redundant links from interference considerations.

Ik,li,jI^{i,j}_{k,l} is pre-computed prior to the optimization. An issue with this is that through transmit power modulation, the links do not necessarily transmit at full power. However, incorporating this as a decision variable would greatly complicate this model. Thus, for planning purposes, the worst-case-scenario of maximum transmit power is assumed.

Unfortunately, as written, the expression for SINR is not linear in the decision variables. However, define Si,j=10SINRi,j10S_{i,j}=10^\frac{SINR_{i,j}}{10} (converting SINR from dBm to mW), then

Si,j1=Np+(k,l)τk,lIk,li,jRSLi,jS^{-1}_{i,j}=\frac{N_p + \sum_{(k,l)}{\tau_{k,l}I^{i,j}_{k,l}}}{RSL_{i,j}}

which is a linear function of the decision variables τk,l\tau_{k,l}.

Hidden in this is that the polarity decisions are also part of this equation. Namely, we require that pkpjp_k \neq p_j. Because polarity decisions are not made for CNs, it is easier to require that pk=pip_k = p_i, which is equivalent (if pi=pjp_i = p_j then the link (i,j)(i, j) cannot be selected). We add a decision variable ϱk,i{0,1}\varrho_{k,i} \in \{0,1\} which is 1 if sites kk and ii have the same polarity and 0 otherwise. Then this expression is really

Si,j1=Np+(k,l)τk,lϱk,iIk,li,jRSLi,jS^{-1}_{i,j}=\frac{N_p + \sum_{(k,l)}{\tau_{k,l}\varrho_{k,i}I^{i,j}_{k,l}}}{RSL_{i,j}}

This is no longer a linear function of decision variables, but it can be linearized by introducing a different decision variable χi,k,l[0,1]\chi_{i,k,l} \in [0,1] which is τk,l\tau_{k,l} if sites kk and ii have the same polarity and 0 otherwise. Then this expression becomes

Si,j1=Np+(k,l)χi,k,lIk,li,jRSLi,jS^{-1}_{i,j}=\frac{N_p + \sum_{(k,l)}{\chi_{i,k,l}I^{i,j}_{k,l}}}{RSL_{i,j}}

In order to ensure that χi,k,l\chi_{i,k,l} has the desired properties, we have the following constraints

χi,k,l1+pipk\chi_{i,k,l} \leq 1 + p_i - p_k
χi,k,l1pi+pk\chi_{i,k,l} \leq 1 - p_i + p_k
χi,k,lτk,l\chi_{i,k,l} \leq \tau_{k,l}
χi,k,lτk,l+pi+pk2\chi_{i,k,l} \geq \tau_{k,l} + p_i + p_k - 2
χi,k,lτk,lpipk\chi_{i,k,l} \geq \tau_{k,l} - p_i - p_k

Thus, if pi=pkp_i=p_k, then these constraints become χi,k,l1\chi_{i,k,l} \leq 1, χi,k,lτk,l\chi_{i,k,l} \leq \tau_{k,l}, χi,k,lτk,l\chi_{i,k,l} \geq \tau_{k,l}, and χi,k,lτk,l2\chi_{i,k,l} \geq \tau_{k,l} - 2. This is only satisfied if χi,k,l=τk,l\chi_{i,k,l} = \tau_{k,l}. If pipkp_i \neq p_k, then these constraints become χi,k,l2\chi_{i,k,l} \leq 2, χi,k,l0\chi_{i,k,l} \leq 0,χi,k,lτk,l\chi_{i,k,l} \leq \tau_{k,l}, χi,k,lτk,l1\chi_{i,k,l} \geq \tau_{k,l} - 1. This is only satisfied if χi,k,l=0\chi_{i,k,l}=0.

Now that Si,j1S^{-1}_{i,j} is a linear function of decision variables, it has to be mapped to the modified link capacity based on the MCS class. Using a sample MCS table, we add an extra column which is S1S^{-1}.

MCSSINR (dBm)Throughput (Mbps)SINR Inverse (1/mW)
3300.501
44.567.50.355
551150.316
65.52600.282
77.5452.50.178
896450.126
912741.250.063
101410300.040
111614150.025
121818000.016

Create a decision variable for each MCS class for each link, μi,j,m{0,1}\mu_{i,j,m} \in \{0,1\} which 1 if link (i,j)(i,j) is in MCS class mm. Assume there are M\mathcal{M} such MCS classes (here, the classes are m{1,,M}m \in \{1,\ldots,\mathcal{M}\} even if the MCS class itself has a different number, e.g., m=1m=1 refers to MCS class 3). A link can only belong to one MCS class.

m=1Mμi,j,m1          (i,j)L\sum^{\mathcal{M}}_{m=1} \mu_{i,j,m} \leq 1\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Denote ϑm\vartheta_m and υm\upsilon_m to be the throughput and SINR Inverse corresponding to MCS class mm. If Si,j1υMS^{-1}_{i,j} \leq \upsilon_\mathcal{M}, then μi,j,M=1\mu_{i,j,\mathcal{M}}=1. If υM<Si,j1υM1\upsilon_\mathcal{M} < S^{-1}_{i,j} \leq \upsilon_\mathcal{M-1}, then μi,j,M1=1\mu_{i,j,\mathcal{M-1}}=1. Continuing to the end, if υ3<Si,j1υ2\upsilon_3 < S^{-1}_{i,j} \leq \upsilon_2, then μi,j,2=1\mu_{i,j,2}=1 and finally, υ2<Si,j1M\upsilon_2 < S^{-1}_{i,j} \leq M where M is some appropriately large value, μi,j,1=1\mu_{i,j,1}=1. For this final constraint, we use MM instead of υ1\upsilon_1 because links with Si,j1>υ1S^{-1}_{i,j} > \upsilon_1 still belong to class 1. In the example above, this is equivalent to saying that links with SINR less than 3 dBm are in MCS class 3. As a single constraint, this is

Si,j1Mμi,j,1+m=2Mμi,j,mυm          (i,j)LS^{-1}_{i,j} \leq M \mu_{i,j,1} + \sum^{\mathcal{M}}_{m=2} \mu_{i,j,m} \upsilon_m\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Although Si,j1S^{-1}_{i,j} is not bounded on both sides, we know that the optimization will try to maximize the throughput so at optimum it will not choose an MCS class lower than necessary provided it does not violate the SINR Inverse constraint. In the example above, this is equivalent to saying that a link with, e.g., SINR of 15 dBm can be of MCS class up to 10. If 1030 Mbps of throughput is needed for that link, the optimizer will select MCS 10. If only 400 Mbps of throughput is needed, the optimizer will select MCS 7-10, but between those options, the actual decision is irrelevant.

Finally, the flow is bounded by the appropriate throughput

fi,jm=1Mμi,j,mϑm          (i,j)Lf_{i,j} \leq \sum^{\mathcal{M}}_{m=1} \mu_{i,j,m} \vartheta_m\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Technically the bound on the flow should also be scaled by τi,j\tau_{i,j}, but this would make the constraint quadratic and linearizing it would make the size of the optimization problem significantly larger, so it is omitted here. The scaling is still done in the Flow Capacity constraints but omitting it means the flow on the link can be larger than it technically should be. While this is not ideal, by minimizing interference, the optimizer can limit the severity of this omission. The judgement being made here is that the scaling would hopefully not impact the overall network plan significantly enough to warrant its inclusion.

Multi-Channel Constraints

For networks that can support it, enabling multi-channel can reduce the amount of interference and improve overall network performance. The assumption is that links on different channels do not interfere with each other. Thus if link (k,l)(k, l) is causing a lot of interference on link (i,j)(i, j), the optimizer can put those links on different channels to remove the interference.

Critically, we do not currently model link capacity differences between the channels. We use a single driving frequency and derive the link capacities and interference from that. A future improvement would be to address this shortcoming. However, because of this, the channel selected by the optimizer has an arbitrary association with the actual channel number. Some post-processing might involve assigning the most commonly selected channel to the one with the best real-world performance.

There are two constraints that are impacted by multi-channel planning. The first is Deployment Guidelines and the second is Interference. That is, links on different channels do not violate deployment guidelines and do not cause interference on each other.

Formally, the channel decision is associated with each sector. However, instead of having several channel decisions for each sector, the sector decisions themselves are slightly modified. Whereas before we had σi,k\sigma_{i,k} decision variables, we now have σi,k,c\sigma_{i,k,c} for c{1,,C}c \in \{1,\ldots,C\}. That is, there are now CC sector decisions for each physical sector, with each one corresponding to a sector on a particular channel. This is not the case for CN sectors which automatically take on the channel of the serving DN and therefore do not need additional decision variables.

Multi-Channel Sector

Sectors can only have one channel.

c=1Cσi,k,c1          kKi,iS\sum^{C}_{c=1} \sigma_{i,k,c} \leq 1 \; \; \; \; \; \forall k \in \mathcal{K}_{i}, i \in \mathcal{S}

Some of the other sector constraints are also modified. A sector can only be selected if the site is also selected

c=1Cσi,k,csi          kKi,iS\sum^{C}_{c=1} \sigma_{i,k,c} \leq s_i\; \; \; \; \; \forall k \in \mathcal{K_i},i \in \mathcal{S}

When a node contains multiple sectors, if one sector in the node is selected, all sectors in that node are selected.

c=1Cσi,k,c=c=1Cσi,l,c          k,lKi:nk=nl,iS\sum^{C}_{c=1} \sigma_{i,k,c} = \sum^{C}_{c=1} \sigma_{i,l,c}\; \; \; \; \; \forall k,l \in \mathcal{K_i}:n_k=n_l,i \in \mathcal{S}

A link can only be selected if the sectors it is connected to are also selected.

i,jc=1Cσi,k,c          (i,j)L:(i,j)Λi,k\ell_{i, j} \leq \sum^{C}_{c=1} \sigma_{i,k,c}\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{i, k}
i,jc=1Cσj,κ,c          (i,j)L:(i,j)Λj,κ\ell_{i, j} \leq \sum^{C}_{c=1} \sigma_{j,\kappa,c}\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{j, \kappa}

For multi-channel, an additional constraint requires that the two sectors connecting the link must have the same channel. This additional constraint is not required if the receiving site is a CN.

i,jσi,k,cσj,κ,c+1          (i,j)L:(i,j)Λi,kΛj,κ,c{1,,C}\ell_{i,j} \leq \sigma_{i,k,c} - \sigma_{j,\kappa,c} + 1\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{i, k}\cap \Lambda_{j, \kappa}, \forall c \in \{1,\ldots,C\}
i,jσj,κ,cσi,k,c+1          (i,j)L:(i,j)Λi,kΛj,κ,c{1,,C}\ell_{i,j} \leq \sigma_{j,\kappa,c} - \sigma_{i,k,c} + 1\; \; \; \; \; \forall (i, j) \in \mathcal{L}: (i, j) \in \Lambda_{i, k}\cap \Lambda_{j, \kappa}, \forall c \in \{1,\ldots,C\}

Thus, if σi,k\sigma_{i,k} and σj,κ\sigma_{j,\kappa} are on the same channel, then these constraints become i,j1\ell_{i,j} \leq 1. If they are on different channels, then for some channel, the one of the constraints becomes i,j0\ell_{i,j} \leq 0.

Multi-Channel Deployment Guidelines

The deployment guidelines/constraints only apply if the two sectors that the links are leaving from are on the same channel. If they are on different channels, then the constraint does not apply. To model this, we introduce binary decision variables, we will call them deployment links, ζi,j,c{0,1}\zeta_{i,j,c} \in \{0,1\} for all the links in Q\mathcal{\overline{Q}} which is 1 if link i,j\ell_{i,j} is on channel cc. Q\mathcal{\overline{Q}} is the "flattened" version of Q\mathcal{Q} containing each link of all link pairs separately and it should be much smaller than L\mathcal{L}, so we do not need to do this for all links.

A deployment link can only be selected if its corresponding link is selected.

ζi,j,ci,j          (i,j)Q,c{1,,C}\zeta_{i,j,c} \leq \ell_{i,j}\; \; \; \; \; \forall (i, j) \in \mathcal{\overline{Q}}, \forall c \in \{1,\ldots,C\}

Furthermore, the deployment link is connected to a sector of the same channel.

ζi,j,cσi,k,c          (i,j)Q:(i,j)Λi,k,c{1,,C}\zeta_{i,j,c} \leq \sigma_{i,k,c}\; \; \; \; \; \forall (i, j) \in \mathcal{\overline{Q}}: (i, j) \in \Lambda_{i, k}, \forall c \in \{1,\ldots,C\}
ζi,j,cσj,κ,c          (i,j)Q:(i,j)Λj,κ,c{1,,C}\zeta_{i,j,c} \leq \sigma_{j,\kappa,c}\; \; \; \; \; \forall (i, j) \in \mathcal{\overline{Q}}: (i, j) \in \Lambda_{j, \kappa}, \forall c \in \{1,\ldots,C\}

If the receiving site is a CN, the last constraint is slightly modified because there are no channel decisions on CNs.

ζi,j,cσj,κ          (i,j)Q:(i,j)Λj,κ,c{1,,C}\zeta_{i,j,c} \leq \sigma_{j,\kappa}\; \; \; \; \; \forall (i, j) \in \mathcal{\overline{Q}}: (i, j) \in \Lambda_{j, \kappa}, \forall c \in \{1,\ldots,C\}

However, the deployment link must be selected if the link is selected and both sectors on a particular channel are selected.

ζi,j,ci,j+σi,k,c+σj,κ,c2          (i,j)Q:(i,j)Λi,kΛj,κ,c{1,,C}\zeta_{i,j,c} \geq \ell_{i,j} + \sigma_{i,k,c} + \sigma_{j,\kappa,c} - 2\; \; \; \; \; \forall (i, j) \in \mathcal{\overline{Q}}: (i, j) \in \Lambda_{i, k}\cap \Lambda_{j, \kappa}, \forall c \in \{1,\ldots,C\}

Finally, the deployment guidelines constraint becomes

ζi,j,c+ζi,k,c1          {(i,j),(i,k)}Q,c{1,,C}\zeta_{i,j,c} + \zeta_{i,k,c} \leq 1\; \; \; \; \; \forall \{(i, j),(i, k)\} \in \mathcal{Q}, \forall c \in \{1,\ldots,C\}

Multi-Channel Time Division Multiplexing

In order to model multi-channel interference, we need to modify the time division multiplexing decision variable to incorporate channels. Whereas before we had τi,j\tau_{i,j} decision variables, we now have τi,j,c\tau_{i,j,c} for c{1,,C}c \in \{1,\ldots,C\}.

Before dissecting the interference constraints, we first see how it modifies some of the other time division multiplexing constraints.

The sum of the time division multiplexing decision on each sector does not change much.

jS:(i,j)Λi,kτi,j,cσi,k,c          kKi,iS,c{1,,C}\sum_{j \in \mathcal{S}:(i,j) \in \mathcal{\Lambda}_{i, k}} \tau_{i,j,c} \leq \sigma_{i,k,c}\; \; \; \; \; \forall k \in \mathcal{K_i},i \in \mathcal{S}, \forall c \in \{1,\ldots,C\}
jS:(j,i)Λj,kτj,i,cσi,k,c          kKi,iS,c{1,,C}\sum_{j \in \mathcal{S}:(j,i) \in \mathcal{\Lambda}_{j, k}} \tau_{j,i,c} \leq \sigma_{i,k,c}\; \; \; \; \; \forall k \in \mathcal{K_i},i \in \mathcal{S}, \forall c \in \{1,\ldots,C\}

This also ensures that the time division multiplexing decision is 0 on channels that are not selected.

Flow capacity has to be updated

fi,jc=1Cτi,j,cti,j          (i,j)Lf_{i,j} \leq \sum^{C}_{c=1} \tau_{i,j,c} t_{i,j}\; \; \; \; \; \forall (i,j) \in \mathcal{L}

as does the constraint that time division multiplexing is 0 if the link is not selected

c=1Cτi,j,ci,j          (i,j)L\sum^{C}_{c=1} \tau_{i,j,c} \leq \ell_{i,j}\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Multi-Channel Interference

Due to the change in the time division multiplexing decision variable, χi,k,l\chi_{i,k,l} becomes χi,k,l,c\chi_{i,k,l,c} for c{1,,C}c \in \{1,\ldots,C\}. Then, we have

Si,j,c1=Np+(k,l)χi,k,l,cIk,li,jRSLi,jS^{-1}_{i,j,c}=\frac{N_p + \sum_{(k,l)}{\chi_{i,k,l,c}I^{i,j}_{k,l}}}{RSL_{i,j}}

Critically, this is done for each channel separately. Thus, if all links (k,l)(k, l) are communicating on a different channel than (i,j)(i, j), (k,l)χi,k,l,cIk,li,j=0\sum_{(k,l)}{\chi_{i,k,l,c}I^{i,j}_{k,l}} = 0 because the time division multiplexing decision variable will be 0.

The remaining MCS class decision variable, μi,j,m\mu_{i,j,m} becomes μi,j,c,m\mu_{i,j,c,m} for c{1,,C}c \in \{1,\ldots,C\}. Then we have

m=1Mμi,j,c,m1          (i,j)L,c{1,,C}\sum^{\mathcal{M}}_{m=1} \mu_{i,j,c,m} \leq 1\; \; \; \; \; \forall (i,j) \in \mathcal{L}, \forall c \in \{1,\ldots,C\}

and

Si,j,c1Mμi,j,c,1+m=2Mμi,j,c,mυm          (i,j)L,c{1,,C}S^{-1}_{i,j,c} \leq M \mu_{i,j,c,1} + \sum^{\mathcal{M}}_{m=2} \mu_{i,j,c,m} \upsilon_m\; \; \; \; \; \forall (i,j) \in \mathcal{L}, \forall c \in \{1,\ldots,C\}

Additionally, we have to enforce that the chosen MCS class has positive capacity for only one of the channels.

c=1Cμi,j,c,1C1          (i,j)L\sum^{C}_{c=1} \mu_{i,j,c,1} \geq C - 1\; \; \; \; \; \forall (i,j) \in \mathcal{L}

With this, the flow is bounded by the appropriate throughput

fi,jc=1Cm=1Mμi,j,c,mϑm          (i,j)Lf_{i,j} \leq \sum^{C}_{c=1} \sum^{\mathcal{M}}_{m=1} \mu_{i,j,c,m} \vartheta_m\; \; \; \; \; \forall (i,j) \in \mathcal{L}

Like before, technically the bound on the flow should also be scaled by τi,j,c\tau_{i,j,c}, but for the same reason, it is omitted here.

Here, we must also ensure that the time division multiplexing decision corresponds to the channel that has positive capacity. Without this, say channel 0 has positive capacity and channel 1 has zero capacity: the flow is bounded by the capacity of the positive capacity channel independent of the time division multiplexing (and channel) decision itself. Thus, the optimizer could choose sector/link channel 1 but still have positive flow across the link.

τi,j,c1μi,j,c,1          (i,j)L,c{1,,C}\tau_{i,j,c} \leq 1 - \mu_{i,j,c,1}\; \; \; \; \; \forall (i,j) \in \mathcal{L}, \forall c \in \{1,\ldots,C\}