-
Notifications
You must be signed in to change notification settings - Fork 40
/
Version.log
3010 lines (2764 loc) · 95.8 KB
/
Version.log
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
*** For older log entries, see Version-Old.rar ***
-----------------------------------------------------------------------------------------
TIMES Version 3.0.0
-----------------------------------------------------------------------------------------
Date: 25-Mar-2010 [AL]:
Bug fix: fixed reporting bug when both SENSIS and RPT_FLOTS were used
New Features:
- cumulative process flow bound equations
- cumulative activity, flow and commodity variables can be referred to in TID UCs
New input attributes:
ACT_CUM(r,p,y1,y2,bd) - Bound on cumulative process activity
FLO_CUM(r,p,c,y1,y2,bd) - Bound on cumulative process flow
UC_CUMACT(uc_n,r,p,y1,y2) - Coefficient for cumulative process activity
UC_CUMFLO(uc_n,r,p,c,y1,y2) - Coefficient for cumulative process flow
UC_CUMCOM(uc_n,r,com_var,c,y1,y2) - Coefficient for cumulative commodity PRD/NET
S_FLO_CUM(r,p,c,y1,y2,bd,stage,sow) - Bound on cumulative process flow/activity
Modified files:
INITSYS.mod : Increased version number to 3.0.0
initmty.mod : Added declarations for new attributes
ppmain.mod : Moved definition of MIYR_L from coef_obj.mod
Added pre-processing of cumulative parameters with BOH/EOH support
Allow STGTSS conversion storage; can be enabled using a multicom-PG
coef_obj.mod : Moved definition of MIYR_L to ppmain.mod (cosmetic move)
mod_vars.mod : Added new variables for cumulative flows and commodity NET/PRD
eqdeclr.mod : Added new EQ_CUMFLO equation & changed CUMNET/CUMPRD equations
eqmain.mod : Added new EQ_CUMFLO equation & changed CUMNET/CUMPRD equations; Changed EQUSERCO call parameters
eqcumcom.mod : Changed equation to be "slack"-variable based
equserco.mod : Changed handling of call parameters to facilitate cumulative variable terms
uc_flo.mod : Added term for VAR_CUMFLO cumulative flow variables
uc_compd.mod : Added term for VAR_CUMCOM cumulative commodity variables
bnd_ucv.mod : Added control to clearing of free lower bounds (GAMS tweak)
mod_equa.mod : Added new EQ_CUMFLO equation & changed CUMNET/CUMPRD equations
rptmain.mod : Changed directives to be case independent
rptlite.rpt : Added reporting of VAR_CUMFLO levels and marginals; fixed bug when SENSIS+RPT_FLOTS
spoint.mod : Added initialization of cumulative variables
solve.stp : Added/modified the hadling of cumulative equations
initmty.stc : Added declaration of new S_FLO_CUM attribute plus a new internal attribute
prep_ext.stc : Updated handling of S_COM_CUMxxx attributes with BOH/EOH support
stages.stc : Added processing of S_FLO_CUM attribute
fillsow.stc : Added clearing of leftover TS indicators
sensis.stc : Added update of bounds for cumulative variables
rptmain.stc : Added reporting of VAR_CUMFLO marginals
solsetv.v3 : Added reporting of VAR_CUMFLO levels and marginals
eqcaflac.vda : Add TOP control to storage case to support conversion storage
times2veda.vdd: Added reporting of VAR_CUMFLO levels and marginals
times2veda_stc.vdd: Added reporting of VAR_CUMFLO marginals
Added files:
eqcumflo.mod : New equation for cumulative process flows
-----------------------------------------------------------------------------------------
TIMES Version 3.0.1
-----------------------------------------------------------------------------------------
Date: 9-May-2010 [AL]:
1) New versions of reporting routines for ANSWER
2) Added new parameter G_OFFTHD(ALLYEAR) for defining threshold for OFF ranges
3) Better handling of cumulative constraints in stepped mode or shorter horizons
4) Added support for reporting EQ_IRE marginals
5) Added support for IE options 4/5 and constant labels in filparam
6) Cosmetic improvements
Modified files: (reason)
INITSYS.mod : Increased version number to 3.0.1
initmty.mod : (2),(3)
ppmain.mod : (2)
pp_off.mod : (2)
filparam.gms : (5)
mod_equa.mod : (6)
rptmain.mod : (1)
rptlite.rpt : (4)
rptmain.stc : (4)
solve.stp : (3)
solputta.ans : (1)
solsubta.ans : (1)
-----------------------------------------------------------------------------------------
TIMES Version 3.0.2
-----------------------------------------------------------------------------------------
Date: 19-May-2010 [AL]:
1) New feature: The N bound may be used for identifying a MULTI multiplier for horizon-dependent cumulative constraints
2) New feature: The UC_TIME attribute may be used for defining horizon- and period-length-dependent RHS constants
3) Fixed small bug related to cost reporting under the SOLVEDA 1 option
4) Experimental support for using the LO reservoir for CH4 and N2O
5) Other small improvements
Modified files: (reason)
INITSYS.mod : Increased version number to 3.0.2
initmty.mod : (2)
ppmain.mod : (1)
preppm.mod : (2)
filparam.gms : (5)
coef_obj.mod : (1)
eqcumflo.mod : (1)
eqcumcom.mod : (1)
equserco.mod : (2)
rpt_obj.mod : (3)
initmty.cli : (4)
coef_ext.cli : (4)
equ_ext.cli : (5)
sensis.stc : (1)
solve.stp : (1)
-----------------------------------------------------------------------------------------
TIMES Version 3.0.3
-----------------------------------------------------------------------------------------
Date: 24-May-2010 [AL]:
1) Added new feature: Support for dynamic process-wise equations more directly
2) Changed QA log to display labels in full by flexible fields
3) Fixed MACRO support
4) Added default COEF_OBJINV values for all PRC_CAP
5) Performance improvements
Modified files: (reason)
INITSYS.mod : Increased version number to 3.0.3
initmty.mod : (2)
ppmain.mod : (5)
eqflomrk.mod : (5)
eqmain.mod : (3)
bndmain.mod : (3)
initmty.vda : (1)
init_ext.vda : (1)
prep_ext.vda : (1)
ppm_ext.vda : (1)
equ_ext.vda : (1)
mod_ext.vda : (1)
rptlite.rpt : (1)
rpt_objc.rpt : (4)
solve.stp : (1)
times2veda.vdd: (1)
Added file:
equcrtp.vda : Implementation of new dynamic process-wise equations
-----------------------------------------------------------------------------------------
TIMES Version 3.0.4
-----------------------------------------------------------------------------------------
Date: 20-Jul-2010 [AL]:
1) Added aggregated calculation of gross benefit/cost indicators (GGAP, GRATIO)
2) Added support for one-sided storage flows in commodity-balance equations
3) Added support for FLO_SHAR(r,y,p,c,'ACT',ts,bd) for timeslice storage
-- by using upper bound 1 you can limit the output flow to the maximum discharge
4) Added support for including storage flows in peaking constraints (using PKNO+PKCNT)
5) Added reporting of dynamic process bound and EQ_IRE marginals, and COM_AGG aggregated outputs
6) Fixed use of FIXBOH with SENSIS/STAGES
7) Miscellaneous small fixes and improvements
Modified files: (reason)
INITSYS.mod : Increased version number to 3.0.4 (e)
ppmain.mod : (2)
pp_reduce.mod : (3)
pp_lvlpk.mod : (4)
eqcombal.mod : (2)
eqpeak.mod : (4)
eqcumflo.mod : (7)
eqcapvac.mod : (7)
pp_clean.mod : (1)
rptlite.rpt : (5)
rpt_objc.rpt : (1)
rpt_dam.mod : (7)
prep_ext.stc : (7)
bnd_ucw.stc : (7)
rptmain.stc : (5)
solve.stp : (6)
ppm_ext.vda : (7)
eqashar.vda : (3)
times2veda.vdd: (5)
Added files:
cal_stgn.mod : (2), new version or cal_stg.mod
-----------------------------------------------------------------------------------------
TIMES Version 3.0.5
-----------------------------------------------------------------------------------------
Date: 24-Aug-2010 [AL]:
1) New reporting attribute Cap_New: lumpsum investments and commissioned capacity
2) Improved handling of fractional and negative ILED
3) Added support for referencing capacity commissioned in period in UC_CAP
4) Minor improvements related to cost indicators and performance
Modified files:
INITSYS.mod : Increased version number to 3.0.5
ppmain.mod : (2)
preppm.mod : (4)
coef_obj.mod : (4)
eqobjinv.mod : (2),(4)
eqobjfix.mod : (4)
eqobsalv.mod : (4)
eqobjvar.mod : (4)
uc_ncap.mod : (3)
rptlite.rpt : (1)
rptmain.stc : (1)
rpt_obj.rpt : (4)
rpt_objc.rpt : (4)
cost_ann.rpt : (1)
solputta.ans : (1)
solsetv.v3 : (1)
times2veda.vdd: (1)
Removed files:
solputv.v3 : Obsolete, not supported
solcostv.v3 : Obsolete, not supported
-----------------------------------------------------------------------------------------
TIMES Version 3.0.6
-----------------------------------------------------------------------------------------
Date: 30-Aug-2010 [AL]:
1) Added New UC_ATTR modifier NEWFLO for referring to the flows of newly installed capacity only (vintaged)
2) Changed FLO_EMIS to be more general, supporting flow relationships between any flows
3) Added a currency conversion utility based on user-defined conversion tables G_CUREX and R_CUREX
Modified files: (reason)
INITSYS.mod : Increased version number to 3.0.6
initsys.mod : (1)
initmty.mod : (3)
ppmain.mod : (3)
preppm.mod : (3)
eqptrans.mod : (2)
uc_act.mod : (1)
uc_flo.mod : (1)
uc_ire.mod : (1)
pp_qack.mod : (2)
pp_prelv.vda : (2)
ppm_ext.vda : (2)
Added file:
curex.gms : Implementation of Currency conversions
-----------------------------------------------------------------------------------------
TIMES Version 3.0.7
-----------------------------------------------------------------------------------------
Date: 4-Oct-2010 [AL]:
1) Changed declarations of Damage parameters to circumvent bug in GAMS 23.0 < 23.x < 23.5
2) Fixed small buglet in fixed costs for Case 2b, and in alternative ALT and LIN formulations
3) Amended the calculation of IDC in Case 2b (improved accuracy under changing discount rates)
4) Fixed reporting of User_Maxbet in UC_R_EACH case, with reference to the regional Max
5) Cosmetic improvement
Modified files:
INITSYS.mod : Increased version number to 3.0.7
ppmain.mod : (2)
coef_cpt.mod : (5)
eqobjinv.mod : (3)
eqobjfix.mod : (2)
eqdamage.mod : (1)
rptlite.rpt : (4)
prep_ext.stc : (1)
rptmain.stc : (4)
-----------------------------------------------------------------------------------------
TIMES Version 3.1.0 (e)
-----------------------------------------------------------------------------------------
Date: 8-Dec-2010 [AL]:
1) Added support for Oblong Objective Accounting, which improves STD/MOD formulations
- Set to YES by default when MOD activated; disable by expicit NO setting
- Can also be recommended for users of STD/AUTO
2) Full review of all objective formulations with small additional improvemenents
3) Added support for LO bound availablility factors
4) Added FLO_EFF as an alias for FLO_EMIS (supports now any commodities)
5) Added support for using PRC_PKNO/NCAP_PKCNT for import flows
6) Some cleanup of obsolete stuff / cosmetic tweak
Modified files: (reason)
INITSYS.mod : Increased version number to 3.1.0
initmty.mod : (1),(2),(6)
ppmain.mod : (1),(2),(3),(6)
preppm.mod : (6)
coef_cpt.mod : (1),(2),(3)
coef_obj.mod : (6)
eqdeclr.mod : (3)
eqmain.mod : (3)
eqcapact.mod : (3)
eqpeak.mod : (5)
eqobj.mod : (1),(2)
eqobjinv.mod : (1),(2)
eqobjfix.mod : (1),(2)
eqobsalv.mod : (1),(2)
eqobjfix.rpt : (1),(2)
eqobsalv.rpt : (1),(2)
mod_equa.mod : (3)
rptlite.rpt : (6)
rpt_obj.rpt : (1),(2)
rpt_objc.rpt : (1),(2)
cost_ann.rpt : (1),(2)
coef_alt.lin : (1),(2)
coef_vc.lin : (1),(2)
solve.stp : (1),(2)
rptmain.stc : (6)
initmty.vda : (4)
init_ext.vda : (4)
pp_prelv.vda : (6)
-----------------------------------------------------------------------------------------
TIMES Version 3.1.1
-----------------------------------------------------------------------------------------
Date: 5-Jan-2011 [AL]:
1) Fixed small bug related to reporting of IRE_FLOSUM flows under stochastic mode
2) Changed to provide support for using explicit zero discount factor
3) Small performance improvements
4) Fixed small discrepancy between code and documentation
Modified files: (reason)
INITSYS.mod : Increased version number to 3.1.1
initmty.mod : (3)
timslice.mod : (3)
preshape.gms : (4)
ppmain.mod : (3)
pp_lvlff.mod : (3)
pp_lvlfs.mod : (3)
coef_obj.mod : (2)
pp_qack.mod : (3)
init_ext.vda : (3)
ppm_ext.vda : (3)
coef_ext.vda : (2)
pp_actef.vda : (3)
rptmain.stc : (1)
-----------------------------------------------------------------------------------------
TIMES Version 3.1.2
-----------------------------------------------------------------------------------------
Date: 14-Mar-2011 [AL]: Various small improvements
1) Small improvements to peak constraints generation; now possible at any TSLVL with UD-CG
2) Removed superfluous RS_TREE entries for zero YRFR timeslices
3) Added support for re-generation of reports from previous solution as well as entirely fixed horizon
4) Added support for using NCAP_BND(N) for (re-)defining PRC_NOFF ranges
5) Added new reporting parameter Reg_ACost (regional total annualized costs)
6) Fixed small bug when using EXT_EOH together with interpolation options for CM_MAXC
7) Fixed problem with using zero probablilities for some branches under stochastic mode
Modified files: (reason)
INITSYS.mod : Increased version number to 3.1.2
initmty.mod : (4)
maindrv.mod : (3)
ppmain.mod : (1)
timslice.mod : (2)
eqdeclr.mod : (3)
eqpeak.mod : (1)
mod_equa.mod : (3)
spoint.mod : (3)
solve.stp : (3)
rptlite.rpt : (5)
cost_ann.rpt : (5)
solsetv.v3 : (5)
initmty.vda : (5)
init_ext.vda : (4)
rpt_ext.cli : (7)
coef_ext.cli : (6),(7)
rptmain.stc : (7)
times2veda.vdd: (5)
times2veda_stc.vdd: (5)
-----------------------------------------------------------------------------------------
TIMES Version 3.1.5
-----------------------------------------------------------------------------------------
Date: 19-May-2011 [AL]: Various small improvements
1) Fixed support for using NRG as the PG for TSS/IPS storage
2) Added support for uncertain inv. costs and process transformation
3) Cosmetic cleanup of obsolete stuff
4) Storage improvements: different input/output supported for both IPS/TSS, flaw in TSS activity costs fixed
5) Constant objective term related to RESID processes now consistent under OBLONG/ALT/LIN
6) Fixed TIMES-MACRO compliance broken due to RVPT introduced in v3.0.5
7) Fixed NCAP_AFC support for single-commodity storage (broken in v3.0.4)
Modified files: (reason)
INITSYS.mod : Increased version number to 3.1.5
initmty.mod : (3)
maindrv.mod : (2),(3)
ppmain.mod : (1),(4)
preppm.mod : (3)
timslice.mod : (4)
coef_obj.mod : (2)
eqmain.mod : (2),(6)
eqobjinv.mod : (2),(5)
eqobjfix.mod : (2),(5)
eqobsalv.mod : (2)
eqobjvar.mod : (3),(4)
eqobjinv.rpt : (2),(6)
eqobsalv.rpt : (2)
eqptrans.mod : (2)
eqflomrk.mod : (3)
eqstgtss.mod : (4)
eqstgips.mod : (4)
eqstgips.lin : (4)
cal_fflo.mod : (2)
cal_nored.red : (2)
cal_red.red : (2)
equserco.mod : (2)
uc_flo.mod : (2)
uc_compd.mod : (2)
eqbndcst.mod : (2)
sol_flo.red : (2)
rpt_obj.rpt : (2)
rpt_objc.rpt : (2)
cost_ann.rpt : (2)
init_ext.vda : (2)
pp_prelv.vda : (3)
ppm_ext.vda : (2),(7)
pp_actef.vda : (2)
coef_ext.vda : (2)
ucbet.vda : (2)
coef_alt.lin : (2),(5)
initmty.stc : (2)
prep_ext.stc : (2)
stages.stc : (2)
sensis.stc : (2)
Added file:
setglobs.gms : Safe-setting of some global controls
-----------------------------------------------------------------------------------------
TIMES Version 3.2.0
-----------------------------------------------------------------------------------------
Date: 7-Jul-2011 [AL]: Introducing early and lumpy retirements; small other improvements
1) Implementation of early retirements
2) Implementation of lumpy retirements
3) Added support for using FLO_FUNCX with ACT_FLO parameters (VDA_FLOP/PRC_ACTFLO)
4) Fixed salvage reporting when both RPOINT and FIXBOH
5) Added optional reporting of value flows for processes
6) Added support for using group commodities as the derived commodity in FLO_EFF
Modified files: (reason)
initsys.mod : Increased version number to 3.2.0
initmty.mod : (1),(2)
maindrv.mod : (2)
setglobs.gms : (1)
preppm.mod : (1)
ppmain.mod : (1)
eqobj.mod : (1)
eqobjfix.mod : (1)
eqobsalv.mod : (1)
eqcpt.mod : (1)
eqcapact.mod : (1)
eqpeak.mod : (1)
cal_cap.mod : (1)
cal_caps.mod : (1)
mod_equa.mod : (1)
mod_vars.mod : (1)
spoint.mod : (4)
solve.mod : (2)
rptlite.rpt : (1)
cost_ann.rpt : (1)
rptmain.stc : (1)
prep_ext.vda : (1)
ppm_ext.vda : (3)
pp_prelv.vda : (6)
eqcaflac.vda : (1)
coef_ext.vda : (1)
solve.stp : (1)
mod_vars.dsc : (2)
equ_ext.dsc : (2)
prepret.dsc : (1),(2)
solputta.ans : (1)
solsetv.v3 : (5)
times2veda.vdd: (5)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.0
-----------------------------------------------------------------------------------------
Date: 22-Sep-2011 [AL]: Introducing new features for stochastic mode
1) Added a new SPINES variant for modeling recurring stochastics
2) Added new uncertain parameter S_COM_FR
3) Added new uncertain parameter S_NCAP_AFS
4) Generalized FLO_FR to support flow fractions of total under parent
5) Added a few QA_CHECKs for execution errors
6) Added option for using NCAP_BND('N') for defining exact process start year
7) Small improvements to early retirements
8) Rearranging and cleanup of some code
Modified files: (reason)
initsys.mod : Increased version number to 3.3.0
initmty.mod : (1),(2),(3)
maindrv.mod : (1)
setglobs.gms : (1)
ppmain.mod : (1),(6)
preppm.mod : (6)
eqdeclr.mod : (1),(8)
eqmain.mod : (1),(3)
eqobj.mod : (1),(8)
eqobjvar.mod : (1)
eqcapact.mod : (3)
eqcombal.mod : (2)
eqpeak.mod : (1)
eqflofr.mod : (4)
eqcumcom.mod : (8)
eqcumflo.mod : (1),(8)
eqstgips.mod : (1)
eqbndcst.mod : (8)
eqdamage.mod : (8)
equserco.mod : (1)
mod_equa.mod : (1)
mod_vars.mod : (1)
pp_qack.mod : (5)
spoint.mod : (8)
bndmain.mod : (8)
bnd_elas.mod : (2)
rptmain.mod : (1)
rptlite.rpt : (8)
initmty.stc : (2),(3)
prep_ext.stc : (2),(3)
stages.stc : (1),(2),(3)
sensis.stc : (8)
solve.stc : (1)
rptmain.stc : (1)
init_ext.vda : (6)
prep_ext.vda : (6)
coef_ext.vda : (6)
equcrtp.vda : (8)
eqashar.vda : (8)
eqcaflac.vda : (3)
equ_ext.vda : (1)
solve.stp : (1)
equ_ext.dsc : (1)
prepret.dsc : (7)
solputta.ans : (7)
times2veda.vdd: (8)
Added files:
rptmisc.rpt : (8)
clearsol.stc : (1),(8)
pextlevs.stc : (1)
bnd_cum.mod : (8)
bnd_ire.vda : (8)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.1
-----------------------------------------------------------------------------------------
Date: 24-Oct-2011 [AL]: Maintenance update: small fixes
1) Fixed assignment of balance type for 'N' type commodities
2) Generalize S_FLO_FUNC to apply to IRE_FLOSUM as well
3) Fixed levelising of IRE_FLOSUM/FLO_EMIS specified on 'ACT' of trade process
4) Updated SOLPUTTA.ANS
5) Fixed obsolete clear in eqobsalv.rpt
Modified files: (reason)
initsys.mod : Increased version number to 3.3.1
ppmain.mod : (1),(2),(3)
eqobjvar.mod : (2)
cal_ire.mod : (2)
rpt_obj.rpt : (2)
cost_ann.rpt : (2)
eqobsalv.rtp : (5)
rptmisc.rpt : (2)
pp_prelv.vda : (2)
solputta.ans : (3)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.2
-----------------------------------------------------------------------------------------
Date: 10-Jan-2012 [AL]: Improvements into the TIMES-MACRO code plus MERGE link
1) Added support for linking the MERGE code
2) Improvements into MACRO code performance
3) Cleanup and updating of MACRO routine interface up-to-date
4) Imporved MACRO calibration behavior with zero Base Year marginals
5) Fixed bug in MACRO calibration routine
6) Added optional reporting of topology indicators
7) Added auto-activation switch for DSC
Modified files: (reason)
initsys.mod : Increased version number to 3.3.2
initmty.mod : (7)
maindrv.mod : (1)
coef_obj.mod : (3)
rptlite.rpt : (6)
initmty.tm : (1)
eqobj.tm : (2),(3)
eqobjinv.tm : (2)
eqobjfix.tm : (2)
eqobsalv.tm : (3)
eqobjvar.tm : (2)
bnd_macro.tm : (1)
mod_vars.tm : (3)
mod_equa.tm : (3)
eqmacro.tm : (2),(4)
rptmain.tm : (3)
ddfnew.gms : (4),(5)
ddfnew0.gms : (4),(5)
initmty.dsc : (7)
prep_ext.dsc : (7)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.3
-----------------------------------------------------------------------------------------
Date: 13-Mar-2012 [AL]: Improvements into storage variable cost accounting + small fixes
1) Fixed activity cost and losses accounting for DAYNITE storage
2) Added support for using FLO_COST and FLO_DELIV for storage flows (Cost for Charge, Deliv for Discharge)
3) Fixed problem in ANSWER reporting under stochastic mode
4) Improved small aspects in Merge linking
5) Fixed small problems in TIMES-MACRO cost accounting and DDF calibration
Modified files: (reason)
initsys.mod : Increased version number to 3.3.3
timslice.mod : (1)
eqobjvar.mod : (2)
spoint.mod : (4)
eqstgtss.mod : (1)
rptmain.mod : (4)
cost_ann.rpt : (1),(2)
eqobjinv.tm : (5)
eqobjfix.tm : (5)
rptmain.tm : (5)
ddfnew.gms : (5)
solputta.ans : (3)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.4
-----------------------------------------------------------------------------------------
Date: 24-Apr-2012 [AL]: Improvements into storage modeling; fix into FIXBOH
1) Added support for generalized storage processes
2) Fixed capact equations for storage at non-PRC_TS timeslices
3) Added support for input-based NCAP_AFC for storage
4) Added parameter for the number of WEEKLY storage cycles
5) Fixed small solution leak when using FIXBOH
6) Fixed SENSIS mode that was broken since v3.3.2
7) Cosmetic cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.3.4
initmty.mod : (7)
globals.def : (4)
ppmain.mod : (1),(7)
timslice.mod : (1),(4)
pp_lvlfs.mod : (7)
eqdeclr.mod : (1)
eqcapact.mod : (1),(2)
eqcaflac.vda : (1),(3)
eqstgtss.mod : (1)
eqstgaux.mod : (1)
eqstgin.mod : (1)
bnd_stg.mod : (1)
mod_equa.mod : (1)
init_ext.vda : (7)
ppm_ext.vda : (3)
rptlite.rpt : (6)
rptmisc.rpt : (5)
solve.stp : (5)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.5
-----------------------------------------------------------------------------------------
Date: 12-Jun-2012 [AL]: Small improvements into time-stepped TIMES & DSC
1) Added support for combining flexible fixing of first periods with TIMESTEP
2) Added support for semi-continuous VAR_NCAP (new investments)
3) Cosmetic cleanup/improvement
Modified files: (reason)
initsys.mod : Increased version number to 3.3.5
initmty.mod : (1)
maindrv.mod : (1)
eqactbnd.mod : (1)
eqblnd.mod : (1)
eqbndcom.mod : (1)
eqcombal.mod : (1)
eqdamage.mod : (1)
eqflobnd.mod : (1)
eqflofr.mod : (1)
eqflomrk.mod : (1)
eqpeak.mod : (1)
eqstgin.mod : (1)
eqstgout.mod : (1)
equcrtp.vda : (1)
equ_ext.dsc : (1)
equ_ext.etl : (1)
rptmain.rpt : (3)
sol_flo.red : (3)
solve.stp : (1)
*.dsc : (2)
-----------------------------------------------------------------------------------------
TIMES Version 3.3.6
-----------------------------------------------------------------------------------------
Date: 1-Jul-2012 [AL]: Support for power flow equations added (still experimental)
1) Added support for powerflow equations
2) Other minor improvement / cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.3.6
cal_ire.mod : (2)
eqcombal.mod : (2)
eqpeak.mod : (2)
initmty.vda : (1)
init_ext.vda : (1)
prep_ext.vda : (1),(2)
ppm_ext.vda : (1),(2)
pp_prelv.vda : (1)
equ_ext.vda : (1)
eqcaflac.vda : (1),(2)
mod_ext.vda : (1)
eqobj.tm : (2)
Added files:
powerflo.vda : Implementation of powerflo equations
Deleted files:
timesmacro2veda.vdd : No longer needed - the standard vdd will work
-----------------------------------------------------------------------------------------
TIMES Version 3.3.7
-----------------------------------------------------------------------------------------
Date: 13-Jul-2012 [AL]: Small improvements
1) Integration of SHAPE/MULTI processing for NCAP_AF/AFS
2) Added support for currency-dependent discount rates for Damage costs
3) Other minor improvement / cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.3.7
initmty.mod : (1),(3)
ppmain.mod : (1),(3)
pp_reduce : (3)
preppm.mod : (1)
preshape.gms : (1)
fillvint.gms : (3)
coef_cpt.mod : (1)
coef_ptr.mod : (3)
pp_shapr.mod : (1)
eqdamage.mod : (2)
pp_qack.mod : (3)
rpt_dam.mod : (2)
rptlite.rpt : (2)
initmty.vda : (3)
init_ext.vda : (3)
prep_ext.vda : (1)
Deleted files:
pp_multi.mod: No longer needed
-----------------------------------------------------------------------------------------
TIMES Version 3.3.8
-----------------------------------------------------------------------------------------
Date: 18-Aug-2012 [AL]: Small reporting improvements
1) Added reporting of forcing by main GHG emission type
2) Added reporting of retirements under VEDA
3) Improved optional reporting of topology indicators
Modified files: (reason)
initsys.mod : Increased version number to 3.3.8
rptlite.rpt : (2),(3)
rptmisc.rpt : (2)
solsetv.v3 : (3)
initmty.cli : (1)
rpt_par.cli : (1)
solputta.ans : (2)
*.vdd : (3)
Deleted files:
*.zzz: Obsolete
-----------------------------------------------------------------------------------------
TIMES Version 3.4.0
-----------------------------------------------------------------------------------------
Date: 30-Nov-2012 [AL]: TIMES-MACRO and Grid modeling enhancements
1) Implementation of MACRO Decomposition Algorithm with soft-linked MSA
2) Improvements into original TIMES-MACRO + linkages to soft-linked MSA
3) Further improvements into power flow modeling
4) Added regional annual damage cost reporting
Modified files: (reason)
initsys.mod : Increased version number to 3.4.0
initmty.mod : (1),(2)
ppmain.mod : (2)
maindrv.mod : (1)
coef_obj.mod : (2)
eqobj.mod : (1)
eqobjinv.mod : (2)
eqobjfix.mod : (2)
cal_ire.mod : (3)
eqpeak.mod : (3)
mod_vars.mod : (3)
mod_equa.mod : (1)
rptmain.mod : (1)
solsetv.v3 : (1),(2)
initmty.tm : (2)
prep_ext.tm : (2)
ppmain.tm : (2)
mod_vars.tm : (2)
eqdeclr.tm : (2)
eqmacro.tm : (2)
eqobj.tm : (2)
eqobjfix.tm : (2)
eqobjinv.tm : (2)
eqobjvar.tm : (2)
mod_equa.tm : (2)
bnd_macro.tm : (2)
rptmain.tm : (2)
initmty.vda : (3)
prep_ext.vda : (3)
pp_prelv.vda : (3)
coef_ext.vda : (3)
mod_ext.vda : (3)
powerflo.vda : (3)
rpt_dam.cli : (4)
times2veda.vdd: (1),(2)
solputta.ans : (1),(2)
Added files : (reason)
eqobjann.tm : (1),(2)
initmty.msa : (1)
mod_vars.msa : (1)
equ_ext.msa : (1)
rpt_ext.msa : (1)
solprep.msa : (1)
solvcoef.msa : (1)
solve.msa : (1)
ddfupd.msa : (1)
writeddf.msa : (1)
Deleted files:
eqobsalv.tm : Obsolete
ddfnew.gms : Obsolete
-----------------------------------------------------------------------------------------
TIMES Version 3.4.1
-----------------------------------------------------------------------------------------
Date: 31-Dec-2012 [AL]: Small improvements
1) runtime licence support
2) climate module improvements
3) PRC_CG QA check refined under RELAX_PRC_CG
Modified files: (reason)
initsys.mod : Increased version number to 3.4.1
spoint.mod : (1)
eqmain.mod : (1)
mod_equa.mod : (1)
pp_qack.mod : (3)
mod_ext.vda : (1)
initmty.cli : (2)
coef_ext.cli : (2)
equ_ext.cli : (2)
mod_vars.cli : (2)
rpt_par.cli : (2)
Deleted files :
putdset.v3 : obsolete
solsubv.v3 : obsolete
-----------------------------------------------------------------------------------------
TIMES Version 3.4.2
-----------------------------------------------------------------------------------------
Date: 24-Feb-2013 [AL]: Small improvements mainly to reporting routines
1) Small improvements and fixes to reporting issues for MSA/TM
2) Changed VEDA-BE reporting of Reg_Wobj, introduced system label prefix
3) Optional reporting of levelized costs and electricity supply by energy source
4) Cosmetic improvements and cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.4.2
initmty.mod : (2),(4)
ppmain.mod : (4)
pp_lvlpk.mod : (4)
coef_obj.mod : (4)
eqcombal.mod : (4)
eqpeak.mod : (4)
eqobjels.mod : (4)
eqdeclr.mod : (4)
rptmain.mod : (4)
rptlite.rpt : (2),(3)
rptmain.rpt : (2),(4)
rpt_obj.rpt : (2)
rpt_objc.rpt : (2),(3)
cost_ann.rpt : (4)
rptmisc.rpt : (3),(4)
eqobjels.rpt : (4)
eqobsalv.rpt : (4)
eqdamage.mod : (4)
rpt_dam.mod : (4)
rpt_ext.cli : (4)
rptmain.stc : (3),(4)
initmty.msa : (1)
mod_vars.msa : (1)
equ_ext.msa : (1)
rpt_ext.msa : (1)
solprep.msa : (1)
solvcoef.msa : (1)
solve.msa : (1)
writeddf.msa : (1)
initmty.tm : (1)
ppmain.tm : (1)
eqmacro.tm : (1)
eqobj.tm : (1)
eqobjann.tm : (4)
rptmain.tm : (1),(4)
solsetv.v3 : (2),(3)
solputta.ans : (1),(3),(4)
*.vdd : (2),(3)
Added files:
sol_ire.rpt : IRE flow solution parameters
par_uc.rpt : UC dual solution parameters
solsysd.v3 : define system labels
-----------------------------------------------------------------------------------------
TIMES Version 3.4.3
-----------------------------------------------------------------------------------------
Date: 23-Apr-2013 [AL]: Maintenance release
1) Improved handling of PASTI installed within horizon
2) Fixed small defect in RTCS_FR definition
3) Fixed small defect in flow reductions
4) Cosmetic improvements and cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.4.3
initmty.mod : (4)
ppmain.mod : (1),(2),(4)
pp_qafs.mod : (4)
pp_qack.mod : (4)
coef_cpt.mod : (1)
coef_obj.mod : (1),(4)
err_stat.mod : (4)
eqobj.* : (4)
eqobjinv.* : (1),(4)
bndmain.mod : (4)
wrtbprice.mod : (4)
coef_alt.lin : (1),(4)
init_ext.vda : (1),(4)
prep_ext.vda : (1),(4)
ppm_ext.vda : (1),(3),(4)
coef_ext.vda : (1)
-----------------------------------------------------------------------------------------
TIMES Version 3.4.4
-----------------------------------------------------------------------------------------
Date: 19-July-2013 [AL]: Small improvements
1) Added support for defining PRC_PKNO & PRC_PKAF via NCAP_PKCNT I/E
2) Added forcing function updating, removed taxes/subsidies, and fixed reporting problem in MSA
3) Added removal of redundant FLO_MARK equations
4) Added parameter for default IE-options: IE_DEFAULT
5) Removed unused corridor process concept
6) Cosmetic improvements & cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.4.4
initmty.mod : (4),(6)
ppmain.mod : (5),(6)
preppm.mod : (4),(6)
prepparm.gms : (4)
pp_reduce.red : (5)
coef_nio.mod : (6)
coef_obj.mod : (6)
fillcost.gms : (6)
eqdeclr.mod : (6)
eqmain.mod : (6)
eqflobnd.mod : (6)
eqflomrk.mod : (3)
eqire.mod : (5)
equserco.mod : (6)
cal_ire.mod : (5)
sol_ire.rpt : (5)
cost_ann.rpt : (5)
rptmisc.rpt : (6)
rptmain.rpt : (6)
init_ext.vda : (1)
prep_ext.vda : (6)
pp_prelv.vda : (6)
ppm_ext.vda : (6)
pp_actef.vda : (6)
eqashar.vda : (6)
ucbet.vda : (5)
coef_ext.cli : (2)
solve.stp : (5)
initmty.msa : (6)
solprep.msa : (2)
solve.msa : (2)
rpt_ext.msa : (2)
ppmain.tm : (6)
rptmain.tm : (6)
eqobjann.tm : (2)
solputta.ans : (6)
-----------------------------------------------------------------------------------------
TIMES Version 3.4.5
-----------------------------------------------------------------------------------------
Date: 9-Sep-2013 [AL]: New alias/shortcut attributes
1) Added shortcut NCAP_START(r,p)=y for PRC_NOFF(r,p,BOH,y-1)
2) Added alias ACT_FLO for VDA_FLOP
3) Added support for net import peak contribution when PKNO and by capacity when PKAF
4) Cosmetic improvements & cleanup
Modified files: (reason)
initsys.mod : Increased version number to 3.4.5
initmty.mod : (1),(4)
ppmain.mod : (1),(3)
pp_lvlpk.mod : (3)
pp_reduce.red : (3)
eqmain.mod : (4)
eqactbnd.mod : (4)
eqbndcom.mod : (4)
equserco.mod : (4)
cal_ire.mod : (3)
eqpeak.mod : (3)
pp_dumpd.mod : (4)
rptmisc.rpt : (3)
initmty.vda : (2),(4)
init_ext.vda : (1),(2)
prep_ext.vda : (4)
pp_prelv.vda : (4)
-----------------------------------------------------------------------------------------
TIMES Version 3.4.9
-----------------------------------------------------------------------------------------
Date: 20-Dec-2013 [AL]: New OBJ reporting parameter + small fixes
1) Added new reporting parameters Cost_NPV and Time_NPV for VEDA-BE