-
Notifications
You must be signed in to change notification settings - Fork 6
/
timing_example_3.txt
4418 lines (3988 loc) · 320 KB
/
timing_example_3.txt
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
SLURMD_NODENAME=nid002124
SLURM_CLUSTER_NAME=balfrin
SLURM_CONF=/var/spool/slurmd/conf-cache/slurm.conf
SLURM_CPUS_ON_NODE=128
SLURM_GPUS_PER_NODE=4
SLURM_GTIDS=0
SLURM_JOBID=661934
SLURM_JOB_CPUS_PER_NODE=128
SLURM_JOB_GID=30382
SLURM_JOB_GPUS=0,1,2,3
SLURM_JOB_ID=661934
SLURM_JOB_NAME=exp.mch_opr_r04b07_performance.run
SLURM_JOB_NODELIST=nid002124
SLURM_JOB_NUM_NODES=1
SLURM_JOB_PARTITION=normal
SLURM_JOB_QOS=normal
SLURM_JOB_UID=23489
SLURM_JOB_USER=huppd
SLURM_LOCALID=0
SLURM_NNODES=1
SLURM_NODEID=0
SLURM_NODELIST=nid002124
SLURM_NODE_ALIASES='(null)'
SLURM_NPROCS=4
SLURM_NTASKS=4
SLURM_NTASKS_PER_NODE=4
SLURM_PRIO_PROCESS=0
SLURM_PROCID=0
SLURM_SUBMIT_DIR=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run
SLURM_SUBMIT_HOST=balfrin-ln003
SLURM_TASKS_PER_NODE=4
SLURM_TASK_PID=20761
SLURM_TOPOLOGY_ADDR=nid002124
SLURM_TOPOLOGY_ADDR_PATTERN=node
SLURM_WORKING_CLUSTER=balfrin:10.252.124.27:6817:9216:101
+ icon_data_poolFolder=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch
+ grids_folder=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07
+ latbc_path=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07
+ dynamics_grid_filename=mch_opr_r4b7_DOM01.nc
+ atmo_dyn_grids=\''mch_opr_r4b7_DOM01.nc'\'','
+ radiation_grid_filename=mch_opr_r4b7_DOM01.parent.nc
+ atmo_rad_grids=\''mch_opr_r4b7_DOM01.parent.nc'\'','
+ start_date=2020-12-10T06:00:00Z
+ end_date=2020-12-10T07:00:00Z
+ atmo_namelist=NAMELIST_mch_opr_r04b07_performance_atm
+ extpar_filename=external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc
+ add_required_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc ./
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc
+ new_name=./
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc
+ output_required_file[$number_of_required_files]=./
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_link_file /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/externals/ecrad/data ecrad_data
+ in_name=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/externals/ecrad/data
+ new_name=ecrad_data
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/externals/ecrad/data
+ output_linked_file[$number_of_linked_files]=ecrad_data
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ add_required_file /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/ECHAM6_CldOptProps.nc rrtm_cldopt.nc
+ in_name=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/ECHAM6_CldOptProps.nc
+ new_name=rrtm_cldopt.nc
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/ECHAM6_CldOptProps.nc
+ output_required_file[$number_of_required_files]=rrtm_cldopt.nc
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_required_file /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/rrtmg_lw.nc .
+ in_name=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/rrtmg_lw.nc
+ new_name=.
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/rrtmg_lw.nc
+ output_required_file[$number_of_required_files]=.
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_required_file /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/ana_varnames_map_file.txt map_file.ana
+ in_name=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/ana_varnames_map_file.txt
+ new_name=map_file.ana
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/ana_varnames_map_file.txt
+ output_required_file[$number_of_required_files]=map_file.ana
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_required_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/map_file.latbc map_file.latbc
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/map_file.latbc
+ new_name=map_file.latbc
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/map_file.latbc
+ output_required_file[$number_of_required_files]=map_file.latbc
+ let ' number_of_required_files = number_of_required_files + 1 '
+ initial_condition=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc .
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc
+ new_name=.
+ new_name=./laf2020121006.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc
+ output_linked_file[$number_of_linked_files]=./laf2020121006.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ add_required_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/lateral_boundary.grid.nc lateral_boundary.grid.nc
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/lateral_boundary.grid.nc
+ new_name=lateral_boundary.grid.nc
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/lateral_boundary.grid.nc
+ output_required_file[$number_of_required_files]=lateral_boundary.grid.nc
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc .
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc
+ new_name=.
+ new_name=./efsf00000000_lbc.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc
+ output_linked_file[$number_of_linked_files]=./efsf00000000_lbc.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00010000_lbc.nc .
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00010000_lbc.nc
+ new_name=.
+ new_name=./efsf00010000_lbc.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00010000_lbc.nc
+ output_linked_file[$number_of_linked_files]=./efsf00010000_lbc.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00020000_lbc.nc .
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00020000_lbc.nc
+ new_name=.
+ new_name=./efsf00020000_lbc.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00020000_lbc.nc
+ output_linked_file[$number_of_linked_files]=./efsf00020000_lbc.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ dict_file=dict.mch_opr_r04b07_performance
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.mch_opr_r04b07_performance
+ cat /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.iconam.mpim
+ add_required_file /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.mch_opr_r04b07_performance .
+ in_name=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.mch_opr_r04b07_performance
+ new_name=.
+ input_required_file[$number_of_required_files]=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.mch_opr_r04b07_performance
+ output_required_file[$number_of_required_files]=.
+ let ' number_of_required_files = number_of_required_files + 1 '
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc ifs2icon_R4B10_DOM01.nc
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc
+ new_name=ifs2icon_R4B10_DOM01.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc
+ output_linked_file[$number_of_linked_files]=ifs2icon_R4B10_DOM01.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/NAMELIST_mch_opr_r04b07_performance_atm
+ <<EOF
+ cat
+ final_status_file=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.final_status
+ rm -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.final_status
+ RUNSCRIPTDIR=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run
+ '[' x/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07 '=' x ']'
+ HGRIDDIR=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07
+ make_and_change_to_experiment_dir
+ EXPDIR=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance
+ '[' ! -d /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance ']'
+ ls -ld /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance
drwxr-xr-x 2 huppd s83 4096 Jun 28 16:40 /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance
+ check_error 0 '/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance does not exist?'
+ '[' 0 '!=' 0 ']'
+ '[' '=' ']'
+ current_status_file=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ echo 0
+ cd /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance
+ final_status_file=/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.final_status
+ rm -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.final_status
+ '[' x '=' x ']'
+ minrank_list[0]=0
+ maxrank_list[0]=65535
+ incrank_list[0]=1
+ '[' xNAMELIST_mch_opr_r04b07_performance_atm '!=' x ']'
+ namelist_list[0]=NAMELIST_mch_opr_r04b07_performance_atm
+ modelname_list[0]=atmo
+ modeltype_list[0]=1
+ run_atmo=true
+ restart=.false.
+ restartSemaphoreFilename=isRestartRun.sem
+ '[' -f isRestartRun.sem ']'
+ '[' x.false. '!=' x.false. -a xsbatch '!=' x ']'
+ run_atmo=true
+ '[' xNAMELIST_mch_opr_r04b07_performance_atm '!=' x ']'
+ run_atmo=true
+ run_jsbach_standalone=false
+ run_jsbach=false
+ '[' x '!=' x ']'
+ run_ocean=false
+ '[' x '!=' x ']'
+ run_psrad=false
+ '[' x '!=' x ']'
+ run_hamocc=false
+ '[' x '!=' x ']'
+ all_grids=\''mch_opr_r4b7_DOM01.nc'\'', '\''mch_opr_r4b7_DOM01.parent.nc'\'', '
+ gridfile=mch_opr_r4b7_DOM01.nc,
+ gridfile=mch_opr_r4b7_DOM01.nc,
+ gridfile=mch_opr_r4b7_DOM01.nc
+ grfinfofile=mch_opr_r4b7_DOM01-grfinfo.nc
+ ls -l /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc
-rw-rw-r-- 1 jenkins s83ci 6824396 Dec 12 2022 /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc
+ check_error 0 '/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc does not exist.'
+ '[' 0 '!=' 0 ']'
+ '[' /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status '=' ']'
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ echo 0
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc ./
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc
+ new_name=./
+ new_name=./mch_opr_r4b7_DOM01.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc
+ output_linked_file[$number_of_linked_files]=./mch_opr_r4b7_DOM01.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ '[' -f /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01-grfinfo.nc ']'
+ gridfile=mch_opr_r4b7_DOM01.parent.nc,
+ gridfile=mch_opr_r4b7_DOM01.parent.nc,
+ gridfile=mch_opr_r4b7_DOM01.parent.nc
+ grfinfofile=mch_opr_r4b7_DOM01.parent-grfinfo.nc
+ ls -l /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc
-rwxrwxr-x 1 jenkins s83ci 1633184 Dec 14 2020 /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc
+ check_error 0 '/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc does not exist.'
+ '[' 0 '!=' 0 ']'
+ '[' /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status '=' ']'
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ echo 0
+ add_link_file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc ./
+ in_name=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc
+ new_name=./
+ new_name=./mch_opr_r4b7_DOM01.parent.nc
+ input_linked_file[$number_of_linked_files]=/scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc
+ output_linked_file[$number_of_linked_files]=./mch_opr_r4b7_DOM01.parent.nc
+ let ' number_of_linked_files = number_of_linked_files + 1 '
+ '[' -f /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent-grfinfo.nc ']'
+ copy_required_files
+ i=0
+ '[' 0 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc ./
+ let ' i=i+1 '
+ '[' 1 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/ECHAM6_CldOptProps.nc rrtm_cldopt.nc
+ let ' i=i+1 '
+ '[' 2 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/data/rrtmg_lw.nc .
+ let ' i=i+1 '
+ '[' 3 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/ana_varnames_map_file.txt map_file.ana
+ let ' i=i+1 '
+ '[' 4 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/map_file.latbc map_file.latbc
+ let ' i=i+1 '
+ '[' 5 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/lateral_boundary.grid.nc lateral_boundary.grid.nc
+ let ' i=i+1 '
+ '[' 6 -lt 7 ']'
+ cp -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/dict.mch_opr_r04b07_performance .
+ let ' i=i+1 '
+ '[' 7 -lt 7 ']'
+ link_required_files
+ i=0
+ '[' 0 -lt 8 ']'
+ rm -f ecrad_data
+ ln -s /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/externals/ecrad/data ecrad_data
+ let ' i=i+1 '
+ '[' 1 -lt 8 ']'
+ rm -f ./laf2020121006.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc ./laf2020121006.nc
+ let ' i=i+1 '
+ '[' 2 -lt 8 ']'
+ rm -f ./efsf00000000_lbc.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc ./efsf00000000_lbc.nc
+ let ' i=i+1 '
+ '[' 3 -lt 8 ']'
+ rm -f ./efsf00010000_lbc.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00010000_lbc.nc ./efsf00010000_lbc.nc
+ let ' i=i+1 '
+ '[' 4 -lt 8 ']'
+ rm -f ./efsf00020000_lbc.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00020000_lbc.nc ./efsf00020000_lbc.nc
+ let ' i=i+1 '
+ '[' 5 -lt 8 ']'
+ rm -f ifs2icon_R4B10_DOM01.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/laf2020121006.nc ifs2icon_R4B10_DOM01.nc
+ let ' i=i+1 '
+ '[' 6 -lt 8 ']'
+ rm -f ./mch_opr_r4b7_DOM01.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.nc ./mch_opr_r4b7_DOM01.nc
+ let ' i=i+1 '
+ '[' 7 -lt 8 ']'
+ rm -f ./mch_opr_r4b7_DOM01.parent.nc
+ ln -s /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/grids/opr_r04b07/mch_opr_r4b7_DOM01.parent.nc ./mch_opr_r4b7_DOM01.parent.nc
+ let ' i=i+1 '
+ '[' 8 -lt 8 ']'
+ '[' x '!=' x ']'
+ '[' x '!=' x ']'
+ read_restart_namelists=.true.
+ '[' -z ']'
+ master_namelist=icon_master.namelist
+ calendar='proleptic gregorian'
+ calendar_type=1
+ >icon_master.namelist
+ echo '&master_nml'
+ echo ' lrestart = .false.'
+ echo ' read_restart_namelists = .true.'
+ echo /
+ '[' -z ']'
+ echo '&master_time_control_nml'
+ echo ' calendar = '\''proleptic gregorian'\'
+ echo ' experimentStartDate = '\''2020-12-10T06:00:00Z'\'
+ echo ' restartTimeIntval = '\'\'
+ echo ' checkpointTimeIntval = '\'\'
+ '[' -n 2020-12-10T07:00:00Z ']'
+ echo ' experimentStopDate = '\''2020-12-10T07:00:00Z'\'
+ echo /
+ echo '&time_nml'
+ echo ' is_relative_time = .false.'
+ echo /
+ no_of_models=1
+ echo 'no_of_models=1'
no_of_models=1
+ rank_group_size=1
+ j=0
+ '[' 0 -lt 1 ']'
+ add_component_to_master_namelist NAMELIST_mch_opr_r04b07_performance_atm atmo 1 0 65535 1 1
+ model_namelist_filename=NAMELIST_mch_opr_r04b07_performance_atm
+ '[' x '!=' xset ']'
+ model_name=atmo
+ model_type=1
+ model_min_rank=0
+ model_max_rank=65535
+ model_inc_rank=1
+ model_rank_group_size=1
+ >>icon_master.namelist
+ <<EOF
+ cat
+ '[' -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/NAMELIST_mch_opr_r04b07_performance_atm ']'
+ mv -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/NAMELIST_mch_opr_r04b07_performance_atm /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance
+ check_error 0 'mv -f /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/NAMELIST_mch_opr_r04b07_performance_atm /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/experiments/mch_opr_r04b07_performance'
+ '[' 0 '!=' 0 ']'
+ '[' /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status '=' ']'
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ echo 0
+ expr 0 + 1
+ j=1
+ '[' 1 -lt 1 ']'
+ ls -l /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon
-rwxr-xr-x 1 huppd s83 150684392 Jun 27 12:36 /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon
+ check_error 0 '/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon does not exist?'
+ '[' 0 '!=' 0 ']'
+ '[' /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status '=' ']'
+ >/scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/exp.mch_opr_r04b07_performance.run.status
+ echo 0
+ ldd /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon
linux-vdso.so.1 (0x00007ffcc21a2000)
libxml2.so.2 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/libxml2-2.10.1-xytgxjlwt4ovrotxlsks5q7x6ud3f5sm/lib/libxml2.so.2 (0x0000145b37de9000)
libfyaml.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/libfyaml-0.7.12-qicv7kqtbiri7ghydxchoq67jysvmktg/lib/libfyaml.so.0 (0x0000145b37b44000)
libeccodes.so => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/eccodes-2.25.0-fo4erupuaqnmlrl3cpccweshz75jhe7i/lib64/libeccodes.so (0x0000145b375df000)
libopenblas.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/openblas-0.3.21-7tosnhm4sbffjlyqykgyffunqxhwhhrh/lib/libopenblas.so.0 (0x0000145b365d4000)
libnetcdff.so.7 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/netcdf-fortran-4.5.4-xrgwsg4h3e4qgfgieaaxgigtkktq3fau/lib/libnetcdff.so.7 (0x0000145b36182000)
libnetcdf.so.19 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/netcdf-c-4.8.1-p56lk4hyew465a6vdrfgxg32rhtw6adn/lib/libnetcdf.so.19 (0x0000145b35e2f000)
libcudart.so.11.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cuda-11.8.0-r4gjg5a7orkrdpr7atbgkwhyld5w6n5j/lib64/libcudart.so.11.0 (0x0000145b35b88000)
libmpifort_nvidia.so.12 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cray-mpich-8.1.18.4-nvhpc-sjnauwlshefieiajeeth23fy4uuvc6p4/lib/libmpifort_nvidia.so.12 (0x0000145b35937000)
libmpi_nvidia.so.12 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cray-mpich-8.1.18.4-nvhpc-sjnauwlshefieiajeeth23fy4uuvc6p4/lib/libmpi_nvidia.so.12 (0x0000145b32d11000)
libmpi_gtl_cuda.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cray-mpich-8.1.18.4-nvhpc-sjnauwlshefieiajeeth23fy4uuvc6p4/lib/libmpi_gtl_cuda.so.0 (0x0000145b32afb000)
libacchost.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libacchost.so (0x0000145b32899000)
libaccdevaux110.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libaccdevaux110.so (0x0000145b32686000)
libaccdevice.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libaccdevice.so (0x0000145b3235c000)
libdl.so.2 => /lib64/libdl.so.2 (0x0000145b32158000)
libcudadevice.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libcudadevice.so (0x0000145b31f41000)
libnvf.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libnvf.so (0x0000145b31841000)
libnvhpcatm.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libnvhpcatm.so (0x0000145b31636000)
libstdc++.so.6 => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/gcc-11.3.0-gyb6liat3gnkygiwzvrqjof2rnqw3krd/lib64/libstdc++.so.6 (0x0000145b311f6000)
libnvomp.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libnvomp.so (0x0000145b301f5000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x0000145b2ffd2000)
libnvcpumath.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libnvcpumath.so (0x0000145b2fbba000)
libnvc.so => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/nvhpc-23.3-bubpfon3axcnv5k2e2mrd6myvrgg3lby/Linux_x86_64/23.3/compilers/lib/libnvc.so (0x0000145b2f955000)
librt.so.1 => /lib64/librt.so.1 (0x0000145b2f74c000)
libc.so.6 => /lib64/libc.so.6 (0x0000145b2f357000)
libgcc_s.so.1 => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/gcc-11.3.0-gyb6liat3gnkygiwzvrqjof2rnqw3krd/lib64/libgcc_s.so.1 (0x0000145b2f13d000)
libm.so.6 => /lib64/libm.so.6 (0x0000145b2edf2000)
libz.so.1 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/zlib-1.2.12-4ukve7mwrtomgtauiptwzuh25z3ri5f5/lib/libz.so.1 (0x0000145b2ebcf000)
liblzma.so.5 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/xz-5.2.5-sw5pkslmtr7quixfrxj3xcmgz6l5yayx/lib/liblzma.so.5 (0x0000145b2e9a3000)
libiconv.so.2 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/libiconv-1.16-q6vgkz3qqkhcwg2qfz3nayqnfoiwazhf/lib/libiconv.so.2 (0x0000145b2e6a1000)
libjasper.so.4 => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/jasper-2.0.32-uxbdo4ouci5iwkw53hp2t6l3i5m362gb/lib64/libjasper.so.4 (0x0000145b2e43d000)
libjpeg.so.62 => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/libjpeg-turbo-2.1.3-csygbnwtphrssxfqvvqrlh4vqcpdt62z/lib64/libjpeg.so.62 (0x0000145b2e18e000)
libaec.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/libaec-1.0.6-dqdtcq2hrevy7b26elozbutem2naf7sl/lib64/libaec.so.0 (0x0000145b2df84000)
libhdf5_hl.so.200 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/hdf5-1.12.2-75o4uqjf2nstid5s6hrubigb2zo5tfx7/lib/libhdf5_hl.so.200 (0x0000145b2dd57000)
libhdf5.so.200 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/hdf5-1.12.2-75o4uqjf2nstid5s6hrubigb2zo5tfx7/lib/libhdf5.so.200 (0x0000145b2d3a7000)
/lib64/ld-linux-x86-64.so.2 (0x0000145b3829a000)
libfabric.so.1 => /opt/cray/libfabric/1.15.2.0/lib64/libfabric.so.1 (0x0000145b2d0b7000)
libatomic.so.1 => /mch-environment/v4/linux-sles15-zen3/gcc-11.3.0/gcc-11.3.0-gyb6liat3gnkygiwzvrqjof2rnqw3krd/lib64/libatomic.so.1 (0x0000145b2ceb0000)
libpmi.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cray-mpich-8.1.18.4-nvhpc-sjnauwlshefieiajeeth23fy4uuvc6p4/lib/libpmi.so.0 (0x0000145b2ccac000)
libpmi2.so.0 => /mch-environment/v4/linux-sles15-zen3/nvhpc-23.3/cray-mpich-8.1.18.4-nvhpc-sjnauwlshefieiajeeth23fy4uuvc6p4/lib/libpmi2.so.0 (0x0000145b2ca70000)
libcuda.so.1 => /usr/lib64/libcuda.so.1 (0x0000145b2b240000)
libcxi.so.1 => /usr/lib64/libcxi.so.1 (0x0000145b2b01b000)
libcurl.so.4 => /usr/lib64/libcurl.so.4 (0x0000145b2ad8f000)
libjson-c.so.3 => /usr/lib64/libjson-c.so.3 (0x0000145b2ab7f000)
libpals.so.0 => /usr/lib64/libpals.so.0 (0x0000145b2a97b000)
libnghttp2.so.14 => /usr/lib64/libnghttp2.so.14 (0x0000145b2a753000)
libidn2.so.0 => /usr/lib64/libidn2.so.0 (0x0000145b2a536000)
libssh.so.4 => /usr/lib64/libssh.so.4 (0x0000145b2a2b5000)
libpsl.so.5 => /usr/lib64/libpsl.so.5 (0x0000145b2a0a3000)
libssl.so.1.1 => /usr/lib64/libssl.so.1.1 (0x0000145b29e14000)
libcrypto.so.1.1 => /usr/lib64/libcrypto.so.1.1 (0x0000145b2992b000)
libgssapi_krb5.so.2 => /usr/lib64/libgssapi_krb5.so.2 (0x0000145b296d9000)
libldap_r-2.4.so.2 => /usr/lib64/libldap_r-2.4.so.2 (0x0000145b29485000)
liblber-2.4.so.2 => /usr/lib64/liblber-2.4.so.2 (0x0000145b29276000)
libunistring.so.2 => /usr/lib64/libunistring.so.2 (0x0000145b28ef3000)
libkrb5.so.3 => /usr/lib64/libkrb5.so.3 (0x0000145b28c1a000)
libk5crypto.so.3 => /usr/lib64/libk5crypto.so.3 (0x0000145b28a02000)
libcom_err.so.2 => /lib64/libcom_err.so.2 (0x0000145b287fe000)
libkrb5support.so.0 => /usr/lib64/libkrb5support.so.0 (0x0000145b285ef000)
libresolv.so.2 => /lib64/libresolv.so.2 (0x0000145b283d7000)
libsasl2.so.3 => /usr/lib64/libsasl2.so.3 (0x0000145b281ba000)
libkeyutils.so.1 => /usr/lib64/libkeyutils.so.1 (0x0000145b27fb5000)
libselinux.so.1 => /lib64/libselinux.so.1 (0x0000145b27d8c000)
libpcre.so.1 => /usr/lib64/libpcre.so.1 (0x0000145b27b03000)
+ rm -f finish.status
+ date
Wed 28 Jun 2023 04:42:35 PM CEST
+ set -x
+ srun -n 4 --ntasks-per-node 4 '--threads-per-core=1' '--distribution=cyclic' /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/run/run_wrapper/balfrin_gpu.sh /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon
ICON MPI interface runtime information:
mo_mpi::start_mpi Used MPI version: 3.1
mo_mpi::start_mpi ICON: Globally run on 4 mpi processes.
ICON runs on 4 mpi processes.
Repository: [email protected]:icon/icon-nwp.git
Branch : add_performance_test_on_balfrin
Revision : 86947d54b907e01920276d70bfbb3d44a3848672
Executable: /scratch/e1000/meteoswiss/scratch/huppd/add_performance_test/mch_gpu_mixed_v0.18.1.6/bin/icon at 20230628 164237
User : Daniel Hupp, MCH (huppd) on nid002124 (Linux 5.3.18-150300.59.87_11.0.78-cray_shasta_c x86_64)
GRIB-API : 2.25.0
nvfortran 23.3-0
master_control: start model initialization.
atmo runs on 4 mpi processes.
mo_name_list_output_init::read_name_list_output_namelists: No output definition found; disabling output.
mo_dbg_nml/read_dbg_namelist:: read debug namelist dbg_index_nml
WARNING: Namelist switch l_open_ubc is obsolete and will soon be removed!
mo_advection_nml: read_transport_nml: Evaluate the number of names in transport_nml/tracer_names
--- number of named tracers : 0
mo_advection_nml: read_transport_nml: Setting default names for tracers without names.
--- number of tracers without names : 5
--- tracer name q1 in position : 1
--- tracer name q2 in position : 2
--- tracer name q3 in position : 3
--- tracer name q4 in position : 4
--- tracer name q5 in position : 5
WARNING: Namelist switch l_sst_in is obsolete and will soon be removed!
Model time step : PT10.000S
Checkpoint interval : PT0.000S
Restart interval : PT0.000S
This is not a RESTART run ...
IAU time shift: PT00.000S
Calendar: Proleptic Gregorian
Experiment reference date: 2020-12-10T06:00:00Z
Experiment start date : 2020-12-10T06:00:00Z
Experiment stop date : 2020-12-10T07:00:00.000
Start date : 2020-12-10T06:00:00Z
Stop date : 2020-12-10T07:00:00.000
mo_nml_crosscheck::atm_crosscheck: radiation is used with ozone
mo_nml_crosscheck::atm_crosscheck: NetCDF output of floating point variables will be in 64-bit accuracy
mo_nml_crosscheck::atm_crosscheck: --> use_dp_mpi2io is changed to .TRUE. to allow 64-bit accuracy in the NetCDF output.
INFO : mo_nml_crosscheck::atm_crosscheck: namelist parameter 'activate_sync_timers' has been set to .TRUE., because global 'timers_level' is > 9.
set_mpi_work_communicators: num_io_procs_radar has no effect if there are no radar-active domains!
set_mpi_work_communicators: --> num_io_procs_radar set to 0
set_mpi_work_communicators: Number of procs for test: 0, work: 3, I/O: 0, Restart: 0, Prefetching: 1
set_mpi_work_communicators: 0 <= 0 test procs < 0 <= 3 work procs < 3 <= 0 io procs < 3 <= 0 restart procs < 3 <= 1 pref procs < 4 <= 0 radario procs < 4
mo_model_domimp_patches:import_pre_patches: start to import patches
mo_model_domimp_patches:read_pre_patch: start to init patch_pre
Read grid file mch_opr_r4b7_DOM01.parent.nc
mo_model_domimp_patches:read_pre_patch: grid uuid: 1fbe9c0c-eab2-93b3-a7c3-29b7f1822300
mo_model_domimp_patches:read_pre_patch: generating center of patch 0: 78
mo_model_domimp_patches:read_pre_patch: generating subcenter of patch 0: 255
mo_model_domimp_patches:read_pre_patch: number_of_grid_used of patch 0: 0
mo_model_domimp_patches:read_pre_patch: URI of patch 0:
mo_model_domimp_patches:read_pre_patch: read_patches finished
mo_model_domimp_patches:read_pre_patch: start to init patch_pre
Read grid file mch_opr_r4b7_DOM01.nc
mo_model_domimp_patches:read_pre_patch: grid uuid: 882d118c-46ca-069e-cce8-c209d51c2600
mo_model_domimp_patches:read_pre_patch: generating center of patch 1: 78
mo_model_domimp_patches:read_pre_patch: generating subcenter of patch 1: 255
mo_model_domimp_patches:read_pre_patch: number_of_grid_used of patch 1: 99
mo_model_domimp_patches:read_pre_patch: URI of patch 1:
mo_model_domimp_patches:read_pre_patch: read_patches finished
mo_subdivision:decompose_domain: start of domain decomposition
mo_subdivision:decompose_domain: Is this taking a long time? Consider adding macro definition HAVE_SLOW_PASSIVE_TARGET_ONESIDED to compile time settings.
No splitting of processor grid
divide_patch: Using geometric area subdivision (normal)
mo_setup_subdivision::divide_patch: dividing patch
mo_setup_subdivision::prepare_patch: Set new nproma for each MPI work process.
# New nproma values:: max/min/avg: 3763 3646 3715.00
Secondary nproma (nproma_sub):: 3763
mo_setup_subdivision: divide_patch: erase negative refin_ctrl flags in patch 1
mo_setup_subdivision::divide_patch: dividing patch
Secondary nproma (nproma_sub):: 3763
mo_setup_subdivision: divide_patch: erase negative refin_ctrl flags in patch 0
divide_patch: Using geometric area subdivision (normal)
mo_setup_subdivision::divide_patch: dividing patch
Secondary nproma (nproma_sub):: 3763
mo_setup_subdivision: divide_patch: erase negative refin_ctrl flags in patch 0
mo_build_decomposition:set_child_indices: patch 0 -> 1 - Enter.
mo_build_decomposition:set_child_indices: patch 0 -> 1 - Done.
mo_build_decomposition:set_child_indices: loc par patch 0 -> 1 - Enter.
mo_build_decomposition:set_child_indices: loc par patch 0 -> 1 - Done.
mo_model_domimp_patches:read_remaining_patch: Read gridmap file mch_opr_r4b7_DOM01.parent.nc
mo_read_netcdf_distributed::distrib_nf_open: mch_opr_r4b7_DOM01.parent.nc
mo_model_domimp_patches:read_remaining_patch: read finished
mo_model_domimp_patches:read_remaining_patch: Read gridmap file mch_opr_r4b7_DOM01.nc
mo_read_netcdf_distributed::distrib_nf_open: mch_opr_r4b7_DOM01.nc
mo_model_domimp_patches:read_remaining_patch: read finished
mo_model_domimp_patches: set negative edge/vertex refin_ctrl flags for patch (id 0)
mo_model_domimp_patches: set negative edge/vertex refin_ctrl flags for local parent patch (id 0)
Information on domain decomposition: grid 1
Number of compute PEs used for this grid: 3
# lateral boundary cells: max/min/avg 966 552 816.00
# prognostic cells: max/min/avg 2884 2684 2758.67
# cells up to halo level 1: max/min/avg 2987 2739 2827.33
# cells up to halo level 2: max/min/avg 3094 2797 2899.00
# cells total: max/min/avg 3763 3646 3715.00
# lateral boundary edges: max/min/avg 1574 903 1330.00
# prognostic edges: max/min/avg 4289 3987 4090.33
# edges up to halo level 1: max/min/avg 4343 3995 4123.67
# edges up to halo level 2: max/min/avg 4551 4107 4262.67
# edges up to halo level 3: max/min/avg 4657 4164 4333.67
# lateral boundary verts: max/min/avg 492 279 414.67
# prognostic verts: max/min/avg 1471 1385 1427.33
# verts up to halo level 1: max/min/avg 1528 1426 1462.67
# verts up to halo level 2: max/min/avg 1636 1484 1535.00
# send PEs (cells): max/min/avg 2 1 1.33
# recv PEs (cells): max/min/avg 2 1 1.33
# send PEs (edges): max/min/avg 2 1 1.33
# recv PEs (edges): max/min/avg 2 1 1.33
# send PEs (verts): max/min/avg 2 1 1.33
# recv PEs (verts): max/min/avg 2 1 1.33
build_decomposition: Done.
mo_atmo_model:construct_atmo_model: asynchronous input prefetching is enabled.
RBF scale factors for cells/edges/vertices, domain 1: 0.50000 0.50000 0.50000
RBF scale factors for velocity boundary interpolation 1: 0.50000
mo_intp_state:construct_2d_interpol_state: start to construct int_state
mo_intp_state:construct_2d_interpol_state: constructing int_state for patch 0
mo_intp_state:allocate_int_state: memory allocation finished
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_cell:
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_vertex:
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_edge:
mo_interpolation:tri_quadrature_pts:
mo_intp_coeffs:calculate_tangent_plane_at_edge:
mo_intp_coeffs:calculate_dotproduct_at_edge:
mo_interpolation:init_tplane_c_sphere:
mo_interpolation:lsq_stencil_create:
mo_interpolation:lsq_compute_coeff_cell_sphere:
mo_interpolation:lsq_stencil_create:
mo_interpolation:lsq_compute_coeff_cell_sphere:
mo_intp_state:construct_2d_interpol_state: constructing int_state for patch 1
mo_intp_state:allocate_int_state: memory allocation finished
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_cell:
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_vertex:
mo_intp_rbf_coeffs:rbf_vec_compute_coeff_edge:
mo_interpolation:tri_quadrature_pts:
mo_intp_coeffs:calculate_tangent_plane_at_edge:
mo_intp_coeffs:calculate_dotproduct_at_edge:
mo_interpolation:init_tplane_c_sphere:
mo_interpolation:lsq_stencil_create:
mo_interpolation:lsq_compute_coeff_cell_sphere:
mo_interpolation:lsq_stencil_create:
mo_interpolation:lsq_compute_coeff_cell_sphere:
mo_intp_state:construct_2d_interpol_state: construction of interpolation state finished
mo_intp_state:allocate_int_state: memory allocation finished
mo_grf_intp_state:construct_2d_gridref_state: start to construct grf_state
mo_grf_intp_state:construct_2d_gridref_state: memory allocation finished
mo_grf_intp_state:construct_2d_gridref_state: construction of interpolation state finished
setup_phys_patches: Physical domain 1 belongs to logical domain 1
mo_dynamics_config:setup_dynamics_config: Set time level indices
ldynamics = .TRUE.: 2 time levels used for progn. dynamics variables -> nnew /= nnow
ltransport = .TRUE.: 2 time levels used for progn. transport variables -> nnew_rcf /= nnow_rcf
--- nnow (01) : 1
--- nnew (01) : 2
--- nold (01) : 3
--- nnow_rcf(01) : 1
--- nnew_rcf(01) : 2
mo_lnd_nwp_config::configure_lnd_nwp: Number of hydrological active soil layers ibot_w_so is set to: 6
Surface tile setup
tileName | GRIB2 tileId | tileAtts | ICON tile Ids |
-------- | ------------ | -------- | ------------- |
Land | 1 | 1,2, | 1,4, |
Land | 2 | 1,2, | 2,5, |
Land | 3 | 1,2, | 3,6, |
Ocean | 4 | 1,4, | 7,9, |
Lake | 5 | 0, | 8, |
mo_ext_data_init:init_ext_data: Start
mo_ext_data_init::inquire_extpar_file: extpar_file = external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc
mo_ext_data_init::inquire_extpar_file: Number of land_use classes in external data file = 23
mo_ext_data_init::inquire_extpar_file: Number of months in external data file = 12
mo_ext_data_state:construct_ext_data: Construction of data structure for external data started
adding new var_list ext_data_atm_D01
adding new var_list ext_data_atm_td_D01
mo_ext_data_state:construct_ext_data: Construction of data structure for external data finished
mo_ext_data_init:init_ext_data: Start reading external data from file
mo_read_netcdf_distributed::distrib_nf_open: external_parameter_icon_mch_opr_r4b7_DOM01_tiles.nc
mo_ext_data_init:init_ext_data: Finished reading external data
number of topography smoothing steps in domain 1: 1
SLEVE coord: Coordinate setup finished
flat coordinate surfaces starting at level 7
Nominal heights of coordinate half levels and layer thicknesses (m):
jk, vct_a, dvct: 1 23000.000 2305.042
jk, vct_a, dvct: 2 20694.958 1245.498
jk, vct_a, dvct: 3 19449.461 1000.513
jk, vct_a, dvct: 4 18448.948 862.274
jk, vct_a, dvct: 5 17586.673 768.577
jk, vct_a, dvct: 6 16818.097 698.936
jk, vct_a, dvct: 7 16119.161 644.177
jk, vct_a, dvct: 8 15474.984 599.444
jk, vct_a, dvct: 9 14875.540 561.880
jk, vct_a, dvct: 10 14313.660 529.666
jk, vct_a, dvct: 11 13783.994 501.583
jk, vct_a, dvct: 12 13282.411 476.775
jk, vct_a, dvct: 13 12805.636 454.618
jk, vct_a, dvct: 14 12351.018 434.646
jk, vct_a, dvct: 15 11916.373 416.502
jk, vct_a, dvct: 16 11499.870 399.908
jk, vct_a, dvct: 17 11099.962 384.642
jk, vct_a, dvct: 18 10715.320 370.525
jk, vct_a, dvct: 19 10344.795 357.409
jk, vct_a, dvct: 20 9987.386 345.174
jk, vct_a, dvct: 21 9642.212 333.718
jk, vct_a, dvct: 22 9308.494 322.955
jk, vct_a, dvct: 23 8985.539 312.813
jk, vct_a, dvct: 24 8672.726 303.228
jk, vct_a, dvct: 25 8369.498 294.147
jk, vct_a, dvct: 26 8075.351 285.523
jk, vct_a, dvct: 27 7789.828 277.314
jk, vct_a, dvct: 28 7512.514 269.484
jk, vct_a, dvct: 29 7243.030 262.001
jk, vct_a, dvct: 30 6981.029 254.837
jk, vct_a, dvct: 31 6726.193 247.966
jk, vct_a, dvct: 32 6478.227 241.366
jk, vct_a, dvct: 33 6236.861 235.016
jk, vct_a, dvct: 34 6001.845 228.897
jk, vct_a, dvct: 35 5772.948 222.993
jk, vct_a, dvct: 36 5549.955 217.289
jk, vct_a, dvct: 37 5332.665 211.771
jk, vct_a, dvct: 38 5120.894 206.425
jk, vct_a, dvct: 39 4914.469 201.241
jk, vct_a, dvct: 40 4713.228 196.207
jk, vct_a, dvct: 41 4517.021 191.314
jk, vct_a, dvct: 42 4325.707 186.551
jk, vct_a, dvct: 43 4139.156 181.911
jk, vct_a, dvct: 44 3957.245 177.386
jk, vct_a, dvct: 45 3779.859 172.967
jk, vct_a, dvct: 46 3606.892 168.648
jk, vct_a, dvct: 47 3438.244 164.421
jk, vct_a, dvct: 48 3273.823 160.282
jk, vct_a, dvct: 49 3113.541 156.222
jk, vct_a, dvct: 50 2957.319 152.237
jk, vct_a, dvct: 51 2805.082 148.321
jk, vct_a, dvct: 52 2656.762 144.468
jk, vct_a, dvct: 53 2512.294 140.672
jk, vct_a, dvct: 54 2371.622 136.930
jk, vct_a, dvct: 55 2234.692 133.235
jk, vct_a, dvct: 56 2101.457 129.582
jk, vct_a, dvct: 57 1971.875 125.967
jk, vct_a, dvct: 58 1845.908 122.382
jk, vct_a, dvct: 59 1723.526 118.825
jk, vct_a, dvct: 60 1604.701 115.288
jk, vct_a, dvct: 61 1489.413 111.765
jk, vct_a, dvct: 62 1377.648 108.251
jk, vct_a, dvct: 63 1269.398 104.738
jk, vct_a, dvct: 64 1164.660 101.220
jk, vct_a, dvct: 65 1063.440 97.687
jk, vct_a, dvct: 66 965.753 94.132
jk, vct_a, dvct: 67 871.621 90.542
jk, vct_a, dvct: 68 781.079 86.907
jk, vct_a, dvct: 69 694.172 83.211
jk, vct_a, dvct: 70 610.961 79.438
jk, vct_a, dvct: 71 531.523 75.565
jk, vct_a, dvct: 72 455.957 71.566
jk, vct_a, dvct: 73 384.391 67.405
jk, vct_a, dvct: 74 316.986 63.032
jk, vct_a, dvct: 75 253.954 58.380
jk, vct_a, dvct: 76 195.575 53.343
jk, vct_a, dvct: 77 142.232 47.751
jk, vct_a, dvct: 78 94.481 41.284
jk, vct_a, dvct: 79 53.197 33.197
jk, vct_a, dvct: 80 20.000 20.000
jk, vct_a, dvct: 81 0.000 0.000
parallel calculation of vgrid UUID. Generated UUID:
9e4c89ff-1dbd-2d13-1591-5c8392212b00
mo_advection_utils::init_tracer_settings: Attention: NWP physics is used, ntracer is automatically reset to 6
mo_nonhydrostatic_config:configure_nonhydrostatic: Domain 1; computation of moist physics processes starts in layer 1
mo_nonhydrostatic_config:configure_nonhydrostatic: Domain 1; high- and mid-level clouds in layers above 29 57
Index list generation - number of land tiles: 3
Total number of tiles: 6
Number of land points in domain 1: 7778
Number of sea points in domain 1: 710
Number of lake points in domain 1: 240
Number of points in tile 1: 7778
Number of points in tile 2: 7543
Number of points in tile 3: 7104
Number of corrected false glacier points in domain 1: 0
Time intervals for calling NWP physics on patch 1
Process | dt user [=> final] |
------- | ------------------ |
conv | 120.00 |
ccov | 120.00 |
rad | 720.00 |
sso | 120.00 |
fastphy | 10.00 |
mo_limarea_config::configure_latbc: Lateral boundary condition using interpolated boundary data.
mo_atm_phy_nwp_config:configure_atm_phy_nwp: Use blending between GEMS and MACC ozone climatologies with tuning
Event-setup for phyNwpEventGroup on patch 1
eventName | enabled | startDate | endDate | intvl |
--------- | ------- | ------------------------ | ------------------------ | --------- |
conv | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT02M |
ccov | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT02M |
rad | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT12M |
sso | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT02M |
gwd | F | ]2020-12-10T06:00:10.000 | 2020-12-10T06:00:10.000] | PT02M |
satad | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT10.000S |
turb | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT10.000S |
gscp | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT10.000S |
sfc | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT10.000S |
radheat | T | [2020-12-10T06:00:10.000 | 2020-12-10T07:00:00.000] | PT10.000S |
atm_phy_nwp:configure_ww: Domain 1; ih_500hPa, ihb500hPa, ih_700hPa, ih_850hPa, ih_950hPa, ihb950hPa 36 36 50 62 72 72
atm_phy_nwp:configure_ww: Domain 1; ifog_temp, ifog_wind 66 74
mo_nonhydro_state::construct_nh_state: Construction of NH state started
adding new var_list nh_state_prog_of_domain_01_and_timelev_01
adding new var_list nh_state_tracer_of_domain_01_and_timelev_01
adding new var_list nh_state_prog_of_domain_01_and_timelev_02
adding new var_list nh_state_tracer_of_domain_01_and_timelev_02
adding new var_list nh_state_prog_of_domain_01_and_timelev_03
adding new var_list nh_state_diag_of_domain_01
adding new var_list nh_state_metrics_of_domain_01
mo_nonhydro_state::construct_nh_state: NH state construction completed
adding new var_list nh_state_opt_diag_of_domain_01
adding new var_list nh_state_opt_diag_z_of_domain_01
adding new var_list nh_state_opt_diag_p_of_domain_01
adding new var_list nh_state_opt_diag_i_of_domain_01
adding new var_list nh_accumulation_for_ProgAndDiag_of_domain_01
adding new var_list prepadv_of_domain_01
mo_prepadv_state:construct_prepadv_state: construction of prep_adv state finished
mo_nwp_phy_state:construct_nwp_state: start to construct 3D state vector
adding new var_list prm_diag_of_domain_01
mo_nwp_phy_state:construct_nwp_phy_diag: construction of NWP physical fields finished
adding new var_list prm_tend_of_domain_01
mo_nwp_phy_state:construct_nwp_phy_tend: construction of NWP physical tendency fields finished
adding new var_list prm_stch_of_domain_01
mo_nwp_phy_state:construct_nwp_state: construction of state vector finished
mo_nwp_lnd_state:construct_nwp_lnd_state: land state construction started
adding new var_list lnd_prog_of_domain_01_and_timelev_01
adding new var_list wtr_prog_of_domain_01_and_timelev_01
adding new var_list lnd_prog_of_domain_01_and_timelev_02
adding new var_list wtr_prog_of_domain_01_and_timelev_02
adding new var_list lnd_diag_of_domain_01
mo_nwp_lnd_state:construct_nwp_lnd_state: land state construction completed
Tracer meta-information for patch 1
VarName | Tracer ID | feedback | in list trAdvect | in list trNotAdvect | in list trHydroMass | slev | substep range | nadv_substeps |
------- | --------- | -------- | ---------------- | ------------------- | ------------------- | ---- | ------------- | ------------- |
qv.TL1 | 1 | X | X | | | 1 | 1/ 0 | 2 |
qc.TL1 | 2 | X | X | | X | 1 | -- / -- | -- |
qi.TL1 | 3 | X | X | | X | 1 | -- / -- | -- |
qr.TL1 | 4 | | X | | X | 1 | -- / -- | -- |
qs.TL1 | 5 | | X | | X | 1 | -- / -- | -- |
qg.TL1 | 6 | | X | | X | 1 | -- / -- | -- |
mo_vertical_grid:set_nh_metrics: Domain 1; end index of Rayleigh damping layer for w: 13
mo_vertical_grid: Damping coefficient for w; diffusion enhancement coefficient:
mo_vertical_grid: level 1, half-level height 23000.0 0.50000E+01 0.24000E+02
mo_vertical_grid: level 2, half-level height 20695.0 0.15864E+01 0.97870E+01
mo_vertical_grid: level 3, half-level height 19449.5 0.71100E+00 0.49815E+01
mo_vertical_grid: level 4, half-level height 18448.9 0.35774E+00 0.29571E+01
mo_vertical_grid: level 5, half-level height 17586.7 0.19489E+00 0.20297E+01
mo_vertical_grid: level 6, half-level height 16818.1 0.11267E+00 0.15728E+01
mo_vertical_grid: level 7, half-level height 16119.2 0.68243E-01 0.13336E+01
mo_vertical_grid: level 8, half-level height 15475.0 0.42921E-01 0.12018E+01
mo_vertical_grid: level 9, half-level height 14875.5 0.27854E-01 0.11260E+01
mo_vertical_grid: level 10, half-level height 14313.7 0.18564E-01 0.10810E+01
mo_vertical_grid: level 11, half-level height 13784.0 0.12660E-01 0.10533E+01
mo_vertical_grid: level 12, half-level height 13282.4 0.88090E-02 0.10358E+01
mo_vertical_grid: level 13, half-level height 12805.6 0.62397E-02 0.10245E+01
mo_vertical_grid:prepare_zdiffu: Number of z-diffusion points: 65260
mo_vertical_grid:set_nh_metrics: Maximum vertical wind offcentering: 0.3667
mo_vertical_grid:set_nh_metrics: Maximum slope: 0.1049
mo_vertical_grid:set_nh_metrics: Maximum height difference between adjacent points: 1013.4
mo_input_instructions:readInstructionList_make: Declare qg as OPTIONAL for DOM 1
mo_input_instructions:readInstructionList_make: Declare alb_si as OPTIONAL for DOM 1
mo_input_instructions:readInstructionList_make: Declare t_sk as OPTIONAL for DOM 1
mo_input_instructions:readInstructionList_make: Declare hsnow_max as OPTIONAL for DOM 1
mo_input_instructions:readInstructionList_make: Declare snow_age as OPTIONAL for DOM 1
mo_input_instructions:readInstructionList_make: Declare plantevap as OPTIONAL for DOM 1
mo_initicon: MODE_VREMAP: read ICON data and perform vertical remapping
mo_initicon:read_dwdfg: read atm_FG fields from laf2020121006.nc
mo_input_request_list:InputRequestList_readFile: READ 1004 records from file 'laf2020121006.nc', ignoring 0 records
Timer report: Total 0.20944 s, Read metadata 0.00532 s, Read data 0.11798 s
Compute statistics 0.00952 s, Distribute data 0.06091s
jg | variable | triple | validity time | vvmm | levTyp | nlev | tileCnt | untiled | runtype | clas | expid | grid | rgrid | min | mean | max |
-- | --------- | ----------- | ----------------------- | --------- | ------ | ---- | ------- | ------- | ------- | ---- | ----- | ---- | ----- | -------------- | --------------- | -------------- |
1 | w | 0. 2. 9 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 81 | | yes | | -1 | -1 | 99 | 1 | -4.0191379 | -0.26881266E-03 | 10.503699 |
1 | qc | 0. 1. 22 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.67908094E-05 | 0.29368051E-02 |
1 | qi | 0. 1. 82 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.15188914E-05 | 0.57073607E-03 |
1 | qr | 0. 1. 24 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.24834905E-05 | 0.67487964E-03 |
1 | qs | 0. 1. 25 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.30929528E-04 | 0.15858313E-02 |
1 | qg | 0. 1. 32 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.13204822E-05 | 0.38177567E-02 |
1 | z_ifc | 0. 3. 6 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 81 | | yes | | -1 | -1 | 99 | 1 | -3.8804014 | 6081.6296 | 22000.000 |
1 | gz0 | 2. 0. 1 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.12396050E-03 | 0.35150276 | 1.9508358 |
1 | t_g | 0. 0. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 234.73523 | 274.45559 | 290.68347 |
1 | t_mnw_lk | 1. 2. 1 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 276.73477 | 277.17519 | 283.69333 |
1 | t_wml_lk | 1. 2. 1 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 276.73450 | 277.18186 | 287.44168 |
1 | h_ml_lk | 1. 2. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.65497401E-01 | 19.181641 |
1 | t_bot_lk | 1. 2. 1 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 276.73413 | 277.15948 | 283.54233 |
1 | c_t_lk | 1. 2. 10 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.50000000 | 0.50033061 | 0.72794825 |
1 | qv_s | 0. 1. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.24855003E-03 | 0.46423480E-02 | 0.12494913E-01 |
1 | w_i | 2. 0. 13 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.27897128 | 3.2259574 |
1 | t_so | 2. 3. 18 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 9 | | yes | | -1 | -1 | 99 | 1 | 260.47394 | 279.14833 | 290.68436 |
1 | w_so_ice | 2. 3. 22 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 8 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 5.8718288 | 4275.8750 |
1 | w_snow | 0. 1. 60 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 15.743886 | 552.73438 |
1 | rho_snow | 0. 1. 61 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 50.000000 | 120.40494 | 364.24219 |
1 | qv | 0. 1. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.18074084E-02 | 0.75492649E-02 |
1 | u | 0. 2. 2 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | -25.757637 | 3.1434725 | 28.384359 |
1 | v | 0. 2. 3 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | -40.941841 | -1.9328569 | 24.909737 |
1 | temp | 0. 0. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 200.13461 | 249.62645 | 286.64413 |
1 | pres | 0. 3. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 80 | | yes | | -1 | -1 | 99 | 1 | 3853.8230 | 57299.015 | 100492.66 |
1 | t_ice | 10. 2. 8 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 273.14993 | 273.19415 | 273.19437 |
1 | h_ice | 10. 2. 1 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.0000000 | 0.0000000 |
1 | fr_seaice | 10. 2. 0 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.0000000 | 0.0000000 |
1 | w_so | 2. 3. 20 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 8 | | yes | | -1 | -1 | 99 | 1 | -0.17278598 | 0.75805316 | 1.8097564 |
1 | t_snow | 0. 0. 18 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 234.72461 | 274.65779 | 290.37872 |
1 | h_snow | 0. 1. 11 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.65536290E-01 | 2.5735567 |
1 | freshsnow | 0. 1.203 | 2020-12-10T06:00:00.000 | PT00.000S | 0 | 1 | | yes | | -1 | -1 | 99 | 1 | 0.0000000 | 0.86928375 | 1.0000000 |
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_snow
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_i
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: w_so_ice
initicon_inverse_post_op: Inverse Post_op for: gz0
jg | variable | triple | validity time | vvmm | levTyp | nlev | tileCnt | untiled | runtype | clas | expid | grid | rgrid | min | mean | max |
-- | -------- | ------ | ------------- | ---- | ------ | ---- | ------- | ------- | ------- | ---- | ----- | ---- | ----- | --- | ---- | --- |
vert_interp_atm: Vertical interpolation of analysis data, domain 1
input results for domain 1:
variable | FG read attempt | FG data found | ANA read attempt | ANA data found | ANA DATA required (ana_checklist) | data used from |
--------- | --------------- | ------------- | ---------------- | -------------- | --------------------------------- | -------------- |
vn | no | | no | | | none |
w | yes | yes | no | | | fg |
rho | no | | no | | | none |
theta_v | no | | no | | | none |
qc | yes | yes | no | | | fg |
qi | yes | yes | no | | | fg |
qr | no | | no | | | none |
qs | no | | no | | | none |
qg | no | | no | | | none |
tke | no | | no | | | none |
z_ifc | yes | yes | no | | | fg |
gz0 | yes | yes | no | | | fg |
t_g | yes | yes | no | | | fg |
alb_si | no | | no | | | none |
t_mnw_lk | yes | yes | no | | | fg |
t_wml_lk | yes | yes | no | | | fg |
h_ml_lk | yes | yes | no | | | fg |
t_bot_lk | yes | yes | no | | | fg |
c_t_lk | yes | yes | no | | | fg |
qv_s | yes | yes | no | | | fg |
t_sk | yes | no | no | | | cold! |
w_i | yes | yes | no | | | fg |
hsnow_max | yes | no | no | | | cold! |
snow_age | yes | no | no | | | cold! |
t_so | yes | yes | no | | | fg |
w_so_ice | yes | yes | no | | | fg |
plantevap | yes | no | no | | | cold! |
w_snow | yes | yes | no | | | fg |
rho_snow | yes | yes | no | | | fg |
qv | yes | yes | no | | | fg |
u | yes | yes | no | | | fg |
v | yes | yes | no | | | fg |
temp | yes | yes | no | | | fg |
pres | yes | yes | no | | | fg |
t_ice | yes | yes | no | | | fg |
h_ice | yes | yes | no | | | fg |
fr_seaice | yes | yes | no | | | fg |
t_seasfc | no | | no | | | none |
w_so | yes | yes | no | | | fg |
t_snow | yes | yes | no | | | fg |
h_snow | yes | yes | no | | | fg |
freshsnow | yes | yes | no | | | fg |
smi | yes | no | no | | | none |
mo_async_latbc::init_prefetch: sparse LATBC read-in mode.
mo_async_latbc::init_prefetch: prefetching PE reads 7304 cells and 11214 edges.
mo_async_latbc::init_prefetch: 3 of 3 worker PEs are involved in the LATBC read-in.
mo_async_latbc_utils::check_validity_date_and_print_filename:: reading boundary data from file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc for date: 2020-12-10T06:00:00.000
mo_async_latbc::check_variables: Tracer variable qg not available in input DATA.
mo_async_latbc::check_variables: Input levels (HHL) are computed from sfc geopotential.
mo_async_latbc::check_variables: Compute W from OMEGA.
mo_async_latbc::check_variables: PS and GEOP are read from file.
mo_async_latbc::check_variables: HHL and PRES are computed based on PS and GEOP.
mo_async_latbc::check_variables: PRES is diagnosed.
mo_async_latbc::check_variables: TEMP is read from file.
mo_async_latbc::check_variables: VN is read from file.
mo_async_latbc_utils::check_validity_date_and_print_filename:: reading boundary data from file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00000000_lbc.nc for date: 2020-12-10T06:00:00.000
mo_util_cdi:deleteInputParameters: Total read statistics for stream ID
24
amount: 56153152 bytes
duration: 0.072 seconds
bandwidth: 741.831 MiB/s
mo_grid_distribution_base:scatterPatternPrintStatistics
: data distribution totals:
amount: 43394916 bytes
duration: 0.053 seconds
bandwidth: 782.436 MiB/s
mo_util_cdi:deleteInputParameters: Total read statistics for stream ID
24
amount: 12290544 bytes
duration: 0.016 seconds
bandwidth: 744.371 MiB/s
mo_grid_distribution_base:scatterPatternPrintStatistics
: data distribution totals:
amount: 9433272 bytes
duration: 0.011 seconds
bandwidth: 830.941 MiB/s
mo_async_latbc_utils::check_validity_date_and_print_filename:: reading boundary data from file /scratch/e1000/meteoswiss/scratch/jenkins/icon/pool/data/ICON/mch/input/opr_r04b07/efsf00030000_lbc.nc for date: 2020-12-10T09:00:00.000
mo_util_cdi:deleteInputParameters: Total read statistics for stream ID
24
amount: 56153152 bytes
duration: 0.070 seconds
bandwidth: 763.011 MiB/s
mo_grid_distribution_base:scatterPatternPrintStatistics
: data distribution totals:
amount: 43394916 bytes
duration: 0.051 seconds
bandwidth: 810.701 MiB/s
mo_util_cdi:deleteInputParameters: Total read statistics for stream ID
24
amount: 12290544 bytes
duration: 0.016 seconds
bandwidth: 752.849 MiB/s
mo_grid_distribution_base:scatterPatternPrintStatistics
: data distribution totals:
amount: 9433272 bytes
duration: 0.011 seconds
bandwidth: 832.252 MiB/s