forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.3
2256 lines (1441 loc) · 63 KB
/
ChangeLog.3
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
2005-12-12 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.99 released.
2005-12-12 Per Abrahamsen <abraham@dina.kvl.dk>
* source_merge.C: New model.
* Makefile (MODELS): Added it.
* xysource_merge.C (load): Fix bug that prevented inheriting 'with'.
2005-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
* stringer.C (const): New model.
2005-12-07 Per Abrahamsen <abraham@dina.kvl.dk>
* parser_file.C (get_string): Handle backslash after a backslashed
newline.
* lexer_table.C (read_header): Don't apply filter on dim line.
2005-12-06 Per Abrahamsen <abraham@dina.kvl.dk>
* block.C (ScopeBlock): New scope.
(expand_string): Use it.
* boolean.C, stringer.C, stringer.h, boolean.h:
* number.h, number.C, number_arit.C, number_const.C, number_soil.C
(initialize): New virtual member function.
* parser_file.C (get_number): Call it.
* source_expr.C, source_combine.C (load): Ditto.
* xysource_combine.C, xysource_loop.C, xysource_expr.C (load): Ditto.
* number_source.C: New file.
* Makefile (MODELS): Added it.
* stringer.C (value, dimension): New models.
2005-12-05 Per Abrahamsen <abraham@dina.kvl.dk>
* program_file.C (write): New model.
2005-12-06 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.98 released.
2005-12-06 Per Abrahamsen <abraham@dina.kvl.dk>
* select_flux_bottom.C (to): New parameter.
* select_flux_top.C (from): New parameter.
2005-12-02 Per Abrahamsen <abraham@dina.kvl.dk>
* sample/DrainDrying.dai: New file.
* sample/Makefile (SETUPS): Added it.
2005-12-01 Per Abrahamsen <abraham@dina.kvl.dk>
* parser_file.C (~Implementation): Remove test that lexer is not
NULL. If there were problems opening the file, it might be NULL.
2005-11-29 Per Abrahamsen <abraham@dina.kvl.dk>
* boolean.C (and, or, xor, not): New models.
2005-11-25 Per Abrahamsen <abraham@dina.kvl.dk>
* crop_std.C (harvest): Don't emerge twice.
* Version 3.97 released.
2005-11-25 Per Abrahamsen <abraham@dina.kvl.dk>
* program_batch.C (run): delete before erase.
* transport_none.C: Clear bottom flux.
2005-11-24 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.96 released.
2005-11-24 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (MODELS): Added it.
* program_file.C: New file.
* Version 3.95 released.
2005-11-24 Per Abrahamsen <abraham@dina.kvl.dk>
* lexer_table.C (good): Close file descriptor after first problem.
* column_base.C (initialize_common): Check weather later.
* column_std.C (initialize): Ditto.
* number_soil.C ("depth_Theta", "depth_K"): New models.
2005-11-21 Per Abrahamsen <abraham@dina.kvl.dk>
* action_table.C: New model.
2005-11-18 Per Abrahamsen <abraham@dina.kvl.dk>
* source_combine.C (load): Warn against errorbars.
2005-11-16 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.94 released.
2005-11-15 Per Abrahamsen <abraham@dina.kvl.dk>
* units.C (standard_conversions): [m/s] -> [cm/d].
2005-11-11 Per Abrahamsen <abraham@dina.kvl.dk>
* xysource_merge.C: New model.
* Makefile (MODELS): Added.
* gnuplot_utils.C, gnuplot_utils.h: New utility.
* Makefile (OTHER): Added it.
* xysource_combine.C (XYSourceCombineSyntax): Use it.
* xysource_loop.C (XYSourceLoopSyntax): Ditto.
2005-11-10 Per Abrahamsen <abraham@dina.kvl.dk>
* lexer.C, lexer.h (warning, error): Use proper Treelog functions.
* lexer.C, lexer.h, lexer_table.C, lexer_table.h (debug): New function.
* xysource_inline.C:
* number_soil.C, xysource_loop.C, xysource_combine.C: New models.
* Makefile (MODELS): Add them.
* scope_sources.h, scope_sources.C: New utility.
* Makefile (OTHER): Added them.
* source_combine.C: Use it.
* gnuplot_base.C, gnuplot_base.h: New base model.
* Makefile (SPECIALS): Add it.
* gnuplot_time.C: Use it,
* gnuplot_xy.C: New model.
* xysource_expr.C: New model.
* Makefile (MODELS): Add them.
2005-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
* xysource.C, xysource.h: New component.
* Makefile (COMPONENTS): Add it.
* scope_table.C, scope_table.h: New utility.
* lexer_table.C, lexer_table.h: New utility.
* Makefile (OTHER): Added them.
* source_file.h, source_file.C, source_std.h, source_std.C:
* source_expr.h, source_expr.C: Use them.
* Version 3.93 released.
2005-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
* txt/tutorial.tex (Plotting simulation results): Updated gnuplot
syntax.
* source.C (description): Really a time series.
* gnuplot.C, gnuplot.h: New component.
* Makefile (COMPONENTS): Add it.
* gnuplot_multi.C, gnuplot_time.C: New models.
* Makefile (MODELS): Add them.
2005-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.92 released.
2005-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
* program_gnuplot.C (legend): Support "none" keyword.
* Version 3.91 released.
2005-11-07 Per Abrahamsen <abraham@dina.kvl.dk>
* program_gnuplot.C (ProgramGnuplotSyntax): User should specify
dimension for y axis.
2005-11-04 Per Abrahamsen <abraham@dina.kvl.dk>
* units.C (Convert_kPa_pF): New class.
(standard_conversions): [kPa] -> [pF].
2005-11-03 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.90 released.
2005-11-03 Per Abrahamsen <abraham@dina.kvl.dk>
* parser_file.C (load_list): Support '&old' keyword.
* program_batch.C (run): Tell user more about each program started.
* Version 3.89 released.
2005-11-03 Per Abrahamsen <abraham@dina.kvl.dk>
* source_file.C (add_entry, ebar): New functions.
* source_expr.C, source_std.C: Support them.
* program_gnuplot.C (run): Ditto.
2005-11-02 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.88 released.
2005-11-02 Per Abrahamsen <abraham@dina.kvl.dk>
* source_file.C (Filter::match): Reversed logic for padding.
* Version 3.87 released.
2005-11-02 Per Abrahamsen <abraham@dina.kvl.dk>
* source_file.C (Filter::match): New function.
(read_entry): Use it.
* Version 3.86 released.
2005-11-02 Per Abrahamsen <abraham@dina.kvl.dk>
* source_file.C (get_time): Accept dd/mm/yy format.
* source_combine.C: New model.
* Makefile (MODELS): Added.
2005-11-01 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.85 released.
2005-10-25 Per Abrahamsen <abraham@dina.kvl.dk>
* boolean.C (true, false): New models.
* horizon_numeric.C, horizon_system.C: (normalize): New parameter.
2005-10-20 Per Abrahamsen <abraham@dina.kvl.dk>
* treelog.C, treelog.h (sequence_id): New global function.
* boolean.C, boolean.h: New component.
* stringer.h, stringer.C: New component.
* Makefile (COMPONENTS): Added them.
2005-10-19 Per Abrahamsen <abraham@dina.kvl.dk>
* submodeler.h: New utility.
2005-10-17 Per Abrahamsen <abraham@dina.kvl.dk>
* lib/log-std.dai (column): New base parameterization.
("Field water", "Soil water", "Field nitrogen", "Soil nitrogen"):
Use it.
* librarian, select, log: Support lexical scope.
2005-10-16 Per Abrahamsen <abraham@dina.kvl.dk>
* block.C: New utility.
* Makefile (OTHER): Added it.
* syntax.C, syntax.h (category_names, category_name, category_number)
(type_names, type_name, type_number): Use 'std::string'
instead of 'char*'.
* soil.C (initialize): Fixed comparison of signed and unsigned.
2005-10-14 Per Abrahamsen <abraham@dina.kvl.dk>
* horizon.C (initialize): Fixed comparison of signed and unsigned.
* syntax.C (total_order): Ditto.
* library.C (all_count): Ditto.
* library.h, library.C, librarian.h, librarian.C,
* alist.h, alist.C: Removed 'const char* key' variants.
2005-10-13 Per Abrahamsen <abraham@dina.kvl.dk>
* hydraulic_M_BaC.C (h_b): Added check.
* parser_file.C (load_derived): Spelling error.
2005-10-12 Per Abrahamsen <abraham@dina.kvl.dk>
* lib/fertilizer.dai: Added dimensions.
2005-10-05 Per Abrahamsen <abraham@dina.kvl.dk>
* condition_time.C (timestep): New condition.
* units.C (standard_conversions): [none] -> [].
2005-10-04 Per Abrahamsen <abraham@dina.kvl.dk>
* lexer.C (get): Support DOS files under Unix.
2005-09-30 Per Abrahamsen <abraham@dina.kvl.dk>
* timestep.h, memutils.h: New utility headers.
* Makefile (HEADERS): added
(OTHER): Removed 'common.C'.
2005-09-29 Per Abrahamsen <abraham@dina.kvl.dk>
* all: Removed TmpStream.
2005-09-28 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.84 released.
2005-09-28 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.83 released.
2005-09-28 Per Abrahamsen <abraham@dina.kvl.dk>
* source_file.C: New model base.
* Makefile (SPECIALS): Added.
2005-09-27 Per Abrahamsen <abraham@dina.kvl.dk>
* parser_file.C (load_derived): Special support for Number objects.
* weather_std.C: Handle missing timestep better (I hope).
* units.C (standard_conversions): [g CO2-C/cm^2] -> [CO2/m^2]
(multiply): [g CO_2-C/cm^3/h] * [cm] = [g CO_2-C/cm^2/h]
* lib/log.dai ("Crop Photosynthesis"): Use spec.
* production.C (RootRespiration): Fixed dimension.
* number_arit.C: New model.
* source_expr.C: New model.
* Makefile (MODELS): Added them.
2005-09-26 Per Abrahamsen <abraham@dina.kvl.dk>
* source_std.C: New model.
* source.C, source.h: Made it a component.
* Makefile (COMPONENTS, MODELS): Added it.
(SUBMODELS): Removed it.
* parser.h (class Parser): explicit.
* parser_file.C: Use ostringstream instead of TmpStream.
* Version 3.82 released.
2005-09-22 Per Abrahamsen <abraham@dina.kvl.dk>
* source.C, source.h: New submodel.
* Makefile (SUBMODELS): Added it.
* Version 3.81 released.
2005-09-22 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.80 released.
2005-09-21 Per Abrahamsen <abraham@dina.kvl.dk>
* format_LaTeX.h: New interface.
* Makefile (MODELS): Removed.
(SPECIALS): Added.
2005-09-20 Per Abrahamsen <abraham@dina.kvl.dk>
* action_crop.C: Use ostringstream instead of TmpStream.
* action_fertilize.C: Ditto.
* action_irrigate.C: Ditto.
* action_markvand.C: Ditto.
* action_wait.C: Ditto.
* am.C: Ditto.
* assertion.C: Ditto.
* bioclimate_std.C: Ditto.
* check_range.C: Ditto.
* check_range.C: Don't use namespace std.
* alist.h, alist.C (name_sequence): New accessor.
2005-09-06 Per Abrahamsen <abraham@dina.kvl.dk>
* txt/Makefile (exercises.pdf): Depfix.
* Version 3.79 released.
2005-09-06 Per Abrahamsen <abraham@dina.kvl.dk>
* log_harvest.C: Moved water and N stress last.
2005-08-30 Per Abrahamsen <abraham@dina.kvl.dk>
* condition_soil.C (soil_inorganic_N_above): New condition.
2005-08-26 Per Abrahamsen <abraham@dina.kvl.dk>
* daisy.h (class Daisy): Made constructor explicit.
2005-08-25 Per Abrahamsen <abraham@dina.kvl.dk>
* dlf.C, dlf.h: New utility.
* Makefile (OTHER): Added it.
* lib/log-std.dai ("Soil nitrogen"): Fix "where" parameter.
* log_table.C (print_header): Support new "fixed" value.
2005-08-24 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.78 released.
2005-08-24 Per Abrahamsen <abraham@dina.kvl.dk>
* harvesting.h, harvesting.C (operator ()): New 'combine' parameter.
* crop_old.C, crop_sold.C, crop_simple.C:
* crop.h, crop_crop_std.C (harvest): Update caller.
* crop.C (kill): Update caller.
* vegetation.h, vegetation_crops.C, vegetation_permanent.C
(harvest): Update caller.
* column.h, column_base.h, column_base.C (harvest): Update caller.
* field.C, field.h (harvest): Update caller.
* action_harvest.C (combine): New parameter.
* action_crop.C, action_harvest.C (doIt): Update caller.
* crpn.h (nitrogen_stress_days): Made it public.
* harvest.h, harvest.C (water_stress_days, nitrogen_stress_days):
New harvest data.
* harvesting.C, harvesting.h (operator ()): Update caller.
* crop_old.C, crop_sold.C, crop_simple.C, crop_std.C (harvest):
Update caller.
* log_harvest.C (match): Log them.
* root_system.C (output): Don't output 'water_stress_days' twice!
2005-08-23 Per Abrahamsen <abraham@dina.kvl.dk>
* action_markvand.C: Added checks.
2005-08-22 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.77 released.
2005-08-22 Per Abrahamsen <abraham@dina.kvl.dk>
* weather.C: Normalize day cycle.
2005-08-21 Per Abrahamsen <abraham@dina.kvl.dk>
* lib/markvand.dai: New parameter library.
2005-08-11 Per Abrahamsen <abraham@dina.kvl.dk>
* vegetation.h, vegetation_permanent.C, vegetation_crops.C:
* column.h, column_base.C, field.h, field.C (crop_names): New
member function.
2005-08-10 Per Abrahamsen <abraham@dina.kvl.dk>
* pet.C (reference_to_potential): Use cover instead of LAI.
2005-08-09 Per Abrahamsen <abraham@dina.kvl.dk>
* weather_none.C, weather_std.C:
* weather.h, weather_simple.C (daily_precipitation): New function.
2005-08-08 Per Abrahamsen <abraham@dina.kvl.dk>
* bioclimate_std.C, bioclimate.h (daily_precipitation): New
virtual member function.
* column_base.C, column_base.h, column.h (daily_precipitation,
daily_global_radiation): Ditto.
* field.h, field.C (daily_precipitation, daily_global_radiation):
Ditto.
* action_markvand.C: New model.
* Makefile (MODELS): Added it.
* condition_crop.C (ConditionDSAfter::match): Added const
2005-08-03 Per Abrahamsen <abraham@dina.kvl.dk>
* om.C (load_syntax): New 'frac_desc' parameter.
* aom.C, smb.C, som.C (load_syntax): Update caller.
2005-07-27 Per Abrahamsen <abraham@dina.kvl.dk>
* lexer_data.h: Fixed comment.
2005-07-08 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.76 released.
2005-07-08 Per Abrahamsen <abraham@dina.kvl.dk>
* lib/log.dai ("Weather"): Removed bogus column.
* weather_std.C (read_new_day): Fix calculation of time for
minimum temperature.
2005-07-04 Per Abrahamsen <abraham@dina.kvl.dk>
* parser_file.C (load_derived): Support default type for backward
compatibility.
* photosynthesis.C, photosynthesis.h: Removed submodel.
* photo.C, photo.h: New component.
* photo_GL.C: New model.
* Makefile (MODELS, COMPONENTS, SUBMODELS): Updated.
2005-07-01 Per Abrahamsen <abraham@dina.kvl.dk>
* program_gnuplot.C: New model.
2005-06-14 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.75 released.
2005-06-14 Per Abrahamsen <abraham@dina.kvl.dk>
* action_harvest.C (doIt): Disable check for emergence when
harvesting "all".
2005-06-13 Per Abrahamsen <abraham@dina.kvl.dk>
* select_interval.C, select.h (check_border): New virtual member
function.
* log_select.C (check): Call it.
2005-06-09 Per Abrahamsen <abraham@dina.kvl.dk>
* soil.C (border): New parameter.
2005-06-08 Per Abrahamsen <abraham@dina.kvl.dk>
* weather.h, weather.C, weather_std.C (initialize): Made it return
true on success.
* column_base.C (initialize_common): Ditto.
* daisy.C, column_inorganic.C, column_std.C (initialize): Update
2005-05-27 Per Abrahamsen <abraham@dina.kvl.dk>
* column_std.C (initialize): Fixed problem with initialization
order when using column specific weather.
2005-05-26 Per Abrahamsen <abraham@dina.kvl.dk>
* vcheck.C, vcheck.h (Enum::Enum): Handle up to six parameters.
* select.h (Handle::geometric): New handle type.
* select_interval.C, select.C, select_array.C, select_value.C: Use it.
* hydraulic_hypres.C (initialize): Fixed formula for alpha_star.
Reported by Charlotte Tofteng.
2005-05-24 Per Abrahamsen <abraham@dina.kvl.dk>
* select_interval.C (density_factor): New variable.
(density): Removed.
* lib/dk-horizon.dai: Don't divide sand in fine and coarse.
2005-05-17 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.74 released.
2005-05-17 Per Abrahamsen <abraham@dina.kvl.dk>
* uzrichard.C (richard): Removed bogus assertion that prevented
pressure bottom from working.
2005-05-16 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.73 released.
2005-04-06 Per Abrahamsen <abraham@dina.kvl.dk>
* treelog.C, treelog.h (lazy): New virtual member function.
* options.C (copyright): Use it.
* select.C (initialize): Don't convert accumulated timestep units.
2005-05-04 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.72 released.
2005-05-04 Per Abrahamsen <abraham@dina.kvl.dk>
* phenology.C, phenology.h (DAP): New state variable.
* crop_std.C (tick): Update it.
* photosynthesis.C (DAPEff): New parameter.
2005-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
* lib/Makefile (DAISY): Removed dk-soil.dai.
* Version 3.71 released.
2005-04-05 Per Abrahamsen <abraham@dina.kvl.dk>
* symbol.C: Added assertions.
* summary_balance.C (period): New parameter.
2005-03-31 Per Abrahamsen <abraham@dina.kvl.dk>
* select.C (Spec::description, Spec::refer): New member function.
(Spec::check_path): Ditto.
(Spec::check_alist): Call it.
(document): New member function.
* program_document.C (submodel): Removed member variable.
2005-03-23 Per Abrahamsen <abraham@dina.kvl.dk>
* library.C, library.h (has_interesting_description): New member
function.
* program_document.C (has_interesting_description): Removed.
* log_select.C (has_interesting_description): Removed.
* select.C (check_alist): Fix warning.
(load_syntax): Fix typo in desctiption string.
* select.C, select.h (log_name): Removed.
(document): New member function.
* log_select.C (document_entries): Call it.
2005-03-18 Per Abrahamsen <abraham@dina.kvl.dk>
* action_irrigate.C (ActionIrrigateSubsoilStart): Removed
(ActionIrrigateStop): Ditto.
* field.C, field.h (set_subsoil_irrigation): Removed.
* column_std.C (irrigate_subsoil): Add solute to fertilizer log.
* column.h, column_base.C, column_std.C (set_subsoil_irrigation):
Removed.
* bioincorporation.C (N_added, C_added): Fixed dimension.
2005-03-17 Per Abrahamsen <abraham@dina.kvl.dk>
* units.C (standard_conversions): Added a couple of convertions
for log variables.
* phenology_std.C, phenology.h, phenology.C (mature): New member
function.
* crop_std.C (tick): Use it.
2005-03-11 Per Abrahamsen <abraham@dina.kvl.dk>
* path.C (set_directory): Attempt to create directory if chdir
fails.
2005-03-09 Per Abrahamsen <abraham@dina.kvl.dk>
* horizon_std.C (HorizonStandardSyntax): Added warning for using
fine and coarse sand.
2005-03-04 Per Abrahamsen <abraham@dina.kvl.dk>
* sample/dk-soil.dai: Moved here.
* sample/Makefile (LIBS): Added.
* lib/dk-soil.dai: From here.
* lib/Makefile (REMOVE): Added.
* sample/dk-soil.dai (Jyndevad, (Askov): New columns.
2005-02-28 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.70 released.
2005-02-28 Per Abrahamsen <abraham@dina.kvl.dk>
* program_document.C (print_sample_entry): Print dimension.
* action_irrigate.C (struct ActionIrrigate): Write N amount.
* column_std.C (fertilize): Split out variant that takes an 'IM'
object.
(irrigate_surface, irrigate_overhead): Use it.
2005-02-23 Per Abrahamsen <abraham@dina.kvl.dk>
* xref.C (use_model): Don't use components here.
(enter_parameter): Always use them here.
* Version 3.69 released.
2005-02-23 Per Abrahamsen <abraham@dina.kvl.dk>
* groundwater.h, groundwater.C (initialize): Made it a pure virtual.
* groundwater_lysimeter.C (initialize): Implement it.
(location): New member variable.
(table): Use it.
* uzrichard.C (richard): Use a fake pressure bottom when the
lysimeter is active.
2005-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
* hydraulic.C: New 'hydraulic' program.
2005-02-08 Per Abrahamsen <abraham@dina.kvl.dk>
* weather_std.C (has_vapor_pressure): Also trigger if
has_relative_humidity.
2005-02-02 Per Abrahamsen <abraham@dina.kvl.dk>
* program_refdoc.C: Removed.
* document_LaTeX.C, document.C, document.h: Removed.
* Makefile (COMPONENTS, MODELS): Updated.
2005-01-31 Per Abrahamsen <abraham@dina.kvl.dk>
* sample/log-sample.dai ("Sample water content"): New sample.
2005-01-29 Per Abrahamsen <abraham@dina.kvl.dk>
* log_table.C (common_done): Time columns now obey
'field_separator'.
2005-01-27 Per Abrahamsen <abraham@dina.kvl.dk>
* program_document.C: New model.
2005-01-23 Per Abrahamsen <abraham@dina.kvl.dk>
* format.C, format.h: New component.
* Makefile (COMPONENTS): Add it.
* format_LaTeX.C: New model.
* Makefile (MODELS): Add it.
* document.C, document.h (format): New parameter.
* program_refdoc.C (run): Update caller.
* xref.C (enter_parameter): Removed bogus assertions.
2005-01-21 Per Abrahamsen <abraham@dina.kvl.dk>
* txt/Makefile (DOCS): Add it.
* txt/notes.tex: New file.
2005-01-18 Per Abrahamsen <abraham@dina.kvl.dk>
* canopy_std.C (SpLAIfac, SpSOrgAI): Fixed description.
2005-01-15 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.68 released.
2005-01-14 Per Abrahamsen <abraham@dina.kvl.dk>
* groundwater_pipe.C: Use depth component for aquifer.
* lib/log.dai ("Groundwater"): Update caller.
2005-01-13 Per Abrahamsen <abraham@dina.kvl.dk>
* depth.C: New component.
* Makefile (COMPONENTS): Add it.
* average_harmonic.C, average_geometric.C, average_arithmetic.C:
Removed.
* Makefile (MODELS, REMOVE): Ditto.
* average.C: Added models here.
2005-01-12 Per Abrahamsen <abraham@dina.kvl.dk>
* log_table.C, log_harvest.C: Delay open file to initialization point.
* path.C, path.h (get_directory): New function.
* path.h (InDirectory): New class.
* program_batch.C (check, run, initialize): Use it.
* weather_std.C: Changed "kgN/year" to "kgN/ha/year".
* units.C (standard_conversions): Convert old value to new.
* txt/dwf.tex: Doc fix.
Reported by Charlotte Tofteng <cto@kvl.dk>.
2005-01-10 Per Abrahamsen <abraham@dina.kvl.dk>
* hydraulic_hypres.C (HydraulicHypresSyntax): Fixed web
reference.
Reported by Peter van der Keur <pke@geus.DK>.
2005-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
* sample/batch.dai: New setup.
* sample/Makefile (SETUPS): Add it.
2004-12-22 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.67 released.
2004-12-22 Per Abrahamsen <abraham@dina.kvl.dk>
* wse.C, wse.h: New component.
* Makefile (COMPONENTS): Add it.
* crop_std.C: Use it.
2004-12-19 Per Abrahamsen <abraham@dina.kvl.dk>
* log.h, log.C (initialize): Made it a pure virtual member.
* log_clone.C, log_table.C, log_harvest.C, log_alist.C
(initialize): Implement.
* program_file.C: New model.
* Makefile (MODELS): Add it.
* program_batch.C: New model.
* Makefile (MODELS): Add it.
* log_table.C, log_alist.h, log_alist.C, log_select.C:
* log.h, log_harvest.C (check): Removed 'Syntax' argument.
* program.h, program_refdoc.C, am.C (initialize, check): New
virtual member functions.
* daisy.C, daisy.h: Made it a program model.
* main.C (main): Update caller.
2004-12-17 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.66 released.
2004-12-17 Per Abrahamsen <abraham@dina.kvl.dk>
* program.C, program.h: New component.
* Makefile (COMPONENTS): Add it.
* options.C: Use it.
* program_refdoc.C: New model.
* Makefile (MODELS): Add it.
* library.C, library.h: Remove support for command line arguments.
* am.C (command_table): Made it a program.
* geometry.C (initialize_layer): Don't fill out array with 0.0.
* weather_none.C (snow_value): Give it a default value.
2004-12-16 Per Abrahamsen <abraham@dina.kvl.dk>
* select.C (negate): New parameter.
* summary_balance.C (summarize): New model.
* Makefile (MODELS): Add it.
* lib/log-std.dai: New parameter file.
* lib/Makefile (DAISY): Add it.
* lib/all.dai (file): Add it.
2004-12-15 Per Abrahamsen <abraham@dina.kvl.dk>
* fetch.C: New submodel.
* Makefile (SUBMODELS): Add it.
* summary_simple.C: Use it.
* document.C, document_LaTeX.C, document.h (print_submodel_entry):
Made it a base class function.
(print_submodel_entries): Renamed from 'print_entries'.
* xref.C (enter_parameter): Ignore inherited values.
2004-12-14 Per Abrahamsen <abraham@dina.kvl.dk>
* library.C (base_model): Handle "base_model" attribute.
(is_derived_from, ): Ditto.
* document.C, document.h, document_LaTeX.C: Ditto.
* select.C, horizon.C: Use it.
2004-12-13 Per Abrahamsen <abraham@dina.kvl.dk>
* groundwater_pipe.C (GroundwaterPipeSyntax): Don't call
'Groundwater::load_syntax'.
* weather_simple.C (reference_evapotranspiration_value):
(precipitation_value): New parameters.
(reference_evapotranspiration, precipitation): Don't overwrite.
* weather_none.C (reference_evapotranspiration_value, rain_value):
(snow_value): New parameters..
(reference_evapotranspiration, rain, snow): Don't overwrite.
* horizon.C (HorizonSyntax): Mark it as a base model.
* librarian.h (add_base): New static member function.
* library.C, library.h (add_base): New member function.
2004-12-10 Per Abrahamsen <abraham@dina.kvl.dk>
* txt/exercises.tex: Don't use 'default' horizon.
2004-12-09 Per Abrahamsen <abraham@dina.kvl.dk>
* production.C, production.h (update_carbon): New member function.
* production.C (tick): Call it.
* harvesting.C (operator ()): Call it.
* Version 3.65 released.
2004-12-09 Per Abrahamsen <abraham@dina.kvl.dk>
* select_flux_top.C (output_array): Fix off by one array check
(found by valgrind).
* select_array.C (result): Make it persistent, since log_table.C
requires that.
* log_table.C (dest_array, dest_number, dest_name): Initialize.
(common_done): Add check.
* Version 3.64 released.
2004-12-09 Per Abrahamsen <abraham@dina.kvl.dk>
* units.C (standard_conversions): Add 'Syntax::None ()' to []
conversion.
2004-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.64 released.
2004-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
* sample/init-soil.dai: New file.
* sample/Makefile (LIBS): Add it.
* parser_file.C (check_dimension): Allow conversions with
'Syntax::Fraction ()' and 'Syntax::None ()'.
* units.C (standard_conversions): [g/cm^3] -> [].
* geometry.C (add_layer): Handle fractions.
* solute.C (C): Use it.
(solute_ppm, soil_ppm): Removed.
(Ms): New parameter.
2004-12-07 Per Abrahamsen <abraham@dina.kvl.dk>
* units.C (add): Automatically add reverse conversion.
* hydraulic.C (load_Theta_sat, load_Theta_res): Use fraction
instead of [cm^3 H2O/cm^3].
* units.C (standard_conversions): Support [cm^3 H2O/cm^3] as
synonym for [].
2004-11-26 Per Abrahamsen <abraham@dina.kvl.dk>
* printer_file.h, printer_file.C (print_parameterization): New
member.
* document.h, document_LaTeX.C (print_parameterization_content):
New member function.
* document.C (print_model): Call it.
2004-11-25 Per Abrahamsen <abraham@dina.kvl.dk>
* select_min.C, select_max.C, select_average.C, FILES: Removed.
* Makefile (MODELS, TEXT): Remove them.
(REMOVE): Add them.
* select.h, select.C, summary_simple.C (flux, handle): Replaced
'flux' with more general 'handle' parameter.
* select_value.C, select_value.h, select_interval.C:
* select_flux_top.C, select_flux_bottom.C, select_index.C:
* select_content.C, select_number.C: Update caller.
* lib/log.dai ("Old Crop Production"): Fixated is a flux.
* organic_matter.C (abiotic_factor): New log variable.
2004-11-24 Per Abrahamsen <abraham@dina.kvl.dk>
* organic_matter.C (partition): Don't add to a closed stream.
* tmpstream.C (done): Removed.
* organic_matter.C (humus): New log variable.
2004-11-23 Per Abrahamsen <abraham@dina.kvl.dk>
* select.h, select.C, select_interval.C (special_convert): New
function.
* select.C (initialize): Call it.
* log_table.C (check): Call LogSelect::check.
* log.C, log.h, log_all.C, log_table.C:
* select_array.C, select.C, select_content.C:
* select_flux_bottom.C, select_flux_top.C, select.h:
* select_index.C, select_interval.C, select_pF.C:
Changed geometry to soil.
2004-11-15 Per Abrahamsen <abraham@dina.kvl.dk>
* hydraulic_hypres.C (initialize): Give error message instead of
assertion failure for zero clay, silt, or humus.
2004-11-09 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 3.63 released.
2004-11-09 Per Abrahamsen <abraham@dina.kvl.dk>