I am currently working on a project where I am modelling a set of combined heat and power production units (CHP).
I am using linear programming to do this for now.
The main idea is to minimize the overall production cost. In order to that one must consider the taxation on the fuel type used. The general idea is that heat produced with fossil fuels will have a tax on it and power produced with green energy will have a subsidy on it.
In order to calculate this I could do the following:
FossilShare = FossilFuel / TotalFuel
FossilHeat = FossilShare * Q
GreenPower = (1-FossilShare) * P
Where P and Q are the heat and power produced. Then my taxation cost function would be as following:
Cost = FossilHeat * Tax - GreenPower * subsidy
The problem, however, is that this is not linear. I cannot think of a way to linearise this and I cannot think of another way of doing it, because I need to calculate the portion of heat produced with fossil fuel and the portion of power produced with green energy.
Any help or suggestions would be much appreciated.
Thanks in advance
M. Frank