Objective function formulation for MILP problem.

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
-1
down vote

favorite
1












I am trying to make the problem formulation using the MILP.



The objective of the problem is to schedule the appliance based on the time slot and operation mode (kind of energy it uses) with respect to minimize the CO2 emission of the house.



The house includes a set of appliances some of them use electricity for its operation, some use Natural gas and some use Hot water and electricity both for its operation. For instance, a washing machine uses electricity to heat the hot water or it can use hot water directly from the hot water storage tank.



Each appliance denoted by i, each appliance has subtasks denoted by j. 24 hours a day is divided into 96 slots, each slot represents 15 minutes.



I have introduced 3 binary decision variable to create an objective function.



$x_k,i,j^electricity$ indicates whether subtask j of appliance i at time slot k processed by electricity or not. 1 = processed, 0 = not processed.



$y_k,i,j^gas$ indicates whether subtask j of appliance i at time slot k processed by gas or not. 1 = processed, 0 = not processed.



$z_k,i,j^hotwater$ indicates whether subtask j of appliance i at time slot k processed by hot water or not. 1 = processed, 0 = not processed.



objective function:



$$sum_k=1^96sum_i=1^Nsum_j=1^n_i E_k,i,j^electricity.P_k,i,j.x_k,i,j^electricity + E_k,i,j^gas [G_k,i,j.y_k,i,j^gas + H_k,i,j.z_k,i,j^hotwater] $$



where,



E_k,i,j^electricity co2 emission produced by electricity.



P_k,i,j.x_k,i,j amount of electricity used by appliances.



E_k,i,j^gas co2 emission produced by natural gas.



G_k,i,j amount of natural gas used.



H_k,i,j amount of hot water used.



Here i am producing hot water from CHP, so if we use hot water in the appliances it indirectly using the gas.



I want to know whether this objective function correct or not. I am still planning to write constraints.



It would be great if some one guide me.







