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
c205bc45
Commit
c205bc45
authored
6 years ago
by
Peter Alexander
Browse files
Options
Downloads
Patches
Plain Diff
Reverse some of the previous parameter changes
parent
000ddea1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GAMS/IntExtOpt.gms
+2
-2
2 additions, 2 deletions
GAMS/IntExtOpt.gms
GAMS/LUOpt.gms
+2
-2
2 additions, 2 deletions
GAMS/LUOpt.gms
src/ac/ed/lurg/ModelConfig.java
+2
-2
2 additions, 2 deletions
src/ac/ed/lurg/ModelConfig.java
with
6 additions
and
6 deletions
GAMS/IntExtOpt.gms
+
2
−
2
View file @
c205bc45
...
@@ -83,8 +83,8 @@ $gdxin
...
@@ -83,8 +83,8 @@ $gdxin
PARAMETER baseCost(crop);
PARAMETER baseCost(crop);
PARAMETER otherIntCost(crop);
PARAMETER otherIntCost(crop);
baseCost(crop) = prodCost(crop)*0.
5
;
baseCost(crop) = prodCost(crop)*0.
4
;
otherIntCost(crop) = baseCost(crop)*0.
5
+ otherICost;
otherIntCost(crop) = baseCost(crop)*0.
6
+ otherICost;
baseCost('pasture') = 0.03;
baseCost('pasture') = 0.03;
otherIntCost('pasture') = 0.8 + otherICost;
otherIntCost('pasture') = 0.8 + otherICost;
...
...
This diff is collapsed.
Click to expand it.
GAMS/LUOpt.gms
+
2
−
2
View file @
c205bc45
...
@@ -84,8 +84,8 @@ $gdxin
...
@@ -84,8 +84,8 @@ $gdxin
PARAMETER baseCost(crop);
PARAMETER baseCost(crop);
PARAMETER otherIntCost(crop);
PARAMETER otherIntCost(crop);
baseCost(crop) = prodCost(crop)*0.
5
;
baseCost(crop) = prodCost(crop)*0.
4
;
otherIntCost(crop) = baseCost(crop)*0.
5
+ otherICost;
otherIntCost(crop) = baseCost(crop)*0.
6
+ otherICost;
baseCost('pasture') = 0.03;
baseCost('pasture') = 0.03;
otherIntCost('pasture') = 0.8 + otherICost;
otherIntCost('pasture') = 0.8 + otherICost;
...
...
This diff is collapsed.
Click to expand it.
src/ac/ed/lurg/ModelConfig.java
+
2
−
2
View file @
c205bc45
...
@@ -288,8 +288,8 @@ public class ModelConfig {
...
@@ -288,8 +288,8 @@ public class ModelConfig {
public
static
final
double
OTHER_INTENSITY_COST
=
getDoubleProperty
(
"OTHER_INTENSITY_COST"
,
0.6
);
public
static
final
double
OTHER_INTENSITY_COST
=
getDoubleProperty
(
"OTHER_INTENSITY_COST"
,
0.6
);
public
static
final
double
OTHER_INTENSITY_PARAM
=
getDoubleProperty
(
"OTHER_INTENSITY_PARAM"
,
3.22
);
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.000
5
);
public
static
final
double
IRRIG_COST_SCALE_FACTOR
=
getDoubleProperty
(
"IRRIG_COST_SCALE_FACTOR"
,
0.000
4
);
public
static
final
double
FERTILISER_COST_PER_T
=
getDoubleProperty
(
"FERTILISER_COST_PER_T"
,
1.
9
);
// $500/t, 18% N/t
public
static
final
double
FERTILISER_COST_PER_T
=
getDoubleProperty
(
"FERTILISER_COST_PER_T"
,
1.
8
);
// $500/t, 18% N/t
public
static
final
double
FERTILISER_MAX_COST
=
FERTILISER_COST_PER_T
*
MAX_FERT_AMOUNT
/
1000
;
public
static
final
double
FERTILISER_MAX_COST
=
FERTILISER_COST_PER_T
*
MAX_FERT_AMOUNT
/
1000
;
public
static
final
double
DOMESTIC_PRICE_MARKUP
=
getDoubleProperty
(
"DOMESTIC_PRICE_MARKUP"
,
1.0
);
public
static
final
double
DOMESTIC_PRICE_MARKUP
=
getDoubleProperty
(
"DOMESTIC_PRICE_MARKUP"
,
1.0
);
...
...
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