Skip to content
Snippets Groups Projects
Commit 0f515f57 authored by Bart Arendarczyk's avatar Bart Arendarczyk
Browse files

Fixed abandoned pastures.

parent 62be5f91
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ $gdxin
(yieldIrrigOnly(crop, location) - yieldNone(crop, location)) * (1 - exp(-irrigParam(crop, location)*irrigI(crop, location))) +
(yieldBoth(crop, location) + yieldNone(crop, location) - yieldFertOnly(crop, location) - yieldIrrigOnly(crop, location)) *
(1 - exp(-fertParam(crop, location)*fertI(crop, location))) * (1 - exp(-irrigParam(crop, location)*irrigI(crop, location)))
) * (1 - exp(-otherIntensity(crop, location)*otherIParam));
) * (1.01 - exp(-otherIntensity(crop, location)*otherIParam));
NET_SUPPLY_EQ(crop) .. net_supply(crop) =E= sum(location, area(crop, location) * yield(crop, location)) * (1 - seedAndWasteRate(crop)) - ruminantFeed(crop) - monogastricFeed(crop) + importAmount(crop) - exportAmount(crop);
......
......@@ -173,7 +173,7 @@ public class ModelMain {
private void writeLandCoverFile(Timestep timestep, RasterSet<LandUseItem> landUseRaster) {
try {
StringBuffer sbHeadings = new StringBuffer("Year,Cropland,Pasture,ManForest,UnmanForest,Natural,AbPasture,Suitable,EnergyCrop,FertCrop,IrrigCrop,ManIntCrop,ManIntPast");
StringBuffer sbHeadings = new StringBuffer("Year,Cropland,Pasture,ManForest,UnmanForest,Natural,Suitable,EnergyCrop,FertCrop,IrrigCrop,ManIntCrop,ManIntPast");
BufferedWriter outputFile = FileWriterHelper.getFileWriter(timestep, ModelConfig.LAND_COVER_OUTPUT_FILE, sbHeadings.toString());
StringBuffer sbData = new StringBuffer();
......@@ -183,7 +183,6 @@ public class ModelMain {
LandUseItem.getTotalLandCover(landUseRaster.values(), LandCoverType.MANAGED_FOREST),
LandUseItem.getTotalLandCover(landUseRaster.values(), LandCoverType.UNMANAGED_FOREST),
LandUseItem.getTotalLandCover(landUseRaster.values(), LandCoverType.OTHER_NATURAL),
LandUseItem.getAbandonedPasture(landUseRaster.values()),
LandUseItem.getSuitableTotal(landUseRaster.values(), timestep.getYear()))
);
......
......@@ -284,19 +284,6 @@ public class LandUseItem implements InterpolatingRasterItem<LandUseItem>, Serial
return d;
}
public static double getAbandonedPasture(Collection<? extends LandUseItem> landUses) {
double total = 0;
for (LandUseItem a : landUses) {
if (a!=null) {
Double d = a.getLandCoverArea(LandCoverType.PASTURE);
Intensity intensity = a.getIntensity(CropType.PASTURE);
if (intensity!=null && d!=null && intensity.getFertiliserAmount()==0 && intensity.getIrrigationRate()==0 && intensity.getOtherIntensity()==0)
total += d;
}
}
return total;
}
public static double getSuitableTotal(Collection<? extends LandUseItem> landUses, int year) {
double total = 0;
for (LandUseItem a : landUses) {
......
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