From f8584e14c0cbc255b86b6554d3310a73e85e23a6 Mon Sep 17 00:00:00 2001
From: Bart Arendarczyk <s1924442@ed.ac.uk>
Date: Sat, 8 Jun 2024 08:48:31 +0100
Subject: [PATCH] Calibrations.

---
 src/ac/ed/lurg/ModelConfig.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/ac/ed/lurg/ModelConfig.java b/src/ac/ed/lurg/ModelConfig.java
index 58fe3ab9..31ca2582 100755
--- a/src/ac/ed/lurg/ModelConfig.java
+++ b/src/ac/ed/lurg/ModelConfig.java
@@ -284,7 +284,7 @@ public class ModelConfig {
 	public static final double PROD_COST_MAIZE = getDoubleProperty("PROD_COST_MAIZE", 0.3);
 	public static final double PROD_COST_RICE = getDoubleProperty("PROD_COST_RICE", 0.8);
 	public static final double PROD_COST_OILCROPS_NFIX = getDoubleProperty("PROD_COST_OILCROPS_NFIX", 0.4);
-	public static final double PROD_COST_OILCROPS_OTHER = getDoubleProperty("PROD_COST_OILCROPS_OTHER", 0.3);
+	public static final double PROD_COST_OILCROPS_OTHER = getDoubleProperty("PROD_COST_OILCROPS_OTHER", 0.8);
 	public static final double PROD_COST_PULSES = getDoubleProperty("PROD_COST_PULSES", 0.6);
 	public static final double PROD_COST_STARCHYROOTS = getDoubleProperty("PROD_COST_STARCHYROOTS", 3.0);
 	public static final double PROD_COST_MONOGASTRICS = getDoubleProperty("PROD_COST_MONOGASTRICS", 0.05);
@@ -397,7 +397,7 @@ public class ModelConfig {
 	public static final int BASE_YEAR = getIntProperty("BASE_YEAR", 2020);
 
 	// Import export limits
-	public static final double ANNUAL_MAX_IMPORT_CHANGE = getDoubleProperty("ANNUAL_MAX_IMPORT_CHANGE", 0.2);
+	public static final double ANNUAL_MAX_IMPORT_CHANGE = getDoubleProperty("ANNUAL_MAX_IMPORT_CHANGE", 0.1);
 	public static final double MAX_IMPORT_CHANGE = getDoubleProperty("MAX_IMPORT_CHANGE", ANNUAL_MAX_IMPORT_CHANGE*TIMESTEP_SIZE);
 	public static final double TRADE_ADJUSTMENT_COST_RATE = getDoubleProperty("TRADE_ADJUSTMENT_COST_RATE", 0.005); // Cost of changing imports/exports
 
@@ -447,7 +447,7 @@ public class ModelConfig {
 	public static final double TIMBER_FOREST_ESTABLISHMENT_COST = getDoubleProperty("TIMBER_FOREST_ESTABLISHMENT_COST", 0.05);
 	public static final double CARBON_FOREST_CONVERSION_COST = getDoubleProperty("CARBON_FOREST_CONVERSION_COST", 10.0);
 	public static final double SOLAR_CONVERSION_COST = getDoubleProperty("SOLAR_CONVERSION_COST", 10.0);
-	public static final double NATURAL_CONVERSION_COST = getDoubleProperty("NATURAL_CONVERSION_COST", 0.1);
+	public static final double NATURAL_CONVERSION_COST = getDoubleProperty("NATURAL_CONVERSION_COST", 0.08);
 	// controls additional cost of natural conversion. Higher cost if higher proportion of land is natural
 	public static final double INFRASTRUCTURE_COST_FACTOR = getDoubleProperty("INFRASTRUCTURE_COST_FACTOR", 0.6);
 
-- 
GitLab