File tree 2 files changed +8
-3
lines changed
message_ix_models/model/transport
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ class Config(ConfigHelper):
71
71
"non-LDV growth_activity_lo" : - 0.0192 * 1.0 ,
72
72
"non-LDV growth_activity_up" : 0.0192 * 2.0 ,
73
73
"non-LDV growth_new_capacity_up" : 0.0192 * 1.0 ,
74
- "non-LDV initial_activity_up" : 1.0 ,
75
- "non-LDV initial_new_capacity_up" : 1.0 ,
74
+ # NB If these values are not large enough, they can cause infeasibilities in
75
+ # the base period for technologies that do not have historical_activity
76
+ "non-LDV initial_activity_up" : 2.0 ,
77
+ "non-LDV initial_new_capacity_up" : 2.0 ,
76
78
}
77
79
)
78
80
Original file line number Diff line number Diff line change @@ -198,7 +198,10 @@ def bound_activity(c: "Computer") -> list[Key]:
198
198
199
199
200
200
def bound_activity_lo (c : Computer ) -> list [Key ]:
201
- """Set minimum activity for certain technologies to ensure |y0| energy use."""
201
+ """Set minimum activity for certain technologies to ensure |y0| energy use.
202
+
203
+ Responds to values in :attr:`.Config.minimum_activity`.
204
+ """
202
205
203
206
@lru_cache
204
207
def techs_for (mode : Code , commodity : str ) -> list [Code ]:
You can’t perform that action at this time.
0 commit comments