Skip to content
Snippets Groups Projects
Commit 15cfaf0c authored by R0slyn's avatar R0slyn
Browse files

different implementation of fix

parent 0b3591c9
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ public class CountryAgent {
for (CropType crop : commodity.getCropTypes()) {
CropUsageData cropUsage = cropUsages.get(crop);
double prod = cropUsage.getNetProduction(crop.getSeedAndWasteRate());
double prod = cropUsage.getProduction() *(1-crop.getSeedAndWasteRate()) - cropUsage.getMonogastricFeed() - cropUsage.getRuminantFeed();
totalProd += prod;
double minFract = minCerealFracts.containsKey(crop) ? minCerealFracts.get(crop) : 0.0;
double netImportsFromMinDemand = minFract * demand - prod;
......@@ -202,7 +202,8 @@ public class CountryAgent {
// simple 1-1 commodity to cereal mappings
for (CropType crop : commodity.getCropTypes()) {
CropUsageData cropUsage = cropUsages.get(crop);
double netImports = demand - cropUsage.getNetProduction(crop.getSeedAndWasteRate());
double prod = cropUsage.getProduction() *(1-crop.getSeedAndWasteRate()) - cropUsage.getMonogastricFeed() - cropUsage.getRuminantFeed();
double netImports = demand - prod;
LogWriter.println("Updating net imports single commodity/crop" + commodity + "/" + crop + " to " + netImports);
cropUsage.updateNetImports(netImports);
}
......@@ -233,7 +234,7 @@ public class CountryAgent {
for (Map.Entry<CropType, CropUsageData> entry : previousGamsRasterOutput.getCropUsageData().entrySet()) {
CropUsageData cropUsage = entry.getValue();
CropType crop = entry.getKey();
double baseTradeOrProd = (ModelConfig.ORIG_LEAST_COST_MIN) ? cropUsage.getNetImports() : cropUsage.getNetProduction(crop.getSeedAndWasteRate());
double baseTradeOrProd = (ModelConfig.ORIG_LEAST_COST_MIN) ? cropUsage.getNetImports() : cropUsage.getNetProduction();
double changeUp = 0.0;
double changeDown = 0.0;
......
......@@ -42,8 +42,8 @@ public class CropUsageData {
}
/** return production available after accounting for feed use and seed and waste losses */
public double getNetProduction(double seedAndWasteRate) {
return prod *(1-seedAndWasteRate) - ruminantFeed - monogastricFeed;
public double getNetProduction() {
return prod - ruminantFeed - monogastricFeed;
}
public double getProdCost() {
......
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