Elementary modelΒΆ

The elementary model, uses the following objective function .. math:

\sum_{t=1}^{t=t_{end}} \Big( \sum_{i=1}^{i=j} P_{cost}[i] \cdot P[i,t]  \Big)

where \(t_{end}\) is the end time of the series, \(P_{cost}[i]\) is the cost of generator at place i (e.g. the i th generator) \(P[i,t]\) is the power that can be generated by an generator at time \(t\)

With the following constrains: The power delivered from the generator on time interval \(t\) cannot be larger then maximum power of the generator and should be higher then the minimum power the generator must deliver .. math:

P_{min}[i] \leq P[i,t] \leq P_{max}[i]

Where \(P_{min}[i]\) is the minimum power generator i can deliver , \(P[i,t]\) is the desired power at time \(t\) , \(P_{max}[i]\) is the maximum power generator i can deliver

Generated power and load needed should be matched, the sum off all the powers at a time instance \(t\) needs to match the load at an time instance \(t\) .. math:

\sum_{i=1}^{i=j}  P[i,t]  = Load[t]

Where \(Load[t]\) is the load at time instance \(t\)

As seen from above the elementary case does not incorporate technical constrains for the generators and the lines connecting them. This makes the linear program simpler and equires thus less computation time.