Skip to content
Snippets Groups Projects
Commit c205bc45 authored by Peter Alexander's avatar Peter Alexander
Browse files

Reverse some of the previous parameter changes

parent 000ddea1
No related branches found
No related tags found
No related merge requests found
...@@ -83,8 +83,8 @@ $gdxin ...@@ -83,8 +83,8 @@ $gdxin
PARAMETER baseCost(crop); PARAMETER baseCost(crop);
PARAMETER otherIntCost(crop); PARAMETER otherIntCost(crop);
baseCost(crop) = prodCost(crop)*0.5; baseCost(crop) = prodCost(crop)*0.4;
otherIntCost(crop) = baseCost(crop)*0.5 + otherICost; otherIntCost(crop) = baseCost(crop)*0.6 + otherICost;
baseCost('pasture') = 0.03; baseCost('pasture') = 0.03;
otherIntCost('pasture') = 0.8 + otherICost; otherIntCost('pasture') = 0.8 + otherICost;
......
...@@ -84,8 +84,8 @@ $gdxin ...@@ -84,8 +84,8 @@ $gdxin
PARAMETER baseCost(crop); PARAMETER baseCost(crop);
PARAMETER otherIntCost(crop); PARAMETER otherIntCost(crop);
baseCost(crop) = prodCost(crop)*0.5; baseCost(crop) = prodCost(crop)*0.4;
otherIntCost(crop) = baseCost(crop)*0.5 + otherICost; otherIntCost(crop) = baseCost(crop)*0.6 + otherICost;
baseCost('pasture') = 0.03; baseCost('pasture') = 0.03;
otherIntCost('pasture') = 0.8 + otherICost; otherIntCost('pasture') = 0.8 + otherICost;
......
...@@ -288,8 +288,8 @@ public class ModelConfig { ...@@ -288,8 +288,8 @@ public class ModelConfig {
public static final double OTHER_INTENSITY_COST = getDoubleProperty("OTHER_INTENSITY_COST", 0.6); public static final double OTHER_INTENSITY_COST = getDoubleProperty("OTHER_INTENSITY_COST", 0.6);
public static final double OTHER_INTENSITY_PARAM = getDoubleProperty("OTHER_INTENSITY_PARAM", 3.22); public static final double OTHER_INTENSITY_PARAM = getDoubleProperty("OTHER_INTENSITY_PARAM", 3.22);
public static final double IRRIG_COST_SCALE_FACTOR = getDoubleProperty("IRRIG_COST_SCALE_FACTOR", 0.0005); public static final double IRRIG_COST_SCALE_FACTOR = getDoubleProperty("IRRIG_COST_SCALE_FACTOR", 0.0004);
public static final double FERTILISER_COST_PER_T = getDoubleProperty("FERTILISER_COST_PER_T", 1.9); // $500/t, 18% N/t public static final double FERTILISER_COST_PER_T = getDoubleProperty("FERTILISER_COST_PER_T", 1.8); // $500/t, 18% N/t
public static final double FERTILISER_MAX_COST = FERTILISER_COST_PER_T * MAX_FERT_AMOUNT/1000; public static final double FERTILISER_MAX_COST = FERTILISER_COST_PER_T * MAX_FERT_AMOUNT/1000;
public static final double DOMESTIC_PRICE_MARKUP = getDoubleProperty("DOMESTIC_PRICE_MARKUP", 1.0); public static final double DOMESTIC_PRICE_MARKUP = getDoubleProperty("DOMESTIC_PRICE_MARKUP", 1.0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment