Fixed Charge Model Flashcards
(4 cards)
1
Q
what is a fixed charge/fixed cost model
A
if any level of the activitiy takes place, there will be a charge!
2
Q
what does fixed charge naturally lead to?
A
IF statements, or non linear! so we make it linear via binary
3
Q
How to do it?
A
- make a table
- Put a binary variable area- this will be the ‘Produce?’ area [A DECISION VBL]
- Put a units produced are- this will be the other DECISION VBL
- NOW YOU NEED A LOGIC AREA (LOGICAL MAX):
- ofc this would be simple to do with if statement but instead you do with logic
- units produced <= max capacity *(0 or 1)
- SO… you need to create a max capacity.. YOU DO THIS BY TAKING THE MIN OF the scenarios where all the resources are poured into the one item
- to check… put in a big big number - solve like regular!
4
Q
A