forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.1
4724 lines (3083 loc) · 135 KB
/
ChangeLog.1
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
2001-12-05 Per Abrahamsen <[email protected]>
* Makefile: More i386-linux support.
2001-12-05 Per Abrahamsen <[email protected]>
* Version 2.00 released.
2001-12-05 Per Abrahamsen <[email protected]>
* Makefile: Support i386-linux.
* common.h: Ditto.
2001-11-29 Per Abrahamsen <[email protected]>
* rootdens_G_P.C (Rootdens_G_P): Made it a struct.
* rootdens_G_P.C, rootdens.h (set_density): Take DS argument.
* root_system.C (full_grown, tick, full_grown): Update callers.
* root_system.C, root_system.h (tick, full_grown): Take DS arguments.
* crop_std.C (initialize, tick): Update callers.
* crop_simple.C (tick): Ditto.
2001-11-28 Per Abrahamsen <[email protected]>
* rootdens.C, rootdens.h (density_distribution_parameter): Moved
from here.
* rootdens_G_P.C (density_distribution_parameter): To here.
2001-11-28 Per Abrahamsen <[email protected]>
* Version 1.99 released.
2001-11-27 Per Abrahamsen <[email protected]>
* harvesting.C (load_syntax): Make 'cut_delay' take absolute value.
(operator): Update caller.
* development.C (tick_daily): Support `cut_stress'.
* crop_std.C (tick): Update caller.
* canopy_std.C (CropHeight): Obey 'HvsWStem'.
* lib/grass2.dai, lib/maize.dai, lib/pea.dai, lib/rye.dai,
lib/sbarley.dai, lib/srape.dai, lib/sugarbeet.dai, lib/swheat.dai,
lib/wbarley.dai, lib/wrape.dai, lib/wwheat.dai: Fix LAIDist.
2001-11-19 Per Abrahamsen <[email protected]>
* lib/log.dai ("Root Density"): New log model.
* rootdens_G_P.C (set_density): Support MinDens.
* root_system.C (load_syntax): Added checks.
* rootdens_G_P.C (Rootdens_G_PSyntax): Added checks.
* Version 1.98 released.
2001-11-19 Per Abrahamsen <[email protected]>
* syntax.C (check): Add numeric checks.
* check_range.C, check_range.h: Renamed from check_std.
* Makefile (OTHER, REMOVE): Ditto.
2001-11-17 Per Abrahamsen <[email protected]>
* syntax.C, syntax.h (non_negative, non_positive, check): Removed.
* check_std.h, check_std.C (NonPositive, Negative, Positive,
RangeII, RangeIE, RangeEI, RangeEE, Below, BelowOrEqual, Above,
AboveOrEqual): New classes.
* am.C (AM_Syntax): Use them.
* adsorption_langmuir.C (AdsorptionLangmuirSyntax): Use them.
* adsorption_freundlich.C (AdsorptionFreundlichSyntax): Use them.
* action_tillage.C (ActionSetPorositySyntax): Use them.
* action_surface.C (ActionSurfaceSyntax): Use them.
* action_spray.C (ActionSpraySyntax): Use them.
* action_irrigate.C (load_syntax): Use them.
* action_heat.C (ActionHeatSyntax): Use them.
* action_crop.C (check_alist): Use them.
* crop_simple.C (CropSimpleSyntax): Use them.
* om.C (load_syntax): Use them.
* hydraulic_M_C.C (HydraulicM_CSyntax): Use it.
* hydraulic_B_C.C (HydraulicB_CSyntax): Use it.
* hydraulic.C (load_syntax): Use them.
2001-11-16 Per Abrahamsen <[email protected]>
* Version 1.97 released.
2001-11-16 Per Abrahamsen <[email protected]>
* check.C, check.h, check_std.C, check_std.h: New utility.
* Makefile (OTHER): Add them.
* syntax.C, syntax.h (check, add): Support them.
* parser_file.C (load_list): Call new syntax check.
* main.C (main): Accept string exceptions.
* syntax.h, syntax.C (is_fraction): Removed.
* all: Fixed callers.
* syntax.h (add_submodule): Removed template.
* all: Fixed callers.
2001-11-15 Per Abrahamsen <[email protected]>
* syntax.C, syntax.h (add_submodule_sequence): New member
function.
* syntax.h (add_submodule_sequence): Removed template.
x * vegetation_permanent.C (VegetationPermanentSyntax): Don't use
`add_submodule_sequence'.
* organic_matter.C (load_syntax): Ditto.
* crop_sold.C (CropSoldSyntax): Ditto.
* crop_old.C (CropOldSyntax): Ditto.
* crop_simple.C (CropSimpleSyntax): Ditto.
* bioincorporation.C (load_syntax): Ditto.
* organic_matter.C (Buffer::tick): Remove bogus assertion.
* Version 1.96 released.
2001-11-15 Per Abrahamsen <[email protected]>
* organic_matter.C (Buffer::tick): Max rate is 1.0.
* lib/log.dai ("Crop Production"): Log `cut_stress'.
* crop_std.C (tick): Use `cut_stress'.
* harvesting.C (operator): Set `production_delay' and `last_cut'.
2001-11-14 Per Abrahamsen <[email protected]>
* harvesting.h, harvesting.C (last_cut): New state variable.
(production_delay): New state variable.
(cut_delay): New parameter.
(cut_stress): New log variable.
(tick): New member function.
2001-11-09 Per Abrahamsen <[email protected]>
* Version 1.95 released.
2001-11-09 Per Abrahamsen <[email protected]>
* crop_std.C (harvest): Moved most to `harvesting.C'.
* harvesting.C, harvesting.h (operator()): New function.
* organic_matter.C (Buffer::tick): Don't apply negative rate.
* harvesting.C (load_syntax): Removed duplicate definition of
"Stem" syntax.
* organic_matter.C (tick): Added debug information.
* mactrans_std.C (tick): Changed assertion to warning.
2001-11-08 Per Abrahamsen <[email protected]>
* Version 1.94 released.
2001-11-08 Per Abrahamsen <[email protected]>
* crpaux.C, crpaux.h: Removed submodel.
* Makefile (SUBMODELS): Removed.
(REMOVE): Added it here.
* production.C, production.h: Merged it here.
* lib/log.dai: Updated.
* Version 1.93 released.
2001-11-08 Per Abrahamsen <[email protected]>
* crop_std.C, photosynthesis.C, photosynthesis.h, production.C,
production.h, crpaux.C, crpaux.h: Moved code to submodel.
* Version 1.92 released.
2001-11-08 Per Abrahamsen <[email protected]>
* lib/log.dai ("N Balance"): Fixated moved to CrpN.
("Crop Production"): AccFixated moved to CrpN.
* photosynthesis.C, photosynthesis.h: New submodel.
* vernalization.C, vernalization.h: New submodel.
* crpn.C, crpn.h: New submodel.
* Makefile (SUBMODELS): Add them.
* crop_std.C: Use them.
* partition.C, partition.h: New submodel.
* Makefile (SUBMODELS): Add it.
* crop_std.C: Use it.
* lib/log.dai ("N Balance"): Added fixation.
2001-11-07 Per Abrahamsen <[email protected]>
* crpaux.C, crpaux.h: New submodel.
* Makefile (SUBMODELS): Add it.
* crop_std.C: Use it.
* development.C, development.h: New submodel.
* Makefile (SUBMODELS): Added it.
* crop_std.C: Use it.
* lib/log.dai ("Crop Production"): Update.
* production.C, production.h: New submodel.
* Makefile (SUBMODELS): Added it.
* crop_std.C: Use it.
* lib/fertilizer.dai: Added provider information.
* harvesting.C, harvesting.h: New submodel.
* Makefile (SUBMODELS): Added it.
* crop_std.C: Use it.
* root_system.h: Added include guard.
2001-11-05 Per Abrahamsen <[email protected]>
* Version 1.91 released.
2001-11-05 Per Abrahamsen <[email protected]>
* lib/fertilizer.dai: Added descriptions.
(NPK): Removed.
* am.C (AM_Syntax): Added `description' to organic and mineral
fertilizer types.
* rootdens_G_P.C (Rootdens_G_PSyntax): Added missing "\n\".
* Version 1.90 released.
2001-11-05 Per Abrahamsen <[email protected]>
* weather.h, weather.C (deposit, tick_after): Made deposit logable.
* lib/log.dai ("N Balance"): Log it.
2001-11-02 Per Abrahamsen <[email protected]>
* rootdens_G_P.C: Renamed from `rootdens_std.C'.
* Makefile (REMOVE, MODELS): Updated.
* om.C, m.h (get_initial_C_per_N): Made it a static member.
* am.C (check_root): Use it.
2001-10-31 Per Abrahamsen <[email protected]>
* Version 1.89 released.
2001-10-30 Per Abrahamsen <[email protected]>
* rootdens.C, rootdens.h: New component.
* Makefile (COMPONENTS): Add it.
* rootdens_std.C: New model.
* Makefile (MODELS): Add it.
* root_system.C, root_system.h: Use them.
* lib/maize.dai, lib/rye.dai, lib/sbarley.dai, lib/sugarbeet.dai,
lib/fodderbeet.dai, lib/srape.dai, lib/swheat.dai,
lib/wbarley.dai, lib/wbarley.dai, lib/wrape.dai, lib/wwheat.dai,
lib/grass.dai: Remove old root density parameters.
* lib/log.dai ("Fertilizer"): Removed Seed_N.
2001-10-29 Per Abrahamsen <[email protected]>
* Version 1.88 released.
2001-10-29 Per Abrahamsen <[email protected]>
* lib/log.dai ("N Balance"): Log harvest N.
("Carbon Balance"): Log harvest C.
* harvest.C, harvest.h (total_N, total_C, total_DM): New
functions.
* vegetation_crops.C, vegetation_permanent.C, vegetation.h
(harvest): New harvest_DM, harvest_N and harvest_C parameters.
* column_base.C (harvest): Update caller.
* column_base.C, column_base.h (tick_base): New function.
* column_std.C, column_inorganic.C (tick): Call it.
* column_base.C, column_base.h (harvest_DM, harvest_N, harvest_C):
New log variables.
* Version 1.87 released.
2001-10-29 Per Abrahamsen <[email protected]>
* lib/log.dai: Merged SH changes.
2001-10-28 Per Abrahamsen <[email protected]>
* crop_sold.C, crop_old.C, crop_std.C, crop_simple.C, crop.h
(total_N): New function.
* vegetation.h, vegetation_crops.C, vegetation_permanent.C (sow):
Return amount of N in seed.
* column_std.C (seed_N): New log variable.
* lib/log.dai ("Fertilizer"): Log seed N.
* crop_std.C (CrpNPar::check_alist): New function.
(CropStandardSyntax): Use it.
(SeedN): Make it optional.
* parser_file.C, lexer.C, lexer.h (warning): New function.
* parser_file.C (load_list): Use it.
* lib/sbarley.dai, lib/grass.dai, fodderbeet.dai, lib/grass2.dai,
lib/maize.dai, lib/pea.dai, lib/rye.dai, lib/srape.dai,
lib/sugarbeet.dai, lib/swheat.dai, lib/wbarley.dai, lib/wrape.dai,
lib/wwheat.dai: Use "Prod CropN" instead of "CrpN SeedN".
2001-10-26 Per Abrahamsen <[email protected]>
* Version 1.86 released.
2001-10-26 Per Abrahamsen <[email protected]>
* lib/log.dai ("Crop Photosynthesis"): Fix CO2-C to CO2 factor.
* am.h, am.C (default_root): New function.
(initialize, create): Take soil instead of geometry argument.
* organic_matter.C (load_syntax): Use it.
* am.C (AM_Syntax): Add default values for "root", and a new
"total_N_fraction".
(initialize, check_root): Use it.
* organic_matter.C (initialize): Count input from AM pools when
initializing SMB.
* organic_matter.C (load_syntax): Document initialization of SMB.
2001-10-25 Per Abrahamsen <[email protected]>
* Version 1.85 released.
2001-10-25 Per Abrahamsen <[email protected]>
* printer.h, printer_file.h, printer_file.C (print_entry): New
member function.
* log_checkpoint.C (done): Use it.
* path.h, path.C: New utility.
* options.h, option.C, common.h: Use it.
* lexer.h, lexer.C: Use it.
* daisy.C (load_syntax): Add "path" and "directory".
* parser_file.C (load_list): Use it.
2001-10-23 Per Abrahamsen <[email protected]>
* log_harvest.C (LogHarvest): Added missing backslash.
2001-10-19 Per Abrahamsen <[email protected]>
* Version 1.84 released.
2001-10-19 Per Abrahamsen <[email protected]>
* macro_std.C (tick): Handle fully saturated soil.
2001-10-12 Per Abrahamsen <[email protected]>
* COPYING, COPYING.LIB: New files.
* Makefile (TEXT): Added them.
* all: Added copyright notices.
2001-10-10 Per Abrahamsen <[email protected]>
* Version 1.83 released.
2001-10-10 Per Abrahamsen <[email protected]>
* common.h: Distinguish between Borland C++ 5.0 and 5.5.
* lexer.h, lexer.C: Ditto.
* options.C: [__BORLANDC__] Include <dir.h> here.
* crop_std.C (harvest): Log economic yield for C.
2001-10-09 Per Abrahamsen <[email protected]>
* Version 1.82 released.
2001-10-09 Per Abrahamsen <[email protected]>
* crop_simple.C, crop_std.C, crop_old.C, crop_sold.C (harvest):
Update callers.
* log_harvest.C (match): Use it.
* harvest.C, harvest.h (stem_C, dead_C, leaf_C, sorg_C): New members.
2001-10-03 Per Abrahamsen <[email protected]>
* Version 1.80 released.
2001-10-02 Per Abrahamsen <[email protected]>
* am.C (add): Always add both C and N, never rely on a fixed C/N
ratio.
(add): Simplified assertions.
* mactrans_std.C (tick): Handle upstream macropores.
2001-09-28 Per Abrahamsen <[email protected]>
* depend.C (object_desc): Fixed call by value strings.
2001-09-27 Per Abrahamsen <[email protected]>
* all: CVS synched with Cygwin and Borland versions.
2001-09-10 Per Abrahamsen <[email protected]>
* Version 1.79 released.
2001-09-10 Per Abrahamsen <[email protected]>
* pet.C (load_syntax): Added 'reference_evaporation' log variable.
* pet_weather.C, pet_makkink.C, pet_PM.C (output): Log it.
* lib/log.dai ("Weather", "Bioclimate"): Use it.
2001-07-05 Per Abrahamsen <[email protected]>
* organic_matter.C (tick): Make sure we calculate the last root
node, even when 'active_underground' is false (fixed off-by-one
error).
2001-07-03 Per Abrahamsen <[email protected]>
* Version 1.78 released.
2001-07-03 Per Abrahamsen <[email protected]>
* lib/grass.dai ("Grass to grain"): Removed obsolete parameters.
* crop_std.C: SH: Keep track of C in crop.
* Version 1.77 released.
2001-07-02 Per Abrahamsen <[email protected]>
* uzrichard.C (richard): Check for darcy == 0.0.
* all: Ported to GCC 3.0.
2001-06-29 Per Abrahamsen <[email protected]>
* message.C, message.h: Split from common.C.
* Makefile (OTHER): Added it.
2001-06-21 Per Abrahamsen <[email protected]>
* svat_pmsw.C (RSCSTAR): Use fabs, not abs.
2001-06-20 Per Abrahamsen <[email protected]>
* weather_std.C (data_description): Unconst to make GCC 3.0 happy.
(keyword_description): Ditto.
* action_activity.C (ActionActivity::check): Remove const
* action_lisp.C (struct ActionProgn::check): Ditto.
* action_with.C (ActionWithColumn::check): Ditto.
* mathlib.C (set_exceptions): Declare varargs.
2001-05-17 Per Abrahamsen <[email protected]>
* root_system.C (get_PotRtDpt): Workaround for Borland.
* Version 1.76 released.
2001-05-17 Per Abrahamsen <[email protected]>
* root_system.C (RootSystem::RootSystem): Let `PotRtDpt' default
to `Depth'.
* crop_std.C (initialize): More support for planting.
* action_with.C (output): New member function.
2001-05-16 Per Abrahamsen <[email protected]>
* Version 1.75 released.
2001-05-16 Per Abrahamsen <[email protected]>
* vegetation.h, vegetation_crops.C, vegetation_permanent.C (sow):
Ditto.
* vegetation_permanent.C, vegetation_crops.C, crop.C, crop_old.C,
vegetation.h, crop.h, crop_std.C (initialize): Support planting.
2001-05-09 Per Abrahamsen <[email protected]>
* bioincorporation.C (speed): New member variable.
(tick): Update it.
(output): Log it.
2001-05-07 Per Abrahamsen <[email protected]>
* Version 1.74 released.
2001-05-07 Per Abrahamsen <[email protected]>
* solute.C (tick): Less debug output.
* select_flux_bottom.C (output_array): Use interval_border + 1.
* condition.h, condition.C, condition_time.C (timestep): New
member function.
* select.h, select.C, select_flux_bottom.C, select_flux_top.C,
select_interval.C (initialize): New `timestep' parameter.
Made `conv' a reference.
* log_select.C (LogSelect): Use them.
* lib/log.dai: Use it.
("Fertilizer Yearly"): Use crop seasons instead of calendar years.
2001-04-26 Per Abrahamsen <[email protected]>
* Version 1.73 released.
2001-04-26 Per Abrahamsen <[email protected]>
* column_std.C, column_inorganic.C (tick): Don't clear variables
here.
* column.h, column_base.C, column_std.C (tick): Do it here.
* field.C, field.h (clear): Call it.
* daisy.C (tick_logs): Call it.
2001-04-09 Per Abrahamsen <[email protected]>
* Version 1.72 released.
2001-04-03 Per Abrahamsen <[email protected]>
* canopy_std.C (load_syntax): Fix dimensions.
* crop_std.C (harvest): Fixed WBal and NBal declarations.
* action_fertilize.C (doIt): Fix dimension in output message.
* lib/log.dai ("Fertilizer"): Fixed dimension for
* horizon.C (load_syntax): Fixed description for `SOM_fractions'.
Reported by Anders Pedersen.
2001-02-09 Per Abrahamsen <[email protected]>
* Version 1.71 released.
2001-02-09 Per Abrahamsen <[email protected]>
* svat_pmsw.C (SVAT_PMSWSyntax): Fixed more log variable names.
2001-02-09 Per Abrahamsen <[email protected]>
* Version 1.70 released.
2001-02-09 Per Abrahamsen <[email protected]>
* svat_pmsw.C (SVAT_PMSWSyntax): Fixed log variable names.
2001-01-13 Per Abrahamsen <[email protected]>
* common.h: Nogle Visual C++ 6.0 hacks.
2001-01-02 Per Abrahamsen <[email protected]>
* Version 1.69 released.
2001-01-02 Per Abrahamsen <[email protected]>
* net_radiation.C, net_radiation.h (tick): Removed extra tick.
2000-12-21 Per Abrahamsen <[email protected]>
* Version 1.68 released.
2000-12-21 Per Abrahamsen <[email protected]>
* am.C (get_volatilization): New function.
* column_std.C: Support it.
* lib/log.dai ("Fertilizer"): Added it.
2000-12-20 Per Abrahamsen <[email protected]>
* Version 1.67 released.
2000-12-04 Per Abrahamsen <[email protected]>
* am.C (get_NH4): Also respect volatilization for organiz
fertilizer.
2000-11-29 Per Abrahamsen <[email protected]>
* all: Change `quotation' to 'quotation'.
2000-11-24 Per Abrahamsen <[email protected]>
* alist.C, alist.h, common.C, common.h, depend.C, depend.h,
document.C, document.h, document_LaTeX.C, lexer.C, lexer.h,
lexer_data.C, lexer_data.h, librarian.C, librarian.h, library.C,
library.h, mathlib.C, mathlib.h, nrutil.C, nrutil.h, options.h,
parser.C, parser.h, parser_file.C, parser_file.h, plf.C, plf.h,
printer.C, printer.h, printer_file.C, printer_file.h, submodel.C,
submodel.h, syntax.C, syntax.h, time.C, time.h, tmpstream.C,
tmpstream.h, traverse.C, traverse.h, traverse_delete.C,
traverse_delete.h, treelog.C, treelog.h, treelog_stream.C,
treelog_stream.h: Visual C++ 6.0 support.
2000-11-22 Per Abrahamsen <[email protected]>
* Version 1.66 released.
2000-11-22 Per Abrahamsen <[email protected]>
* groundwater_pipe.C, groundwater_file.C, groundwater.C,
groundwater.h (initialize): Use treelog.
* column_base.C (initialize): Update caller.
* groundwater_file.C: Use lexer.
* common.h (DebugMessages): Renamed from `Options'.
* options.C, options.h: New files.
* Makefile (OTHER): Added them.
* cdaisy.C, column.h, column_base.C, column_base.h, column_std.C,
common.C, common.h, daisy.C, daisy.h, field.C, field.h, lexer.C,
lexer.h, lexer_data.C, lexer_data.h, main.C, parser.h,
parser_file.C, parser_file.h, treelog_stream.C, weather.C,
weather.h, weather_std.C: Updated.
* Makefile (DISABLED): New macro.
More Visual C++ support.
2000-11-21 Per Abrahamsen <[email protected]>
* common.h: Some Visual C++ support.
2000-11-16 Per Abrahamsen <[email protected]>
* Version 1.65 released.
2000-11-15 Per Abrahamsen <[email protected]>
* all (check): Use Treelog instead of ostream for errors.
* Version 1.64 released.
2000-11-15 Per Abrahamsen <[email protected]>
* depend.C depend.h document.C document.h lexer.h lexer_data.h
parser.C parser_file.C printer.C printer_file.C submodel.C
submodel.h traverse.C traverse.h traverse_delete.C
traverse_delete.h: Removed Daisy references.
* document_LaTeX.C (DocumentLaTeXSyntax): Fix type in string.
2000-11-14 Per Abrahamsen <[email protected]>
* daisy.C (load_syntax): Remove call to `Library::load_syntax'.
2000-11-13 Per Abrahamsen <[email protected]>
* mactrans_std.C (tick): Fixed some numeric problems.
2000-11-10 Per Abrahamsen <[email protected]>
* Makefile (snow.o): Remove special rule.
* common.C: Removed `MINGW' ctype defs.
* weather_simple.C: Include `mathlib.h' for `M_PI'.
* Makefile (DYNSEARCH): New macro.
(LINK): Use it.
(USE_DYNLIB): New macro.
(daisy${EXT}): Use it.
2000-11-09 Per Abrahamsen <[email protected]>
* Version 1.63 released.
2000-11-07 Per Abrahamsen <[email protected]>
* parser_file.C: Don't include "log.h".
2000-11-03 Per Abrahamsen <[email protected]>
* mathlib.h (M_LN2, M_PI, M_PI_2): Define if undefined.
(min, max): Define for Visual C++ 6.0.
* time.C, time.h (operator=): Made it a member instead of a friend.
(operator!=): Ditto.
(operator<): Ditto.
(operator<=): Ditto.
(operator>=): Ditto.
(operator>): Ditto.
* librarian.h (map_create): Make it a function.
(map_create_const): Ditto.
(map_construct): Ditto.
(map_construct_const): Ditto.
* all: Comment out text after `#endif'.
* treelog_stream.h: Use common.h to get ostream.
* tmpstream.h: Ditto.
* document.h: Removed forward declaration of ostream.
2000-10-30 Per Abrahamsen <[email protected]>
* Version 1.62 released.
2000-10-30 Per Abrahamsen <[email protected]>
* organic_matter.C (Implementation): Dumb down `tillage_age'
initializaer for BCC5.01
* qmain_item.C (AListItem::recreate_item): That the new entry is a
submodel doesn't imply the old entry was a submodel as well.
* qmain_edit.h, qmain_edit.C (EditObject): Removed `Edit' button.
* alist.C (remove): Allow removing non-existing entries (a no-op).
2000-10-28 Per Abrahamsen <[email protected]>
* qmain_item.C (AtomItem::set_selected): Valueless objects can
also be atoms.
* qmain_item.C (SequenceItem::edit_delete): Implement.
* qmain_tree.C (MainTree::edit_delete): Handle SequenceItems
* qmain_item.C, qmain_item.h (AtomItem::insert_before): New function.
* qmain_item.C (AtomItem::edit_child): Call it.
(SequenceItem::edit_after): Ditto.
* qmain_tree.C, qmain_tree.h, qmain_item.C, qmain_item.h
(edit_after): Made it bool.
* qmain.C (edit_after): Populate tree.
* Version 1.61 released.
2000-10-27 Per Abrahamsen <[email protected]>
* depend.C, depend.h: Dumbed down tamplates for Bcc 5.01.
* traverse_delete.C: Wrong include.
* Version 1.60 released.
2000-10-27 Per Abrahamsen <[email protected]>
* vegetation.C (load_syntax): Make it possible to specify a
`description' for a given vegetation.
* lib/log.dai ("Vegetation"): Fix so it works on named
vegetations.
* canopy_simple.h, canopy_simple.C (EpFacDS): New parameter.
(EpFactor): New function.
* crop_std.C (EpFac): Call it.
* crop_simple.C (EpFac): Ditto.
* vegetation_permanent.C (EpFactor): Ditto.
2000-10-26 Per Abrahamsen <[email protected]>
* action_activity.C (ActionActivitySyntax): Allow empty list.
* parser_file.C (load_list): Fix memory leaks.
2000-10-25 Per Abrahamsen <[email protected]>
* Version 1.59 released.
2000-10-25 Per Abrahamsen <[email protected]>
* chemicals.C (output): Always log, even when amount is 0.
* log.h (Log::Unnamed): New member class.
(output_vector): Use it.
* action_lisp.C (ActionCond::output): Use it.
* soil_chemicals.C (mix): Use it.
2000-10-24 Per Abrahamsen <[email protected]>
* printer_file.C (print_object): Always use `print_string' to
print element.
* weather.C, weather.h (initialize): New virtual member function.
* weather_std.C (initialize): Implement it.
* column_base.C (initialize): Call it.
* daisy.C (initialize): Ditto.
* log_checkpoint.C (done): Start checkpoint from next timestep.
* om.C (OM): Initialize `C' array if present.
2000-10-23 Per Abrahamsen <[email protected]>
* om.C (output): Log `initial_C_per_N' even when unspecified.
(check_alist): Allow negative numbers.
(load_syntax): Document negative numbers.
(get_initial_C_per_N): Obey negative numbers.
* qmain_item.C (edit_child): Implemented.
2000-10-22 Per Abrahamsen <[email protected]>
* qmain.C (edit_copy, edit_inherit): Populate tree.
2000-10-20 Per Abrahamsen <[email protected]>
* qmain.C (set_selection_copyable): Don't set inheritable.
* qmain.C, qmain.h (set_selection_inheritable): New function.
* qmain.C (clear_selection): Use it.
* qmain_item.C (ModelItem::set_selected): Use it.
(ModelItem::edit_copy): Implemented.
(ModelItem::edit_inherit): Implemented.
2000-10-13 Per Abrahamsen <[email protected]>
* depend.h: Renamed from `traverse_depend.h'.
* depend.C: Renamed from `traverse_depend.C'.
* Makefile (OTHER): Update.
* qmain_item.C: Update.
* qmain_edit.C: Update.
* qmain_item.C, qmain_item.h (container): New method to find the
library and object a tree item.
* traverse_depend.C, traverse_depend.h (had_dependencies,
check_dependencies): New functions.
* traverse_depend.h (dep_map): New type.
* traverse_depend.C (TraverseDepend): Support it.
2000-10-12 Per Abrahamsen <[email protected]>
* qmain_edit.C, qmain_edit.h (EditList): New helper class.
* qmain_edit.C (EditNumbers, EditIntegers, EditNames): New editors.
(ItemDialog): Use them.
* Version 1.58 released.
2000-10-11 Per Abrahamsen <[email protected]>
* parser_file.C (load_list): Implement PLF sequences.
* organic_matter.C (smb_tillage_factor, som_tillage_factor,
tillage_age): New attributes.
* alist.C (struct Value): Fix PLF sequence value.
* column_std.C (swap, mix): Pass time to organic matter.
* qmain_item.h, qmain_item.C (SimulationItem): New item.
* qmain_populate.C, qmain_populate.h (populate_tree): Use it.
* qmain_tree.C, qmain_tree.h (populate): Update caller.
* qmain.C (populate_tree): Update caller.
(MainWindow): Removed `Edit Simulation...' menu item.
* Version 1.57 released.
2000-10-11 Per Abrahamsen <[email protected]>
* om.C (set_N): Don't assume fixed C/N ratio.
2000-10-10 Per Abrahamsen <[email protected]>
* qmain_item.C, qmain_item.h: Submodels and model are not raw editable.
* qmain_edit.C, qmain_edit.h (EditObject): New editor.
* qmain_edit.C (ItemDialog): Use it.
* crop_old.C (SoluteUptake): Use `bound' instead of `min' and `max'.
* crop_sold.C (SoluteUptake): Ditto.
* root_system.C (potential_water_uptake): Ditto.
(solute_uptake): Ditto.
2000-10-09 Per Abrahamsen <[email protected]>
* mathlib.h (bound, set_bound): New functions.
* bioclimate_std.C (WaterDistribution): Use it.
* groundwater_pipe.C (InternalGWTLocation): Ditto.
* crop_sold.C (NetProduction): Ditto.
* crop_std.C (NitrogenUptake): Ditto.
* crop_old.C (NetProduction): Ditto.
* qmain_tree.C (edit_delete): Only return true if we deleted a
model.
* qmain_item.C (setSelected): Mark editable items as deletable.
* alist.C, alist.h (revert): New function.
* qmain_item.C (delete_item): Call it..
* qmain_item.h, qmain_item.C (recreate_item): New function.
* qmain_item.C (edit_item, delete_item): Call it.
* qmain_populate.C (populate_parameter): Don't remove parameters
if parent has `view_defaults' set.
* qmain_edit.h, qmain_edit.C (EditBoolean): New editor.
* qmain_edit.C (ItemDialog): Use it.
* qmain_edit.C (EditDate): New editor.
(ItemDialog): Use it.
2000-10-07 Per Abrahamsen <[email protected]>
* Version 1.56 released.
2000-10-06 Per Abrahamsen <[email protected]>
* alist.C, alist.h (remove): New function.
(add): Mark alist argument `const'.
2000-10-05 Per Abrahamsen <[email protected]>
* traverse_delete.h, traverse_delete.C: New files.
* Makefile (OTHER): Add them.
* select_interval.C: New density parameter.
2000-10-04 Per Abrahamsen <[email protected]>
* net_radiation.C, pet_PM.C, svat_pmsw.C: Merged SH changes.
2000-10-03 Per Abrahamsen <[email protected]>
* Version 1.55 released.
2000-10-03 Per Abrahamsen <[email protected]>
* action_irrigate.C (ActionIrrigateStopSyntax): Fixed
initialization bug.
2000-10-02 Per Abrahamsen <[email protected]>
* weather.C (PsychrometricConstant): Fix constant.
(SlopeVapourPressureCurve): Ditto.
2000-09-30 Per Abrahamsen <[email protected]>
* qmain_edit.C, qmain_edit.h: New files.
* Makefile (QTSOURCES): Add them.
* Version 1.54 released.
2000-09-30 Per Abrahamsen <[email protected]>
* qmain_busy.C, qmain_busy.h: New files.
* qmain_item.C, qmain_item.h: New files.
* qmain_populate.C, qmain_populate.h: New files.
* Makefile (QTSOURCES): Add them.
2000-09-29 Per Abrahamsen <[email protected]>
* weather.h (screen_height): Renamed to `screen_height_'.
* weather.C (Weather): Update caller.
* weather_old.C (WeatherOld): Ditto.
* weather_std.C (keyword_description): Ditto.
* weather.h, weather.C (screen_height): New function.
* pet_PM.C (PenmanMonteith): Take `ScreenHeight' argument instead
of assuming 2.0 m.
(tick): Use weather.screen_height () instead of assuming 2 m.
* traverse_depend.h, traverse_depend.C: New utility.
* Makefile (OTHER): Add it.
* library.C, library.h (check_dependencies): Removed.
* qmain.C (view_dependencies): Adjusted.
* traverse.h, traverse.C: New utility.
* Makefile (OTHER): Add it.
* qmain_tree.h, qmain_tree.C: New file.
* Makefile (QTSOURCES): New macro.
(SOURCES): Use it.
(HEADERS): Use it.
(QTOBJECTS): New macro.
(qdaisy${EXT}): Use it.
($(QTOBJECTS)): New target.
* lib/log.dai ("Crop Production"): Removed duplicate "WDead"
entry.
2000-09-28 Per Abrahamsen <[email protected]>
* lib/grass.dai ("Grass to grain"): New "DSLAI05" value.
2000-09-27 Per Abrahamsen <[email protected]>
* alist.h, alist.C (operator =): New function.
* Version 1.53 released.
2000-09-27 Per Abrahamsen <[email protected]>
* FILES: New file.
* Makefile (TEXT): Added it.
* treelog.h, treelog.C: New utility.
* treelog_stream.h, treelog_stream.C: New utility.
* Makefile (OTHER): Added them.
* library.C, library.h (check_dependencies): New functions.
* qmain.C, qmain.h (view_dependencies): New signal.
2000-09-26 Per Abrahamsen <[email protected]>