forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathChangeLog
More file actions
6805 lines (4217 loc) · 188 KB
/
Copy pathChangeLog
File metadata and controls
6805 lines (4217 loc) · 188 KB
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
2026-05-12 Per Abrahamsen <pa@plen.ku.dk>
* src/programs/program_spawn.C (run_cmds, prepare_cmd): Move
create directory from prapare to run.
* src/util/path.C (Path::get_daisy_home): Use
'boost::dll:program_location' to find exe on all platform.
Special case build directory.
2026-05-11 Per Abrahamsen <pa@plen.ku.dk>
* src/windows/windows_util.C (get_daisy_home_from_exe_path): Allow
"daisy-bin.exe" as alternative daisy.exe name.
2026-05-06 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/soil/hydraulic_hyprop.C (Cw2): Remove per mode
scaling. Thanks copilot.
2026-04-28 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/surface/max_exfiltration.C
(steady-state): New model.
2026-04-27 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/surface/surface_std.C
(FORCED_BOUNDARY): Removed.
(max_exfiltration): New parameter.
(ME): New log variable.
* include/daisy/upper_boundary/weather/weather.h:
* include/daisy/upper_boundary/weather/wsource_weather.h:
* src/daisy/upper_boundary/weather/wsource_weather.C:
(WSourceWeather::h_atm): New function.
2026-04-26 Per Abrahamsen <pa@plen.ku.dk>
* include/daisy/upper_boundary/surface/max_exfiltration.h:
* src/daisy/upper_boundary/surface/max_exfiltration.C
(max_exfiltration): New component.
2026-04-23 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/soil/hydraulic.C, include/daisy/soil/soil/hydraulic.h:
(Theta_min): New function.
* src/daisy/soil/horheat.C (initialize): Use it.
* src/daisy/soil/soil.C (Theta_res): Ditto.
* src/daisy/soil/hydraulic_linear.C (initialize): Ditto.
(hysteresis): Ditto.
2026-04-08 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/manager/action_tillage.C (remove_litter): New action.
* include/daisy/column.h:
* src/daisy/column_std.C:
* include/daisy/field.h:
* src/daisy/field.C (remove_litter, litter_DM): New functions.
2026-04-01 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/organic_matter/organic_std.C (reset_logs): New function.
(tick, initialize): Call it.
2026-03-23 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/organic_matter/organic_none.C (get_org_c_at):
* src/daisy/organic_matter/organic_std.C (get_org_c_at):
* include/daisy/organic_matter/organic.h: New function.
2025-09-10 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/bioclimate/svat_none.C
(SVAT_NoneSyntax): Fix description (thanks sfs).
2025-06-24 Per Abrahamsen <pa@plen.ku.dk>
* txt/daisy.bib (Constanza2019x,Brusseau2021x,Jakobsen2025x)
(Gauthier2024): New entries for PFAS.
2025-06-02 Per Abrahamsen <pa@plen.ku.dk>
* lib/log.dai ("Surface Chemicals"): Typo (decomposes instead of
decomposed).
* src/daisy/chemicals/reaction_sorption.C (tick_soil): Wrong const
qualifier, never called.
2025-05-26 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/adsorption_guo2020.C: New model.
* src/daisy/chemicals/awi.C (Costanza2008x): New model.
2025-05-25 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/adsorption_Python.C (area_AWI): New parameter.
* src/daisy/chemicals/adsorption_linear.C (K_AWI): New parameter.
* src/daisy/column_std.C (awi): New parameter.
* all: Update.
2025-05-23 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/awi.C: New component.
2025-05-21 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/bioclimate/bioclimate_std.C
(deposition): Made it a list.
* src/daisy/upper_boundary/weather/deposition.C
(DepositionGundersen): Delete model.
(const): New model.
2025-05-19 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/adsorption_Python.C (extra): New parameter.
2025-04-25 Per Abrahamsen <pa@plen.ku.dk>
* CMakeLists.txt (VERSION): 7.0.9.
* src/daisy/chemicals/denprod_Parton1996.C (split): Use M, not
C. Thanks Tobias Kloffel.
2025-03-17 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/column_std.C (OrganicMatter): Make 'SOM2025' default.
* src/daisy/organic_matter/organic_std.C (SOM2000, SOM2025): New
parameterization.
(default): Don't give 'smb' a default value.
* src/daisy/organic_matter/bioincorporation.C (respiration): Set
to zero by default.
2025-03-11 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/organic_matter/dom.C: Use rate.
* lib/fertilizer.dai (slurry): Use Rate.
* lib/chemistry-base.dai (solid, classic, Tracer, colloid): Ditto.
* lib/chemistry.dai: Ditto.
2025-03-10 Per Abrahamsen <pa@plen.ku.dk>
* lib/log-std.dai ("Field chemical", "Field nitrogen"):
* lib/log.dai ("Surface Chemicals"): Renamed 'litter_decomposed
and 'surface_decomposed'.
* src/daisy/chemicals/chemical_std.C: Ditto.
(M_secondary): Removed duplicate definition.
* src/daisy/soil/hydraulic_B_C_inverse.C (Theta_sat): Ditto.
2025-03-07 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/weather/wsource_weather.C (load_frame):
Remove duplicate declaration of "sunrise".
* src/daisy/chemicals/chemical_std.C (canopy_dissipation_rate):
Use Rate.
* src/object_model/rate.C (Rate::declare_optional): New function.
(Rate::value): Overloaded function with default value.
* src/daisy/chemicals/chemical_std.C
(canopy_dissipation_rate_coefficient): Removed obsolete parameter.
* include/object_model/rate.h:
* src/object_model/rate.C (Rate::set_halftime_cited): New function.
2025-03-06 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/organic_matter/om.C (turnover): Combine rate and
halftime.
* src/daisy/organic_matter/som.C:
* src/daisy/organic_matter/aom.C:
* src/object_model/parser_file.C (load_list): Handle '*_rate' and
'*_halftime' parameters specially.
2025-03-04 Per Abrahamsen <pa@plen.ku.dk>
* include/daisy/chemicals/adsorption.h:
* src/daisy/chemicals/adsorption.C (M_to_C_bisect):
New function.
* src/daisy/chemicals/adsorption_Python.C (M_to_C): Use
'M_to_C_bisect' if no Python function is specified.
2025-03-03 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/reaction_Python.C: New model.
* src/daisy/chemicals/CMakeLists.txt: Add it.
2025-02-28 Per Abrahamsen <pa@plen.ku.dk>
* include/daisy/chemicals/reaction.h:
* include/daisy/chemicals/chemistry.h (initialize): Take
'chemistry' parameter.
2025-02-10 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/bioclimate/resistance.C
(Resistance::T_c): Fix parenthesis.
2025-01-29 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/crop/stomatacon_SHA.C (MNA): Mark obsolete.
* src/daisy/crop/root/rubiscoNdist_DPF.C (f_photo): Removed
parameter, redundant as cropN is already set to rubiscoN.
* src/daisy/upper_boundary/bioclimate/difrad_DPF.C (fa): Fix
default value and description.
* src/daisy/upper_boundary/vegetation/vegetation_crops.C
(LAIvsDAY): Switch domain and range.
2025-01-28 Per Abrahamsen <pa@plen.ku.dk>
* src/programs/program_astdump.C: New model.
* src/object_model/units.C (Units::get_convertion): Suppress false
positive "Wdangling-reference" warning.
2025-01-27 Per Abrahamsen <pa@plen.ku.dk>
* src/object_model/model.C (Model::obsolete)
(Model::declare_obsolete): New functions.
* src/daisy/lower_boundary/groundwater_static.C (load_frame): Use them.
* src/daisy/output/log_alist.C (LogSubmodel::close_unnamed): Make
sentry a symbol.
* src/object_model/parser_file.C (load_list): Support them.
2025-01-17 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/adsorption_langmuir.C (C_to_M, M_to_C): Fix.
2025-01-16 Per Abrahamsen <pa@plen.ku.dk>
* lib/log.dai ("Drain Sink Water", "Biopore Drain Sink Water"):
Fix units.
("Drain Sink NO3", "Drain Sink NH4"): Remove dimension.
("Fertilizer"): Add spec.
2024-11-21 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/chemicals/nitrification_solute.C (tick): Multiply with
Theta.
* include/daisy/chemicals/nitrification.h: Update signature.
* src/daisy/chemicals/nitrification_soil.C:
* src/daisy/chemicals/reaction_nit.C (tick_soil): Pass Theta.
* include/daisy/soil/soil.h:
* src/daisy/soil/horizon.C:
2024-10-30 Per Abrahamsen <pa@plen.ku.dk>
* include/daisy/soil/soil.h:
* src/daisy/soil/soil.C (Soil::texture_fractile): New function.
* include/daisy/soil/texture.h:
* src/daisy/chemicals/nitrification_soil.C:
* src/daisy/chemicals/reaction_nit.C (tick_soil): Pass Theta.
* include/daisy/soil/soil.h:
* src/daisy/soil/horizon.C:
2024-10-30 Per Abrahamsen <pa@plen.ku.dk>
* include/daisy/soil/soil.h:
* src/daisy/soil/soil.C (Soil::texture_fractile): New function.
* include/daisy/soil/texture.h:
* src/daisy/soil/texture.C (Texture::fractile): New function.
* src/daisy/chemicals/adsorption.h:
* src/daisy/chemicals/adsorption.C (AdsorptionLinear): Removed.
* src/daisy/chemicals/adsorption_linear.C (AdsorptionLinearOld):
Renamed to AdsorptionLinear.
2024-10-22 Per Abrahamsen <pa@plen.ku.dk>
* src/util/function_Python.C: Better error messages.
2024-10-21 Per Abrahamsen <pa@plen.ku.dk>
* src/util/function_Python.C: New function model.
2024-10-18 Per Abrahamsen <pa@plen.ku.dk>
* src/object_model/parameter_types/number_apply.C: New model.
* src/object_model/toplevel.C (Toplevel::run): Start python.
2024-10-07 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/crop/root/rootdens_local.C
(RootdensLocal::internal_growth): Handle I_tot == 0.
2024-09-18 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/crop/production.C (ExfoliationFac): Fix unit.
2024-06-20 Per Abrahamsen <pa@plen.ku.dk>
* src/daisy/upper_boundary/bioclimate/svat_ssoc.C
(SVAT_SSOC::calculate_conductances): Fix argument order (reported
by Delhez Laura <Laura.Delhez@uliege.be>).
2024-05-01 Per Abrahamsen <pa@plen.ku.dk>
* test/dai-unit-tests/CMakeLists.txt: Change 'dai_file' to 'name'
* src/object_model/oldunits.C (Oldunits::standard_conversions):
Change "CO_2" to "CO2".
2024-03-20 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.47 released.
2024-03-20 Per Abrahamsen <pa@plen.ku.dk>
* adsorption_vS_S.C (vS_S_old): Renamed from "vS_S".
(vS_S): Made S_planar, S_edge, K_planar, K_edge parameters.
V_planar, V_edge: unit should per volume space, not per volume soil.
(vS_S_Hansen): Old parameters.
(vS_S_Styczen): New parameters.
2024-03-18 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.46 released.
2024-03-18 Per Abrahamsen <pa@plen.ku.dk>
* parser_file.C (erase): New top level keyword.
* clayom.C (load_frame): New function.
* clayom_biomod.C ("cite"): Set value.
2024-02-27 Per Abrahamsen <pa@plen.ku.dk>
* reaction_shoot.C (load_frame): Added second citation.
2024-01-22 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.45 released.
2024-01-22 Per Abrahamsen <pa@plen.ku.dk>
* secondary.C (use_secondary): Now supported by the 'pressure'
model.
2024-01-19 Per Abrahamsen <pa@plen.ku.dk>
* lib/log.dai ("Groundwater"): Fix 'h_aquifer' path.
2023-12-07 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_B_C_inverse.C (Theta_wp): Use 20 um instead of 50 um
as silt limit.
2023-11-21 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.44 released.
2023-11-21 Per Abrahamsen <pa@plen.ku.dk>
* wsource_weather.C (tick_weather): Force new day if daily values
are uninitialized.
2023-11-02 Per Abrahamsen <pa@plen.ku.dk>
* program_document.C: Now includes graphs for build-in PLFs.
* txt/Makefile (reference.ps): No longer generate.
2023-10-31 Per Abrahamsen <pa@plen.ku.dk>
* program_document.C, printer_file.C: Support Attribute::Function.
* program_document.C (inherited_entries): Avoid erasing iterator.
2023-10-30 Per Abrahamsen <pa@plen.ku.dk>
* abiotic.C (T_scale): New base function model.
(T_min, T_nit): New function models.
* units.C, units.h (Units::dgC): New function.
2023-10-24 Per Abrahamsen <pa@plen.ku.dk>
* Makefile (COMPONENTS): Add it.
2023-10-23 Per Abrahamsen <pa@plen.ku.dk>
* type.h, type.C (TypeFunction): New class.
* frame.h, frame.C (declare_function): New function.
* attribute.h, attribute.C (Function): New type.
* program_document.C: Update caller.
2023-10-13 Per Abrahamsen <pa@plen.ku.dk>
* select_array.C, select_quiver.C, select.C, select.h (array_tag):
Removed.
* log_table.C (DestinationTable::column_tag): Update caller.
* time.C (operator=): Explicitly implicit.
2023-09-18 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.43 released.
2023-09-18 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_table.C (M): Use generic code.
2023-08-29 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.42 released.
2023-08-29 Per Abrahamsen <pa@plen.ku.dk>
* wsource_table.C, wsource_table.h, weatherdata.C, weatherdata.h
(GlobRadScale): New keyword.
* hydraulic.C (print_M): New parameter to the hydraulic program.
2023-08-28 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_table.C (K_sat, Theta_sat): New optional parameters.
2023-08-04 Per Abrahamsen <pa@plen.ku.dk>
* rootdens_local.C: New model.
* Makefile (MODELS): Add it.
2023-06-30 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.41 released.
2023-06-30 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_hyprop.C (K_vap): Handle numerical noise near saturation.
2023-06-29 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.40 released.
2023-06-29 Per Abrahamsen <pa@plen.ku.dk>
* plf.C, plf.h (integrate_stupidly_2): Slightly less stupid integration.
* hydraulic_table.C: Use it.
2023-06-28 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_hyprop.C (Theta, KT, h): Handle h=0, Theta=Theta_sat case.
2023-06-16 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.39 released.
2023-06-16 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic.C (K_to_M): Avoid calling K, call K20.
2023-06-15 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.38 released.
2023-06-15 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_hyprop.C (K_vap): Fix edge case near saturation.
* Version 6.37 released.
2023-06-15 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_hyprop.C (Cw2): Fix sign.
2023-05-28 Per Abrahamsen <pa@plen.ku.dk>
* program_nwaps.C: Removed unused parameter 'combine_units'.
2023-05-03 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.36 released.
2023-04-26 Per Abrahamsen <pa@plen.ku.dk>
* program_nwaps.C (stdev, stderr): New summary lines.
2023-04-24 Per Abrahamsen <pa@plen.ku.dk>
* Makefile (SETUPDIR): Use $(HOME).
2023-04-23 Per Abrahamsen <pa@plen.ku.dk>
* program_nwaps.C: New model.
* Makefile (MODELS): Add it.
2023-04-21 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.35 released.
2023-04-18 Per Abrahamsen <pa@plen.ku.dk>
* path.C, path.h (set_input_directory): New function.
* program_spawn.C: Use it.
2023-04-17 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.34 released.
* Makefile (native, portable, windows, windows-same, release)
(release-same): (and others) Switch to msys2 as default build
environment on Windows.
2023-04-12 Per Abrahamsen <pa@plen.ku.dk>
* mathlib.h (M_LN10): Define if undefined.
2023-03-31 Per Abrahamsen <pa@plen.ku.dk>
* program_spawn.C: New model.
* Makefile (MODELS): Added it.
2023-03-22 Per Abrahamsen <pa@plen.ku.dk>
* action_markvand.C: Made it work again.
(solute): New parameter.
2023-03-06 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic.h, hydraulic.C (K): Made it private.
(KT, KT20): New public functions.
* all: Update callers.
2023-02-27 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_hyprop.C: New model.
2022-11-03 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.33 released.
2022-11-03 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_M_vGBS.C: Stop adding points to pF_Theta once max
Theta has been reached.
2022-08-09 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.32 released.
2022-08-08 Per Abrahamsen <pa@plen.ku.dk>
* partition.C, partition.h (tick): New 'current_WRoot' argument.
2022-04-26 Per Abrahamsen <pa@plen.ku.dk>
* program_weather.C (run): Off by one error.
2022-04-06 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.31 released.
2022-04-06 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (pond_water_to_snow): New log variable.
* lib/log.dai ("Surface water"): Log it.
2022-03-26 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.30 released.
2022-03-25 Per Abrahamsen <pa@plen.ku.dk>
* surface_simple.C (simple, const_flux, none, const_pressure):
New base models and parameterizations.
* Makefile (MODELS): Add it.
* surface_std.C (forced_flux, forced_pressure): Removed parameters.
* surface_source.C (source_flux): New model.
* Makefile (MODELS): Add it.
2022-03-24 Per Abrahamsen <pa@plen.ku.dk>
* surface.C, surface.h, surface_std.C: Made it a component.
* Makefile (SUBMODELS, COMPONENTS): Update.
* column_std.C: Update caller.
* lib/log-std.dai ("Field water"): Update caller.
2022-03-23 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.29 released.
2022-03-23 Per Abrahamsen <pa@plen.ku.dk>
* condition_time.C ("microsecond", "second", "minute"): New
models.
2022-03-14 Per Abrahamsen <pa@plen.ku.dk>
* crop_std.C, crop_simple.C (NIRext): Return NIRext, not PARext.
* crop_std.C, crop_simple.C (NIRref): Ditto.
2022-03-13 Per Abrahamsen <pa@plen.ku.dk>
* photo_FCC3.C (find_we): Divide by 4 as per Eq 4.
2022-02-09 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.28 released.
2022-02-09 Per Abrahamsen <pa@plen.ku.dk>
* snow.C: Bug fixes.
2022-02-08 Per Abrahamsen <pa@plen.ku.dk>
* lib/wwheat.dai ("Winter Wheat JG"): Disable 'T_factor'.
* seed_release.C (T_factor): New parameter.
* seed.h, seed_LAI.C, seed_release.C (release_C): Add 'T' parameter.
* crop_std.C (tick): Update caller.
2022-01-31 Per Abrahamsen <pa@plen.ku.dk>
* snow.C (m1): Fix unit.
(tick): Convert Si and q_h to J/h.
(tick): age should grow with dt, not 1 [h].
(Psa): Changed unit to [mm/h].
2021-11-22 Per Abrahamsen <pa@plen.ku.dk>
* assertion.C: Limit number of messages from same line.
2021-10-11 Per Abrahamsen <pa@plen.ku.dk>
* sample/init-soil.dai (JB1_init_Cosby): Fix wrong comment.
* sample/sample.dai: Excplicitly input required files.
* sample/irrigation.dai: The "description" parameter no longer
exist.
2021-10-07 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.27 released.
2021-10-07 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (litter_pond_up, litter_soil_up): New log variables.
2021-10-04 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.26 released.
2021-10-04 Per Abrahamsen <pa@plen.ku.dk>
* litter_mulch.C (tick): Divide by Theta_sat to find R.
2021-10-01 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.25 released.
2021-10-01 Per Abrahamsen <pa@plen.ku.dk>
* litter.C, litter.h (water_protected): New virtual member.
* litter_mulch.C: Implement it.
(evaporate_depth): New parameter.
(protected_water): New log variable.
* bioclimate_std.C (WaterDistribution): Use it.
2021-09-24 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.24 released.
2021-09-17 Per Abrahamsen <pa@plen.ku.dk>
* weather.h, wsource_weather.C, wsource_weather.h:
(has_daily_vapor_pressure): New member function.
* bioclimate_std.C: Use it.
* pet_FAO_PM.C (check): Ditto.
2021-09-16 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.23 released.
2021-09-16 Per Abrahamsen <pa@plen.ku.dk>
* root_system.C, root_system.h (DensityDSFac): New parameter.
(set_density): Use it.
(initialize): New DS parameter.
* crop_std.C, crop_simple.C, vegetation_afforestation.C:
* vegetation_permanent.C (initialize): Adjust caller.
2021-08-25 Per Abrahamsen <pa@plen.ku.dk>
* net_radiation.C (brunt): Now takes 'A' and 'B' parameters from
the cited article.
* bioclimate_std.C (L_i0): Removed log variable.
2021-08-19 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.22 released.
2021-08-19 Per Abrahamsen <pa@plen.ku.dk>
* cloudiness.C ("Taastrup"): New parameterization.
* bioclimate_std.C ("default"): Use it.
2021-07-26 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.21 released.
2021-07-26 Per Abrahamsen <pa@plen.ku.dk>
* biopore_matrix.C (matrix_biopore_matrix): Don't warn about soil
drier than pF 6.
2021-06-18 Per Abrahamsen <pa@plen.ku.dk>
* biopore_matrix.C, chemistry_std.C (remove_solute): Also removed
derived chemicals.
* biopore_matrix.C (total_solute): Also count derived compounds.
* chemistry_std.C (total_content): Ditto.
2021-06-17 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.20 released.
* am.C, production.C: More robust for high RDR.
2021-06-16 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.19 released.
2021-06-16 Per Abrahamsen <pa@plen.ku.dk>
* production.C (water_log_h_limit, water_log_root_limit):
(RtDR_water_log_factor, RtDR_water_log_addend): New parameters.
(water_logged): New log variable.
* plf.C (always_0): New static member function.
2021-06-15 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.18 released.
2021-06-15 Per Abrahamsen <pa@plen.ku.dk>
* select_quiver.C: New model.
2021-06-11 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (litter_cover): New log variable.
* reaction_Morgan98.C, reaction_Jarvis99.C, reaction_Styczen88.C:
(tick_top): Use it.
2021-06-11 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.17 released.
2021-06-11 Per Abrahamsen <pa@plen.ku.dk>
* ghf.C (FAO56):
* bioclimate_std.C (WaterDistribution):
* ghf.h (value): Use Rn_ref instead of Rn.
2021-06-10 Per Abrahamsen <pa@plen.ku.dk>
* frame.C (set): Link instead of clone.
* parser_file.C (load_object): Ditto.
2021-06-09 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.16 released.
2021-06-09 Per Abrahamsen <pa@plen.ku.dk>
* cloudiness.C (Cloudiness::tick): Update 'clear_sky_radiation'
log variable.
2021-06-01 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.15 released.
2021-06-01 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic.C (min_pF): New program parameter.
2021-05-31 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.14 released.
2021-05-31 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (base): Renamed from "default".
(default, FAO56_daily, FAO56_hourly, SSOC): New parameterizations.
2021-05-27 Per Abrahamsen <pa@plen.ku.dk>
* horizon.C (initialize_base): Add 'Cw2' to daily.log table.
2021-05-25 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.13 released.
* root_system.C (PenDSPar, PenpFPar): New parameters.
* horizon.C, horizon.h, soil.h, soil.C (root_retardation): New
parameter.
2021-05-05 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.12 released.
2021-05-05 Per Abrahamsen <pa@plen.ku.dk>
* cloudiness.C (CloudinessClear::tick): Bug fix.
2021-05-03 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.11 released.
2021-05-03 Per Abrahamsen <pa@plen.ku.dk>
* wsource_weather.C, wsource_weather.h, weather.h:
* weatherdata.h, weatherdata.C:
(ground_heat_flux, GHF): New weather data.
2021-03-16 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.10 released.
2021-03-16 Per Abrahamsen <pa@plen.ku.dk>
* program_weather.C: Print estimates for solar noon.
* cloudiness.C, cloudiness.h: New component.
* Makefile (COMPONENTS): Add it.
* bioclimate_std.C (cloudiness, cloudiness_index): Use it.
2021-03-11 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.09 released.
2021-03-11 Per Abrahamsen <pa@plen.ku.dk>
* wsource_weather.C (snow_fraction): Changed default temperature
for 100 % snow from -2 to 0 dg C.
2021-03-10 Per Abrahamsen <pa@plen.ku.dk>
* pet_FAO_PM.C, pet_FAO_PM_hourly.C (check): Warn if wind or vapor
pressure are missing.
2021-03-09 Per Abrahamsen <pa@plen.ku.dk>
* astronomy.C (ExtraterrestrialRadiation)
(DailyExtraterrestrialRadiation): Rewrote to follow FAO56 closer,
and to allow smaller timestep than 1 hour.
* wsource_weather.C (tick_weather): Use it.
2021-03-08 Per Abrahamsen <pa@plen.ku.dk>
* pet.h, pet_weather.C, pet_makkink.C, pet_PM.C, pet_Hargreaves.C:
* pet_FAO_PM_hourly.C, pet_FAO_PM.C (tick): No longer take time
argument.
* wsource_weather.C (day_cycle, extraterrestrial_radiation):
(daily_extraterrastial_radiation): New log variables.
* wsource_weather.C, wsource_weather.h
(relative_extraterrestial_radiation): Removed.
2021-03-02 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.08 released.
2021-03-02 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (tick): handle saturated soil surface.
2021-02-23 Per Abrahamsen <pa@plen.ku.dk>
* program_optimize.C (parameters): New parameter.
2021-02-21 Per Abrahamsen <pa@plen.ku.dk>
* log_table.C (initialize): Special case NUL output.
* soil_water.C, soil_water.h (default_h): New parameter.
2021-02-17 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.07 released.
2021-02-17 Per Abrahamsen <pa@plen.ku.dk>
* abiotic.C, abiotic.h (find_T_scale, find_SMB_scale, load_frame):
New functions.
* chemical_std.C, litter_mulch.C: Use them.
2021-02-16 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.06 released.
2021-02-16 Per Abrahamsen <pa@plen.ku.dk>
* chemical_std.C (tick_top): Surface application should also hit litter.
2021-02-14 Per Abrahamsen <pa@plen.ku.dk>
* lib/log.dai ("Surface water"): Added summaries of individual
compartments.
* bioclimate_std.C (litter_water_bypass): New log variable.
* litter_mulch.C (T_ref, SMB_ref): New parameters.
2021-02-01 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.05 released.
2021-02-01 Per Abrahamsen <pa@plen.ku.dk>
* bioclimate_std.C (WaterDistribution): Avoid negative
'litter_water_storage'.
* reaction_dom.C (tick_soil): Fix assertion (numerical noise).
2021-01-30 Per Abrahamsen <pa@plen.ku.dk>
* ui.C (run): Actually run the program.
2021-01-29 Per Abrahamsen <pa@plen.ku.dk>
* toplevel.C (command_line): New '-L' switch, supress 'daisy.log'.
2021-01-18 Per Abrahamsen <pa@plen.ku.dk>
* hydraulic_M_BivG.C: New model.
* Makefile (MODELS): Added it.
2021-01-14 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.03 released.
2020-12-17 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.02 released.
2020-12-17 Per Abrahamsen <pa@plen.ku.dk>
* litter_mulch.C (T_soil): New log variable.
(use_soil_decompose): New parameter.
2020-12-10 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.01 released.
2020-12-10 Per Abrahamsen <pa@plen.ku.dk>
* litter_mulch.C (factor): New log variable.
* litter.h, litter.C, litter_mulch.C (decompose_factor): New function.
* chemical_std.C (tick_top): Use it.
2020-12-07 Per Abrahamsen <pa@plen.ku.dk>
* Version 6.00 released.
2020-12-07 Per Abrahamsen <pa@plen.ku.dk>
* litter_mulch.C (decompose_heat_factor, decompose_water_factor):
(decompose_SMB_pool, decompose_SMB_KM): New parameters.
2020-12-02 Per Abrahamsen <pa@plen.ku.dk>
* Version 5.99 released.
2020-12-02 Per Abrahamsen <pa@plen.ku.dk>
* retention.C, reaction.h: New component.
* Makefile (COMPONENTS): Added it.
2020-11-30 Per Abrahamsen <pa@plen.ku.dk>
* chemical_std.C (decompose_SMB_pool, decompose_SMB_KM): New parameters.
2020-11-30 Per Abrahamsen <pa@plen.ku.dk>
* Version 5.98 released.
2020-11-27 Per Abrahamsen <pa@plen.ku.dk>
* chemical_std.C (litter_leak, litter_diffuse): New log variables.
* lib/log.dai ("Surface Chemicals"): Handle them.
2020-11-26 Per Abrahamsen <pa@plen.ku.dk>
* Version 5.97 released.
* chemistry.h, chemistry_std.C, chemistry_multi.C (tick_top):
* chemical.h, chemical_std.C (tick_top): Take