share|cite|improve this question























    up vote
    -1
    down vote

    favorite
    1












    I am trying to make the problem formulation using the MILP.



    The objective of the problem is to schedule the appliance based on the time slot and operation mode (kind of energy it uses) with respect to minimize the CO2 emission of the house.



    The house includes a set of appliances some of them use electricity for its operation, some use Natural gas and some use Hot water and electricity both for its operation. For instance, a washing machine uses electricity to heat the hot water or it can use hot water directly from the hot water storage tank.



    Each appliance denoted by i, each appliance has subtasks denoted by j. 24 hours a day is divided into 96 slots, each slot represents 15 minutes.



    I have introduced 3 binary decision variable to create an objective function.



    $x_k,i,j^electricity$ indicates whether subtask j of appliance i at time slot k processed by electricity or not. 1 = processed, 0 = not processed.



    $y_k,i,j^gas$ indicates whether subtask j of appliance i at time slot k processed by gas or not. 1 = processed, 0 = not processed.



    $z_k,i,j^hotwater$ indicates whether subtask j of appliance i at time slot k processed by hot water or not. 1 = processed, 0 = not processed.



    objective function:



    $$sum_k=1^96sum_i=1^Nsum_j=1^n_i E_k,i,j^electricity.P_k,i,j.x_k,i,j^electricity + E_k,i,j^gas [G_k,i,j.y_k,i,j^gas + H_k,i,j.z_k,i,j^hotwater] $$



    where,



    E_k,i,j^electricity co2 emission produced by electricity.



    P_k,i,j.x_k,i,j amount of electricity used by appliances.



    E_k,i,j^gas co2 emission produced by natural gas.



    G_k,i,j amount of natural gas used.



    H_k,i,j amount of hot water used.



    Here i am producing hot water from CHP, so if we use hot water in the appliances it indirectly using the gas.



    I want to know whether this objective function correct or not. I am still planning to write constraints.



    It would be great if some one guide me.







    share|cite|improve this question





















      up vote
      -1
      down vote

      favorite
      1









      up vote
      -1
      down vote

      favorite
      1






      1





      I am trying to make the problem formulation using the MILP.



      The objective of the problem is to schedule the appliance based on the time slot and operation mode (kind of energy it uses) with respect to minimize the CO2 emission of the house.



      The house includes a set of appliances some of them use electricity for its operation, some use Natural gas and some use Hot water and electricity both for its operation. For instance, a washing machine uses electricity to heat the hot water or it can use hot water directly from the hot water storage tank.



      Each appliance denoted by i, each appliance has subtasks denoted by j. 24 hours a day is divided into 96 slots, each slot represents 15 minutes.



      I have introduced 3 binary decision variable to create an objective function.



      $x_k,i,j^electricity$ indicates whether subtask j of appliance i at time slot k processed by electricity or not. 1 = processed, 0 = not processed.



      $y_k,i,j^gas$ indicates whether subtask j of appliance i at time slot k processed by gas or not. 1 = processed, 0 = not processed.



      $z_k,i,j^hotwater$ indicates whether subtask j of appliance i at time slot k processed by hot water or not. 1 = processed, 0 = not processed.



      objective function:



      $$sum_k=1^96sum_i=1^Nsum_j=1^n_i E_k,i,j^electricity.P_k,i,j.x_k,i,j^electricity + E_k,i,j^gas [G_k,i,j.y_k,i,j^gas + H_k,i,j.z_k,i,j^hotwater] $$



      where,



      E_k,i,j^electricity co2 emission produced by electricity.



      P_k,i,j.x_k,i,j amount of electricity used by appliances.



      E_k,i,j^gas co2 emission produced by natural gas.



      G_k,i,j amount of natural gas used.



      H_k,i,j amount of hot water used.



      Here i am producing hot water from CHP, so if we use hot water in the appliances it indirectly using the gas.



      I want to know whether this objective function correct or not. I am still planning to write constraints.



      It would be great if some one guide me.







      share|cite|improve this question











      I am trying to make the problem formulation using the MILP.



      The objective of the problem is to schedule the appliance based on the time slot and operation mode (kind of energy it uses) with respect to minimize the CO2 emission of the house.



      The house includes a set of appliances some of them use electricity for its operation, some use Natural gas and some use Hot water and electricity both for its operation. For instance, a washing machine uses electricity to heat the hot water or it can use hot water directly from the hot water storage tank.



      Each appliance denoted by i, each appliance has subtasks denoted by j. 24 hours a day is divided into 96 slots, each slot represents 15 minutes.



      I have introduced 3 binary decision variable to create an objective function.



      $x_k,i,j^electricity$ indicates whether subtask j of appliance i at time slot k processed by electricity or not. 1 = processed, 0 = not processed.



      $y_k,i,j^gas$ indicates whether subtask j of appliance i at time slot k processed by gas or not. 1 = processed, 0 = not processed.



      $z_k,i,j^hotwater$ indicates whether subtask j of appliance i at time slot k processed by hot water or not. 1 = processed, 0 = not processed.



      objective function:



      $$sum_k=1^96sum_i=1^Nsum_j=1^n_i E_k,i,j^electricity.P_k,i,j.x_k,i,j^electricity + E_k,i,j^gas [G_k,i,j.y_k,i,j^gas + H_k,i,j.z_k,i,j^hotwater] $$



      where,



      E_k,i,j^electricity co2 emission produced by electricity.



      P_k,i,j.x_k,i,j amount of electricity used by appliances.



      E_k,i,j^gas co2 emission produced by natural gas.



      G_k,i,j amount of natural gas used.



      H_k,i,j amount of hot water used.



      Here i am producing hot water from CHP, so if we use hot water in the appliances it indirectly using the gas.



      I want to know whether this objective function correct or not. I am still planning to write constraints.



      It would be great if some one guide me.









      share|cite|improve this question










      share|cite|improve this question




      share|cite|improve this question









      asked Aug 1 at 13:38









      praveenkumar beedanal

      11




      11

























          active

          oldest

          votes











          Your Answer




          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "69"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );








           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2869081%2fobjective-function-formulation-for-milp-problem%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes










           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2869081%2fobjective-function-formulation-for-milp-problem%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          What is the equation of a 3D cone with generalised tilt?

          Color the edges and diagonals of a regular polygon

          Relationship between determinant of matrix and determinant of adjoint?