-
Notifications
You must be signed in to change notification settings - Fork 50
/
report_pytest_111021.html
9608 lines (9162 loc) · 395 KB
/
report_pytest_111021.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Test Report</title>
<link href="assets/style.css" rel="stylesheet" type="text/css"/></head>
<body onLoad="init()">
<script>/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
function toArray(iter) {
if (iter === null) {
return null;
}
return Array.prototype.slice.call(iter);
}
function find(selector, elem) { // eslint-disable-line no-redeclare
if (!elem) {
elem = document;
}
return elem.querySelector(selector);
}
function findAll(selector, elem) {
if (!elem) {
elem = document;
}
return toArray(elem.querySelectorAll(selector));
}
function sortColumn(elem) {
toggleSortStates(elem);
const colIndex = toArray(elem.parentNode.childNodes).indexOf(elem);
let key;
if (elem.classList.contains('result')) {
key = keyResult;
} else if (elem.classList.contains('links')) {
key = keyLink;
} else {
key = keyAlpha;
}
sortTable(elem, key(colIndex));
}
function showAllExtras() { // eslint-disable-line no-unused-vars
findAll('.col-result').forEach(showExtras);
}
function hideAllExtras() { // eslint-disable-line no-unused-vars
findAll('.col-result').forEach(hideExtras);
}
function showExtras(colresultElem) {
const extras = colresultElem.parentNode.nextElementSibling;
const expandcollapse = colresultElem.firstElementChild;
extras.classList.remove('collapsed');
expandcollapse.classList.remove('expander');
expandcollapse.classList.add('collapser');
}
function hideExtras(colresultElem) {
const extras = colresultElem.parentNode.nextElementSibling;
const expandcollapse = colresultElem.firstElementChild;
extras.classList.add('collapsed');
expandcollapse.classList.remove('collapser');
expandcollapse.classList.add('expander');
}
function showFilters() {
const filterItems = document.getElementsByClassName('filter');
for (let i = 0; i < filterItems.length; i++)
filterItems[i].hidden = false;
}
function addCollapse() {
// Add links for show/hide all
const resulttable = find('table#results-table');
const showhideall = document.createElement('p');
showhideall.innerHTML = '<a href="javascript:showAllExtras()">Show all details</a> / ' +
'<a href="javascript:hideAllExtras()">Hide all details</a>';
resulttable.parentElement.insertBefore(showhideall, resulttable);
// Add show/hide link to each result
findAll('.col-result').forEach(function(elem) {
const collapsed = getQueryParameter('collapsed') || 'Passed';
const extras = elem.parentNode.nextElementSibling;
const expandcollapse = document.createElement('span');
if (extras.classList.contains('collapsed')) {
expandcollapse.classList.add('expander');
} else if (collapsed.includes(elem.innerHTML)) {
extras.classList.add('collapsed');
expandcollapse.classList.add('expander');
} else {
expandcollapse.classList.add('collapser');
}
elem.appendChild(expandcollapse);
elem.addEventListener('click', function(event) {
if (event.currentTarget.parentNode.nextElementSibling.classList.contains('collapsed')) {
showExtras(event.currentTarget);
} else {
hideExtras(event.currentTarget);
}
});
});
}
function getQueryParameter(name) {
const match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
function init () { // eslint-disable-line no-unused-vars
resetSortHeaders();
addCollapse();
showFilters();
sortColumn(find('.initial-sort'));
findAll('.sortable').forEach(function(elem) {
elem.addEventListener('click',
function() {
sortColumn(elem);
}, false);
});
}
function sortTable(clicked, keyFunc) {
const rows = findAll('.results-table-row');
const reversed = !clicked.classList.contains('asc');
const sortedRows = sort(rows, keyFunc, reversed);
/* Whole table is removed here because browsers acts much slower
* when appending existing elements.
*/
const thead = document.getElementById('results-table-head');
document.getElementById('results-table').remove();
const parent = document.createElement('table');
parent.id = 'results-table';
parent.appendChild(thead);
sortedRows.forEach(function(elem) {
parent.appendChild(elem);
});
document.getElementsByTagName('BODY')[0].appendChild(parent);
}
function sort(items, keyFunc, reversed) {
const sortArray = items.map(function(item, i) {
return [keyFunc(item), i];
});
sortArray.sort(function(a, b) {
const keyA = a[0];
const keyB = b[0];
if (keyA == keyB) return 0;
if (reversed) {
return keyA < keyB ? 1 : -1;
} else {
return keyA > keyB ? 1 : -1;
}
});
return sortArray.map(function(item) {
const index = item[1];
return items[index];
});
}
function keyAlpha(colIndex) {
return function(elem) {
return elem.childNodes[1].childNodes[colIndex].firstChild.data.toLowerCase();
};
}
function keyLink(colIndex) {
return function(elem) {
const dataCell = elem.childNodes[1].childNodes[colIndex].firstChild;
return dataCell == null ? '' : dataCell.innerText.toLowerCase();
};
}
function keyResult(colIndex) {
return function(elem) {
const strings = ['Error', 'Failed', 'Rerun', 'XFailed', 'XPassed',
'Skipped', 'Passed'];
return strings.indexOf(elem.childNodes[1].childNodes[colIndex].firstChild.data);
};
}
function resetSortHeaders() {
findAll('.sort-icon').forEach(function(elem) {
elem.parentNode.removeChild(elem);
});
findAll('.sortable').forEach(function(elem) {
const icon = document.createElement('div');
icon.className = 'sort-icon';
icon.textContent = 'vvv';
elem.insertBefore(icon, elem.firstChild);
elem.classList.remove('desc', 'active');
elem.classList.add('asc', 'inactive');
});
}
function toggleSortStates(elem) {
//if active, toggle between asc and desc
if (elem.classList.contains('active')) {
elem.classList.toggle('asc');
elem.classList.toggle('desc');
}
//if inactive, reset all other functions and add ascending active
if (elem.classList.contains('inactive')) {
resetSortHeaders();
elem.classList.remove('inactive');
elem.classList.add('active');
}
}
function isAllRowsHidden(value) {
return value.hidden == false;
}
function filterTable(elem) { // eslint-disable-line no-unused-vars
const outcomeAtt = 'data-test-result';
const outcome = elem.getAttribute(outcomeAtt);
const classOutcome = outcome + ' results-table-row';
const outcomeRows = document.getElementsByClassName(classOutcome);
for(let i = 0; i < outcomeRows.length; i++){
outcomeRows[i].hidden = !elem.checked;
}
const rows = findAll('.results-table-row').filter(isAllRowsHidden);
const allRowsHidden = rows.length == 0 ? true : false;
const notFoundMessage = document.getElementById('not-found-message');
notFoundMessage.hidden = !allRowsHidden;
}
</script>
<h1>CWatM pytest report</h1>
<p>Report generated on 11-Oct-2021 at 09:48:25 by <a href="https://pypi.python.org/pypi/pytest-html">pytest-html</a> v3.1.1</p>
<h2>Environment</h2>
<table id="environment">
<tr>
<td>Python</td>
<td>3.8.10</td></tr>
<tr>
<td>Platform</td>
<td>Windows-10-10.0.19042-SP0</td></tr>
<tr>
<td>CWatM folder</td>
<td>C:/work/CWATM/run_cwatm.py</td></tr>
<tr>
<td>CWatM author</td>
<td>Peter Burek, Yusuke Satoh, Peter Greve, Mikhail Smilovic, Luca Guillaumot, Jens de Bruijn</td></tr>
<tr>
<td>CWatM version</td>
<td>1.4</td></tr>
<tr>
<td>CWatM date</td>
<td>19/02/2020</td></tr>
<tr>
<td>Settingsfile</td>
<td>test_py_cwatm5.txt</td></tr>
<tr>
<td>PyTest</td>
<td>test_cwatm3.py, tests/</td></tr>
<tr>
<td>Report</td>
<td>report14062021.html</td></tr></table>
<h2>Summary</h2>
<p>88 tests ran in 1592.15 seconds. </p>
<p class="filter" hidden="true">(Un)check the boxes to filter the results.</p><input checked="true" class="filter" data-test-result="passed" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="passed">88 passed</span>, <input checked="true" class="filter" data-test-result="skipped" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="skipped">0 skipped</span>, <input checked="true" class="filter" data-test-result="failed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="failed">0 failed</span>, <input checked="true" class="filter" data-test-result="error" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="error">0 errors</span>, <input checked="true" class="filter" data-test-result="xfailed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="xfailed">0 expected failures</span>, <input checked="true" class="filter" data-test-result="xpassed" disabled="true" hidden="true" name="filter_checkbox" onChange="filterTable(this)" type="checkbox"/><span class="xpassed">0 unexpected passes</span>
<h2>Results</h2>
<table id="results-table">
<thead id="results-table-head">
<tr>
<th class="sortable result initial-sort" col="result">Result</th>
<th class="sortable" col="name">Test</th>
<th class="sortable" col="duration">Duration</th></tr>
<tr hidden="true" id="not-found-message">
<th colspan="3">No results found. Try to check the filters</th></tr></thead>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm_without_settings[CWatM first test without any arguments]</td>
<td class="col-duration">0.00</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== CWATM without settingsfile =====
Setting file: NONE
CWatM - Community Water Model
Authors: Peter Burek, Yusuke Satoh, Peter Greve, Mikhail Smilovic, Luca Guillaumot, Jens de Bruijn
Version: 1.4
Date: 19/02/2020
Status: Development
Arguments list:
settings.ini settings file
-q --quiet output progression given as .
-v --veryquiet no output progression is given
-l --loud output progression given as time step, date and discharge
-c --check input maps and stack maps are checked, output for each input map BUT no model run
-h --noheader .tss file have no header and start immediately with the time series
-t --printtime the computation time for hydrological modules are printed
-w --warranty copyright and warranty information
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[1st Rhine 30min basic version-model0]</td>
<td class="col-duration">6.14</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_1 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_01.ini
Description: 1st Rhine 30min basic version
Changes: ['', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_01.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:21:59.253025
End: 09:22:00.069510
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[2nd Rhine 30min with box as mask and basic outputs-model1]</td>
<td class="col-duration">1.62</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_2 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_02.ini
Description: 2nd Rhine 30min with box as mask and basic outputs
Changes: ['MaskMap = 14 12 0.5 5.0 52.0', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge', 'OUT_MAP_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_02.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:22:01.137834
End: 09:22:01.698706
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[3rd Rhine 30min with location as mask-model2]</td>
<td class="col-duration">1.75</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_3 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_03.ini
Description: 3rd Rhine 30min with location as mask
Changes: ['MaskMap = 6.25 51.75', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
Create catchment from point and river network
Number of cells in catchment: 80 = 161975 km2
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_03.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:22:02.965482
End: 09:22:03.451896
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[4th Rhine 30min with routing off and storing EWRef, ETRef-model3]</td>
<td class="col-duration">40.55</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_4 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_04.ini
Description: 4th Rhine 30min with routing off and storing EWRef, ETRef
Changes: ['PET_modus = 3', 'includeRouting = False', 'StepEnd = 730', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_MAP_Daily = ETRef, EWRef']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_04.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.20 3 03/01/2009 4.20 4 04/01/2009 4.20 5 05/01/2009 4.20 6 06/01/2009 4.20 7 07/01/2009 4.20 8 08/01/2009 4.20 9 09/01/2009 4.20 10 10/01/2009 4.20 11 11/01/2009 4.20 12 12/01/2009 4.20 13 13/01/2009 4.20 14 14/01/2009 4.20 15 15/01/2009 4.20 16 16/01/2009 4.20 17 17/01/2009 4.20 18 18/01/2009 4.20 19 19/01/2009 4.20 20 20/01/2009 4.20 21 21/01/2009 4.20 22 22/01/2009 4.20 23 23/01/2009 4.20 24 24/01/2009 4.20 25 25/01/2009 4.20 26 26/01/2009 4.20 27 27/01/2009 4.20 28 28/01/2009 4.20 29 29/01/2009 4.20 30 30/01/2009 4.20 31 31/01/2009 4.20 32 01/02/2009 4.20 33 02/02/2009 4.20 34 03/02/2009 4.20 35 04/02/2009 4.20 36 05/02/2009 4.20 37 06/02/2009 4.20 38 07/02/2009 4.20 39 08/02/2009 4.20 40 09/02/2009 4.20 41 10/02/2009 4.20 42 11/02/2009 4.20 43 12/02/2009 4.20 44 13/02/2009 4.20 45 14/02/2009 4.20 46 15/02/2009 4.20 47 16/02/2009 4.20 48 17/02/2009 4.20 49 18/02/2009 4.20 50 19/02/2009 4.20 51 20/02/2009 4.20 52 21/02/2009 4.20 53 22/02/2009 4.20 54 23/02/2009 4.20 55 24/02/2009 4.20 56 25/02/2009 4.20 57 26/02/2009 4.20 58 27/02/2009 4.20 59 28/02/2009 4.20 60 01/03/2009 4.20 61 02/03/2009 4.20 62 03/03/2009 4.20 63 04/03/2009 4.20 64 05/03/2009 4.20 65 06/03/2009 4.20 66 07/03/2009 4.20 67 08/03/2009 4.20 68 09/03/2009 4.20 69 10/03/2009 4.20 70 11/03/2009 4.20 71 12/03/2009 4.20 72 13/03/2009 4.20 73 14/03/2009 4.20 74 15/03/2009 4.20 75 16/03/2009 4.20 76 17/03/2009 4.20 77 18/03/2009 4.20 78 19/03/2009 4.20 79 20/03/2009 4.20 80 21/03/2009 4.20 81 22/03/2009 4.20 82 23/03/2009 4.20 83 24/03/2009 4.20 84 25/03/2009 4.20 85 26/03/2009 4.20 86 27/03/2009 4.20 87 28/03/2009 4.20 88 29/03/2009 4.20 89 30/03/2009 4.20 90 31/03/2009 4.20 91 01/04/2009 4.20 92 02/04/2009 4.20 93 03/04/2009 4.20 94 04/04/2009 4.20 95 05/04/2009 4.20 96 06/04/2009 4.20 97 07/04/2009 4.20 98 08/04/2009 4.20 99 09/04/2009 4.20 100 10/04/2009 4.20 101 11/04/2009 4.20 102 12/04/2009 4.20 103 13/04/2009 4.20 104 14/04/2009 4.20 105 15/04/2009 4.20 106 16/04/2009 4.20 107 17/04/2009 4.20 108 18/04/2009 4.20 109 19/04/2009 4.20 110 20/04/2009 4.20 111 21/04/2009 4.20 112 22/04/2009 4.20 113 23/04/2009 4.20 114 24/04/2009 4.20 115 25/04/2009 4.20 116 26/04/2009 4.20 117 27/04/2009 4.20 118 28/04/2009 4.20 119 29/04/2009 4.20 120 30/04/2009 4.20 121 01/05/2009 4.20 122 02/05/2009 4.20 123 03/05/2009 4.20 124 04/05/2009 4.20 125 05/05/2009 4.20 126 06/05/2009 4.20 127 07/05/2009 4.20 128 08/05/2009 4.20 129 09/05/2009 4.20 130 10/05/2009 4.20 131 11/05/2009 4.20 132 12/05/2009 4.20 133 13/05/2009 4.20 134 14/05/2009 4.20 135 15/05/2009 4.20 136 16/05/2009 4.20 137 17/05/2009 4.20 138 18/05/2009 4.20 139 19/05/2009 4.20 140 20/05/2009 4.20 141 21/05/2009 4.20 142 22/05/2009 4.20 143 23/05/2009 4.20 144 24/05/2009 4.20 145 25/05/2009 4.20 146 26/05/2009 4.20 147 27/05/2009 4.20 148 28/05/2009 4.20 149 29/05/2009 4.20 150 30/05/2009 4.20 151 31/05/2009 4.20 152 01/06/2009 4.20 153 02/06/2009 4.20 154 03/06/2009 4.20 155 04/06/2009 4.20 156 05/06/2009 4.20 157 06/06/2009 4.20 158 07/06/2009 4.20 159 08/06/2009 4.20 160 09/06/2009 4.20 161 10/06/2009 4.20 162 11/06/2009 4.20 163 12/06/2009 4.20 164 13/06/2009 4.20 165 14/06/2009 4.20 166 15/06/2009 4.20 167 16/06/2009 4.20 168 17/06/2009 4.20 169 18/06/2009 4.20 170 19/06/2009 4.20 171 20/06/2009 4.20 172 21/06/2009 4.20 173 22/06/2009 4.20 174 23/06/2009 4.20 175 24/06/2009 4.20 176 25/06/2009 4.20 177 26/06/2009 4.20 178 27/06/2009 4.20 179 28/06/2009 4.20 180 29/06/2009 4.20 181 30/06/2009 4.20 182 01/07/2009 4.20 183 02/07/2009 4.20 184 03/07/2009 4.20 185 04/07/2009 4.20 186 05/07/2009 4.20 187 06/07/2009 4.20 188 07/07/2009 4.20 189 08/07/2009 4.20 190 09/07/2009 4.20 191 10/07/2009 4.20 192 11/07/2009 4.20 193 12/07/2009 4.20 194 13/07/2009 4.20 195 14/07/2009 4.20 196 15/07/2009 4.20 197 16/07/2009 4.20 198 17/07/2009 4.20 199 18/07/2009 4.20 200 19/07/2009 4.20 201 20/07/2009 4.20 202 21/07/2009 4.20 203 22/07/2009 4.20 204 23/07/2009 4.20 205 24/07/2009 4.20 206 25/07/2009 4.20 207 26/07/2009 4.20 208 27/07/2009 4.20 209 28/07/2009 4.20 210 29/07/2009 4.20 211 30/07/2009 4.20 212 31/07/2009 4.20 213 01/08/2009 4.20 214 02/08/2009 4.20 215 03/08/2009 4.20 216 04/08/2009 4.20 217 05/08/2009 4.20 218 06/08/2009 4.20 219 07/08/2009 4.20 220 08/08/2009 4.20 221 09/08/2009 4.20 222 10/08/2009 4.20 223 11/08/2009 4.20 224 12/08/2009 4.20 225 13/08/2009 4.20 226 14/08/2009 4.20 227 15/08/2009 4.20 228 16/08/2009 4.20 229 17/08/2009 4.20 230 18/08/2009 4.20 231 19/08/2009 4.20 232 20/08/2009 4.20 233 21/08/2009 4.20 234 22/08/2009 4.20 235 23/08/2009 4.20 236 24/08/2009 4.20 237 25/08/2009 4.20 238 26/08/2009 4.20 239 27/08/2009 4.20 240 28/08/2009 4.20 241 29/08/2009 4.20 242 30/08/2009 4.20 243 31/08/2009 4.20 244 01/09/2009 4.20 245 02/09/2009 4.20 246 03/09/2009 4.20 247 04/09/2009 4.20 248 05/09/2009 4.20 249 06/09/2009 4.20 250 07/09/2009 4.20 251 08/09/2009 4.20 252 09/09/2009 4.20 253 10/09/2009 4.20 254 11/09/2009 4.20 255 12/09/2009 4.20 256 13/09/2009 4.20 257 14/09/2009 4.20 258 15/09/2009 4.20 259 16/09/2009 4.20 260 17/09/2009 4.20 261 18/09/2009 4.20 262 19/09/2009 4.20 263 20/09/2009 4.20 264 21/09/2009 4.20 265 22/09/2009 4.20 266 23/09/2009 4.20 267 24/09/2009 4.20 268 25/09/2009 4.20 269 26/09/2009 4.20 270 27/09/2009 4.20 271 28/09/2009 4.20 272 29/09/2009 4.20 273 30/09/2009 4.20 274 01/10/2009 4.20 275 02/10/2009 4.20 276 03/10/2009 4.20 277 04/10/2009 4.20 278 05/10/2009 4.20 279 06/10/2009 4.20 280 07/10/2009 4.20 281 08/10/2009 4.20 282 09/10/2009 4.20 283 10/10/2009 4.20 284 11/10/2009 4.20 285 12/10/2009 4.20 286 13/10/2009 4.20 287 14/10/2009 4.20 288 15/10/2009 4.20 289 16/10/2009 4.20 290 17/10/2009 4.20 291 18/10/2009 4.20 292 19/10/2009 4.20 293 20/10/2009 4.20 294 21/10/2009 4.20 295 22/10/2009 4.20 296 23/10/2009 4.20 297 24/10/2009 4.20 298 25/10/2009 4.20 299 26/10/2009 4.20 300 27/10/2009 4.20 301 28/10/2009 4.20 302 29/10/2009 4.20 303 30/10/2009 4.20 304 31/10/2009 4.20 305 01/11/2009 4.20 306 02/11/2009 4.20 307 03/11/2009 4.20 308 04/11/2009 4.20 309 05/11/2009 4.20 310 06/11/2009 4.20 311 07/11/2009 4.20 312 08/11/2009 4.20 313 09/11/2009 4.20 314 10/11/2009 4.20 315 11/11/2009 4.20 316 12/11/2009 4.20 317 13/11/2009 4.20 318 14/11/2009 4.20 319 15/11/2009 4.20 320 16/11/2009 4.20 321 17/11/2009 4.20 322 18/11/2009 4.20 323 19/11/2009 4.20 324 20/11/2009 4.20 325 21/11/2009 4.20 326 22/11/2009 4.20 327 23/11/2009 4.20 328 24/11/2009 4.20 329 25/11/2009 4.20 330 26/11/2009 4.20 331 27/11/2009 4.20 332 28/11/2009 4.20 333 29/11/2009 4.20 334 30/11/2009 4.20 335 01/12/2009 4.20 336 02/12/2009 4.20 337 03/12/2009 4.20 338 04/12/2009 4.20 339 05/12/2009 4.20 340 06/12/2009 4.20 341 07/12/2009 4.20 342 08/12/2009 4.20 343 09/12/2009 4.20 344 10/12/2009 4.20 345 11/12/2009 4.20 346 12/12/2009 4.20 347 13/12/2009 4.20 348 14/12/2009 4.20 349 15/12/2009 4.20 350 16/12/2009 4.20 351 17/12/2009 4.20 352 18/12/2009 4.20 353 19/12/2009 4.20 354 20/12/2009 4.20 355 21/12/2009 4.20 356 22/12/2009 4.20 357 23/12/2009 4.20 358 24/12/2009 4.20 359 25/12/2009 4.20 360 26/12/2009 4.20 361 27/12/2009 4.20 362 28/12/2009 4.20 363 29/12/2009 4.20 364 30/12/2009 4.20 365 31/12/2009 4.20 366 01/01/2010 4.20 367 02/01/2010 4.20 368 03/01/2010 4.20 369 04/01/2010 4.20 370 05/01/2010 4.20 371 06/01/2010 4.20 372 07/01/2010 4.20 373 08/01/2010 4.20 374 09/01/2010 4.20 375 10/01/2010 4.20 376 11/01/2010 4.20 377 12/01/2010 4.20 378 13/01/2010 4.20 379 14/01/2010 4.20 380 15/01/2010 4.20 381 16/01/2010 4.20 382 17/01/2010 4.20 383 18/01/2010 4.20 384 19/01/2010 4.20 385 20/01/2010 4.20 386 21/01/2010 4.20 387 22/01/2010 4.20 388 23/01/2010 4.20 389 24/01/2010 4.20 390 25/01/2010 4.20 391 26/01/2010 4.20 392 27/01/2010 4.20 393 28/01/2010 4.20 394 29/01/2010 4.20 395 30/01/2010 4.20 396 31/01/2010 4.20 397 01/02/2010 4.20 398 02/02/2010 4.20 399 03/02/2010 4.20 400 04/02/2010 4.20 401 05/02/2010 4.20 402 06/02/2010 4.20 403 07/02/2010 4.20 404 08/02/2010 4.20 405 09/02/2010 4.20 406 10/02/2010 4.20 407 11/02/2010 4.20 408 12/02/2010 4.20 409 13/02/2010 4.20 410 14/02/2010 4.20 411 15/02/2010 4.20 412 16/02/2010 4.20 413 17/02/2010 4.20 414 18/02/2010 4.20 415 19/02/2010 4.20 416 20/02/2010 4.20 417 21/02/2010 4.20 418 22/02/2010 4.20 419 23/02/2010 4.20 420 24/02/2010 4.20 421 25/02/2010 4.20 422 26/02/2010 4.20 423 27/02/2010 4.20 424 28/02/2010 4.20 425 01/03/2010 4.20 426 02/03/2010 4.20 427 03/03/2010 4.20 428 04/03/2010 4.20 429 05/03/2010 4.20 430 06/03/2010 4.20 431 07/03/2010 4.20 432 08/03/2010 4.20 433 09/03/2010 4.20 434 10/03/2010 4.20 435 11/03/2010 4.20 436 12/03/2010 4.20 437 13/03/2010 4.20 438 14/03/2010 4.20 439 15/03/2010 4.20 440 16/03/2010 4.20 441 17/03/2010 4.20 442 18/03/2010 4.20 443 19/03/2010 4.20 444 20/03/2010 4.20 445 21/03/2010 4.20 446 22/03/2010 4.20 447 23/03/2010 4.20 448 24/03/2010 4.20 449 25/03/2010 4.20 450 26/03/2010 4.20 451 27/03/2010 4.20 452 28/03/2010 4.20 453 29/03/2010 4.20 454 30/03/2010 4.20 455 31/03/2010 4.20 456 01/04/2010 4.20 457 02/04/2010 4.20 458 03/04/2010 4.20 459 04/04/2010 4.20 460 05/04/2010 4.20 461 06/04/2010 4.20 462 07/04/2010 4.20 463 08/04/2010 4.20 464 09/04/2010 4.20 465 10/04/2010 4.20 466 11/04/2010 4.20 467 12/04/2010 4.20 468 13/04/2010 4.20 469 14/04/2010 4.20 470 15/04/2010 4.20 471 16/04/2010 4.20 472 17/04/2010 4.20 473 18/04/2010 4.20 474 19/04/2010 4.20 475 20/04/2010 4.20 476 21/04/2010 4.20 477 22/04/2010 4.20 478 23/04/2010 4.20 479 24/04/2010 4.20 480 25/04/2010 4.20 481 26/04/2010 4.20 482 27/04/2010 4.20 483 28/04/2010 4.20 484 29/04/2010 4.20 485 30/04/2010 4.20 486 01/05/2010 4.20 487 02/05/2010 4.20 488 03/05/2010 4.20 489 04/05/2010 4.20 490 05/05/2010 4.20 491 06/05/2010 4.20 492 07/05/2010 4.20 493 08/05/2010 4.20 494 09/05/2010 4.20 495 10/05/2010 4.20 496 11/05/2010 4.20 497 12/05/2010 4.20 498 13/05/2010 4.20 499 14/05/2010 4.20 500 15/05/2010 4.20 501 16/05/2010 4.20 502 17/05/2010 4.20 503 18/05/2010 4.20 504 19/05/2010 4.20 505 20/05/2010 4.20 506 21/05/2010 4.20 507 22/05/2010 4.20 508 23/05/2010 4.20 509 24/05/2010 4.20 510 25/05/2010 4.20 511 26/05/2010 4.20 512 27/05/2010 4.20 513 28/05/2010 4.20 514 29/05/2010 4.20 515 30/05/2010 4.20 516 31/05/2010 4.20 517 01/06/2010 4.20 518 02/06/2010 4.20 519 03/06/2010 4.20 520 04/06/2010 4.20 521 05/06/2010 4.20 522 06/06/2010 4.20 523 07/06/2010 4.20 524 08/06/2010 4.20 525 09/06/2010 4.20 526 10/06/2010 4.20 527 11/06/2010 4.20 528 12/06/2010 4.20 529 13/06/2010 4.20 530 14/06/2010 4.20 531 15/06/2010 4.20 532 16/06/2010 4.20 533 17/06/2010 4.20 534 18/06/2010 4.20 535 19/06/2010 4.20 536 20/06/2010 4.20 537 21/06/2010 4.20 538 22/06/2010 4.20 539 23/06/2010 4.20 540 24/06/2010 4.20 541 25/06/2010 4.20 542 26/06/2010 4.20 543 27/06/2010 4.20 544 28/06/2010 4.20 545 29/06/2010 4.20 546 30/06/2010 4.20 547 01/07/2010 4.20 548 02/07/2010 4.20 549 03/07/2010 4.20 550 04/07/2010 4.20 551 05/07/2010 4.20 552 06/07/2010 4.20 553 07/07/2010 4.20 554 08/07/2010 4.20 555 09/07/2010 4.20 556 10/07/2010 4.20 557 11/07/2010 4.20 558 12/07/2010 4.20 559 13/07/2010 4.20 560 14/07/2010 4.20 561 15/07/2010 4.20 562 16/07/2010 4.20 563 17/07/2010 4.20 564 18/07/2010 4.20 565 19/07/2010 4.20 566 20/07/2010 4.20 567 21/07/2010 4.20 568 22/07/2010 4.20 569 23/07/2010 4.20 570 24/07/2010 4.20 571 25/07/2010 4.20 572 26/07/2010 4.20 573 27/07/2010 4.20 574 28/07/2010 4.20 575 29/07/2010 4.20 576 30/07/2010 4.20 577 31/07/2010 4.20 578 01/08/2010 4.20 579 02/08/2010 4.20 580 03/08/2010 4.20 581 04/08/2010 4.20 582 05/08/2010 4.20 583 06/08/2010 4.20 584 07/08/2010 4.20 585 08/08/2010 4.20 586 09/08/2010 4.20 587 10/08/2010 4.20 588 11/08/2010 4.20 589 12/08/2010 4.20 590 13/08/2010 4.20 591 14/08/2010 4.20 592 15/08/2010 4.20 593 16/08/2010 4.20 594 17/08/2010 4.20 595 18/08/2010 4.20 596 19/08/2010 4.20 597 20/08/2010 4.20 598 21/08/2010 4.20 599 22/08/2010 4.20 600 23/08/2010 4.20 601 24/08/2010 4.20 602 25/08/2010 4.20 603 26/08/2010 4.20 604 27/08/2010 4.20 605 28/08/2010 4.20 606 29/08/2010 4.20 607 30/08/2010 4.20 608 31/08/2010 4.20 609 01/09/2010 4.20 610 02/09/2010 4.20 611 03/09/2010 4.20 612 04/09/2010 4.20 613 05/09/2010 4.20 614 06/09/2010 4.20 615 07/09/2010 4.20 616 08/09/2010 4.20 617 09/09/2010 4.20 618 10/09/2010 4.20 619 11/09/2010 4.20 620 12/09/2010 4.20 621 13/09/2010 4.20 622 14/09/2010 4.20 623 15/09/2010 4.20 624 16/09/2010 4.20 625 17/09/2010 4.20 626 18/09/2010 4.20 627 19/09/2010 4.20 628 20/09/2010 4.20 629 21/09/2010 4.20 630 22/09/2010 4.20 631 23/09/2010 4.20 632 24/09/2010 4.20 633 25/09/2010 4.20 634 26/09/2010 4.20 635 27/09/2010 4.20 636 28/09/2010 4.20 637 29/09/2010 4.20 638 30/09/2010 4.20 639 01/10/2010 4.20 640 02/10/2010 4.20 641 03/10/2010 4.20 642 04/10/2010 4.20 643 05/10/2010 4.20 644 06/10/2010 4.20 645 07/10/2010 4.20 646 08/10/2010 4.20 647 09/10/2010 4.20 648 10/10/2010 4.20 649 11/10/2010 4.20 650 12/10/2010 4.20 651 13/10/2010 4.20 652 14/10/2010 4.20 653 15/10/2010 4.20 654 16/10/2010 4.20 655 17/10/2010 4.20 656 18/10/2010 4.20 657 19/10/2010 4.20 658 20/10/2010 4.20 659 21/10/2010 4.20 660 22/10/2010 4.20 661 23/10/2010 4.20 662 24/10/2010 4.20 663 25/10/2010 4.20 664 26/10/2010 4.20 665 27/10/2010 4.20 666 28/10/2010 4.20 667 29/10/2010 4.20 668 30/10/2010 4.20 669 31/10/2010 4.20 670 01/11/2010 4.20 671 02/11/2010 4.20 672 03/11/2010 4.20 673 04/11/2010 4.20 674 05/11/2010 4.20 675 06/11/2010 4.20 676 07/11/2010 4.20 677 08/11/2010 4.20 678 09/11/2010 4.20 679 10/11/2010 4.20 680 11/11/2010 4.20 681 12/11/2010 4.20 682 13/11/2010 4.20 683 14/11/2010 4.20 684 15/11/2010 4.20 685 16/11/2010 4.20 686 17/11/2010 4.20 687 18/11/2010 4.20 688 19/11/2010 4.20 689 20/11/2010 4.20 690 21/11/2010 4.20 691 22/11/2010 4.20 692 23/11/2010 4.20 693 24/11/2010 4.20 694 25/11/2010 4.20 695 26/11/2010 4.20 696 27/11/2010 4.20 697 28/11/2010 4.20 698 29/11/2010 4.20 699 30/11/2010 4.20 700 01/12/2010 4.20 701 02/12/2010 4.20 702 03/12/2010 4.20 703 04/12/2010 4.20 704 05/12/2010 4.20 705 06/12/2010 4.20 706 07/12/2010 4.20 707 08/12/2010 4.20 708 09/12/2010 4.20 709 10/12/2010 4.20 710 11/12/2010 4.20 711 12/12/2010 4.20 712 13/12/2010 4.20 713 14/12/2010 4.20 714 15/12/2010 4.20 715 16/12/2010 4.20 716 17/12/2010 4.20 717 18/12/2010 4.20 718 19/12/2010 4.20 719 20/12/2010 4.20 720 21/12/2010 4.20 721 22/12/2010 4.20 722 23/12/2010 4.20 723 24/12/2010 4.20 724 25/12/2010 4.20 725 26/12/2010 4.20 726 27/12/2010 4.20 727 28/12/2010 4.20 728 29/12/2010 4.20 729 30/12/2010 4.20 730 31/12/2010 4.20
Start: 09:22:04.558118
End: 09:22:44.007300
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[5th Rhine 30min with using stored EWRef, ETREF-model4]</td>
<td class="col-duration">11.03</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_5 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_05.ini
Description: 5th Rhine 30min with using stored EWRef, ETREF
Changes: ['calc_evaporation = False', 'StepEnd = 365', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_05.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22 11 11/01/2009 4.24 12 12/01/2009 4.81 13 13/01/2009 5.29 14 14/01/2009 5.69 15 15/01/2009 6.06 16 16/01/2009 6.43 17 17/01/2009 6.80 18 18/01/2009 8.43 19 19/01/2009 10.95 20 20/01/2009 13.30 21 21/01/2009 15.64 22 22/01/2009 18.31 23 23/01/2009 24.73 24 24/01/2009 33.04 25 25/01/2009 43.15 26 26/01/2009 53.56 27 27/01/2009 64.62 28 28/01/2009 78.90 29 29/01/2009 100.55 30 30/01/2009 133.48 31 31/01/2009 178.92 32 01/02/2009 233.43 33 02/02/2009 290.04 34 03/02/2009 340.17 35 04/02/2009 378.15 36 05/02/2009 402.67 37 06/02/2009 413.61 38 07/02/2009 415.07 39 08/02/2009 408.84 40 09/02/2009 408.54 41 10/02/2009 468.91 42 11/02/2009 620.33 43 12/02/2009 716.12 44 13/02/2009 732.08 45 14/02/2009 708.08 46 15/02/2009 673.70 47 16/02/2009 695.09 48 17/02/2009 748.84 49 18/02/2009 806.34 50 19/02/2009 824.51 51 20/02/2009 822.08 52 21/02/2009 823.84 53 22/02/2009 844.83 54 23/02/2009 892.56 55 24/02/2009 941.96 56 25/02/2009 965.82 57 26/02/2009 969.60 58 27/02/2009 978.66 59 28/02/2009 998.71 60 01/03/2009 1007.41 61 02/03/2009 994.88 62 03/03/2009 964.74 63 04/03/2009 924.12 64 05/03/2009 998.08 65 06/03/2009 1320.35 66 07/03/2009 1725.59 67 08/03/2009 1904.13 68 09/03/2009 1950.12 69 10/03/2009 2181.94 70 11/03/2009 2501.61 71 12/03/2009 2774.46 72 13/03/2009 3027.43 73 14/03/2009 3174.34 74 15/03/2009 3200.25 75 16/03/2009 3127.21 76 17/03/2009 2986.42 77 18/03/2009 2807.52 78 19/03/2009 2612.10 79 20/03/2009 2414.59 80 21/03/2009 2222.92 81 22/03/2009 2041.34 82 23/03/2009 1884.57 83 24/03/2009 1747.85 84 25/03/2009 1786.91 85 26/03/2009 2022.61 86 27/03/2009 2200.71 87 28/03/2009 2324.48 88 29/03/2009 2299.43 89 30/03/2009 2152.15 90 31/03/2009 1993.51 91 01/04/2009 1874.30 92 02/04/2009 1797.48 93 03/04/2009 1749.32 94 04/04/2009 1714.36 95 05/04/2009 1679.49 96 06/04/2009 1636.73 97 07/04/2009 1583.94 98 08/04/2009 1521.36 99 09/04/2009 1451.49 100 10/04/2009 1377.03 101 11/04/2009 1302.45 102 12/04/2009 1229.34 103 13/04/2009 1160.47 104 14/04/2009 1096.76 105 15/04/2009 1037.58 106 16/04/2009 988.87 107 17/04/2009 1005.32 108 18/04/2009 1061.13 109 19/04/2009 1059.67 110 20/04/2009 1016.44 111 21/04/2009 958.08 112 22/04/2009 900.35 113 23/04/2009 849.29 114 24/04/2009 805.58 115 25/04/2009 768.74 116 26/04/2009 738.05 117 27/04/2009 712.23 118 28/04/2009 690.80 119 29/04/2009 670.48 120 30/04/2009 649.34 121 01/05/2009 628.45 122 02/05/2009 607.35 123 03/05/2009 587.35 124 04/05/2009 568.17 125 05/05/2009 552.10 126 06/05/2009 537.68 127 07/05/2009 524.47 128 08/05/2009 514.24 129 09/05/2009 510.80 130 10/05/2009 511.87 131 11/05/2009 522.88 132 12/05/2009 543.58 133 13/05/2009 566.30 134 14/05/2009 588.75 135 15/05/2009 620.61 136 16/05/2009 657.66 137 17/05/2009 704.59 138 18/05/2009 756.04 139 19/05/2009 816.59 140 20/05/2009 881.57 141 21/05/2009 941.47 142 22/05/2009 986.81 143 23/05/2009 1012.04 144 24/05/2009 1018.71 145 25/05/2009 1011.75 146 26/05/2009 999.42 147 27/05/2009 985.45 148 28/05/2009 974.21 149 29/05/2009 968.61 150 30/05/2009 972.82 151 31/05/2009 989.76 152 01/06/2009 1019.05 153 02/06/2009 1058.43 154 03/06/2009 1103.32 155 04/06/2009 1147.41 156 05/06/2009 1183.79 157 06/06/2009 1210.19 158 07/06/2009 1223.89 159 08/06/2009 1218.21 160 09/06/2009 1204.08 161 10/06/2009 1184.97 162 11/06/2009 1166.28 163 12/06/2009 1127.11 164 13/06/2009 1077.72 165 14/06/2009 1029.24 166 15/06/2009 995.74 167 16/06/2009 991.26 168 17/06/2009 992.78 169 18/06/2009 1003.44 170 19/06/2009 1022.01 171 20/06/2009 1046.39 172 21/06/2009 1073.58 173 22/06/2009 1099.31 174 23/06/2009 1121.50 175 24/06/2009 1139.19 176 25/06/2009 1153.43 177 26/06/2009 1166.15 178 27/06/2009 1184.88 179 28/06/2009 1203.71 180 29/06/2009 1219.40 181 30/06/2009 1234.49 182 01/07/2009 1246.60 183 02/07/2009 1260.21 184 03/07/2009 1290.74 185 04/07/2009 1310.02 186 05/07/2009 1323.71 187 06/07/2009 1335.44 188 07/07/2009 1349.47 189 08/07/2009 1384.87 190 09/07/2009 1430.37 191 10/07/2009 1487.38 192 11/07/2009 1549.81 193 12/07/2009 1613.50 194 13/07/2009 1649.96 195 14/07/2009 1657.95 196 15/07/2009 1643.87 197 16/07/2009 1614.46 198 17/07/2009 1599.23 199 18/07/2009 1570.26 200 19/07/2009 1570.53 201 20/07/2009 1621.43 202 21/07/2009 1751.87 203 22/07/2009 1991.60 204 23/07/2009 2391.88 205 24/07/2009 2897.46 206 25/07/2009 3207.46 207 26/07/2009 3304.08 208 27/07/2009 3260.52 209 28/07/2009 3128.34 210 29/07/2009 2942.33 211 30/07/2009 2735.73 212 31/07/2009 2521.56 213 01/08/2009 2313.33 214 02/08/2009 2133.64 215 03/08/2009 1959.65 216 04/08/2009 1795.60 217 05/08/2009 1646.37 218 06/08/2009 1512.60 219 07/08/2009 1394.45 220 08/08/2009 1300.74 221 09/08/2009 1216.11 222 10/08/2009 1133.65 223 11/08/2009 1059.85 224 12/08/2009 999.58 225 13/08/2009 942.23 226 14/08/2009 889.98 227 15/08/2009 841.46 228 16/08/2009 797.91 229 17/08/2009 759.06 230 18/08/2009 724.50 231 19/08/2009 693.63 232 20/08/2009 666.21 233 21/08/2009 642.57 234 22/08/2009 621.44 235 23/08/2009 601.78 236 24/08/2009 583.28 237 25/08/2009 575.71 238 26/08/2009 566.10 239 27/08/2009 551.85 240 28/08/2009 534.91 241 29/08/2009 518.44 242 30/08/2009 499.51 243 31/08/2009 480.61 244 01/09/2009 470.66 245 02/09/2009 460.77 246 03/09/2009 449.66 247 04/09/2009 437.64 248 05/09/2009 426.74 249 06/09/2009 413.09 250 07/09/2009 398.75 251 08/09/2009 384.61 252 09/09/2009 371.42 253 10/09/2009 359.23 254 11/09/2009 348.02 255 12/09/2009 337.85 256 13/09/2009 329.00 257 14/09/2009 322.22 258 15/09/2009 317.27 259 16/09/2009 311.50 260 17/09/2009 306.00 261 18/09/2009 300.76 262 19/09/2009 296.13 263 20/09/2009 292.37 264 21/09/2009 288.94 265 22/09/2009 285.12 266 23/09/2009 281.24 267 24/09/2009 277.05 268 25/09/2009 272.55 269 26/09/2009 267.70 270 27/09/2009 262.56 271 28/09/2009 257.26 272 29/09/2009 252.18 273 30/09/2009 247.34 274 01/10/2009 242.96 275 02/10/2009 237.78 276 03/10/2009 232.32 277 04/10/2009 227.35 278 05/10/2009 231.46 279 06/10/2009 238.89 280 07/10/2009 270.86 281 08/10/2009 320.67 282 09/10/2009 363.51 283 10/10/2009 405.06 284 11/10/2009 464.94 285 12/10/2009 518.73 286 13/10/2009 531.88 287 14/10/2009 508.51 288 15/10/2009 466.97 289 16/10/2009 424.44 290 17/10/2009 390.63 291 18/10/2009 364.76 292 19/10/2009 343.41 293 20/10/2009 326.10 294 21/10/2009 314.61 295 22/10/2009 315.39 296 23/10/2009 325.83 297 24/10/2009 353.06 298 25/10/2009 390.25 299 26/10/2009 435.63 300 27/10/2009 484.11 301 28/10/2009 530.67 302 29/10/2009 570.97 303 30/10/2009 601.58 304 31/10/2009 621.56 305 01/11/2009 787.99 306 02/11/2009 975.62 307 03/11/2009 1278.65 308 04/11/2009 1504.16 309 05/11/2009 1750.45 310 06/11/2009 1792.62 311 07/11/2009 1820.26 312 08/11/2009 1784.97 313 09/11/2009 1796.82 314 10/11/2009 1926.90 315 11/11/2009 2104.75 316 12/11/2009 2217.24 317 13/11/2009 2274.42 318 14/11/2009 2265.61 319 15/11/2009 2225.58 320 16/11/2009 2245.04 321 17/11/2009 2341.03 322 18/11/2009 2489.86 323 19/11/2009 2605.78 324 20/11/2009 2657.00 325 21/11/2009 2635.48 326 22/11/2009 2549.75 327 23/11/2009 2920.58 328 24/11/2009 2970.35 329 25/11/2009 2828.82 330 26/11/2009 2588.52 331 27/11/2009 2465.73 332 28/11/2009 2573.47 333 29/11/2009 2666.90 334 30/11/2009 2662.68 335 01/12/2009 2558.13 336 02/12/2009 2433.35 337 03/12/2009 2398.42 338 04/12/2009 2379.53 339 05/12/2009 2555.59 340 06/12/2009 2857.64 341 07/12/2009 3173.81 342 08/12/2009 3489.23 343 09/12/2009 3725.36 344 10/12/2009 4037.56 345 11/12/2009 4313.48 346 12/12/2009 4377.08 347 13/12/2009 4294.23 348 14/12/2009 4156.85 349 15/12/2009 3994.32 350 16/12/2009 3799.88 351 17/12/2009 3567.91 352 18/12/2009 3305.92 353 19/12/2009 3029.03 354 20/12/2009 2752.85 355 21/12/2009 2489.11 356 22/12/2009 2265.24 357 23/12/2009 2112.13 358 24/12/2009 2020.87 359 25/12/2009 2243.76 360 26/12/2009 2384.54 361 27/12/2009 2534.60 362 28/12/2009 2676.45 363 29/12/2009 3048.06 364 30/12/2009 3565.40 365 31/12/2009 4359.76
Start: 09:22:48.786997
End: 09:22:55.047086
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[6th Rhine 30min using inflow-model5]</td>
<td class="col-duration">1.09</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_6 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_06.ini
Description: 6th Rhine 30min using inflow
Changes: ['inflow = True', 'calc_evaporation = False', 'StepEnd = 40', 'In_Dir = $(FILE_PATHS:PathOut)', 'InflowPoints = 11.25 49.75', 'QInTS = discharge_daily.tss', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_06.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22 11 11/01/2009 4.24 12 12/01/2009 4.81 13 13/01/2009 5.29 14 14/01/2009 5.69 15 15/01/2009 6.06 16 16/01/2009 6.43 17 17/01/2009 6.80 18 18/01/2009 8.43 19 19/01/2009 10.95 20 20/01/2009 13.30 21 21/01/2009 15.64 22 22/01/2009 18.31 23 23/01/2009 24.73 24 24/01/2009 33.05 25 25/01/2009 43.19 26 26/01/2009 53.71 27 27/01/2009 65.09 28 28/01/2009 80.11 29 29/01/2009 103.17 30 30/01/2009 138.34 31 31/01/2009 186.67 32 01/02/2009 244.17 33 02/02/2009 303.27 34 03/02/2009 355.03 35 04/02/2009 393.86 36 05/02/2009 418.75 37 06/02/2009 429.94 38 07/02/2009 431.90 39 08/02/2009 426.73 40 09/02/2009 428.74
Start: 09:22:55.427749
End: 09:22:56.147087
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[7th Rhine 30min with irrigation to runoff TRUE-model6]</td>
<td class="col-duration">1.79</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_7 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_07.ini
Description: 7th Rhine 30min with irrigation to runoff TRUE
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge', 'OUT_MAP_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_07.ini
Step Date Discharge
1 01/01/2009 5.27 2 02/01/2009 6.34 3 03/01/2009 7.47 4 04/01/2009 8.69 5 05/01/2009 9.99 6 06/01/2009 11.34 7 07/01/2009 12.70 8 08/01/2009 14.04 9 09/01/2009 15.33 10 10/01/2009 16.52
Start: 09:22:57.513543
End: 09:22:57.941198
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[8th Rhine 30min with waterdemand TRUE-model7]</td>
<td class="col-duration">2.06</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_8 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_08.ini
Description: 8th Rhine 30min with waterdemand TRUE
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'includeWaterDemand = True', 'StepEnd = 40', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_08.ini
Step Date Discharge
1 01/01/2009 0.12 2 02/01/2009 0.06 3 03/01/2009 0.07 4 04/01/2009 0.06 5 05/01/2009 0.05 6 06/01/2009 0.05 7 07/01/2009 0.04 8 08/01/2009 0.04 9 09/01/2009 0.04 10 10/01/2009 0.04 11 11/01/2009 0.03 12 12/01/2009 0.04 13 13/01/2009 0.06 14 14/01/2009 0.06 15 15/01/2009 0.06 16 16/01/2009 0.06 17 17/01/2009 0.05 18 18/01/2009 0.10 19 19/01/2009 0.47 20 20/01/2009 1.69 21 21/01/2009 4.65 22 22/01/2009 11.27 23 23/01/2009 26.57 24 24/01/2009 56.73 25 25/01/2009 106.99 26 26/01/2009 181.80 27 27/01/2009 277.70 28 28/01/2009 385.35 29 29/01/2009 493.74 30 30/01/2009 590.39 31 31/01/2009 666.04 32 01/02/2009 714.80 33 02/02/2009 737.52 34 03/02/2009 740.90 35 04/02/2009 729.46 36 05/02/2009 706.83 37 06/02/2009 684.42 38 07/02/2009 654.30 39 08/02/2009 630.29 40 09/02/2009 605.95
Start: 09:22:58.482647
End: 09:23:00.006400
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[9th Rhine 30min waterdemand TRUE, SpinUp, and save initial-model8]</td>
<td class="col-duration">10.28</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_9 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_09.ini
Description: 9th Rhine 30min waterdemand TRUE, SpinUp, and save initial
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'includeWaterDemand = True', 'StepEnd = 366', 'SpinUp = 20/01/2009', 'save_initial = True', 'StepInit = 31/12/2009', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_09.ini
Step Date Discharge
1 01/01/2009 0.12 2 02/01/2009 0.06 3 03/01/2009 0.07 4 04/01/2009 0.06 5 05/01/2009 0.05 6 06/01/2009 0.05 7 07/01/2009 0.04 8 08/01/2009 0.04 9 09/01/2009 0.04 10 10/01/2009 0.04 11 11/01/2009 0.03 12 12/01/2009 0.04 13 13/01/2009 0.06 14 14/01/2009 0.06 15 15/01/2009 0.06 16 16/01/2009 0.06 17 17/01/2009 0.05 18 18/01/2009 0.10 19 19/01/2009 0.47 20 20/01/2009 1.69 21 21/01/2009 4.65 22 22/01/2009 11.27 23 23/01/2009 26.57 24 24/01/2009 56.73 25 25/01/2009 106.99 26 26/01/2009 181.80 27 27/01/2009 277.70 28 28/01/2009 385.35 29 29/01/2009 493.74 30 30/01/2009 590.39 31 31/01/2009 666.04 32 01/02/2009 714.80 33 02/02/2009 737.52 34 03/02/2009 740.90 35 04/02/2009 729.46 36 05/02/2009 706.83 37 06/02/2009 684.42 38 07/02/2009 654.30 39 08/02/2009 630.29 40 09/02/2009 605.95 41 10/02/2009 599.56 42 11/02/2009 615.83 43 12/02/2009 645.92 44 13/02/2009 662.89 45 14/02/2009 659.85 46 15/02/2009 643.48 47 16/02/2009 627.48 48 17/02/2009 616.83 49 18/02/2009 611.92 50 19/02/2009 610.74 51 20/02/2009 611.12 52 21/02/2009 611.63 53 22/02/2009 614.97 54 23/02/2009 623.83 55 24/02/2009 635.71 56 25/02/2009 645.54 57 26/02/2009 650.95 58 27/02/2009 654.70 59 28/02/2009 660.25 60 01/03/2009 667.60 61 02/03/2009 673.63 62 03/03/2009 675.38 63 04/03/2009 672.68 64 05/03/2009 676.07 65 06/03/2009 699.95 66 07/03/2009 756.90 67 08/03/2009 829.02 68 09/03/2009 891.21 69 10/03/2009 951.83 70 11/03/2009 1023.47 71 12/03/2009 1107.28 72 13/03/2009 1191.59 73 14/03/2009 1265.60 74 15/03/2009 1323.00 75 16/03/2009 1362.00 76 17/03/2009 1383.07 77 18/03/2009 1387.68 78 19/03/2009 1377.47 79 20/03/2009 1355.05 80 21/03/2009 1322.65 81 22/03/2009 1282.49 82 23/03/2009 1241.49 83 24/03/2009 1201.08 84 25/03/2009 1173.61 85 26/03/2009 1167.84 86 27/03/2009 1184.55 87 28/03/2009 1216.08 88 29/03/2009 1245.82 89 30/03/2009 1263.48 90 31/03/2009 1268.22 91 01/04/2009 1264.49 92 02/04/2009 1256.54 93 03/04/2009 1245.98 94 04/04/2009 1232.67 95 05/04/2009 1215.21 96 06/04/2009 1192.83 97 07/04/2009 1166.50 98 08/04/2009 1136.82 99 09/04/2009 1105.00 100 10/04/2009 1071.62 101 11/04/2009 1038.80 102 12/04/2009 1006.21 103 13/04/2009 974.95 104 14/04/2009 945.15 105 15/04/2009 916.39 106 16/04/2009 892.42 107 17/04/2009 883.70 108 18/04/2009 885.16 109 19/04/2009 891.66 110 20/04/2009 895.66 111 21/04/2009 893.79 112 22/04/2009 887.43 113 23/04/2009 878.78 114 24/04/2009 869.00 115 25/04/2009 859.44 116 26/04/2009 851.16 117 27/04/2009 843.85 118 28/04/2009 838.86 119 29/04/2009 835.77 120 30/04/2009 834.64 121 01/05/2009 835.09 122 02/05/2009 835.63 123 03/05/2009 837.20 124 04/05/2009 839.35 125 05/05/2009 844.17 126 06/05/2009 851.16 127 07/05/2009 858.75 128 08/05/2009 867.66 129 09/05/2009 880.01 130 10/05/2009 893.37 131 11/05/2009 912.69 132 12/05/2009 933.60 133 13/05/2009 954.14 134 14/05/2009 972.40 135 15/05/2009 991.65 136 16/05/2009 1011.82 137 17/05/2009 1038.38 138 18/05/2009 1069.95 139 19/05/2009 1106.00 140 20/05/2009 1142.39 141 21/05/2009 1174.01 142 22/05/2009 1196.70 143 23/05/2009 1207.76 144 24/05/2009 1208.82 145 25/05/2009 1203.02 146 26/05/2009 1196.18 147 27/05/2009 1189.13 148 28/05/2009 1183.89 149 29/05/2009 1181.23 150 30/05/2009 1180.22 151 31/05/2009 1184.23 152 01/06/2009 1192.51 153 02/06/2009 1201.85 154 03/06/2009 1208.77 155 04/06/2009 1210.53 156 05/06/2009 1205.40 157 06/06/2009 1195.05 158 07/06/2009 1181.99 159 08/06/2009 1164.23 160 09/06/2009 1147.28 161 10/06/2009 1135.67 162 11/06/2009 1133.40 163 12/06/2009 1134.35 164 13/06/2009 1131.59 165 14/06/2009 1131.61 166 15/06/2009 1138.13 167 16/06/2009 1157.96 168 17/06/2009 1183.01 169 18/06/2009 1203.05 170 19/06/2009 1219.14 171 20/06/2009 1230.14 172 21/06/2009 1236.13 173 22/06/2009 1237.07 174 23/06/2009 1234.06 175 24/06/2009 1228.37 176 25/06/2009 1221.86 177 26/06/2009 1216.34 178 27/06/2009 1216.25 179 28/06/2009 1220.92 180 29/06/2009 1228.61 181 30/06/2009 1240.36 182 01/07/2009 1254.63 183 02/07/2009 1271.98 184 03/07/2009 1299.83 185 04/07/2009 1328.05 186 05/07/2009 1346.70 187 06/07/2009 1361.64 188 07/07/2009 1377.25 189 08/07/2009 1400.69 190 09/07/2009 1433.40 191 10/07/2009 1465.16 192 11/07/2009 1495.09 193 12/07/2009 1526.01 194 13/07/2009 1543.61 195 14/07/2009 1540.40 196 15/07/2009 1524.27 197 16/07/2009 1497.57 198 17/07/2009 1474.39 199 18/07/2009 1459.16 200 19/07/2009 1454.86 201 20/07/2009 1475.66 202 21/07/2009 1527.64 203 22/07/2009 1620.27 204 23/07/2009 1750.70 205 24/07/2009 1881.26 206 25/07/2009 1987.17 207 26/07/2009 2049.43 208 27/07/2009 2069.03 209 28/07/2009 2056.51 210 29/07/2009 2020.39 211 30/07/2009 1971.83 212 31/07/2009 1913.48 213 01/08/2009 1850.22 214 02/08/2009 1790.00 215 03/08/2009 1729.00 216 04/08/2009 1664.23 217 05/08/2009 1591.43 218 06/08/2009 1528.80 219 07/08/2009 1472.99 220 08/08/2009 1429.54 221 09/08/2009 1392.37 222 10/08/2009 1353.84 223 11/08/2009 1315.55 224 12/08/2009 1285.46 225 13/08/2009 1260.62 226 14/08/2009 1233.09 227 15/08/2009 1177.53 228 16/08/2009 1167.12 229 17/08/2009 1150.36 230 18/08/2009 1131.86 231 19/08/2009 1104.34 232 20/08/2009 1080.91 233 21/08/2009 1058.25 234 22/08/2009 1034.04 235 23/08/2009 1007.10 236 24/08/2009 954.69 237 25/08/2009 942.52 238 26/08/2009 929.08 239 27/08/2009 904.79 240 28/08/2009 880.18 241 29/08/2009 857.98 242 30/08/2009 837.56 243 31/08/2009 812.54 244 01/09/2009 800.00 245 02/09/2009 796.89 246 03/09/2009 789.47 247 04/09/2009 785.22 248 05/09/2009 782.56 249 06/09/2009 779.23 250 07/09/2009 773.17 251 08/09/2009 766.27 252 09/09/2009 758.84 253 10/09/2009 750.92 254 11/09/2009 742.51 255 12/09/2009 733.76 256 13/09/2009 725.05 257 14/09/2009 716.71 258 15/09/2009 709.82 259 16/09/2009 700.73 260 17/09/2009 689.89 261 18/09/2009 678.30 262 19/09/2009 666.51 263 20/09/2009 654.97 264 21/09/2009 644.20 265 22/09/2009 632.74 266 23/09/2009 622.37 267 24/09/2009 612.81 268 25/09/2009 603.91 269 26/09/2009 595.51 270 27/09/2009 587.52 271 28/09/2009 579.89 272 29/09/2009 572.69 273 30/09/2009 565.78 274 01/10/2009 559.46 275 02/10/2009 553.26 276 03/10/2009 545.34 277 04/10/2009 537.86 278 05/10/2009 536.62 279 06/10/2009 543.47 280 07/10/2009 559.08 281 08/10/2009 582.74 282 09/10/2009 605.94 283 10/10/2009 629.25 284 11/10/2009 651.40 285 12/10/2009 670.26 286 13/10/2009 683.13 287 14/10/2009 687.41 288 15/10/2009 684.12 289 16/10/2009 679.18 290 17/10/2009 676.80 291 18/10/2009 679.79 292 19/10/2009 687.35 293 20/10/2009 697.67 294 21/10/2009 710.04 295 22/10/2009 724.56 296 23/10/2009 743.22 297 24/10/2009 763.58 298 25/10/2009 781.79 299 26/10/2009 794.96 300 27/10/2009 802.84 301 28/10/2009 801.97 302 29/10/2009 795.77 303 30/10/2009 785.80 304 31/10/2009 773.33 305 01/11/2009 769.30 306 02/11/2009 784.29 307 03/11/2009 826.77 308 04/11/2009 885.15 309 05/11/2009 948.28 310 06/11/2009 1000.57 311 07/11/2009 1034.66 312 08/11/2009 1055.56 313 09/11/2009 1074.50 314 10/11/2009 1104.86 315 11/11/2009 1149.00 316 12/11/2009 1196.40 317 13/11/2009 1237.11 318 14/11/2009 1266.10 319 15/11/2009 1283.61 320 16/11/2009 1297.19 321 17/11/2009 1315.03 322 18/11/2009 1342.24 323 19/11/2009 1368.08 324 20/11/2009 1381.33 325 21/11/2009 1381.04 326 22/11/2009 1371.06 327 23/11/2009 1375.74 328 24/11/2009 1400.88 329 25/11/2009 1433.82 330 26/11/2009 1450.89 331 27/11/2009 1455.37 332 28/11/2009 1465.67 333 29/11/2009 1489.93 334 30/11/2009 1514.21 335 01/12/2009 1520.99 336 02/12/2009 1509.86 337 03/12/2009 1496.21 338 04/12/2009 1491.94 339 05/12/2009 1509.76 340 06/12/2009 1555.84 341 07/12/2009 1629.04 342 08/12/2009 1717.17 343 09/12/2009 1799.03 344 10/12/2009 1875.63 345 11/12/2009 1953.32 346 12/12/2009 2029.15 347 13/12/2009 2087.13 348 14/12/2009 2121.83 349 15/12/2009 2136.20 350 16/12/2009 2131.62 351 17/12/2009 2107.29 352 18/12/2009 2063.52 353 19/12/2009 2002.83 354 20/12/2009 1929.77 355 21/12/2009 1849.46 356 22/12/2009 1771.87 357 23/12/2009 1705.15 358 24/12/2009 1654.75 359 25/12/2009 1636.91 360 26/12/2009 1646.06 361 27/12/2009 1679.30 362 28/12/2009 1724.19 363 29/12/2009 1783.57 364 30/12/2009 1861.55 365 31/12/2009 1991.65 366 01/01/2010 2168.06
Start: 09:23:00.424903
End: 09:23:10.287573
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[10th Rhine 30min waterdemand TRUE, load initial-model9]</td>
<td class="col-duration">3.64</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_10 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_10.ini
Description: 10th Rhine 30min waterdemand TRUE, load initial
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'includeWaterDemand = True', 'StepEnd = 100', 'SpinUp = 30', 'load_initial = True', 'initLoad = $(FILE_PATHS:PathInit)/Rhine_20091231.nc', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge', 'OUT_MAP_TotalAvg = discharge, baseflow']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_10.ini
Step Date Discharge
1 01/01/2009 2168.10 2 02/01/2009 2355.26 3 03/01/2009 2529.48 4 04/01/2009 2660.69 5 05/01/2009 2721.46 6 06/01/2009 2705.59 7 07/01/2009 2627.21 8 08/01/2009 2508.88 9 09/01/2009 2371.04 10 10/01/2009 2228.73 11 11/01/2009 2091.12 12 12/01/2009 1968.66 13 13/01/2009 1859.42 14 14/01/2009 1762.38 15 15/01/2009 1676.74 16 16/01/2009 1600.00 17 17/01/2009 1530.24 18 18/01/2009 1481.97 19 19/01/2009 1487.16 20 20/01/2009 1561.01 21 21/01/2009 1658.45 22 22/01/2009 1745.23 23 23/01/2009 1854.61 24 24/01/2009 2035.82 25 25/01/2009 2262.65 26 26/01/2009 2477.29 27 27/01/2009 2657.35 28 28/01/2009 2778.64 29 29/01/2009 2817.71 30 30/01/2009 2771.67 31 31/01/2009 2658.78 32 01/02/2009 2505.46 33 02/02/2009 2335.76 34 03/02/2009 2166.10 35 04/02/2009 2006.09 36 05/02/2009 1862.13 37 06/02/2009 1738.00 38 07/02/2009 1639.65 39 08/02/2009 1565.88 40 09/02/2009 1520.31 41 10/02/2009 1520.60 42 11/02/2009 1604.02 43 12/02/2009 1695.96 44 13/02/2009 1730.00 45 14/02/2009 1722.08 46 15/02/2009 1700.43 47 16/02/2009 1693.44 48 17/02/2009 1709.43 49 18/02/2009 1739.52 50 19/02/2009 1759.24 51 20/02/2009 1761.71 52 21/02/2009 1755.58 53 22/02/2009 1754.42 54 23/02/2009 1762.57 55 24/02/2009 1769.59 56 25/02/2009 1764.17 57 26/02/2009 1749.37 58 27/02/2009 1740.94 59 28/02/2009 1746.76 60 01/03/2009 1758.49 61 02/03/2009 1766.25 62 03/03/2009 1766.15 63 04/03/2009 1759.77 64 05/03/2009 1776.38 65 06/03/2009 1859.84 66 07/03/2009 2022.02 67 08/03/2009 2181.46 68 09/03/2009 2300.42 69 10/03/2009 2416.66 70 11/03/2009 2547.79 71 12/03/2009 2670.68 72 13/03/2009 2758.55 73 14/03/2009 2802.82 74 15/03/2009 2804.42 75 16/03/2009 2771.05 76 17/03/2009 2711.61 77 18/03/2009 2634.67 78 19/03/2009 2546.49 79 20/03/2009 2452.05 80 21/03/2009 2354.30 81 22/03/2009 2255.45 82 23/03/2009 2165.73 83 24/03/2009 2089.53 84 25/03/2009 2044.29 85 26/03/2009 2041.55 86 27/03/2009 2080.50 87 28/03/2009 2142.86 88 29/03/2009 2206.17 89 30/03/2009 2256.19 90 31/03/2009 2287.11 91 01/04/2009 2299.94 92 02/04/2009 2295.72 93 03/04/2009 2274.92 94 04/04/2009 2239.93 95 05/04/2009 2194.07 96 06/04/2009 2141.36 97 07/04/2009 2086.91 98 08/04/2009 2033.76 99 09/04/2009 1984.07 100 10/04/2009 1938.05
Start: 09:23:11.391485
End: 09:23:13.929917
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[11th Rhine 30min with lot of output-model10]</td>
<td class="col-duration">22.15</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_11 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_11.ini
Description: 11th Rhine 30min with lot of output
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'includeWaterDemand = True', 'StepEnd = 730', 'SpinUp = 01/10/2009', 'load_initial = True', 'initLoad = $(FILE_PATHS:PathInit)/Rhine_20091231.nc', 'swAbstractionFrac = -0.7', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_Daily = discharge', 'OUT_TSS_MonthAvg = discharge', 'OUT_TSS_AnnualAvg = discharge', 'OUT_TSS_AnnualTot = runoff', 'OUT_Map_Daily = discharge', 'OUT_Map_MonthAvg = discharge, Precipitation, runoff', 'OUT_Map_AnnualAvg = discharge', 'OUT_MAP_AnnualTot = runoff', 'OUT_MAP_AnnualEnd = runoff', 'OUT_MAP_TotalAvg = discharge, baseflow']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_11.ini
Step Date Discharge
1 01/01/2009 2162.14 2 02/01/2009 2338.85 3 03/01/2009 2502.72 4 04/01/2009 2625.06 5 05/01/2009 2678.50 6 06/01/2009 2656.60 7 07/01/2009 2573.28 8 08/01/2009 2450.85 9 09/01/2009 2309.61 10 10/01/2009 2164.47 11 11/01/2009 2024.49 12 12/01/2009 1899.94 13 13/01/2009 1788.91 14 14/01/2009 1690.17 15 15/01/2009 1602.97 16 16/01/2009 1525.03 17 17/01/2009 1454.44 18 18/01/2009 1404.68 19 19/01/2009 1405.51 20 20/01/2009 1472.90 21 21/01/2009 1565.35 22 22/01/2009 1648.82 23 23/01/2009 1753.71 24 24/01/2009 1927.31 25 25/01/2009 2147.61 26 26/01/2009 2359.85 27 27/01/2009 2541.53 28 28/01/2009 2668.16 29 29/01/2009 2715.20 30 30/01/2009 2677.90 31 31/01/2009 2572.93 32 01/02/2009 2425.84 33 02/02/2009 2260.64 34 03/02/2009 2094.05 35 04/02/2009 1936.00 36 05/02/2009 1793.14 37 06/02/2009 1669.19 38 07/02/2009 1570.05 39 08/02/2009 1494.93 40 09/02/2009 1447.76 41 10/02/2009 1445.19 42 11/02/2009 1523.13 43 12/02/2009 1612.00 44 13/02/2009 1646.23 45 14/02/2009 1639.32 46 15/02/2009 1618.25 47 16/02/2009 1610.85 48 17/02/2009 1625.34 49 18/02/2009 1653.77 50 19/02/2009 1673.20 51 20/02/2009 1676.62 52 21/02/2009 1671.64 53 22/02/2009 1671.19 54 23/02/2009 1679.82 55 24/02/2009 1687.74 56 25/02/2009 1683.80 57 26/02/2009 1670.42 58 27/02/2009 1662.52 59 28/02/2009 1668.01 60 01/03/2009 1679.52 61 02/03/2009 1687.47 62 03/03/2009 1687.68 63 04/03/2009 1681.38 64 05/03/2009 1696.86 65 06/03/2009 1776.84 66 07/03/2009 1934.40 67 08/03/2009 2091.80 68 09/03/2009 2210.96 69 10/03/2009 2327.77 70 11/03/2009 2459.63 71 12/03/2009 2584.35 72 13/03/2009 2675.02 73 14/03/2009 2722.50 74 15/03/2009 2727.35 75 16/03/2009 2696.93 76 17/03/2009 2640.04 77 18/03/2009 2565.25 78 19/03/2009 2478.87 79 20/03/2009 2385.96 80 21/03/2009 2289.50 81 22/03/2009 2191.71 82 23/03/2009 2102.64 83 24/03/2009 2026.39 84 25/03/2009 1980.33 85 26/03/2009 1976.11 86 27/03/2009 2013.09 87 28/03/2009 2073.72 88 29/03/2009 2135.71 89 30/03/2009 2184.87 90 31/03/2009 2215.52 91 01/04/2009 2228.63 92 02/04/2009 2225.25 93 03/04/2009 2205.76 94 04/04/2009 2172.32 95 05/04/2009 2128.01 96 06/04/2009 2076.69 97 07/04/2009 2023.38 98 08/04/2009 1971.10 99 09/04/2009 1922.05 100 10/04/2009 1876.48 101 11/04/2009 1836.10 102 12/04/2009 1799.40 103 13/04/2009 1766.96 104 14/04/2009 1738.33 105 15/04/2009 1712.12 106 16/04/2009 1693.94 107 17/04/2009 1703.01 108 18/04/2009 1731.39 109 19/04/2009 1764.65 110 20/04/2009 1787.59 111 21/04/2009 1798.51 112 22/04/2009 1802.00 113 23/04/2009 1800.96 114 24/04/2009 1795.63 115 25/04/2009 1786.80 116 26/04/2009 1776.03 117 27/04/2009 1763.94 118 28/04/2009 1754.33 119 29/04/2009 1748.92 120 30/04/2009 1747.36 121 01/05/2009 1748.92 122 02/05/2009 1753.46 123 03/05/2009 1762.98 124 04/05/2009 1775.78 125 05/05/2009 1793.14 126 06/05/2009 1812.06 127 07/05/2009 1827.17 128 08/05/2009 1836.69 129 09/05/2009 1844.64 130 10/05/2009 1849.30 131 11/05/2009 1860.18 132 12/05/2009 1873.03 133 13/05/2009 1886.48 134 14/05/2009 1898.63 135 15/05/2009 1919.75 136 16/05/2009 1953.98 137 17/05/2009 2008.46 138 18/05/2009 2075.32 139 19/05/2009 2144.03 140 20/05/2009 2199.61 141 21/05/2009 2232.04 142 22/05/2009 2239.88 143 23/05/2009 2227.06 144 24/05/2009 2203.60 145 25/05/2009 2179.06 146 26/05/2009 2162.01 147 27/05/2009 2151.47 148 28/05/2009 2148.72 149 29/05/2009 2156.06 150 30/05/2009 2176.61 151 31/05/2009 2207.24 152 01/06/2009 2237.32 153 02/06/2009 2256.57 154 03/06/2009 2258.65 155 04/06/2009 2242.32 156 05/06/2009 2209.43 157 06/06/2009 2167.08 158 07/06/2009 2121.48 159 08/06/2009 2073.51 160 09/06/2009 2031.39 161 10/06/2009 2001.91 162 11/06/2009 1991.87 163 12/06/2009 1992.20 164 13/06/2009 1998.84 165 14/06/2009 2009.96 166 15/06/2009 2028.62 167 16/06/2009 2060.33 168 17/06/2009 2088.56 169 18/06/2009 2105.43 170 19/06/2009 2110.50 171 20/06/2009 2106.84 172 21/06/2009 2098.22 173 22/06/2009 2086.75 174 23/06/2009 2075.07 175 24/06/2009 2064.39 176 25/06/2009 2055.70 177 26/06/2009 2049.12 178 27/06/2009 2048.63 179 28/06/2009 2051.08 180 29/06/2009 2056.30 181 30/06/2009 2066.36 182 01/07/2009 2081.13 183 02/07/2009 2101.89 184 03/07/2009 2133.49 185 04/07/2009 2158.84 186 05/07/2009 2176.25 187 06/07/2009 2188.74 188 07/07/2009 2203.20 189 08/07/2009 2237.38 190 09/07/2009 2281.06 191 10/07/2009 2328.60 192 11/07/2009 2372.08 193 12/07/2009 2404.05 194 13/07/2009 2406.77 195 14/07/2009 2382.10 196 15/07/2009 2337.93 197 16/07/2009 2282.80 198 17/07/2009 2236.81 199 18/07/2009 2194.80 200 19/07/2009 2179.03 201 20/07/2009 2206.07 202 21/07/2009 2283.13 203 22/07/2009 2407.47 204 23/07/2009 2556.93 205 24/07/2009 2684.19 206 25/07/2009 2762.90 207 26/07/2009 2782.48 208 27/07/2009 2755.28 209 28/07/2009 2697.74 210 29/07/2009 2619.45 211 30/07/2009 2533.67 212 31/07/2009 2444.12 213 01/08/2009 2355.44 214 02/08/2009 2278.15 215 03/08/2009 2200.61 216 04/08/2009 2122.23 217 05/08/2009 2045.90 218 06/08/2009 1967.98 219 07/08/2009 1898.48 220 08/08/2009 1845.39 221 09/08/2009 1794.60 222 10/08/2009 1744.54 223 11/08/2009 1700.47 224 12/08/2009 1663.82 225 13/08/2009 1631.03 226 14/08/2009 1602.10 227 15/08/2009 1540.85 228 16/08/2009 1536.86 229 17/08/2009 1523.77 230 18/08/2009 1503.78 231 19/08/2009 1470.95 232 20/08/2009 1437.02 233 21/08/2009 1406.27 234 22/08/2009 1375.06 235 23/08/2009 1342.11 236 24/08/2009 1272.85 237 25/08/2009 1264.38 238 26/08/2009 1245.45 239 27/08/2009 1220.13 240 28/08/2009 1193.68 241 29/08/2009 1169.65 242 30/08/2009 1147.57 243 31/08/2009 1121.43 244 01/09/2009 1107.82 245 02/09/2009 1102.20 246 03/09/2009 1098.40 247 04/09/2009 1095.44 248 05/09/2009 1091.85 249 06/09/2009 1086.34 250 07/09/2009 1077.77 251 08/09/2009 1066.31 252 09/09/2009 1054.87 253 10/09/2009 1043.92 254 11/09/2009 1033.36 255 12/09/2009 1023.00 256 13/09/2009 1012.92 257 14/09/2009 1003.39 258 15/09/2009 994.54 259 16/09/2009 983.88 260 17/09/2009 971.44 261 18/09/2009 957.77 262 19/09/2009 943.64 263 20/09/2009 929.97 264 21/09/2009 917.11 265 22/09/2009 904.71 266 23/09/2009 894.06 267 24/09/2009 884.79 268 25/09/2009 876.60 269 26/09/2009 869.02 270 27/09/2009 861.66 271 28/09/2009 854.29 272 29/09/2009 846.94 273 30/09/2009 839.40 274 01/10/2009 832.28 275 02/10/2009 824.72 276 03/10/2009 815.80 277 04/10/2009 807.46 278 05/10/2009 807.14 279 06/10/2009 813.69 280 07/10/2009 832.31 281 08/10/2009 858.74 282 09/10/2009 881.69 283 10/10/2009 903.13 284 11/10/2009 923.31 285 12/10/2009 940.38 286 13/10/2009 950.88 287 14/10/2009 952.28 288 15/10/2009 947.19 289 16/10/2009 943.67 290 17/10/2009 946.45 291 18/10/2009 956.92 292 19/10/2009 971.85 293 20/10/2009 988.10 294 21/10/2009 1004.80 295 22/10/2009 1025.22 296 23/10/2009 1045.17 297 24/10/2009 1065.22 298 25/10/2009 1080.17 299 26/10/2009 1087.52 300 27/10/2009 1088.20 301 28/10/2009 1082.71 302 29/10/2009 1072.27 303 30/10/2009 1058.01 304 31/10/2009 1041.69 305 01/11/2009 1037.13 306 02/11/2009 1053.74 307 03/11/2009 1104.02 308 04/11/2009 1167.87 309 05/11/2009 1233.43 310 06/11/2009 1284.98 311 07/11/2009 1317.21 312 08/11/2009 1338.51 313 09/11/2009 1361.20 314 10/11/2009 1398.93 315 11/11/2009 1451.13 316 12/11/2009 1502.51 317 13/11/2009 1541.54 318 14/11/2009 1564.30 319 15/11/2009 1572.71 320 16/11/2009 1576.78 321 17/11/2009 1587.74 322 18/11/2009 1610.68 323 19/11/2009 1631.35 324 20/11/2009 1637.73 325 21/11/2009 1630.19 326 22/11/2009 1613.82 327 23/11/2009 1616.44 328 24/11/2009 1644.65 329 25/11/2009 1679.53 330 26/11/2009 1693.46 331 27/11/2009 1693.76 332 28/11/2009 1703.23 333 29/11/2009 1729.84 334 30/11/2009 1755.17 335 01/12/2009 1758.93 336 02/12/2009 1742.42 337 03/12/2009 1725.36 338 04/12/2009 1722.34 339 05/12/2009 1746.20 340 06/12/2009 1801.99 341 07/12/2009 1886.03 342 08/12/2009 1981.34 343 09/12/2009 2065.17 344 10/12/2009 2141.36 345 11/12/2009 2219.05 346 12/12/2009 2294.28 347 13/12/2009 2348.85 348 14/12/2009 2378.24 349 15/12/2009 2386.33 350 16/12/2009 2374.27 351 17/12/2009 2340.97 352 18/12/2009 2287.05 353 19/12/2009 2215.80 354 20/12/2009 2132.62 355 21/12/2009 2043.23 356 22/12/2009 1958.74 357 23/12/2009 1888.78 358 24/12/2009 1838.55 359 25/12/2009 1825.29 360 26/12/2009 1844.11 361 27/12/2009 1889.91 362 28/12/2009 1945.94 363 29/12/2009 2014.43 364 30/12/2009 2100.98 365 31/12/2009 2244.00 366 01/01/2010 2433.54 367 02/01/2010 2630.48 368 03/01/2010 2810.35 369 04/01/2010 2941.13 370 05/01/2010 2994.59 371 06/01/2010 2965.76 372 07/01/2010 2871.69 373 08/01/2010 2737.28 374 09/01/2010 2584.88 375 10/01/2010 2430.51 376 11/01/2010 2283.51 377 12/01/2010 2148.60 378 13/01/2010 2027.19 379 14/01/2010 1920.43 380 15/01/2010 1826.46 381 16/01/2010 1751.08 382 17/01/2010 1696.34 383 18/01/2010 1672.89 384 19/01/2010 1686.63 385 20/01/2010 1718.19 386 21/01/2010 1751.50 387 22/01/2010 1778.70 388 23/01/2010 1795.24 389 24/01/2010 1797.36 390 25/01/2010 1783.38 391 26/01/2010 1754.41 392 27/01/2010 1713.67 393 28/01/2010 1669.60 394 29/01/2010 1625.59 395 30/01/2010 1576.14 396 31/01/2010 1524.28 397 01/02/2010 1474.17 398 02/02/2010 1437.89 399 03/02/2010 1404.73 400 04/02/2010 1381.90 401 05/02/2010 1384.79 402 06/02/2010 1420.42 403 07/02/2010 1491.62 404 08/02/2010 1590.80 405 09/02/2010 1700.66 406 10/02/2010 1799.80 407 11/02/2010 1869.90 408 12/02/2010 1901.69 409 13/02/2010 1895.68 410 14/02/2010 1859.10 411 15/02/2010 1801.21 412 16/02/2010 1731.17 413 17/02/2010 1656.44 414 18/02/2010 1586.72 415 19/02/2010 1527.08 416 20/02/2010 1482.24 417 21/02/2010 1450.84 418 22/02/2010 1433.66 419 23/02/2010 1459.65 420 24/02/2010 1578.16 421 25/02/2010 1783.76 422 26/02/2010 2070.35 423 27/02/2010 2444.94 424 28/02/2010 2937.12 425 01/03/2010 3560.10 426 02/03/2010 4097.33 427 03/03/2010 4360.46 428 04/03/2010 4356.89 429 05/03/2010 4175.42 430 06/03/2010 3897.57 431 07/03/2010 3583.93 432 08/03/2010 3272.36 433 09/03/2010 2981.76 434 10/03/2010 2720.96 435 11/03/2010 2492.61 436 12/03/2010 2300.58 437 13/03/2010 2138.40 438 14/03/2010 2010.34 439 15/03/2010 1921.31 440 16/03/2010 1866.12 441 17/03/2010 1829.74 442 18/03/2010 1800.88 443 19/03/2010 1781.39 444 20/03/2010 1798.61 445 21/03/2010 1866.81 446 22/03/2010 1938.27 447 23/03/2010 1967.28 448 24/03/2010 1960.59 449 25/03/2010 1940.33 450 26/03/2010 1928.88 451 27/03/2010 1943.90 452 28/03/2010 1982.07 453 29/03/2010 2030.54 454 30/03/2010 2085.11 455 31/03/2010 2134.68 456 01/04/2010 2169.19 457 02/04/2010 2186.72 458 03/04/2010 2196.36 459 04/04/2010 2207.04 460 05/04/2010 2217.07 461 06/04/2010 2220.31 462 07/04/2010 2213.15 463 08/04/2010 2195.28 464 09/04/2010 2164.38 465 10/04/2010 2122.49 466 11/04/2010 2073.10 467 12/04/2010 2018.47 468 13/04/2010 1962.47 469 14/04/2010 1908.95 470 15/04/2010 1859.89 471 16/04/2010 1816.79 472 17/04/2010 1779.19 473 18/04/2010 1746.11 474 19/04/2010 1716.58 475 20/04/2010 1688.63 476 21/04/2010 1661.21 477 22/04/2010 1632.88 478 23/04/2010 1603.43 479 24/04/2010 1573.18 480 25/04/2010 1542.82 481 26/04/2010 1514.46 482 27/04/2010 1487.35 483 28/04/2010 1461.65 484 29/04/2010 1438.56 485 30/04/2010 1419.67 486 01/05/2010 1404.85 487 02/05/2010 1404.07 488 03/05/2010 1410.56 489 04/05/2010 1420.50 490 05/05/2010 1438.28 491 06/05/2010 1474.19 492 07/05/2010 1538.81 493 08/05/2010 1628.01 494 09/05/2010 1728.50 495 10/05/2010 1829.04 496 11/05/2010 1934.78 497 12/05/2010 2039.03 498 13/05/2010 2131.69 499 14/05/2010 2207.99 500 15/05/2010 2267.66 501 16/05/2010 2313.78 502 17/05/2010 2353.72 503 18/05/2010 2379.89 504 19/05/2010 2388.76 505 20/05/2010 2379.65 506 21/05/2010 2355.36 507 22/05/2010 2321.07 508 23/05/2010 2281.47 509 24/05/2010 2238.27 510 25/05/2010 2191.43 511 26/05/2010 2151.91 512 27/05/2010 2116.73 513 28/05/2010 2086.93 514 29/05/2010 2063.57 515 30/05/2010 2062.16 516 31/05/2010 2079.61 517 01/06/2010 2114.29 518 02/06/2010 2163.11 519 03/06/2010 2219.92 520 04/06/2010 2275.44 521 05/06/2010 2317.81 522 06/06/2010 2339.03 523 07/06/2010 2336.40 524 08/06/2010 2313.35 525 09/06/2010 2285.16 526 10/06/2010 2267.42 527 11/06/2010 2268.86 528 12/06/2010 2292.39 529 13/06/2010 2330.61 530 14/06/2010 2370.84 531 15/06/2010 2404.83 532 16/06/2010 2429.32 533 17/06/2010 2446.40 534 18/06/2010 2465.81 535 19/06/2010 2493.98 536 20/06/2010 2530.56 537 21/06/2010 2571.32 538 22/06/2010 2610.61 539 23/06/2010 2641.95 540 24/06/2010 2658.82 541 25/06/2010 2657.05 542 26/06/2010 2634.53 543 27/06/2010 2594.12 544 28/06/2010 2541.50 545 29/06/2010 2482.98 546 30/06/2010 2424.85 547 01/07/2010 2363.29 548 02/07/2010 2275.83 549 03/07/2010 2267.06 550 04/07/2010 2256.75 551 05/07/2010 2248.25 552 06/07/2010 2239.00 553 07/07/2010 2231.35 554 08/07/2010 2217.29 555 09/07/2010 2168.95 556 10/07/2010 2179.80 557 11/07/2010 2171.48 558 12/07/2010 2145.59 559 13/07/2010 2106.41 560 14/07/2010 2058.82 561 15/07/2010 2002.13 562 16/07/2010 1945.42 563 17/07/2010 1895.23 564 18/07/2010 1848.71 565 19/07/2010 1763.86 566 20/07/2010 1742.35 567 21/07/2010 1715.36 568 22/07/2010 1692.34 569 23/07/2010 1672.06 570 24/07/2010 1652.06 571 25/07/2010 1636.31 572 26/07/2010 1636.91 573 27/07/2010 1645.24 574 28/07/2010 1672.27 575 29/07/2010 1725.18 576 30/07/2010 1784.10 577 31/07/2010 1839.79 578 01/08/2010 1890.22 579 02/08/2010 1935.24 580 03/08/2010 1968.21 581 04/08/2010 1996.24 582 05/08/2010 2017.86 583 06/08/2010 2029.60 584 07/08/2010 2037.36 585 08/08/2010 2054.72 586 09/08/2010 2078.83 587 10/08/2010 2111.90 588 11/08/2010 2159.60 589 12/08/2010 2210.69 590 13/08/2010 2261.81 591 14/08/2010 2295.85 592 15/08/2010 2355.02 593 16/08/2010 2440.08 594 17/08/2010 2544.47 595 18/08/2010 2658.75 596 19/08/2010 2795.32 597 20/08/2010 2947.37 598 21/08/2010 3082.75 599 22/08/2010 3175.88 600 23/08/2010 3227.91 601 24/08/2010 3230.29 602 25/08/2010 3185.74 603 26/08/2010 3156.92 604 27/08/2010 3192.77 605 28/08/2010 3265.81 606 29/08/2010 3260.74 607 30/08/2010 3194.06 608 31/08/2010 3105.03 609 01/09/2010 3013.07 610 02/09/2010 2932.73 611 03/09/2010 2867.06 612 04/09/2010 2809.23 613 05/09/2010 2748.15 614 06/09/2010 2675.52 615 07/09/2010 2610.56 616 08/09/2010 2565.77 617 09/09/2010 2538.40 618 10/09/2010 2510.27 619 11/09/2010 2476.78 620 12/09/2010 2453.21 621 13/09/2010 2435.51 622 14/09/2010 2420.05 623 15/09/2010 2398.62 624 16/09/2010 2372.29 625 17/09/2010 2336.64 626 18/09/2010 2290.07 627 19/09/2010 2234.44 628 20/09/2010 2172.93 629 21/09/2010 2109.18 630 22/09/2010 2044.52 631 23/09/2010 1980.40 632 24/09/2010 1931.46 633 25/09/2010 1903.33 634 26/09/2010 1885.72 635 27/09/2010 1867.34 636 28/09/2010 1848.37 637 29/09/2010 1831.72 638 30/09/2010 1821.95 639 01/10/2010 1816.40 640 02/10/2010 1824.37 641 03/10/2010 1842.94 642 04/10/2010 1862.46 643 05/10/2010 1870.30 644 06/10/2010 1865.02 645 07/10/2010 1850.56 646 08/10/2010 1830.93 647 09/10/2010 1809.25 648 10/10/2010 1787.64 649 11/10/2010 1767.03 650 12/10/2010 1747.26 651 13/10/2010 1727.04 652 14/10/2010 1704.95 653 15/10/2010 1688.66 654 16/10/2010 1676.07 655 17/10/2010 1664.37 656 18/10/2010 1648.09 657 19/10/2010 1633.22 658 20/10/2010 1626.09 659 21/10/2010 1624.61 660 22/10/2010 1620.94 661 23/10/2010 1613.47 662 24/10/2010 1607.39 663 25/10/2010 1602.88 664 26/10/2010 1598.39 665 27/10/2010 1594.62 666 28/10/2010 1588.94 667 29/10/2010 1580.35 668 30/10/2010 1569.21 669 31/10/2010 1557.48 670 01/11/2010 1542.46 671 02/11/2010 1523.51 672 03/11/2010 1505.79 673 04/11/2010 1490.47 674 05/11/2010 1485.03 675 06/11/2010 1509.28 676 07/11/2010 1572.64 677 08/11/2010 1641.25 678 09/11/2010 1689.88 679 10/11/2010 1734.93 680 11/11/2010 1798.92 681 12/11/2010 1899.81 682 13/11/2010 2139.23 683 14/11/2010 2528.11 684 15/11/2010 2763.75 685 16/11/2010 2779.27 686 17/11/2010 2713.05 687 18/11/2010 2655.16 688 19/11/2010 2630.75 689 20/11/2010 2627.67 690 21/11/2010 2621.77 691 22/11/2010 2595.56 692 23/11/2010 2548.57 693 24/11/2010 2494.24 694 25/11/2010 2442.00 695 26/11/2010 2392.34 696 27/11/2010 2346.37 697 28/11/2010 2305.61 698 29/11/2010 2268.24 699 30/11/2010 2229.23 700 01/12/2010 2183.85 701 02/12/2010 2130.44 702 03/12/2010 2069.64 703 04/12/2010 2003.43 704 05/12/2010 1946.70 705 06/12/2010 1887.65 706 07/12/2010 1825.81 707 08/12/2010 1769.53 708 09/12/2010 1735.33 709 10/12/2010 1763.83 710 11/12/2010 1888.66 711 12/12/2010 2101.53 712 13/12/2010 2333.60 713 14/12/2010 2503.55 714 15/12/2010 2578.21 715 16/12/2010 2569.20 716 17/12/2010 2504.57 717 18/12/2010 2410.03 718 19/12/2010 2304.12 719 20/12/2010 2199.29 720 21/12/2010 2103.99 721 22/12/2010 2032.20 722 23/12/2010 1993.81 723 24/12/2010 1995.48 724 25/12/2010 2034.43 725 26/12/2010 2096.80 726 27/12/2010 2160.74 727 28/12/2010 2205.56 728 29/12/2010 2218.98 729 30/12/2010 2199.58 730 31/12/2010 2153.56
Start: 09:23:14.702519
End: 09:23:36.088947
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[12th Rhine 30min with more exotic output-model11]</td>
<td class="col-duration">15.48</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_12 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_12.ini
Description: 12th Rhine 30min with more exotic output
Changes: ['calc_evaporation = False', 'includeIrrigation = True', 'preferentialFlow = True', 'CapillarRise = True', 'includeRunoffConcentration = True', 'includeWaterBodies = True', 'includeWaterDemand = True', 'StepEnd = 400', 'SpinUp = 20/01/2009', 'load_initial = True', 'initLoad = $(FILE_PATHS:PathInit)/Rhine_20091231.nc', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_TSS_AreaSum_MonthTot = Precipitation, runoff', 'OUT_TSS_AreaAvg_MonthTot = Precipitation', 'OUT_Map_MonthAvg = reservoirStorage, Tavg', 'OUT_MAP_TotalTot = Precipitation']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_12.ini
Step Date Discharge
1 01/01/2009 2168.10 2 02/01/2009 2355.26 3 03/01/2009 2529.48 4 04/01/2009 2660.69 5 05/01/2009 2721.46 6 06/01/2009 2705.59 7 07/01/2009 2627.21 8 08/01/2009 2508.88 9 09/01/2009 2371.04 10 10/01/2009 2228.73 11 11/01/2009 2091.12 12 12/01/2009 1968.66 13 13/01/2009 1859.42 14 14/01/2009 1762.38 15 15/01/2009 1676.74 16 16/01/2009 1600.00 17 17/01/2009 1530.24 18 18/01/2009 1481.97 19 19/01/2009 1487.16 20 20/01/2009 1561.01 21 21/01/2009 1658.45 22 22/01/2009 1745.23 23 23/01/2009 1854.61 24 24/01/2009 2035.82 25 25/01/2009 2262.65 26 26/01/2009 2477.29 27 27/01/2009 2657.35 28 28/01/2009 2778.64 29 29/01/2009 2817.71 30 30/01/2009 2771.67 31 31/01/2009 2658.78 32 01/02/2009 2505.46 33 02/02/2009 2335.76 34 03/02/2009 2166.10 35 04/02/2009 2006.09 36 05/02/2009 1862.13 37 06/02/2009 1738.00 38 07/02/2009 1639.65 39 08/02/2009 1565.88 40 09/02/2009 1520.31 41 10/02/2009 1520.60 42 11/02/2009 1604.02 43 12/02/2009 1695.96 44 13/02/2009 1730.00 45 14/02/2009 1722.08 46 15/02/2009 1700.43 47 16/02/2009 1693.44 48 17/02/2009 1709.43 49 18/02/2009 1739.52 50 19/02/2009 1759.24 51 20/02/2009 1761.71 52 21/02/2009 1755.58 53 22/02/2009 1754.42 54 23/02/2009 1762.57 55 24/02/2009 1769.59 56 25/02/2009 1764.17 57 26/02/2009 1749.37 58 27/02/2009 1740.94 59 28/02/2009 1746.76 60 01/03/2009 1758.49 61 02/03/2009 1766.25 62 03/03/2009 1766.15 63 04/03/2009 1759.77 64 05/03/2009 1776.38 65 06/03/2009 1859.84 66 07/03/2009 2022.02 67 08/03/2009 2181.46 68 09/03/2009 2300.42 69 10/03/2009 2416.66 70 11/03/2009 2547.79 71 12/03/2009 2670.68 72 13/03/2009 2758.55 73 14/03/2009 2802.82 74 15/03/2009 2804.42 75 16/03/2009 2771.05 76 17/03/2009 2711.61 77 18/03/2009 2634.67 78 19/03/2009 2546.49 79 20/03/2009 2452.05 80 21/03/2009 2354.30 81 22/03/2009 2255.45 82 23/03/2009 2165.73 83 24/03/2009 2089.53 84 25/03/2009 2044.29 85 26/03/2009 2041.55 86 27/03/2009 2080.50 87 28/03/2009 2142.86 88 29/03/2009 2206.17 89 30/03/2009 2256.19 90 31/03/2009 2287.11 91 01/04/2009 2299.94 92 02/04/2009 2295.72 93 03/04/2009 2274.92 94 04/04/2009 2239.93 95 05/04/2009 2194.07 96 06/04/2009 2141.36 97 07/04/2009 2086.91 98 08/04/2009 2033.76 99 09/04/2009 1984.07 100 10/04/2009 1938.05 101 11/04/2009 1897.37 102 12/04/2009 1860.50 103 13/04/2009 1828.02 104 14/04/2009 1799.45 105 15/04/2009 1773.35 106 16/04/2009 1755.44 107 17/04/2009 1765.47 108 18/04/2009 1795.25 109 19/04/2009 1829.43 110 20/04/2009 1852.28 111 21/04/2009 1862.52 112 22/04/2009 1865.22 113 23/04/2009 1863.49 114 24/04/2009 1857.64 115 25/04/2009 1848.50 116 26/04/2009 1837.61 117 27/04/2009 1825.50 118 28/04/2009 1815.99 119 29/04/2009 1810.89 120 30/04/2009 1809.65 121 01/05/2009 1811.32 122 02/05/2009 1815.75 123 03/05/2009 1825.05 124 04/05/2009 1837.57 125 05/05/2009 1854.69 126 06/05/2009 1873.46 127 07/05/2009 1888.44 128 08/05/2009 1897.67 129 09/05/2009 1905.28 130 10/05/2009 1909.67 131 11/05/2009 1920.42 132 12/05/2009 1933.11 133 13/05/2009 1946.24 134 14/05/2009 1957.90 135 15/05/2009 1978.74 136 16/05/2009 2013.25 137 17/05/2009 2068.54 138 18/05/2009 2136.15 139 19/05/2009 2205.08 140 20/05/2009 2260.13 141 21/05/2009 2291.41 142 22/05/2009 2297.81 143 23/05/2009 2283.64 144 24/05/2009 2259.13 145 25/05/2009 2233.96 146 26/05/2009 2216.61 147 27/05/2009 2205.99 148 28/05/2009 2203.30 149 29/05/2009 2210.84 150 30/05/2009 2231.71 151 31/05/2009 2262.58 152 01/06/2009 2292.64 153 02/06/2009 2311.49 154 03/06/2009 2312.87 155 04/06/2009 2295.69 156 05/06/2009 2261.94 157 06/06/2009 2218.85 158 07/06/2009 2172.77 159 08/06/2009 2124.56 160 09/06/2009 2082.36 161 10/06/2009 2052.91 162 11/06/2009 2043.06 163 12/06/2009 2043.66 164 13/06/2009 2050.51 165 14/06/2009 2061.65 166 15/06/2009 2080.21 167 16/06/2009 2111.96 168 17/06/2009 2140.20 169 18/06/2009 2156.91 170 19/06/2009 2161.62 171 20/06/2009 2157.50 172 21/06/2009 2148.49 173 22/06/2009 2136.78 174 23/06/2009 2125.03 175 24/06/2009 2114.39 176 25/06/2009 2105.76 177 26/06/2009 2099.22 178 27/06/2009 2098.79 179 28/06/2009 2101.28 180 29/06/2009 2106.54 181 30/06/2009 2116.68 182 01/07/2009 2131.49 183 02/07/2009 2152.23 184 03/07/2009 2183.77 185 04/07/2009 2208.86 186 05/07/2009 2225.91 187 06/07/2009 2237.99 188 07/07/2009 2252.20 189 08/07/2009 2286.52 190 09/07/2009 2330.45 191 10/07/2009 2378.12 192 11/07/2009 2421.37 193 12/07/2009 2452.70 194 13/07/2009 2454.45 195 14/07/2009 2428.75 196 15/07/2009 2383.72 197 16/07/2009 2327.93 198 17/07/2009 2281.59 199 18/07/2009 2239.45 200 19/07/2009 2224.17 201 20/07/2009 2252.42 202 21/07/2009 2331.15 203 22/07/2009 2457.02 204 23/07/2009 2607.37 205 24/07/2009 2734.67 206 25/07/2009 2812.37 207 26/07/2009 2830.16 208 27/07/2009 2801.03 209 28/07/2009 2742.15 210 29/07/2009 2663.42 211 30/07/2009 2577.71 212 31/07/2009 2488.23 213 01/08/2009 2399.60 214 02/08/2009 2322.66 215 03/08/2009 2245.76 216 04/08/2009 2168.19 217 05/08/2009 2092.72 218 06/08/2009 2016.77 219 07/08/2009 1948.64 220 08/08/2009 1896.38 221 09/08/2009 1846.41 222 10/08/2009 1797.23 223 11/08/2009 1753.89 224 12/08/2009 1717.63 225 13/08/2009 1684.85 226 14/08/2009 1655.49 227 15/08/2009 1603.51 228 16/08/2009 1593.70 229 17/08/2009 1577.43 230 18/08/2009 1555.87 231 19/08/2009 1523.75 232 20/08/2009 1490.45 233 21/08/2009 1459.53 234 22/08/2009 1427.86 235 23/08/2009 1394.38 236 24/08/2009 1334.37 237 25/08/2009 1320.96 238 26/08/2009 1299.54 239 27/08/2009 1272.90 240 28/08/2009 1245.32 241 29/08/2009 1218.68 242 30/08/2009 1192.49 243 31/08/2009 1163.92 244 01/09/2009 1148.15 245 02/09/2009 1142.36 246 03/09/2009 1133.54 247 04/09/2009 1126.05 248 05/09/2009 1119.94 249 06/09/2009 1112.67 250 07/09/2009 1102.35 251 08/09/2009 1091.04 252 09/09/2009 1079.60 253 10/09/2009 1068.35 254 11/09/2009 1057.26 255 12/09/2009 1046.23 256 13/09/2009 1035.47 257 14/09/2009 1025.34 258 15/09/2009 1016.64 259 16/09/2009 1005.78 260 17/09/2009 992.94 261 18/09/2009 978.84 262 19/09/2009 964.23 263 20/09/2009 950.09 264 21/09/2009 937.14 265 22/09/2009 924.41 266 23/09/2009 913.54 267 24/09/2009 904.06 268 25/09/2009 895.68 269 26/09/2009 887.91 270 27/09/2009 880.39 271 28/09/2009 872.88 272 29/09/2009 865.41 273 30/09/2009 857.75 274 01/10/2009 850.58 275 02/10/2009 843.38 276 03/10/2009 834.48 277 04/10/2009 826.11 278 05/10/2009 826.02 279 06/10/2009 835.68 280 07/10/2009 856.87 281 08/10/2009 886.31 282 09/10/2009 911.01 283 10/10/2009 933.18 284 11/10/2009 953.40 285 12/10/2009 970.23 286 13/10/2009 980.44 287 14/10/2009 981.56 288 15/10/2009 976.18 289 16/10/2009 972.33 290 17/10/2009 974.84 291 18/10/2009 985.18 292 19/10/2009 1000.13 293 20/10/2009 1015.79 294 21/10/2009 1028.41 295 22/10/2009 1045.56 296 23/10/2009 1067.39 297 24/10/2009 1088.24 298 25/10/2009 1104.33 299 26/10/2009 1112.29 300 27/10/2009 1113.13 301 28/10/2009 1103.14 302 29/10/2009 1088.92 303 30/10/2009 1071.69 304 31/10/2009 1053.07 305 01/11/2009 1046.73 306 02/11/2009 1066.47 307 03/11/2009 1119.44 308 04/11/2009 1184.96 309 05/11/2009 1251.52 310 06/11/2009 1303.57 311 07/11/2009 1336.03 312 08/11/2009 1357.67 313 09/11/2009 1381.12 314 10/11/2009 1420.20 315 11/11/2009 1474.19 316 12/11/2009 1527.38 317 13/11/2009 1567.99 318 14/11/2009 1592.02 319 15/11/2009 1601.44 320 16/11/2009 1606.30 321 17/11/2009 1618.06 322 18/11/2009 1641.81 323 19/11/2009 1662.99 324 20/11/2009 1669.48 325 21/11/2009 1661.83 326 22/11/2009 1645.29 327 23/11/2009 1647.95 328 24/11/2009 1676.52 329 25/11/2009 1711.59 330 26/11/2009 1725.34 331 27/11/2009 1725.48 332 28/11/2009 1734.97 333 29/11/2009 1761.72 334 30/11/2009 1787.03 335 01/12/2009 1790.52 336 02/12/2009 1773.69 337 03/12/2009 1756.48 338 04/12/2009 1753.62 339 05/12/2009 1777.92 340 06/12/2009 1834.28 341 07/12/2009 1918.90 342 08/12/2009 2014.36 343 09/12/2009 2097.81 344 10/12/2009 2173.37 345 11/12/2009 2250.47 346 12/12/2009 2325.12 347 13/12/2009 2379.03 348 14/12/2009 2407.79 349 15/12/2009 2415.38 350 16/12/2009 2402.94 351 17/12/2009 2369.32 352 18/12/2009 2315.07 353 19/12/2009 2243.52 354 20/12/2009 2160.05 355 21/12/2009 2070.42 356 22/12/2009 1985.75 357 23/12/2009 1915.76 358 24/12/2009 1865.72 359 25/12/2009 1852.74 360 26/12/2009 1871.78 361 27/12/2009 1917.68 362 28/12/2009 1973.64 363 29/12/2009 2041.98 364 30/12/2009 2128.47 365 31/12/2009 2272.27 366 01/01/2010 2462.76 367 02/01/2010 2660.21 368 03/01/2010 2840.09 369 04/01/2010 2970.45 370 05/01/2010 3023.23 371 06/01/2010 2993.66 372 07/01/2010 2898.88 373 08/01/2010 2763.85 374 09/01/2010 2610.92 375 10/01/2010 2456.12 376 11/01/2010 2308.78 377 12/01/2010 2173.62 378 13/01/2010 2052.03 379 14/01/2010 1945.18 380 15/01/2010 1851.17 381 16/01/2010 1775.81 382 17/01/2010 1721.10 383 18/01/2010 1698.09 384 19/01/2010 1712.46 385 20/01/2010 1744.46 386 21/01/2010 1778.01 387 22/01/2010 1805.35 388 23/01/2010 1821.93 389 24/01/2010 1823.97 390 25/01/2010 1809.84 391 26/01/2010 1780.63 392 27/01/2010 1739.62 393 28/01/2010 1695.29 394 29/01/2010 1650.97 395 30/01/2010 1601.10 396 31/01/2010 1548.89 397 01/02/2010 1498.67 398 02/02/2010 1462.46 399 03/02/2010 1429.25 400 04/02/2010 1406.42
Start: 09:23:41.366151
End: 09:23:51.572995
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[13th Rhine 30min with daily init save-model12]</td>
<td class="col-duration">1.86</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_13 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_13.ini
Description: 13th Rhine 30min with daily init save
Changes: ['calc_evaporation = False', 'save_initial = True', 'StepInit = 01/01/2009 15d', 'StepEnd = 40', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_13.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22 11 11/01/2009 4.24 12 12/01/2009 4.81 13 13/01/2009 5.29 14 14/01/2009 5.69 15 15/01/2009 6.06 16 16/01/2009 6.43 17 17/01/2009 6.80 18 18/01/2009 8.43 19 19/01/2009 10.95 20 20/01/2009 13.30 21 21/01/2009 15.64 22 22/01/2009 18.31 23 23/01/2009 24.73 24 24/01/2009 33.04 25 25/01/2009 43.15 26 26/01/2009 53.56 27 27/01/2009 64.62 28 28/01/2009 78.90 29 29/01/2009 100.55 30 30/01/2009 133.48 31 31/01/2009 178.92 32 01/02/2009 233.43 33 02/02/2009 290.04 34 03/02/2009 340.17 35 04/02/2009 378.15 36 05/02/2009 402.67 37 06/02/2009 413.61 38 07/02/2009 415.07 39 08/02/2009 408.84 40 09/02/2009 408.54
Start: 09:23:52.595657
End: 09:23:53.437827
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[14th Rhine 30min with monthly init save-model13]</td>
<td class="col-duration">0.56</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_14 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_14.ini
Description: 14th Rhine 30min with monthly init save
Changes: ['calc_evaporation = False', 'save_initial = True', 'StepInit = 01/01/2009 2m', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_14.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:23:53.761651
End: 09:23:54.005134
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[15th Rhine 30min with yearly init save-model14]</td>
<td class="col-duration">0.57</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_15 =====
Setting file: ./settings/30min/rhine_30min\settings_rhine_30min_15.ini
Description: 15th Rhine 30min with yearly init save
Changes: ['calc_evaporation = False', 'save_initial = True', 'StepInit = 01/01/2009 2y', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min\settings_rhine_30min_15.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:23:54.341778
End: 09:23:54.585885
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min ETP 2-model15]</td>
<td class="col-duration">1.59</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_1 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_01.ini
Description: Additional tests 30min ETP 2
Changes: ['PET_modus = 2', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_01.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.20 3 03/01/2009 4.20 4 04/01/2009 4.20 5 05/01/2009 4.21 6 06/01/2009 4.22 7 07/01/2009 4.22 8 08/01/2009 4.25 9 09/01/2009 4.28 10 10/01/2009 4.33
Start: 09:23:55.630613
End: 09:23:56.181553
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min ETP 4-model16]</td>
<td class="col-duration">1.49</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_2 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_02.ini
Description: Additional tests 30min ETP 4
Changes: ['PET_modus = 4', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_02.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.20 3 03/01/2009 4.20 4 04/01/2009 4.20 5 05/01/2009 4.21 6 06/01/2009 4.22 7 07/01/2009 4.23 8 08/01/2009 4.25 9 09/01/2009 4.29 10 10/01/2009 4.33
Start: 09:23:57.219280
End: 09:23:57.677611
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min ETP 3-model17]</td>
<td class="col-duration">1.47</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_3 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_03.ini
Description: Additional tests 30min ETP 3
Changes: ['PET_modus = 3', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['co2conc = $(FILE_PATHS:PathMaps)/RCP_CO2/rcp26.nc4']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_03.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:23:58.663981
End: 09:23:59.157903
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min waterbalance-model18]</td>
<td class="col-duration">1.48</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_4 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_04.ini
Description: Additional tests 30min waterbalance
Changes: ['calcWaterBalance = True', 'sumWaterBalance = True', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_04.ini
Step Date Discharge
Soil_all 0.00000000
WaterdemandSum 0.00000000
1 01/01/2009 4.20 Soil_all 0.00000000
WaterdemandSum 0.00000000
2 02/01/2009 4.19 Soil_all 0.00000000
WaterdemandSum 0.00000000
3 03/01/2009 4.18 Soil_all 0.00000000
WaterdemandSum 0.00000000
4 04/01/2009 4.17 Soil_all 0.00000000
WaterdemandSum 0.00000000
5 05/01/2009 4.17 Soil_all 0.00000000
WaterdemandSum 0.00000000
6 06/01/2009 4.16 Soil_all 0.00000000
WaterdemandSum 0.00000000
7 07/01/2009 4.16 Soil_all 0.00000000
WaterdemandSum 0.00000000
8 08/01/2009 4.18 Soil_all 0.00000000
WaterdemandSum 0.00000000
9 09/01/2009 4.20 Soil_all 0.00000000
WaterdemandSum 0.00000000
10 10/01/2009 4.22
Start: 09:24:00.145072
End: 09:24:00.639900
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min waterquality-model19]</td>
<td class="col-duration">1.47</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_5 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_05.ini
Description: Additional tests 30min waterquality
Changes: ['waterquality = True', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_05.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22
Start: 09:24:01.633314
End: 09:24:02.115113
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min environmental flow-model20]</td>
<td class="col-duration">36.88</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_6 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_06.ini
Description: Additional tests 30min environmental flow
Changes: ['calc_environflow = True', 'StepEnd = 31/12/2010', 'calc_ef_afterRun = True', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_MAP_Daily = discharge', 'OUT_MAP_12month = MMF, MQ90, EF_VMF', 'OUT_MAP_Once = MAF, Q90']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_06.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22 11 11/01/2009 4.23 12 12/01/2009 4.80 13 13/01/2009 5.28 14 14/01/2009 5.67 15 15/01/2009 6.04 16 16/01/2009 6.41 17 17/01/2009 6.78 18 18/01/2009 8.40 19 19/01/2009 10.91 20 20/01/2009 13.25 21 21/01/2009 15.58 22 22/01/2009 18.24 23 23/01/2009 24.62 24 24/01/2009 32.86 25 25/01/2009 42.88 26 26/01/2009 53.20 27 27/01/2009 64.17 28 28/01/2009 78.34 29 29/01/2009 99.80 30 30/01/2009 132.49 31 31/01/2009 177.65 32 01/02/2009 231.91 33 02/02/2009 288.37 34 03/02/2009 338.48 35 04/02/2009 376.56 36 05/02/2009 401.24 37 06/02/2009 412.36 38 07/02/2009 413.99 39 08/02/2009 407.90 40 09/02/2009 407.69 41 10/02/2009 467.73 42 11/02/2009 618.37 43 12/02/2009 713.71 44 13/02/2009 729.52 45 14/02/2009 705.39 46 15/02/2009 670.85 47 16/02/2009 691.21 48 17/02/2009 744.12 49 18/02/2009 800.97 50 19/02/2009 818.97 51 20/02/2009 816.58 52 21/02/2009 818.29 53 22/02/2009 839.10 54 23/02/2009 886.55 55 24/02/2009 935.81 56 25/02/2009 959.79 57 26/02/2009 963.82 58 27/02/2009 973.00 59 28/02/2009 993.14 60 01/03/2009 1002.10 61 02/03/2009 989.96 62 03/03/2009 960.24 63 04/03/2009 920.01 64 05/03/2009 992.82 65 06/03/2009 1313.30 66 07/03/2009 1717.57 67 08/03/2009 1895.72 68 09/03/2009 1941.41 69 10/03/2009 2171.82 70 11/03/2009 2491.19 71 12/03/2009 2765.16 72 13/03/2009 3019.47 73 14/03/2009 3167.65 74 15/03/2009 3194.42 75 16/03/2009 3121.95 76 17/03/2009 2981.63 77 18/03/2009 2803.22 78 19/03/2009 2608.28 79 20/03/2009 2411.25 80 21/03/2009 2220.04 81 22/03/2009 2038.86 82 23/03/2009 1882.34 83 24/03/2009 1745.42 84 25/03/2009 1781.77 85 26/03/2009 2013.82 86 27/03/2009 2189.00 87 28/03/2009 2310.53 88 29/03/2009 2284.54 89 30/03/2009 2137.19 90 31/03/2009 1978.51 91 01/04/2009 1859.03 92 02/04/2009 1781.92 93 03/04/2009 1733.74 94 04/04/2009 1699.16 95 05/04/2009 1665.10 96 06/04/2009 1623.46 97 07/04/2009 1571.99 98 08/04/2009 1510.73 99 09/04/2009 1442.14 100 10/04/2009 1368.82 101 11/04/2009 1295.24 102 12/04/2009 1222.98 103 13/04/2009 1154.81 104 14/04/2009 1091.71 105 15/04/2009 1033.02 106 16/04/2009 984.71 107 17/04/2009 1000.41 108 18/04/2009 1053.98 109 19/04/2009 1051.65 110 20/04/2009 1008.80 111 21/04/2009 951.29 112 22/04/2009 894.41 113 23/04/2009 844.06 114 24/04/2009 800.86 115 25/04/2009 764.39 116 26/04/2009 734.00 117 27/04/2009 708.40 118 28/04/2009 687.16 119 29/04/2009 667.04 120 30/04/2009 646.10 121 01/05/2009 625.40 122 02/05/2009 604.47 123 03/05/2009 584.63 124 04/05/2009 565.58 125 05/05/2009 549.60 126 06/05/2009 535.23 127 07/05/2009 522.01 128 08/05/2009 511.72 129 09/05/2009 508.14 130 10/05/2009 508.97 131 11/05/2009 519.32 132 12/05/2009 538.45 133 13/05/2009 559.38 134 14/05/2009 580.24 135 15/05/2009 610.25 136 16/05/2009 645.03 137 17/05/2009 689.41 138 18/05/2009 738.16 139 19/05/2009 796.12 140 20/05/2009 859.19 141 21/05/2009 918.40 142 22/05/2009 964.40 143 23/05/2009 991.33 144 24/05/2009 1000.19 145 25/05/2009 995.40 146 26/05/2009 984.89 147 27/05/2009 972.28 148 28/05/2009 961.97 149 29/05/2009 956.92 150 30/05/2009 961.36 151 31/05/2009 978.28 152 01/06/2009 1007.36 153 02/06/2009 1046.43 154 03/06/2009 1091.02 155 04/06/2009 1134.99 156 05/06/2009 1171.54 157 06/06/2009 1198.40 158 07/06/2009 1212.85 159 08/06/2009 1208.13 160 09/06/2009 1195.02 161 10/06/2009 1176.93 162 11/06/2009 1159.19 163 12/06/2009 1120.91 164 13/06/2009 1072.30 165 14/06/2009 1024.40 166 15/06/2009 991.12 167 16/06/2009 985.84 168 17/06/2009 985.90 169 18/06/2009 994.91 170 19/06/2009 1011.87 171 20/06/2009 1034.81 172 21/06/2009 1060.79 173 22/06/2009 1085.60 174 23/06/2009 1107.15 175 24/06/2009 1124.44 176 25/06/2009 1138.48 177 26/06/2009 1151.14 178 27/06/2009 1169.85 179 28/06/2009 1188.74 180 29/06/2009 1204.55 181 30/06/2009 1219.75 182 01/07/2009 1231.90 183 02/07/2009 1245.38 184 03/07/2009 1275.49 185 04/07/2009 1294.04 186 05/07/2009 1307.08 187 06/07/2009 1318.45 188 07/07/2009 1332.32 189 08/07/2009 1367.25 190 09/07/2009 1411.05 191 10/07/2009 1465.88 192 11/07/2009 1526.56 193 12/07/2009 1589.22 194 13/07/2009 1625.45 195 14/07/2009 1633.91 196 15/07/2009 1620.58 197 16/07/2009 1591.74 198 17/07/2009 1576.37 199 18/07/2009 1546.93 200 19/07/2009 1545.87 201 20/07/2009 1593.97 202 21/07/2009 1719.74 203 22/07/2009 1952.56 204 23/07/2009 2338.16 205 24/07/2009 2833.48 206 25/07/2009 3146.99 207 26/07/2009 3252.21 208 27/07/2009 3217.29 209 28/07/2009 3092.57 210 29/07/2009 2912.70 211 30/07/2009 2710.99 212 31/07/2009 2500.82 213 01/08/2009 2295.83 214 02/08/2009 2118.71 215 03/08/2009 1946.87 216 04/08/2009 1784.59 217 05/08/2009 1636.80 218 06/08/2009 1504.21 219 07/08/2009 1387.03 220 08/08/2009 1294.08 221 09/08/2009 1210.10 222 10/08/2009 1128.20 223 11/08/2009 1054.84 224 12/08/2009 994.91 225 13/08/2009 937.83 226 14/08/2009 885.80 227 15/08/2009 837.47 228 16/08/2009 794.06 229 17/08/2009 755.33 230 18/08/2009 720.85 231 19/08/2009 690.02 232 20/08/2009 662.62 233 21/08/2009 638.99 234 22/08/2009 617.86 235 23/08/2009 598.21 236 24/08/2009 579.72 237 25/08/2009 572.16 238 26/08/2009 562.58 239 27/08/2009 548.42 240 28/08/2009 531.60 241 29/08/2009 515.25 242 30/08/2009 496.47 243 31/08/2009 477.71 244 01/09/2009 467.87 245 02/09/2009 458.10 246 03/09/2009 447.11 247 04/09/2009 435.18 248 05/09/2009 424.39 249 06/09/2009 410.84 250 07/09/2009 396.57 251 08/09/2009 382.50 252 09/09/2009 369.36 253 10/09/2009 357.22 254 11/09/2009 346.04 255 12/09/2009 335.89 256 13/09/2009 327.06 257 14/09/2009 320.27 258 15/09/2009 315.31 259 16/09/2009 309.52 260 17/09/2009 303.99 261 18/09/2009 298.74 262 19/09/2009 294.09 263 20/09/2009 290.32 264 21/09/2009 286.88 265 22/09/2009 283.05 266 23/09/2009 279.18 267 24/09/2009 275.02 268 25/09/2009 270.55 269 26/09/2009 265.74 270 27/09/2009 260.65 271 28/09/2009 255.39 272 29/09/2009 250.36 273 30/09/2009 245.56 274 01/10/2009 241.23 275 02/10/2009 236.09 276 03/10/2009 230.67 277 04/10/2009 225.73 278 05/10/2009 229.84 279 06/10/2009 237.28 280 07/10/2009 269.52 281 08/10/2009 320.56 282 09/10/2009 364.92 283 10/10/2009 407.17 284 11/10/2009 466.38 285 12/10/2009 517.76 286 13/10/2009 528.59 287 14/10/2009 504.03 288 15/10/2009 462.19 289 16/10/2009 419.77 290 17/10/2009 386.30 291 18/10/2009 360.80 292 19/10/2009 339.63 293 20/10/2009 322.25 294 21/10/2009 310.34 295 22/10/2009 310.23 296 23/10/2009 319.18 297 24/10/2009 344.28 298 25/10/2009 379.11 299 26/10/2009 422.46 300 27/10/2009 469.64 301 28/10/2009 515.80 302 29/10/2009 556.50 303 30/10/2009 588.10 304 31/10/2009 609.39 305 01/11/2009 772.39 306 02/11/2009 958.02 307 03/11/2009 1255.57 308 04/11/2009 1479.29 309 05/11/2009 1722.95 310 06/11/2009 1762.29 311 07/11/2009 1785.90 312 08/11/2009 1746.94 313 09/11/2009 1754.25 314 10/11/2009 1877.28 315 11/11/2009 2050.70 316 12/11/2009 2163.49 317 13/11/2009 2223.85 318 14/11/2009 2220.34 319 15/11/2009 2186.39 320 16/11/2009 2210.28 321 17/11/2009 2309.32 322 18/11/2009 2461.77 323 19/11/2009 2581.93 324 20/11/2009 2636.65 325 21/11/2009 2617.61 326 22/11/2009 2533.61 327 23/11/2009 2902.51 328 24/11/2009 2952.56 329 25/11/2009 2811.60 330 26/11/2009 2572.01 331 27/11/2009 2448.95 332 28/11/2009 2555.98 333 29/11/2009 2648.21 334 30/11/2009 2643.91 335 01/12/2009 2539.84 336 02/12/2009 2415.50 337 03/12/2009 2379.73 338 04/12/2009 2359.16 339 05/12/2009 2532.15 340 06/12/2009 2830.05 341 07/12/2009 3144.17 342 08/12/2009 3459.33 343 09/12/2009 3696.43 344 10/12/2009 4010.39 345 11/12/2009 4288.79 346 12/12/2009 4355.37 347 13/12/2009 4274.20 348 14/12/2009 4137.25 349 15/12/2009 3975.02 350 16/12/2009 3781.58 351 17/12/2009 3551.44 352 18/12/2009 3291.77 353 19/12/2009 3017.31 354 20/12/2009 2743.37 355 21/12/2009 2481.54 356 22/12/2009 2259.05 357 23/12/2009 2106.50 358 24/12/2009 2015.04 359 25/12/2009 2235.77 360 26/12/2009 2374.40 361 27/12/2009 2522.21 362 28/12/2009 2662.19 363 29/12/2009 3032.09 364 30/12/2009 3547.33 365 31/12/2009 4337.43 366 01/01/2010 5259.66 367 02/01/2010 6096.69 368 03/01/2010 6574.04 369 04/01/2010 6545.64 370 05/01/2010 6129.35 371 06/01/2010 5525.04 372 07/01/2010 4881.15 373 08/01/2010 4275.23 374 09/01/2010 3737.33 375 10/01/2010 3273.05 376 11/01/2010 2876.95 377 12/01/2010 2540.15 378 13/01/2010 2253.15 379 14/01/2010 2009.15 380 15/01/2010 1799.42 381 16/01/2010 1633.14 382 17/01/2010 1563.63 383 18/01/2010 1504.46 384 19/01/2010 1460.71 385 20/01/2010 1424.26 386 21/01/2010 1392.34 387 22/01/2010 1367.10 388 23/01/2010 1345.47 389 24/01/2010 1320.79 390 25/01/2010 1287.91 391 26/01/2010 1244.73 392 27/01/2010 1192.00 393 28/01/2010 1138.28 394 29/01/2010 1090.54 395 30/01/2010 1034.01 396 31/01/2010 967.71 397 01/02/2010 900.38 398 02/02/2010 946.71 399 03/02/2010 887.86 400 04/02/2010 883.78 401 05/02/2010 960.49 402 06/02/2010 1033.55 403 07/02/2010 1160.70 404 08/02/2010 1382.29 405 09/02/2010 1664.93 406 10/02/2010 1914.09 407 11/02/2010 2054.04 408 12/02/2010 2072.25 409 13/02/2010 1998.73 410 14/02/2010 1872.42 411 15/02/2010 1723.47 412 16/02/2010 1571.09 413 17/02/2010 1425.85 414 18/02/2010 1299.31 415 19/02/2010 1188.70 416 20/02/2010 1090.93 417 21/02/2010 1006.75 418 22/02/2010 962.81 419 23/02/2010 1139.80 420 24/02/2010 1708.18 421 25/02/2010 2620.30 422 26/02/2010 3790.94 423 27/02/2010 5084.94 424 28/02/2010 7089.68 425 01/03/2010 8398.71 426 02/03/2010 8487.63 427 03/03/2010 7905.80 428 04/03/2010 7069.24 429 05/03/2010 6218.28 430 06/03/2010 5381.78 431 07/03/2010 4657.82 432 08/03/2010 4043.80 433 09/03/2010 3527.49 434 10/03/2010 3094.58 435 11/03/2010 2731.07 436 12/03/2010 2430.41 437 13/03/2010 2174.23 438 14/03/2010 1962.70 439 15/03/2010 1823.29 440 16/03/2010 1761.99 441 17/03/2010 1709.76 442 18/03/2010 1634.54 443 19/03/2010 1558.52 444 20/03/2010 1732.58 445 21/03/2010 1893.74 446 22/03/2010 1915.38 447 23/03/2010 1781.72 448 24/03/2010 1610.17 449 25/03/2010 1466.52 450 26/03/2010 1395.66 451 27/03/2010 1440.65 452 28/03/2010 1525.37 453 29/03/2010 1659.81 454 30/03/2010 1828.95 455 31/03/2010 1925.41 456 01/04/2010 1957.99 457 02/04/2010 1973.44 458 03/04/2010 2008.11 459 04/04/2010 2065.55 460 05/04/2010 2124.09 461 06/04/2010 2188.65 462 07/04/2010 2246.05 463 08/04/2010 2281.85 464 09/04/2010 2279.79 465 10/04/2010 2236.24 466 11/04/2010 2156.07 467 12/04/2010 2048.10 468 13/04/2010 1924.10 469 14/04/2010 1794.49 470 15/04/2010 1666.18 471 16/04/2010 1544.19 472 17/04/2010 1430.34 473 18/04/2010 1325.28 474 19/04/2010 1229.44 475 20/04/2010 1142.12 476 21/04/2010 1062.94 477 22/04/2010 990.62 478 23/04/2010 924.44 479 24/04/2010 863.80 480 25/04/2010 808.26 481 26/04/2010 758.34 482 27/04/2010 712.54 483 28/04/2010 670.28 484 29/04/2010 631.79 485 30/04/2010 597.49 486 01/05/2010 567.04 487 02/05/2010 551.84 488 03/05/2010 534.38 489 04/05/2010 514.98 490 05/05/2010 496.59 491 06/05/2010 485.67 492 07/05/2010 486.70 493 08/05/2010 497.95 494 09/05/2010 528.89 495 10/05/2010 593.87 496 11/05/2010 720.33 497 12/05/2010 906.57 498 13/05/2010 1122.27 499 14/05/2010 1343.03 500 15/05/2010 1547.19 501 16/05/2010 1722.73 502 17/05/2010 1871.69 503 18/05/2010 1977.94 504 19/05/2010 2038.89 505 20/05/2010 2057.29 506 21/05/2010 2038.90 507 22/05/2010 1991.27 508 23/05/2010 1922.72 509 24/05/2010 1840.37 510 25/05/2010 1749.81 511 26/05/2010 1669.59 512 27/05/2010 1586.85 513 28/05/2010 1503.52 514 29/05/2010 1427.79 515 30/05/2010 1377.42 516 31/05/2010 1327.13 517 01/06/2010 1280.14 518 02/06/2010 1246.49 519 03/06/2010 1232.91 520 04/06/2010 1242.56 521 05/06/2010 1274.11 522 06/06/2010 1322.59 523 07/06/2010 1378.74 524 08/06/2010 1431.67 525 09/06/2010 1479.72 526 10/06/2010 1519.89 527 11/06/2010 1546.47 528 12/06/2010 1567.17 529 13/06/2010 1599.51 530 14/06/2010 1649.64 531 15/06/2010 1711.83 532 16/06/2010 1774.50 533 17/06/2010 1828.10 534 18/06/2010 1875.16 535 19/06/2010 1925.96 536 20/06/2010 1985.95 537 21/06/2010 2054.85 538 22/06/2010 2132.01 539 23/06/2010 2217.27 540 24/06/2010 2306.54 541 25/06/2010 2388.39 542 26/06/2010 2444.65 543 27/06/2010 2460.75 544 28/06/2010 2431.57 545 29/06/2010 2361.86 546 30/06/2010 2263.06 547 01/07/2010 2145.71 548 02/07/2010 2021.01 549 03/07/2010 1911.54 550 04/07/2010 1810.03 551 05/07/2010 1715.85 552 06/07/2010 1622.98 553 07/07/2010 1539.99 554 08/07/2010 1469.59 555 09/07/2010 1411.89 556 10/07/2010 1370.44 557 11/07/2010 1340.84 558 12/07/2010 1314.43 559 13/07/2010 1287.66 560 14/07/2010 1258.37 561 15/07/2010 1225.06 562 16/07/2010 1188.22 563 17/07/2010 1149.10 564 18/07/2010 1106.43 565 19/07/2010 1061.42 566 20/07/2010 1014.96 567 21/07/2010 968.85 568 22/07/2010 927.77 569 23/07/2010 892.62 570 24/07/2010 855.40 571 25/07/2010 823.93 572 26/07/2010 811.06 573 27/07/2010 796.73 574 28/07/2010 798.85 575 29/07/2010 825.15 576 30/07/2010 857.70 577 31/07/2010 902.50 578 01/08/2010 969.68 579 02/08/2010 1061.80 580 03/08/2010 1160.35 581 04/08/2010 1266.34 582 05/08/2010 1357.71 583 06/08/2010 1417.01 584 07/08/2010 1446.82 585 08/08/2010 1475.62 586 09/08/2010 1492.82 587 10/08/2010 1518.88 588 11/08/2010 1580.41 589 12/08/2010 1668.68 590 13/08/2010 1776.01 591 14/08/2010 1867.42 592 15/08/2010 2137.48 593 16/08/2010 2473.87 594 17/08/2010 2596.00 595 18/08/2010 2677.55 596 19/08/2010 2851.89 597 20/08/2010 3200.99 598 21/08/2010 3638.91 599 22/08/2010 4009.84 600 23/08/2010 4364.99 601 24/08/2010 4412.99 602 25/08/2010 4216.37 603 26/08/2010 4815.13 604 27/08/2010 5290.17 605 28/08/2010 5147.98 606 29/08/2010 4706.64 607 30/08/2010 4395.23 608 31/08/2010 3867.17 609 01/09/2010 3347.26 610 02/09/2010 2956.19 611 03/09/2010 2697.04 612 04/09/2010 2534.13 613 05/09/2010 2425.35 614 06/09/2010 2335.24 615 07/09/2010 2294.87 616 08/09/2010 2335.53 617 09/09/2010 2390.54 618 10/09/2010 2393.66 619 11/09/2010 2366.47 620 12/09/2010 2343.99 621 13/09/2010 2306.97 622 14/09/2010 2248.30 623 15/09/2010 2158.24 624 16/09/2010 2061.07 625 17/09/2010 1933.09 626 18/09/2010 1803.25 627 19/09/2010 1677.51 628 20/09/2010 1560.62 629 21/09/2010 1455.61 630 22/09/2010 1362.29 631 23/09/2010 1279.87 632 24/09/2010 1240.21 633 25/09/2010 1270.84 634 26/09/2010 1280.65 635 27/09/2010 1259.46 636 28/09/2010 1224.21 637 29/09/2010 1172.99 638 30/09/2010 1122.80 639 01/10/2010 1078.59 640 02/10/2010 1109.36 641 03/10/2010 1152.03 642 04/10/2010 1176.75 643 05/10/2010 1174.14 644 06/10/2010 1159.88 645 07/10/2010 1143.39 646 08/10/2010 1126.19 647 09/10/2010 1106.60 648 10/10/2010 1083.06 649 11/10/2010 1055.38 650 12/10/2010 1024.61 651 13/10/2010 992.09 652 14/10/2010 959.13 653 15/10/2010 938.26 654 16/10/2010 916.93 655 17/10/2010 893.22 656 18/10/2010 866.86 657 19/10/2010 856.73 658 20/10/2010 879.27 659 21/10/2010 902.59 660 22/10/2010 894.34 661 23/10/2010 860.74 662 24/10/2010 818.51 663 25/10/2010 774.69 664 26/10/2010 736.19 665 27/10/2010 712.06 666 28/10/2010 688.94 667 29/10/2010 674.00 668 30/10/2010 667.15 669 31/10/2010 671.22 670 01/11/2010 678.11 671 02/11/2010 687.72 672 03/11/2010 721.19 673 04/11/2010 732.31 674 05/11/2010 819.86 675 06/11/2010 1234.50 676 07/11/2010 1569.88 677 08/11/2010 1644.77 678 09/11/2010 1631.43 679 10/11/2010 1689.18 680 11/11/2010 1942.40 681 12/11/2010 2478.99 682 13/11/2010 4471.01 683 14/11/2010 6191.16 684 15/11/2010 5746.58 685 16/11/2010 5091.38 686 17/11/2010 4638.96 687 18/11/2010 4375.56 688 19/11/2010 4221.22 689 20/11/2010 4090.21 690 21/11/2010 3925.19 691 22/11/2010 3710.50 692 23/11/2010 3464.48 693 24/11/2010 3228.44 694 25/11/2010 3020.21 695 26/11/2010 2826.07 696 27/11/2010 2656.28 697 28/11/2010 2516.46 698 29/11/2010 2398.41 699 30/11/2010 2288.40 700 01/12/2010 2175.92 701 02/12/2010 2057.03 702 03/12/2010 1932.16 703 04/12/2010 1803.97 704 05/12/2010 1707.13 705 06/12/2010 1603.52 706 07/12/2010 1485.18 707 08/12/2010 1369.35 708 09/12/2010 1283.09 709 10/12/2010 1353.53 710 11/12/2010 1735.62 711 12/12/2010 2584.35 712 13/12/2010 3481.22 713 14/12/2010 4033.97 714 15/12/2010 4169.38 715 16/12/2010 4008.70 716 17/12/2010 3699.63 717 18/12/2010 3343.05 718 19/12/2010 2992.72 719 20/12/2010 2674.86 720 21/12/2010 2403.85 721 22/12/2010 2210.19 722 23/12/2010 2113.45 723 24/12/2010 2134.08 724 25/12/2010 2323.91 725 26/12/2010 2633.60 726 27/12/2010 2908.88 727 28/12/2010 3030.21 728 29/12/2010 2988.11 729 30/12/2010 2837.24 730 31/12/2010 2635.51
Start: 09:24:03.205943
End: 09:24:39.002470
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min add output-model21]</td>
<td class="col-duration">7.05</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_7 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_07.ini
Description: Additional tests 30min add output
Changes: ['StepEnd = 40', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['OUT_MAP_Daily = actualET[1]', 'OUT_TSS_monthend = discharge', 'OUT_TSS_totaltot = discharge', 'OUT_TSS_totalavg = discharge', 'OUT_MAP_monthend = discharge', 'OUT_MAP_monthtot = discharge', 'OUT_MAP_totaltot = discharge', 'OUT_MAP_totalavg = discharge', 'OUT_MAP_totalend = discharge']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_07.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17 5 05/01/2009 4.17 6 06/01/2009 4.16 7 07/01/2009 4.16 8 08/01/2009 4.18 9 09/01/2009 4.20 10 10/01/2009 4.22 11 11/01/2009 4.23 12 12/01/2009 4.80 13 13/01/2009 5.28 14 14/01/2009 5.67 15 15/01/2009 6.04 16 16/01/2009 6.41 17 17/01/2009 6.78 18 18/01/2009 8.40 19 19/01/2009 10.91 20 20/01/2009 13.25 21 21/01/2009 15.58 22 22/01/2009 18.24 23 23/01/2009 24.62 24 24/01/2009 32.86 25 25/01/2009 42.88 26 26/01/2009 53.20 27 27/01/2009 64.17 28 28/01/2009 78.34 29 29/01/2009 99.80 30 30/01/2009 132.49 31 31/01/2009 177.65 32 01/02/2009 231.91 33 02/02/2009 288.37 34 03/02/2009 338.48 35 04/02/2009 376.56 36 05/02/2009 401.24 37 06/02/2009 412.36 38 07/02/2009 413.99 39 08/02/2009 407.90 40 09/02/2009 407.69
Start: 09:24:44.091809
End: 09:24:46.062948
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests 30min covermap-model22]</td>
<td class="col-duration">1.15</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_8 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_08.ini
Description: Additional tests 30min covermap
Changes: ['StepEnd = 4', 'coverresult = True', 'covermap = $(FILE_PATHS:PathMaps)/areamaps/rhine30min.tif', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_08.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17
Start: 09:24:46.979563
End: 09:24:47.220395
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests .tif or .map-model23]</td>
<td class="col-duration">1.28</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_9 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_09.ini
Description: Additional tests .tif or .map
Changes: ['StepEnd = 4', 'Ldd = $(FILE_PATHS:PathMaps)/routing/ldd1.map', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21
International Institute of Applied Systems Analysis (IIASA)
Running under platform: Windows
-----------------------------------------------------------
CWATM Simulation Information and Setting
The simulation output as specified in the settings file: ./output/rhine can be found in ./settings/30min/rhine_30min_add\settings_rhineadd_30min_09.ini
Step Date Discharge
1 01/01/2009 4.20 2 02/01/2009 4.19 3 03/01/2009 4.18 4 04/01/2009 4.17
Start: 09:24:48.178488
End: 09:24:48.510496
<br/></div></td></tr></tbody>
<tbody class="passed results-table-row">
<tr>
<td class="col-result">Passed</td>
<td class="col-name">test_cwatm3.py::test_cwatm[Additional tests - store basin map-model24]</td>
<td class="col-duration">1.17</td></tr>
<tr>
<td class="extra" colspan="3">
<div class="log"> ------------------------------Captured stdout call------------------------------ <br/>
===== Rhine_30min_add_10 =====
Setting file: ./settings/30min/rhine_30min_add\settings_rhineadd_30min_10.ini
Description: Additional tests - store basin map
Changes: ['StepEnd = 4', 'savebasinmap = True', 'PathSystem = P:/', 'PathRoot = ./', 'PathInit = ./init', 'PathOut = ./output/rhine', 'PathMaps = P:/watmodel/CWATM/cwatm_input', 'PathMeteo = C:/climate/Isi-Mip2/wfdei']
Adds: ['']
CWATM - Community Water Model 1.4 Date: 2021/10/11 09:21