-
Notifications
You must be signed in to change notification settings - Fork 38
/
eqobj.tm
64 lines (51 loc) · 2.55 KB
/
eqobj.tm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
* Copyright (C) 2000-2023 Energy Technology Systems Analysis Programme (ETSAP)
* This file is part of the IEA-ETSAP TIMES model generator, licensed
* under the GNU General Public License v3.0 (see file NOTICE-GPLv3.txt).
*=============================================================================*
* EQOBJ the objective cost functions for Macro
* %1 - mod or v# for the source code to be used
*=============================================================================*
*GaG Questions/Comments:
*10/21
* - V-index used in place to T for MODLYEAR
* Note: PASTYEAR always have D(V) = 1
* - V-vintage MODLYEAR year, the point in time where the investment took place
*-----------------------------------------------------------------------------
SET K_EOH(ALLYEAR);
* [UR] 21.06.2003: K_EOH must include pastyears, since in eqobjfix.mod it links to past vintages
K_EOH(EACHYEAR)$((YEARVAL(EACHYEAR) >= PYR_V1) * (YEARVAL(EACHYEAR) <= MIYR_VL)) = YES;
* Sets for periodic costs
SET KTYAGE(LL,YEAR,LL,AGE);
LOOP(SAMEAS('1',AGE),KTYAGE(K(LL),PERIODYR(T,Y_EOH(YEAR)),AGE+(ORD(YEAR)-ORD(LL)))$YK(YEAR,LL)=YES);
* Cases for ILED and TLIFE/D(t); values assigned in EQOBJINV
SET OBJ_1A(R,ALLYEAR,P) //;
SET OBJ_1B(R,ALLYEAR,P) //;
SET OBJ_2A(R,ALLYEAR,P) //;
SET OBJ_2B(R,ALLYEAR,P) //;
* Salvage controls
SET OBJ_SUMS(R,ALLYEAR,P) //;
SET OBJ_SUMS3(R,ALLYEAR,P) //;
SET OBJ_SUMSI(R,ALLYEAR,P,ALLYEAR) //;
PARAMETER OBJ_DCEOH(REG,CUR) //;
*===============================================================================
* Investment Cost, Fixed Cost and Variable Cost components
*===============================================================================
$ BATINCLUDE eqobjinv.mod tm exit
$ BATINCLUDE eqobjfix.mod tm exit
$ BATINCLUDE eqobsalv.mod tm exit
$ BATINCLUDE eqobjann.tm
*===============================================================================
* Elastic Demand costs: only when MLF
*===============================================================================
$ IF %MACRO%==Yes $BATINCLUDE eqobjels.mod
*===============================================================================
* Actual OBJ
*===============================================================================
EQ_OBJ(R,T) ..
SUM(RDCUR(R,CUR),
* Investment Costs, Fixed Costs and Variable Costs (elastic demand costs excluded)
SUM(OBVANN,VAR_ANNCST(OBVANN,R,T,CUR))
)
=E=
VAR_OBJCOST(R,T);