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

no message

parent 35be1dcb
No related branches found
No related tags found
No related merge requests found
......@@ -5,31 +5,29 @@
SET not_feed_crops(crop) / fruits, starchyRoots, treenuts, vegetables, pulses, pasture_or_meat /;
SET location / 1*1 /;
PARAMETER previous_area(crop, location) areas for previous timestep in ha;
PARAMETER yield00(crop, location) yield in t per ha;
PARAMETER yield10(crop, location) yield in t per ha;
PARAMETER yield01(crop, location) yield in t per ha;
PARAMETER yield11(crop, location) yield in t per ha;
PARAMETER demand(crop) in t;
PARAMETER world_input_energy(crop) average input energy from world exports used to determine if we should import or export;
PARAMETER maxNetImport(crop) maximum net import for each crop based on world market;
PARAMETER minNetImport(crop) minimum net import for each crop based on world market;
PARAMETER previous_area(crop, location) areas for previous timestep in ha;
PARAMETER yieldNone(crop, location) yield in t per ha;
PARAMETER yieldFertOnly(crop, location) yield in t per ha;
PARAMETER yieldIrrigOnly(crop, location) yield in t per ha;
PARAMETER yieldBoth(crop, location) yield in t per ha;
PARAMETER demand(crop) in t;
PARAMETER world_input_energy(crop) average input energy from world exports used to determine if we should import or export;
PARAMETER maxNetImport(crop) maximum net import for each crop based on world market;
PARAMETER minNetImport(crop) minimum net import for each crop based on world market;
SCALAR meatEfficency efficiency of converting feed and pasture into animal products;
SCALAR maxLandUseChange max rate of land use change;
SCALAR tradeBarrier trade barrier which adjust energy cost of imports;
SCALAR landChangeEnergy energy required to add ha of agricultural land;
SCALAR minFeedRate minimum rate of feed for producing animal products;
SCALAR alpha yield response to fertilizer parameter;
SCALAR beta yield response to irrigation parameter;
SCALAR fertParam yield response to fertilizer parameter;
SCALAR irrigParam yield response to irrigation parameter;
$gdxin %gdxincname%
$load previous_area, demand, yield00, yield10, yield01, yield11, alpha, beta, world_input_energy, maxNetImport, minNetImport, meatEfficency, maxLandUseChange, tradeBarrier, landChangeEnergy, minFeedRate
$load previous_area, demand, yieldNone, yieldFertOnly, yieldIrrigOnly, yieldBoth, fertParam, irrigParam, world_input_energy, maxNetImport, minNetImport, meatEfficency, maxLandUseChange, tradeBarrier, landChangeEnergy, minFeedRate
$gdxin
DISPLAY yield00, yield10, yield01, yield11
SCALAR delta use to smooth power function see 7.5 www.gams.com dd docs solversconopt.pdf / 0.000000001 /
SCALAR delta use to smooth power function see 7.5 www.gams.com dd docs solversconopt.pdf / 0.00000000001 /
PARAMETER feedEnergy(crop) energy from feed in MJ per t
/ cereals 13.7
......@@ -75,12 +73,19 @@ DISPLAY yield00, yield10, yield01, yield11
sqr(fertI(crop, location)+irrigI(crop, location)+otherIntensity(crop, location)) / 2;
YIELD_EQ(crop, location) .. yield(crop, location) =E= (
yield00(crop, location) +
(yield10(crop, location) - yield00(crop, location)) * ((fertI(crop, location) + delta) ** alpha) +
(yield10(crop, location) - yield00(crop, location)) * ((irrigI(crop, location) + delta) ** beta) +
(yield11(crop, location) + yield00(crop, location) - yield10(crop, location) - yield01(crop, location)) * ((fertI(crop, location) + delta) ** alpha) * ((irrigI(crop, location) + delta) ** beta)
yieldNone(crop, location) +
(yieldFertOnly(crop, location) - yieldNone(crop, location)) * ((fertI(crop, location) + delta) ** fertParam) +
(yieldIrrigOnly(crop, location) - yieldNone(crop, location)) * ((irrigI(crop, location) + delta) ** irrigParam) +
(yieldBoth(crop, location) + yieldNone(crop, location) - yieldFertOnly(crop, location) - yieldIrrigOnly(crop, location)) * ((fertI(crop, location) + delta) ** fertParam) * ((irrigI(crop, location) + delta) ** irrigParam)
) * otherIntensity(crop, location);
* YIELD_EQ(crop, location) .. yield(crop, location) =E= (
* yieldNone(crop, location) +
* (yieldFertOnly(crop, location) - yieldNone(crop, location)) * (1 - exp(-10*fertI(crop, location)) +
* (yieldIrrigOnly(crop, location) - yieldNone(crop, location)) * (1 - exp(-5*irrigI(crop, location)) +
* (yieldBoth(crop, location) + yieldNone(crop, location) - yieldFertOnly(crop, location) - yieldIrrigOnly(crop, location)) * (1 - exp(-fertParam*fertI(crop, location))) * (1 - exp(-irrigParam*irrigI(crop, location)))
* ) * otherIntensity(crop, location);
CROP_DEMAND_CONSTRAINT(crop_less_pasture) .. sum(location, area(crop_less_pasture, location) * yield(crop_less_pasture, location)) - feedAmount(crop_less_pasture) =G=
demand(crop_less_pasture) - netImportAmount(crop_less_pasture);
......@@ -113,9 +118,7 @@ DISPLAY yield00, yield10, yield01, yield11
MODEL LAND_USE /ALL/ ;
SOLVE LAND_USE USING NLP MINIMIZING energy;
DISPLAY yield00, yield10, yield01, yield11
Scalar ms 'model status', ss 'solve status';
ms=LAND_USE.modelstat;
ss=LAND_USE.solvestat;
......@@ -69,32 +69,32 @@ public class CountryAgent implements GamsInputData {
}
@Override
public Map<CropType, Double> getYield00() {
public Map<CropType, Double> getYieldNone() {
return currentRefYield;
}
@Override
public Map<CropType, Double> getYield10() {
public Map<CropType, Double> getYieldFertOnly() {
return currentRefYield;
}
@Override
public Map<CropType, Double> getYield01() {
public Map<CropType, Double> getYieldIrrigOnly() {
return currentRefYield;
}
@Override
public Map<CropType, Double> getYield11() {
public Map<CropType, Double> getYieldBoth() {
return currentRefYield;
}
@Override
public double getAlpha() {
public double getFertParam() {
return 0.4;
}
@Override
public double getBeta() {
public double getIrrigParam() {
return 0.5;
}
......
......@@ -7,10 +7,10 @@ import ac.ed.lurg.types.CropType;
public interface GamsInputData {
Map<CropType, Double> getProjectedDemand();
Map<CropType, Double> getYield00();
Map<CropType, Double> getYield10();
Map<CropType, Double> getYield01();
Map<CropType, Double> getYield11();
Map<CropType, Double> getYieldNone();
Map<CropType, Double> getYieldFertOnly();
Map<CropType, Double> getYieldIrrigOnly();
Map<CropType, Double> getYieldBoth();
Map<CropType, Double> getPreviousCropArea();
Map<CropType, Double> getWorldInputEnergy();
Map<CropType, Double> getMaxNetImport();
......@@ -21,7 +21,7 @@ public interface GamsInputData {
double getTradeBarrier();
double getLandChangeEnergy();
double getMinFeedRate();
double getAlpha();
double getBeta();
double getFertParam();
double getIrrigParam();
}
......@@ -50,25 +50,25 @@ public class GamsLandUseOptimiser {
parm = db.addParameter("demand", 1, "demand for crop");
addItemMapParm(parm, inputData.getProjectedDemand());
LogWriter.println("\nYield");
parm = db.addParameter("yield00", 2, "ref yield t per ha");
LogWriter.println("\nYieldNone");
parm = db.addParameter("yieldNone", 2, "ref yield t per ha");
for (int i= 1; i<=numLocations; i++)
addLocationMapParm(parm, inputData.getYield00(), i);
addLocationMapParm(parm, inputData.getYieldNone(), i);
LogWriter.println("\nYield");
parm = db.addParameter("yield10", 2, "ref yield t per ha");
LogWriter.println("\nYieldFertOnly");
parm = db.addParameter("yieldFertOnly", 2, "ref yield t per ha");
for (int i= 1; i<=numLocations; i++)
addLocationMapParm(parm, inputData.getYield10(), i);
addLocationMapParm(parm, inputData.getYieldFertOnly(), i);
LogWriter.println("\nYield");
parm = db.addParameter("yield01", 2, "ref yield t per ha");
LogWriter.println("\nYyieldIrrigOnly");
parm = db.addParameter("yieldIrrigOnly", 2, "ref yield t per ha");
for (int i= 1; i<=numLocations; i++)
addLocationMapParm(parm, inputData.getYield01(), i);
addLocationMapParm(parm, inputData.getYieldIrrigOnly(), i);
LogWriter.println("\nYield");
parm = db.addParameter("yield11", 2, "ref yield t per ha");
LogWriter.println("\nYieldBoth");
parm = db.addParameter("yieldBoth", 2, "ref yield t per ha");
for (int i= 1; i<=numLocations; i++)
addLocationMapParm(parm, inputData.getYield11(), i);
addLocationMapParm(parm, inputData.getYieldBoth(), i);
LogWriter.println("\nWorld input energy");
parm = db.addParameter("world_input_energy", 1, "average input energy from world exports used to determine if we should import or export energy per t");
......@@ -87,8 +87,8 @@ public class GamsLandUseOptimiser {
addScalar(db.addParameter("tradeBarrier", 0, "trade barrier which adjust energy cost of imports"), inputData.getTradeBarrier());
addScalar(db.addParameter("landChangeEnergy", 0, "energy required to add ha of agricultural land"), inputData.getLandChangeEnergy());
addScalar(db.addParameter("minFeedRate", 0, "minimum rate of feed for producing animal products"), inputData.getMinFeedRate());
addScalar(db.addParameter("alpha", 0), inputData.getAlpha());
addScalar(db.addParameter("beta", 0), inputData.getBeta());
addScalar(db.addParameter("fertParam", 0), inputData.getFertParam());
addScalar(db.addParameter("irrigParam", 0), inputData.getIrrigParam());
GAMSJob gamsJob = ws.addJobFromFile(ModelConfig.GAMS_MODEL);
GAMSOptions opt = ws.addOptions();
......
......@@ -35,7 +35,7 @@ public class GamsTest implements GamsInputData {
}
@Override
public Map<CropType, Double> getYield00() {
public Map<CropType, Double> getYieldNone() {
Map<CropType, Double> dummyMap = new HashMap<CropType, Double>();
dummyMap.put(CropType.CEREALS, 1.0);
dummyMap.put(CropType.FRUIT, 1.0);
......@@ -48,7 +48,7 @@ public class GamsTest implements GamsInputData {
return dummyMap;
}
public Map<CropType, Double> getYield10() {
public Map<CropType, Double> getYieldFertOnly() {
Map<CropType, Double> dummyMap = new HashMap<CropType, Double>();
dummyMap.put(CropType.CEREALS, 3.0);
dummyMap.put(CropType.FRUIT, 3.0);
......@@ -61,7 +61,7 @@ public class GamsTest implements GamsInputData {
return dummyMap;
}
public Map<CropType, Double> getYield01() {
public Map<CropType, Double> getYieldIrrigOnly() {
Map<CropType, Double> dummyMap = new HashMap<CropType, Double>();
dummyMap.put(CropType.CEREALS, 2.0);
dummyMap.put(CropType.FRUIT, 2.0);
......@@ -74,7 +74,7 @@ public class GamsTest implements GamsInputData {
return dummyMap;
}
public Map<CropType, Double> getYield11() {
public Map<CropType, Double> getYieldBoth() {
Map<CropType, Double> dummyMap = new HashMap<CropType, Double>();
dummyMap.put(CropType.CEREALS, 4.0);
dummyMap.put(CropType.FRUIT, 4.0);
......@@ -174,12 +174,12 @@ public class GamsTest implements GamsInputData {
}
@Override
public double getAlpha() {
public double getFertParam() {
return 0.4;
}
@Override
public double getBeta() {
return 0.5;
public double getIrrigParam() {
return 0.3;
}
}
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