-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunTestCases_docker_davrods.log
2227 lines (2162 loc) · 78.6 KB
/
runTestCases_docker_davrods.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$ ./runTestCases_docker_davrods.sh
Unable to find image 'bartnijssen/summa:latest' locally
latest: Pulling from bartnijssen/summa
0bbeb3f34b71: Pull complete
fb8d5f4c517a: Pull complete
c4cd377f2172: Pull complete
968d05a75978: Pull complete
f358380db9ed: Pull complete
b88bb1ad542e: Pull complete
4209887b8dca: Pull complete
e87f82c291f1: Pull complete
9c846c4db908: Pull complete
Digest: sha256:917c495b4cd776440ef7ac1a8cb59913b3b3ae61a0d682acc0d5c7604c2edc71
Status: Downloaded newer image for bartnijssen/summa:latest
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/celia1990/summa_fileManager_celia1990.txt'.
start at 16:55:57
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/celia1990/summa_zDecisions_celia1990.txt
1 simulStart: 2000-01-01 00:30
2 simulFinsh: 2000-01-03 12:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: presHead
16 bcLowrSoiH: presHead
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 0 30
finshTime: iyyy, im, id, ih, imin = 2000 1 3 12 0
/summaTestCases_2.x/settings/syntheticTestCases/celia1990/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/celia1990/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
maxStepsPerFile, maxLength = 120 12720
Created output file:/summaTestCases_2.x/output/syntheticTestCases/celia1990/celia1990_2000-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:55:57.373
final date/time = 2018-03-02 16:56:00.191
elapsed time = 2.818000 s
or 4.6966667E-02 m
or 7.8277778E-04 h
or 3.2615741E-05 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_fileManager_colbeck1976-exp1.txt'.
start at 16:56:06
Name of Model Output control file: /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_defineModelOutput.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zDecisions_colbeck1976.txt
1 simulStart: 1990-01-01 00:01
2 simulFinsh: 1990-01-01 10:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: jrdn1991
26 thCondSnow: smnv2000
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 1990 1 1 0 1
finshTime: iyyy, im, id, ih, imin = 1990 1 1 10 0
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
fixedThermalCond_snow
k_snow
mw_exp
Fcapil
zmin
maxStepsPerFile, maxLength = 600 72600
Created output file:/summaTestCases_2.x/output/syntheticTestCases/colbeck1976/colbeck1976-exp1_1990-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:56:06.635
final date/time = 2018-03-02 16:56:10.492
elapsed time = 3.857000 s
or 6.4283333E-02 m
or 1.0713889E-03 h
or 4.4641204E-05 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_fileManager_colbeck1976-exp2.txt'.
start at 16:56:17
Name of Model Output control file: /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_defineModelOutput.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zDecisions_colbeck1976.txt
1 simulStart: 1990-01-01 00:01
2 simulFinsh: 1990-01-01 10:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: jrdn1991
26 thCondSnow: smnv2000
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 1990 1 1 0 1
finshTime: iyyy, im, id, ih, imin = 1990 1 1 10 0
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
fixedThermalCond_snow
k_snow
mw_exp
Fcapil
zmin
maxStepsPerFile, maxLength = 600 72600
Created output file:/summaTestCases_2.x/output/syntheticTestCases/colbeck1976/colbeck1976-exp2_1990-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:56:17.069
final date/time = 2018-03-02 16:56:21.600
elapsed time = 4.531000 s
or 7.5516667E-02 m
or 1.2586111E-03 h
or 5.2442130E-05 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_fileManager_colbeck1976-exp3.txt'.
start at 16:56:28
Name of Model Output control file: /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_defineModelOutput.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zDecisions_colbeck1976.txt
1 simulStart: 1990-01-01 00:01
2 simulFinsh: 1990-01-01 10:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: jrdn1991
26 thCondSnow: smnv2000
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 1990 1 1 0 1
finshTime: iyyy, im, id, ih, imin = 1990 1 1 10 0
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/colbeck1976/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
fixedThermalCond_snow
k_snow
mw_exp
Fcapil
zmin
zmax
maxStepsPerFile, maxLength = 600 72600
Created output file:/summaTestCases_2.x/output/syntheticTestCases/colbeck1976/colbeck1976-exp3_1990-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:56:28.039
final date/time = 2018-03-02 16:56:32.424
elapsed time = 4.385000 s
or 7.3083333E-02 m
or 1.2180556E-03 h
or 5.0752315E-05 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_fileManager_millerClay.txt'.
start at 16:56:38
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zDecisions_miller1998.txt
1 simulStart: 2000-01-01 00:30
2 simulFinsh: 2000-01-03 12:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: presHead
16 bcLowrSoiH: presHead
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 0 30
finshTime: iyyy, im, id, ih, imin = 2000 1 3 12 0
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
maxStepsPerFile, maxLength = 239 77914
Created output file:/summaTestCases_2.x/output/syntheticTestCases/miller1998/millerClay_2000-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:56:38.840
final date/time = 2018-03-02 16:56:45.077
elapsed time = 6.237000 s
or 0.1039500 m
or 1.7325000E-03 h
or 7.2187500E-05 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_fileManager_millerLoam.txt'.
start at 16:56:51
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zDecisions_miller1998.txt
1 simulStart: 2000-01-01 00:30
2 simulFinsh: 2000-01-03 12:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: presHead
16 bcLowrSoiH: presHead
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 0 30
finshTime: iyyy, im, id, ih, imin = 2000 1 3 12 0
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
maxStepsPerFile, maxLength = 239 97034
Created output file:/summaTestCases_2.x/output/syntheticTestCases/miller1998/millerLoam_2000-01-01-00_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:56:51.469
final date/time = 2018-03-02 16:56:57.667
elapsed time = 6.198000 s
or 0.1033000 m
or 1.7216667E-03 h
or 7.1736111E-05 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG IEEE_DENORMAL
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_fileManager_millerSand.txt'.
start at 16:57:04
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zDecisions_miller1998.txt
1 simulStart: 2000-01-01 00:30
2 simulFinsh: 2000-01-03 12:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: zeroFlux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: presHead
16 bcLowrSoiH: presHead
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 0 30
finshTime: iyyy, im, id, ih, imin = 2000 1 3 12 0
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/miller1998/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
FATAL ERROR: check_icond/cannot initialize the model with volumetric fraction of liquid water < theta_res: layer = 1
error, variable dump:
modelTimeStep = 0
error code = 20
1124655440 21912 0 0 0
trim(nf90_strerror(err) = NetCDF: Not a valid ID
nc_file_close/[NetCDF: Not a valid ID]
nc_file_close/[NetCDF: Not a valid ID]
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/mizoguchi1990/summa_fileManager_mizoguchi.txt'.
start at 16:57:12
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/mizoguchi1990/summa_zDecisions_mizoguchi.txt
1 simulStart: 2000-01-01 00:01
2 simulFinsh: 2000-01-03 12:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: monTable
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: presTemp
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: zeroFlux
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: jrdn1991
26 thCondSnow: jrdn1991
27 thCondSoil: hanssonVZJ
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 0 1
finshTime: iyyy, im, id, ih, imin = 2000 1 3 12 0
/summaTestCases_2.x/settings/syntheticTestCases/mizoguchi1990/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/mizoguchi1990/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_snow
k_soil
k_macropore
maxStepsPerFile, maxLength = 3600 435600
Created output file:/summaTestCases_2.x/output/syntheticTestCases/mizoguchi1990/mizoguchi1990_2000-01-01-00_spinup_testSumma_docker_1.nc
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG IEEE_DENORMAL
initial date/time = 2018-03-02 16:57:12.180
final date/time = 2018-03-02 16:57:27.529
elapsed time = 15.34900 s
or 0.2558167 m
or 4.2636111E-03 h
or 1.7765046E-04 d
FORTRAN STOP: finished simulation successfully.
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_fileManager-exp1.txt'.
start at 16:57:34
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zDecisions.txt
1 simulStart: 2000-01-01 01:00
2 simulFinsh: 2000-02-11 23:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: qTopmodl
12 hc_profile: pow_prof
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: zeroFlux
17 veg_traits: CM_QJRMS1998
18 canopyEmis: simplExp
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 1 0
finshTime: iyyy, im, id, ih, imin = 2000 2 11 23 0
/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
winterSAI
summerLAI
theta_res
theta_sat
fieldCapacity
critSoilWilting
critSoilTranspire
vGn_alpha
vGn_n
k_soil
k_macropore
zScale_TOPMODEL
maxStepsPerFile, maxLength = 1007 14098
Created output file:/summaTestCases_2.x/output/syntheticTestCases/wigmosta1999/syntheticHillslope-exp1_2000-01-01-01_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 16:57:34.048
final date/time = 2018-03-02 17:00:21.756
elapsed time = 167.7080 s
or 2.795133 m
or 4.6585556E-02 h
or 1.9410648E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_DENORMAL
file_suffix is '_testSumma_docker'.
file_master is '/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_fileManager-exp2.txt'.
start at 17:00:28
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zDecisions.txt
1 simulStart: 2000-01-01 01:00
2 simulFinsh: 2000-02-11 23:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: qTopmodl
12 hc_profile: pow_prof
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: zeroFlux
17 veg_traits: CM_QJRMS1998
18 canopyEmis: simplExp
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2000 1 1 1 0
finshTime: iyyy, im, id, ih, imin = 2000 2 11 23 0
/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/syntheticTestCases/wigmosta1999/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
winterSAI
summerLAI
theta_res
theta_sat
fieldCapacity
critSoilWilting
critSoilTranspire
vGn_alpha
vGn_n
k_soil
k_macropore
zScale_TOPMODEL
maxStepsPerFile, maxLength = 1007 14098
Created output file:/summaTestCases_2.x/output/syntheticTestCases/wigmosta1999/syntheticHillslope-exp2_2000-01-01-01_spinup_testSumma_docker_1.nc
initial date/time = 2018-03-02 17:00:28.201
final date/time = 2018-03-02 17:03:09.261
elapsed time = 161.0600 s
or 2.684333 m
or 4.4738889E-02 h
or 1.8641204E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_DENORMAL
file_suffix is '_riparianAspenBeersLaw'.
file_master is '/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_fileManager_riparianAspenBeersLaw.txt'.
start at 17:03:15
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zDecisions_riparianAspenBeersLaw.txt
1 simulStart: 2005-07-01 00:00
2 simulFinsh: 2008-09-30 00:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: BeersLaw
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2005 7 1 0 0
finshTime: iyyy, im, id, ih, imin = 2008 9 30 0 0
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
frozenPrecipMultip
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
rootingDepth
rootDistExp
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-07-01-00_spinup_riparianAspenBeersLaw_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-2006_riparianAspenBeersLaw_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2006-2007_riparianAspenBeersLaw_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2007-2008_riparianAspenBeersLaw_1.nc
initial date/time = 2018-03-02 17:03:15.731
final date/time = 2018-03-02 17:04:54.426
elapsed time = 98.69500 s
or 1.644917 m
or 2.7415278E-02 h
or 1.1423032E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG
file_suffix is '_riparianAspenNLscatter'.
file_master is '/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_fileManager_riparianAspenNLscatter.txt'.
start at 17:05:00
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zDecisions_riparianAspenNLscatter.txt
1 simulStart: 2005-07-01 00:00
2 simulFinsh: 2008-09-30 00:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: NL_scatter
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2005 7 1 0 0
finshTime: iyyy, im, id, ih, imin = 2008 9 30 0 0
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
frozenPrecipMultip
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
rootingDepth
rootDistExp
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-07-01-00_spinup_riparianAspenNLscatter_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-2006_riparianAspenNLscatter_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2006-2007_riparianAspenNLscatter_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2007-2008_riparianAspenNLscatter_1.nc
initial date/time = 2018-03-02 17:05:00.969
final date/time = 2018-03-02 17:06:36.910
elapsed time = 95.94100 s
or 1.599017 m
or 2.6650278E-02 h
or 1.1104282E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG
file_suffix is '_riparianAspenUEB2stream'.
file_master is '/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_fileManager_riparianAspenUEB2stream.txt'.
start at 17:06:43
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zDecisions_riparianAspenUEB2stream.txt
1 simulStart: 2005-07-01 00:00
2 simulFinsh: 2008-09-30 00:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: UEB_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2005 7 1 0 0
finshTime: iyyy, im, id, ih, imin = 2008 9 30 0 0
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
frozenPrecipMultip
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
rootingDepth
rootDistExp
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-07-01-00_spinup_riparianAspenUEB2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-2006_riparianAspenUEB2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2006-2007_riparianAspenUEB2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2007-2008_riparianAspenUEB2stream_1.nc
initial date/time = 2018-03-02 17:06:43.380
final date/time = 2018-03-02 17:08:20.290
elapsed time = 96.91000 s
or 1.615167 m
or 2.6919444E-02 h
or 1.1216435E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG IEEE_DENORMAL
file_suffix is '_riparianAspenCLM2stream'.
file_master is '/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_fileManager_riparianAspenCLM2stream.txt'.
start at 17:08:26
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zDecisions_riparianAspenCLM2stream.txt
1 simulStart: 2005-07-01 00:00
2 simulFinsh: 2008-09-30 00:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: CLM_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2005 7 1 0 0
finshTime: iyyy, im, id, ih, imin = 2008 9 30 0 0
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
frozenPrecipMultip
theta_mp
theta_sat
theta_res
vGn_alpha
vGn_n
f_impede
k_soil
k_macropore
critSoilWilting
critSoilTranspire
winterSAI
summerLAI
heightCanopyTop
heightCanopyBottom
rootingDepth
rootDistExp
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-07-01-00_spinup_riparianAspenCLM2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2005-2006_riparianAspenCLM2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2006-2007_riparianAspenCLM2stream_1.nc
maxStepsPerFile, maxLength = 28489 398846
Created output file:/summaTestCases_2.x/output/wrrPaperTestCases/figure01/vegImpactsRad_2007-2008_riparianAspenCLM2stream_1.nc
initial date/time = 2018-03-02 17:08:26.745
final date/time = 2018-03-02 17:10:06.696
elapsed time = 99.95100 s
or 1.665850 m
or 2.7764167E-02 h
or 1.1568403E-03 d
FORTRAN STOP: finished simulation successfully.
Note: The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG
file_suffix is '_riparianAspenVegParamPerturb'.
file_master is '/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_fileManager_riparianAspenVegParamPerturb.txt'.
start at 17:10:13
Name of Model Output control file: /summaTestCases_2.x/settings/meta/Model_Output.txt
decisions file = /summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zDecisions_riparianAspenUEB2stream.txt
1 simulStart: 2005-07-01 00:00
2 simulFinsh: 2008-09-30 00:00
3 soilCatTbl: ROSETTA
4 vegeParTbl: USGS
5 soilStress: NoahType
6 stomResist: BallBerry
7 num_method: itertive
8 fDerivMeth: analytic
9 LAI_method: specified
10 f_Richards: mixdform
11 groundwatr: noXplict
12 hc_profile: constant
13 bcUpprTdyn: nrg_flux
14 bcLowrTdyn: zeroFlux
15 bcUpprSoiH: liq_flux
16 bcLowrSoiH: drainage
17 veg_traits: CM_QJRMS1998
18 canopyEmis: difTrans
19 snowIncept: lightSnow
20 windPrfile: logBelowCanopy
21 astability: louisinv
22 canopySrad: UEB_2stream
23 alb_method: varDecay
24 compaction: anderson
25 snowLayers: CLM_2010
26 thCondSnow: jrdn1991
27 thCondSoil: mixConstit
28 spatial_gw: localColumn
29 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 2005 7 1 0 0
finshTime: iyyy, im, id, ih, imin = 2008 9 30 0 0
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zLocalParamInfo.txt
/summaTestCases_2.x/settings/wrrPaperTestCases/figure01/summa_zBasinParamInfo.txt
Skipping over SLTYPE = STAS
Skipping over SLTYPE = STAS-RUC
hruIndex
frozenPrecipMultip
rootingDepth
rootDistExp
theta_sat
theta_res
vGn_alpha
vGn_n
k_soil
critSoilWilting
critSoilTranspire
winterSAI
summerLAI