This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathChangeLog
6495 lines (4012 loc) · 179 KB
/
ChangeLog
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
2024-03-20 Per Abrahamsen <[email protected]>
* Version 6.47 released.
2024-03-20 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.46 released.
2024-03-18 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* reaction_shoot.C (load_frame): Added second citation.
2024-01-22 Per Abrahamsen <[email protected]>
* Version 6.45 released.
2024-01-22 Per Abrahamsen <[email protected]>
* secondary.C (use_secondary): Now supported by the 'pressure'
model.
2024-01-19 Per Abrahamsen <[email protected]>
* lib/log.dai ("Groundwater"): Fix 'h_aquifer' path.
2023-12-07 Per Abrahamsen <[email protected]>
* hydraulic_B_C_inverse.C (Theta_wp): Use 20 um instead of 50 um
as silt limit.
2023-11-21 Per Abrahamsen <[email protected]>
* Version 6.44 released.
2023-11-21 Per Abrahamsen <[email protected]>
* wsource_weather.C (tick_weather): Force new day if daily values
are uninitialized.
2023-11-02 Per Abrahamsen <[email protected]>
* program_document.C: Now includes graphs for build-in PLFs.
* txt/Makefile (reference.ps): No longer generate.
2023-10-31 Per Abrahamsen <[email protected]>
* program_document.C, printer_file.C: Support Attribute::Function.
* program_document.C (inherited_entries): Avoid erasing iterator.
2023-10-30 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Makefile (COMPONENTS): Add it.
2023-10-23 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Version 6.43 released.
2023-09-18 Per Abrahamsen <[email protected]>
* hydraulic_table.C (M): Use generic code.
2023-08-29 Per Abrahamsen <[email protected]>
* Version 6.42 released.
2023-08-29 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* hydraulic_table.C (K_sat, Theta_sat): New optional parameters.
2023-08-04 Per Abrahamsen <[email protected]>
* rootdens_local.C: New model.
* Makefile (MODELS): Add it.
2023-06-30 Per Abrahamsen <[email protected]>
* Version 6.41 released.
2023-06-30 Per Abrahamsen <[email protected]>
* hydraulic_hyprop.C (K_vap): Handle numerical noise near saturation.
2023-06-29 Per Abrahamsen <[email protected]>
* Version 6.40 released.
2023-06-29 Per Abrahamsen <[email protected]>
* plf.C, plf.h (integrate_stupidly_2): Slightly less stupid integration.
* hydraulic_table.C: Use it.
2023-06-28 Per Abrahamsen <[email protected]>
* hydraulic_hyprop.C (Theta, KT, h): Handle h=0, Theta=Theta_sat case.
2023-06-16 Per Abrahamsen <[email protected]>
* Version 6.39 released.
2023-06-16 Per Abrahamsen <[email protected]>
* hydraulic.C (K_to_M): Avoid calling K, call K20.
2023-06-15 Per Abrahamsen <[email protected]>
* Version 6.38 released.
2023-06-15 Per Abrahamsen <[email protected]>
* hydraulic_hyprop.C (K_vap): Fix edge case near saturation.
* Version 6.37 released.
2023-06-15 Per Abrahamsen <[email protected]>
* hydraulic_hyprop.C (Cw2): Fix sign.
2023-05-28 Per Abrahamsen <[email protected]>
* program_nwaps.C: Removed unused parameter 'combine_units'.
2023-05-03 Per Abrahamsen <[email protected]>
* Version 6.36 released.
2023-04-26 Per Abrahamsen <[email protected]>
* program_nwaps.C (stdev, stderr): New summary lines.
2023-04-24 Per Abrahamsen <[email protected]>
* Makefile (SETUPDIR): Use $(HOME).
2023-04-23 Per Abrahamsen <[email protected]>
* program_nwaps.C: New model.
* Makefile (MODELS): Add it.
2023-04-21 Per Abrahamsen <[email protected]>
* Version 6.35 released.
2023-04-18 Per Abrahamsen <[email protected]>
* path.C, path.h (set_input_directory): New function.
* program_spawn.C: Use it.
2023-04-17 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* mathlib.h (M_LN10): Define if undefined.
2023-03-31 Per Abrahamsen <[email protected]>
* program_spawn.C: New model.
* Makefile (MODELS): Added it.
2023-03-22 Per Abrahamsen <[email protected]>
* action_markvand.C: Made it work again.
(solute): New parameter.
2023-03-06 Per Abrahamsen <[email protected]>
* hydraulic.h, hydraulic.C (K): Made it private.
(KT, KT20): New public functions.
* all: Update callers.
2023-02-27 Per Abrahamsen <[email protected]>
* hydraulic_hyprop.C: New model.
2022-11-03 Per Abrahamsen <[email protected]>
* Version 6.33 released.
2022-11-03 Per Abrahamsen <[email protected]>
* hydraulic_M_vGBS.C: Stop adding points to pF_Theta once max
Theta has been reached.
2022-08-09 Per Abrahamsen <[email protected]>
* Version 6.32 released.
2022-08-08 Per Abrahamsen <[email protected]>
* partition.C, partition.h (tick): New 'current_WRoot' argument.
2022-04-26 Per Abrahamsen <[email protected]>
* program_weather.C (run): Off by one error.
2022-04-06 Per Abrahamsen <[email protected]>
* Version 6.31 released.
2022-04-06 Per Abrahamsen <[email protected]>
* bioclimate_std.C (pond_water_to_snow): New log variable.
* lib/log.dai ("Surface water"): Log it.
2022-03-26 Per Abrahamsen <[email protected]>
* Version 6.30 released.
2022-03-25 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Version 6.29 released.
2022-03-23 Per Abrahamsen <[email protected]>
* condition_time.C ("microsecond", "second", "minute"): New
models.
2022-03-14 Per Abrahamsen <[email protected]>
* crop_std.C, crop_simple.C (NIRext): Return NIRext, not PARext.
* crop_std.C, crop_simple.C (NIRref): Ditto.
2022-03-13 Per Abrahamsen <[email protected]>
* photo_FCC3.C (find_we): Divide by 4 as per Eq 4.
2022-02-09 Per Abrahamsen <[email protected]>
* Version 6.28 released.
2022-02-09 Per Abrahamsen <[email protected]>
* snow.C: Bug fixes.
2022-02-08 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* assertion.C: Limit number of messages from same line.
2021-10-11 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.27 released.
2021-10-07 Per Abrahamsen <[email protected]>
* bioclimate_std.C (litter_pond_up, litter_soil_up): New log variables.
2021-10-04 Per Abrahamsen <[email protected]>
* Version 6.26 released.
2021-10-04 Per Abrahamsen <[email protected]>
* litter_mulch.C (tick): Divide by Theta_sat to find R.
2021-10-01 Per Abrahamsen <[email protected]>
* Version 6.25 released.
2021-10-01 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.24 released.
2021-09-17 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.23 released.
2021-09-16 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Version 6.22 released.
2021-08-19 Per Abrahamsen <[email protected]>
* cloudiness.C ("Taastrup"): New parameterization.
* bioclimate_std.C ("default"): Use it.
2021-07-26 Per Abrahamsen <[email protected]>
* Version 6.21 released.
2021-07-26 Per Abrahamsen <[email protected]>
* biopore_matrix.C (matrix_biopore_matrix): Don't warn about soil
drier than pF 6.
2021-06-18 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.20 released.
* am.C, production.C: More robust for high RDR.
2021-06-16 Per Abrahamsen <[email protected]>
* Version 6.19 released.
2021-06-16 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.18 released.
2021-06-15 Per Abrahamsen <[email protected]>
* select_quiver.C: New model.
2021-06-11 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.17 released.
2021-06-11 Per Abrahamsen <[email protected]>
* ghf.C (FAO56):
* bioclimate_std.C (WaterDistribution):
* ghf.h (value): Use Rn_ref instead of Rn.
2021-06-10 Per Abrahamsen <[email protected]>
* frame.C (set): Link instead of clone.
* parser_file.C (load_object): Ditto.
2021-06-09 Per Abrahamsen <[email protected]>
* Version 6.16 released.
2021-06-09 Per Abrahamsen <[email protected]>
* cloudiness.C (Cloudiness::tick): Update 'clear_sky_radiation'
log variable.
2021-06-01 Per Abrahamsen <[email protected]>
* Version 6.15 released.
2021-06-01 Per Abrahamsen <[email protected]>
* hydraulic.C (min_pF): New program parameter.
2021-05-31 Per Abrahamsen <[email protected]>
* Version 6.14 released.
2021-05-31 Per Abrahamsen <[email protected]>
* bioclimate_std.C (base): Renamed from "default".
(default, FAO56_daily, FAO56_hourly, SSOC): New parameterizations.
2021-05-27 Per Abrahamsen <[email protected]>
* horizon.C (initialize_base): Add 'Cw2' to daily.log table.
2021-05-25 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.12 released.
2021-05-05 Per Abrahamsen <[email protected]>
* cloudiness.C (CloudinessClear::tick): Bug fix.
2021-05-03 Per Abrahamsen <[email protected]>
* Version 6.11 released.
2021-05-03 Per Abrahamsen <[email protected]>
* wsource_weather.C, wsource_weather.h, weather.h:
* weatherdata.h, weatherdata.C:
(ground_heat_flux, GHF): New weather data.
2021-03-16 Per Abrahamsen <[email protected]>
* Version 6.10 released.
2021-03-16 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.09 released.
2021-03-11 Per Abrahamsen <[email protected]>
* wsource_weather.C (snow_fraction): Changed default temperature
for 100 % snow from -2 to 0 dg C.
2021-03-10 Per Abrahamsen <[email protected]>
* pet_FAO_PM.C, pet_FAO_PM_hourly.C (check): Warn if wind or vapor
pressure are missing.
2021-03-09 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Version 6.08 released.
2021-03-02 Per Abrahamsen <[email protected]>
* bioclimate_std.C (tick): handle saturated soil surface.
2021-02-23 Per Abrahamsen <[email protected]>
* program_optimize.C (parameters): New parameter.
2021-02-21 Per Abrahamsen <[email protected]>
* log_table.C (initialize): Special case NUL output.
* soil_water.C, soil_water.h (default_h): New parameter.
2021-02-17 Per Abrahamsen <[email protected]>
* Version 6.07 released.
2021-02-17 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.06 released.
2021-02-16 Per Abrahamsen <[email protected]>
* chemical_std.C (tick_top): Surface application should also hit litter.
2021-02-14 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.05 released.
2021-02-01 Per Abrahamsen <[email protected]>
* bioclimate_std.C (WaterDistribution): Avoid negative
'litter_water_storage'.
* reaction_dom.C (tick_soil): Fix assertion (numerical noise).
2021-01-30 Per Abrahamsen <[email protected]>
* ui.C (run): Actually run the program.
2021-01-29 Per Abrahamsen <[email protected]>
* toplevel.C (command_line): New '-L' switch, supress 'daisy.log'.
2021-01-18 Per Abrahamsen <[email protected]>
* hydraulic_M_BivG.C: New model.
* Makefile (MODELS): Added it.
2021-01-14 Per Abrahamsen <[email protected]>
* Version 6.03 released.
2020-12-17 Per Abrahamsen <[email protected]>
* Version 6.02 released.
2020-12-17 Per Abrahamsen <[email protected]>
* litter_mulch.C (T_soil): New log variable.
(use_soil_decompose): New parameter.
2020-12-10 Per Abrahamsen <[email protected]>
* Version 6.01 released.
2020-12-10 Per Abrahamsen <[email protected]>
* 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 <[email protected]>
* Version 6.00 released.
2020-12-07 Per Abrahamsen <[email protected]>
* litter_mulch.C (decompose_heat_factor, decompose_water_factor):
(decompose_SMB_pool, decompose_SMB_KM): New parameters.
2020-12-02 Per Abrahamsen <[email protected]>
* Version 5.99 released.
2020-12-02 Per Abrahamsen <[email protected]>
* retention.C, reaction.h: New component.
* Makefile (COMPONENTS): Added it.
2020-11-30 Per Abrahamsen <[email protected]>
* chemical_std.C (decompose_SMB_pool, decompose_SMB_KM): New parameters.
2020-11-30 Per Abrahamsen <[email protected]>
* Version 5.98 released.
2020-11-27 Per Abrahamsen <[email protected]>
* chemical_std.C (litter_leak, litter_diffuse): New log variables.
* lib/log.dai ("Surface Chemicals"): Handle them.
2020-11-26 Per Abrahamsen <[email protected]>
* Version 5.97 released.
* chemistry.h, chemistry_std.C, chemistry_multi.C (tick_top):
* chemical.h, chemical_std.C (tick_top): Take
'Litter' argument.
* column_std.C (tick_move): Update caller.
2020-11-24 Per Abrahamsen <[email protected]>
* litter.h, litter.C, litter_mulch.C (wash_off_rate): New
function.
* litter.h, litter.C, litter_mulch.C (intercept): New function.
* bioclimate_std.C (WaterDistribution): Use it.
(litter_wash_off): New log variable.
2020-11-23 Per Abrahamsen <[email protected]>
* wsource_weather.C (daily_extraterrastial_radiation): Remove
unused declaration.
(relative_extraterrestial_radiation): Fix spelling.
2020-11-16 Per Abrahamsen <[email protected]>
* litter_mulch.C (water): Changed unit from [cm] to [mm].
2020-11-12 Per Abrahamsen <[email protected]>
* Version 5.96 released.
2020-11-12 Per Abrahamsen <[email protected]>
* litter.C, litter.h, litter_mulch (potential_exfiltration): New
function.
* bioclimate_std.C (WaterDistribution): Use it.
2020-11-07 Per Abrahamsen <[email protected]>
* wsource_weather.C, wsource_std.C (weather_initialize): Put time
in message.
2020-11-04 Per Abrahamsen <[email protected]>
* litter_residue.C (Millet, Maize): specific_AI was 10 times too
high.
2020-10-26 Per Abrahamsen <[email protected]>
* frame.h, frame.C (set_described, set_cited): Also take PLF arguments.
2020-10-23 Per Abrahamsen <[email protected]>
* organic_std.C (heat_factor, water_factor): Cite default value.
2020-10-20 Per Abrahamsen <[email protected]>
* Version 5.95 released.
2020-10-15 Per Abrahamsen <[email protected]>
* column_std.C (output): Include litter in surface water.
* wsource_weather.C (T_normal): TAverage and TAmplitude can be 0.
(T_normal): Return NAN if not finite.
* organic_std.C (tick): Fix debug message.
2020-10-12 Per Abrahamsen <[email protected]>
* Version 5.94 released.
2020-10-12 Per Abrahamsen <[email protected]>
* hydraulic_M_vGBS.C, hydraulic_hypWeb.C: New files.
* Makefile (MODELS): Added them.
* hydraulic_hypWeb.C: Fix warning.
2020-10-09 Per Abrahamsen <[email protected]>
* complex_functions.C, complex_functions.h:
* hyp_2F1.C, hyp_2F1.h: New utilities.
* Makefile (OTHER): Add them.
2020-09-29 Per Abrahamsen <[email protected]>
* chemical_std.C (C): New base parameterization.
(DOC): Use it.
2020-09-22 Per Abrahamsen <[email protected]>
* reaction_dom.C: New model.
* Makefile (MODELS): Add it.
* all: Removed 'Units' argument and added 'OrganicMatter' to many
functions related with chemistry.
2020-09-21 Per Abrahamsen <[email protected]>
* chemical_std.C (DOC, DON): New parameterization.
(base): New base class.
(default): Use it.
(nutrient, MIN): New base parameterizations.
(FOCUS): New class.
(default): Remove soilfac support.
* litter_residue.h: Split from litter.h
* litter_residue.C, litter_mulch.C: Split from litter.C.
* Makefile (MODELS): Removed litter, added litter_mulch.
(COMPONENTS): Added litter.
(SPECIALS): Added litter_residue.
(COMPONENTS): Removed soilfac.
2020-09-07 Per Abrahamsen <[email protected]>
* chemical_std.C, chemical.h (add_to_litter_transform_source): New
function.
* chemical_std.C (litter_transform): New log variable.
* chemistry_std.C (DOM): New parameterization.
* chemical.C, chemical_std.C (DON, DOC): New parameterizations.
* lib/log-std.dai ("Field chemical"): Addet it.
2020-09-02 Per Abrahamsen <[email protected]>
* lib/log.dai ("Crop uptake"): New log parameterization.
2020-09-01 Per Abrahamsen <[email protected]>
* bioclimate_std.C, bioclimate.h (get_litter_water)
(get_litter_temperature): New functions.
2020-08-31 Per Abrahamsen <[email protected]>
* chemical_std.C, chemical.h (litter_storage_amount): New function.
* bioincorporation.C (am_compare): Move to am.C.
* am.C, am.h (compare_CN): New place.
2020-08-27 Per Abrahamsen <[email protected]>
* log_select.C (parameter_names): Fix description.
2020-07-31 Per Abrahamsen <[email protected]>
* unit_model.C ([kg DM/m^3]): New unit.
2020-06-09 Per Abrahamsen <[email protected]>
* lib/wwheat.dai ("Winter Wheat JG"): New parameterization.
2020-03-02 Per Abrahamsen <[email protected]>
* hydraulic.h, hydraulic.C: Derived from ModelFramed so it can be
used in a list.
* soil.C (Hydraulic): New parameter.
* hydraulic_linear.C: New model.
* horizon.h, horizon.C (CEC): New function.
* horizon.h, horizon_system.C, horizon_numeric.C (texture): New
function.
2020-02-27 Per Abrahamsen <[email protected]>
* horizon.C, horizon.h (K): Removed.
(K_factor): Added.
* number_soil.C (NumberSoilK::value): Update caller.
* soil.C (K): Update caller.
2020-02-03 Per Abrahamsen <[email protected]>
* Version 5.93 released.
2020-02-03 Per Abrahamsen <[email protected]>
* geometry.C (biopore_pass_pipes): Allow non-zero bottom flux.
2019-12-05 Per Abrahamsen <[email protected]>
* vegetation_afforestation.C: Update caller.
* root_system.h (EffectiveDensity): New log variable.
(actual_density, effective_density): New accessors.
* horizon.C, horizon.h, soil.C, soil.h (root_homogenity): New function.
2019-10-11 Per Abrahamsen <[email protected]>
* Version 5.92 released.
2019-10-11 Per Abrahamsen <[email protected]>
* heatrect_linear.C (top): New model.
2019-10-07 Per Abrahamsen <[email protected]>
* Version 5.91 released.
2019-10-07 Per Abrahamsen <[email protected]>
* chemical_std.C (litter_washoff_coefficient): New parameter.
2019-09-16 Per Abrahamsen <[email protected]>
* Version 5.90 released.
2019-09-16 Per Abrahamsen <[email protected]>
* action_with.C (done): Also restrict field here.
2019-09-11 Per Abrahamsen <[email protected]>
* Version 5.89 released.
2019-09-11 Per Abrahamsen <[email protected]>
* condition_walltime.C (walltime): New model.
* daisy.C (stop_when): New parameter.
2019-08-21 Per Abrahamsen <[email protected]>
* Version 5.88 released.
2019-08-14 Per Abrahamsen <[email protected]>
* surface.C (q_top): Fix sign error for forced_pressure.
2019-08-08 Per Abrahamsen <[email protected]>
* hydraulic_table.C (Cw2): Fix unit [cm^-1] instead of [h^-1].
* hydraulic.C (run): Ditto.
2019-07-10 Per Abrahamsen <[email protected]>
* Version 5.87 released.
2019-07-10 Per Abrahamsen <[email protected]>
* hydraulic_table.C: New model.
* Makefile (MODELS): Added it.
* hydraulic.C, hydraulic.h (check): Removed unused function.
2019-07-03 Per Abrahamsen <[email protected]>
* program_weather.C (run): Also print 'PAverage'.
(print_fractiles): New functions.
(P_fractiles, T_fractiles): New parameters.
(run): Also print dabily averages.
2019-06-11 Per Abrahamsen <[email protected]>
* Version 5.86 released.
2019-06-11 Per Abrahamsen <[email protected]>
* partition.C (tick): Make NNI work after DS=1 as well.
2019-06-04 Per Abrahamsen <[email protected]>
* Version 5.84 released.
2019-06-04 Per Abrahamsen <[email protected]>
* reaction_shoot.C (shoot2): New model.
2019-05-14 Per Abrahamsen <[email protected]>
* Version 5.83 released.
2019-05-14 Per Abrahamsen <[email protected]>
* crop_std.C (CropStandard::tick): Call root_system->tick_daily with right type parameters.
* horizon.C (K_factor): New parameter.
2019-03-05 Per Abrahamsen <[email protected]>
* Version 5.82 released.
2019-03-05 Per Abrahamsen <[email protected]>
* reaction_adsorption.C (tick_soil): Only use solute part of
'solute' chemical, and try to be smart about when to use the new
and old water content.
2019-03-04 Per Abrahamsen <[email protected]>
* Version 5.81 released.
2019-03-04 Per Abrahamsen <[email protected]>
* reaction_sorption.C (tick_soil): Only use solute part of
'solute' chemical, allowing the micture of equilibrium and
non-equilibrium sorption.
2019-02-25 Per Abrahamsen <[email protected]>
* Version 5.80 released.
2019-02-25 Per Abrahamsen <[email protected]>
* soilfac.C (Maja): New model.
2019-02-22 Per Abrahamsen <[email protected]>
* Version 5.79 released.
2019-02-22 Per Abrahamsen <[email protected]>
* uzrect_2x1.C (vertical): Replace "lr" with "none".
* soil_water.C, soil_water.h (mass_balance): Made it const.
2019-02-18 Per Abrahamsen <[email protected]>
* action_wait.C ('at'): New model.