Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PLUM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Land Use Lab
PLUM
Commits
94c3c6ee
Commit
94c3c6ee
authored
7 years ago
by
Peter Alexander
Browse files
Options
Downloads
Patches
Plain Diff
Change default values
parent
712333d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ac/ed/lurg/ModelConfig.java
+7
-7
7 additions, 7 deletions
src/ac/ed/lurg/ModelConfig.java
with
7 additions
and
7 deletions
src/ac/ed/lurg/ModelConfig.java
+
7
−
7
View file @
94c3c6ee
...
...
@@ -172,7 +172,7 @@ public class ModelConfig {
public
static
final
int
BASE_YEAR
=
getIntProperty
(
"BASE_YEAR"
,
2010
);
// Import export limits
public
static
final
double
ANNUAL_MAX_IMPORT_CHANGE
=
IS_CALIBRATION_RUN
?
0.0
:
getDoubleProperty
(
"ANNUAL_MAX_IMPORT_CHANGE"
,
0.02
);
public
static
final
double
ANNUAL_MAX_IMPORT_CHANGE
=
IS_CALIBRATION_RUN
?
0.0
:
getDoubleProperty
(
"ANNUAL_MAX_IMPORT_CHANGE"
,
0.02
5
);
public
static
final
double
MAX_IMPORT_CHANGE
=
IS_CALIBRATION_RUN
?
0.0
:
getDoubleProperty
(
"MAX_IMPORT_CHANGE"
,
ANNUAL_MAX_IMPORT_CHANGE
*
TIMESTEP_SIZE
);
// Fertiliser application rates in kg/ha
...
...
@@ -190,18 +190,18 @@ public class ModelConfig {
public
static
final
double
PASTURE_HARVEST_FRACTION
=
getDoubleProperty
(
"PASTURE_HARVEST_FRACTION"
,
0.5
);
public
static
final
double
MEAT_EFFICIENCY
=
getDoubleProperty
(
"MEAT_EFFICIENCY"
,
1.0
);
// 'meat' is includes feed conversion ratio already, this is tech. change or similar
public
static
final
double
IRRIGIATION_EFFICIENCY
=
getDoubleProperty
(
"IRRIGIATION_EFFICIENCY"
,
0.5
);
public
static
final
double
IRRIGIATION_EFFICIENCY
=
getDoubleProperty
(
"IRRIGIATION_EFFICIENCY"
,
0.
2
5
);
public
static
final
double
LAND_CHANGE_COST
=
getDoubleProperty
(
"LAND_CHANGE_COST"
,
0.7
5
);
public
static
final
double
LAND_CHANGE_COST
=
getDoubleProperty
(
"LAND_CHANGE_COST"
,
0.7
);
public
static
final
double
CROP_TO_PASTURE_COST_FACTOR
=
getDoubleProperty
(
"CROP_TO_PASTURE_COST_FACTOR"
,
1.0
);
public
static
final
double
AGRI_LAND_EXPANSION_COST_FACTOR
=
getDoubleProperty
(
"AGRI_LAND_EXPANSION_COST_FACTOR"
,
1.0
);
public
static
final
double
CROP_INCREASE_COST
=
getDoubleProperty
(
"CROP_INCREASE_COST"
,
0.
6
*
LAND_CHANGE_COST
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
CROP_INCREASE_COST
=
getDoubleProperty
(
"CROP_INCREASE_COST"
,
0.
4
*
LAND_CHANGE_COST
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
PASTURE_DECREASE_COST
=
getDoubleProperty
(
"PASTURE_DECREASE_COST"
,
0.25
*
LAND_CHANGE_COST
);
public
static
final
double
CROP_DECREASE_COST
=
getDoubleProperty
(
"CROP_DECREASE_COST"
,
LAND_CHANGE_COST
);
public
static
final
double
PASTURE_INCREASE_COST
=
getDoubleProperty
(
"PASTURE_INCREASE_COST"
,
0.
1
*
LAND_CHANGE_COST
*
CROP_TO_PASTURE_COST_FACTOR
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
PASTURE_INCREASE_COST
=
getDoubleProperty
(
"PASTURE_INCREASE_COST"
,
0.
2
*
LAND_CHANGE_COST
*
CROP_TO_PASTURE_COST_FACTOR
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
AGRI_EXPANSION_COST_BASE
=
getDoubleProperty
(
"AGRI_EXPANSION_COST_BASE"
,
0.05
*
LAND_CHANGE_COST
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
AGRI_EXPANSION_COST_BASE_MANAGED_FOREST
=
getDoubleProperty
(
"AGRI_EXPANSION_COST_BASE_MANAGED_FOREST"
,
0.
3
*
LAND_CHANGE_COST
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
AGRI_EXPANSION_COST_BASE_MANAGED_FOREST
=
getDoubleProperty
(
"AGRI_EXPANSION_COST_BASE_MANAGED_FOREST"
,
0.
2
*
LAND_CHANGE_COST
*
AGRI_LAND_EXPANSION_COST_FACTOR
);
public
static
final
double
SEED_AND_WASTE_FRACTION
=
getDoubleProperty
(
"SEED_AND_WASTE_FRACTION"
,
0.1
);
...
...
@@ -229,7 +229,7 @@ public class ModelConfig {
public
static
final
double
OTHER_INTENSITY_COST
=
getDoubleProperty
(
"OTHER_INTENSITY_COST"
,
0.4
);
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.00
14
);
public
static
final
double
IRRIG_COST_SCALE_FACTOR
=
getDoubleProperty
(
"IRRIG_COST_SCALE_FACTOR"
,
0.00
07
);
public
static
final
double
FERTILISER_COST_PER_T
=
getDoubleProperty
(
"FERTILISER_COST_PER_T"
,
2.7
);
// $500/t, 18% N/t
public
static
final
double
FERTILISER_MAX_COST
=
FERTILISER_COST_PER_T
*
MAX_FERT_AMOUNT
/
1000
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment