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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173 | /**
* imoab_apg2_ol_coupler.cpp
*
* This imoab_apg2_ol_coupler test will simulate coupling between 3 components
* meshes will be loaded from 3 files (atm phys + atm pg2, ocean, and land), and
* Atm and ocn will be migrated to coupler pes and compute intx on them
* then, intx will be performed between migrated meshes
* and weights will be generated, such that a field from phys atm will be transferred to ocn
* currently, the phys atm will send some data to be projected to ocean
* similar for land, but land will be intersected too with the atm pg2
* Land is defined by the domain mesh
*
* first, intersect atm and ocn, and recompute comm graph 1 between atm phys and atm_cx, for ocn intx
* repeat the same for land; for atm/lnd coupling will use similar Fv -Fv maps; maybe later will identify some
* equivalent to bilinear maps
*/
#include "moab/Core.hpp"
#ifndef MOAB_HAVE_MPI
#error imoab coupler test requires MPI configuration
#endif
// MPI includes
#include "moab_mpi.h"
#include "moab/ParallelComm.hpp"
#include "MBParallelConventions.h"
#include "moab/iMOAB.h"
#include "TestUtil.hpp"
#include "moab/CpuTimer.hpp"
#include "moab/ProgOptions.hpp"
#include <iostream>
#include <sstream>
#include "imoab_coupler_utils.hpp"
using namespace moab;
// #define VERBOSE
#ifndef MOAB_HAVE_TEMPESTREMAP
#error The climate coupler test example requires MOAB configuration with TempestRemap
#endif
#define ENABLE_ATMOCN_COUPLING
// for land coupling with phys atm, we do not have to "compute" intersection
// it is enough to know that the ids are the same, we can project from atm to land that way, using a computed graph
#define ENABLE_ATMLND_COUPLING
int main( int argc, char* argv[] )
{
int ierr;
int rankInGlobalComm, numProcesses;
MPI_Group jgroup;
std::string readopts( "PARALLEL=READ_PART;PARTITION=PARALLEL_PARTITION;PARALLEL_RESOLVE_SHARED_ENTS" );
std::string readoptsPhysAtm( "PARALLEL=READ_PART;PARTITION=PARALLEL_PARTITION" );
/*if (argc < 2)
return 0; // no test; we will force naming the land domain file*/
// Timer data
moab::CpuTimer timer;
double timer_ops;
std::string opName;
int repartitioner_scheme = 0;
#ifdef MOAB_HAVE_ZOLTAN
repartitioner_scheme = 2; // use the geometry partitioner in that case
#endif
MPI_Init( &argc, &argv );
MPI_Comm_rank( MPI_COMM_WORLD, &rankInGlobalComm );
MPI_Comm_size( MPI_COMM_WORLD, &numProcesses );
MPI_Comm_group( MPI_COMM_WORLD, &jgroup ); // all processes in jgroup
std::string atmFilename =
"../../sandbox/MeshFiles/e3sm/ne4pg2_o240/ne4pg2_p8.h5m"; // we should use only mesh from here
std::string atmPhysMesh =
"../../sandbox/MeshFiles/e3sm/ne4pg2_o240/AtmPhys_pg2.h5m"; // it has some data associated to vertices, T_ph,
// u_ph, v_ph
// we will eventually project that data to ocean mesh, after intx atm/ocn
// on a regular case, 5 ATM, 6 CPLATM (ATMX), 17 OCN , 18 CPLOCN (OCNX) ;
// intx atm/ocn is not in e3sm yet, give a number
// 6 * 100 + 18 = 618 : atmocnid
// 18 * 100 + 6 = 1806 : ocnatmid on coupler pes!
// 9 LND, 10 CPLLND
// 6 * 100 + 10 = 610 atmlndid:
// 10 * 100 + 6 = 1006 lndatmid: on coupler pes
// cmpatm is for atm on atm pes
// cmpocn is for ocean, on ocean pe
// cplatm is for atm on coupler pes
// cplocn is for ocean on coupler pes
// atmocnid is for intx atm / ocn on coupler pes
//
int rankInAtmComm = -1;
int cmpatm = 5, cplatm = 6; // component ids are unique over all pes, and established in advance;
int cmpPhysAtm = 105; // different from atm spectral ?
#ifdef ENABLE_ATMOCN_COUPLING
std::string ocnFilename = TestDir + "unittest/recMeshOcn.h5m";
int rankInOcnComm = -1;
int cmpocn = 17, cplocn = 18, atmocnid = 618,
ocnatmid = 1806; // component ids are unique over all pes, and established in advance;
#endif
#ifdef ENABLE_ATMLND_COUPLING
std::string lndFilename = "../../sandbox/MeshFiles/e3sm/ne4pg2_o240/land_p8.h5m";
int rankInLndComm = -1;
int cpllnd = 10, cmplnd = 9, atmlndid = 610,
lndatmid = 1006; // component ids are unique over all pes, and established in advance;
#endif
int rankInCouComm = -1;
int nghlay = 0; // number of ghost layers for loading the file
std::vector< int > groupTasks;<--- Unused variable: groupTasks
int startG1 = 0, startG2 = 0, endG1 = numProcesses - 1, endG2 = numProcesses - 1, startG3 = startG1, endG3 = endG1;<--- Same expression used in consecutive assignments of 'endG1' and 'endG2'. [+]Finding variables 'endG1' and 'endG2' that are assigned the same expression is suspicious and might indicate a cut and paste or logic error. Please examine this code carefully to determine if it is correct. <--- Same expression used in consecutive assignments of 'endG1' and 'endG2'. [+]Finding variables 'endG1' and 'endG2' that are assigned the same expression is suspicious and might indicate a cut and paste or logic error. Please examine this code carefully to determine if it is correct.
int startG4 = startG1, endG4 = endG1; // these are for coupler layout
int context_id = -1; // used now for freeing buffers<--- Variable 'context_id' is assigned a value that is never used.
// default: load atm on 2 proc, ocean on 2, land on 2; migrate to 2 procs, then compute intx
// later, we need to compute weight matrix with tempestremap
ProgOptions opts;
opts.addOpt< std::string >( "atmosphere,t", "atm mesh filename (source)", &atmFilename );
#ifdef ENABLE_ATMOCN_COUPLING
opts.addOpt< std::string >( "ocean,m", "ocean mesh filename (target)", &ocnFilename );
#endif
#ifdef ENABLE_ATMLND_COUPLING
opts.addOpt< std::string >( "land,l", "land mesh filename (target)", &lndFilename );
#endif
opts.addOpt< std::string >( "physgrid,q", "physics grid file", &atmPhysMesh );
opts.addOpt< int >( "startAtm,a", "start task for atmosphere layout", &startG1 );
opts.addOpt< int >( "endAtm,b", "end task for atmosphere layout", &endG1 );
#ifdef ENABLE_ATMOCN_COUPLING
opts.addOpt< int >( "startOcn,c", "start task for ocean layout", &startG2 );
opts.addOpt< int >( "endOcn,d", "end task for ocean layout", &endG2 );
#endif
#ifdef ENABLE_ATMLND_COUPLING
opts.addOpt< int >( "startLnd,e", "start task for land layout", &startG3 );
opts.addOpt< int >( "endLnd,f", "end task for land layout", &endG3 );
#endif
opts.addOpt< int >( "startCoupler,g", "start task for coupler layout", &startG4 );
opts.addOpt< int >( "endCoupler,j", "end task for coupler layout", &endG4 );
opts.addOpt< int >( "partitioning,p", "partitioning option for migration", &repartitioner_scheme );
opts.parseCommandLine( argc, argv );
char fileWriteOptions[] = "PARALLEL=WRITE_PART";
if( !rankInGlobalComm )
{
std::cout << " atm file: " << atmFilename << "\n on tasks : " << startG1 << ":" << endG1 <<
#ifdef ENABLE_ATMOCN_COUPLING
"\n ocn file: " << ocnFilename << "\n on tasks : " << startG2 << ":" << endG2 <<
#endif
#ifdef ENABLE_ATMLND_COUPLING
"\n land file: " << lndFilename << "\n on tasks : " << startG3 << ":" << endG3 <<
#endif
"\n atm phys file: " << atmPhysMesh << "\n on tasks : " << startG1 << ":" << endG1 <<
"\n partitioning (0 trivial, 1 graph, 2 geometry) " << repartitioner_scheme << "\n ";
}
// load files on 3 different communicators, groups
// first groups has task 0, second group tasks 0 and 1
// coupler will be on joint tasks, will be on a third group (0 and 1, again)
MPI_Group atmPEGroup;
MPI_Comm atmComm;
ierr = create_group_and_comm( startG1, endG1, jgroup, &atmPEGroup, &atmComm );
CHECKIERR( ierr, "Cannot create atm MPI group and communicator " )
#ifdef ENABLE_ATMOCN_COUPLING
MPI_Group ocnPEGroup;
MPI_Comm ocnComm;
ierr = create_group_and_comm( startG2, endG2, jgroup, &ocnPEGroup, &ocnComm );
CHECKIERR( ierr, "Cannot create ocn MPI group and communicator " )
#endif
#ifdef ENABLE_ATMLND_COUPLING
MPI_Group lndPEGroup;
MPI_Comm lndComm;
ierr = create_group_and_comm( startG3, endG3, jgroup, &lndPEGroup, &lndComm );
CHECKIERR( ierr, "Cannot create lnd MPI group and communicator " )
#endif
// we will always have a coupler
MPI_Group couPEGroup;
MPI_Comm couComm;
ierr = create_group_and_comm( startG4, endG4, jgroup, &couPEGroup, &couComm );
CHECKIERR( ierr, "Cannot create cpl MPI group and communicator " )
// now, create the joint communicators atm_coupler, ocn_coupler, lnd_coupler
// for each, we will have to create the group first, then the communicator
// atm_coupler
MPI_Group joinAtmCouGroup;
MPI_Comm atmCouComm;
ierr = create_joint_comm_group( atmPEGroup, couPEGroup, &joinAtmCouGroup, &atmCouComm );
CHECKIERR( ierr, "Cannot create joint atm cou communicator" )
#ifdef ENABLE_ATMOCN_COUPLING
// ocn_coupler
MPI_Group joinOcnCouGroup;
MPI_Comm ocnCouComm;
ierr = create_joint_comm_group( ocnPEGroup, couPEGroup, &joinOcnCouGroup, &ocnCouComm );
CHECKIERR( ierr, "Cannot create joint ocn cou communicator" )
#endif
#ifdef ENABLE_ATMLND_COUPLING
// lnd_coupler
MPI_Group joinLndCouGroup;
MPI_Comm lndCouComm;
ierr = create_joint_comm_group( lndPEGroup, couPEGroup, &joinLndCouGroup, &lndCouComm );
CHECKIERR( ierr, "Cannot create joint ocn cou communicator" )
#endif
ierr = iMOAB_Initialize( argc, argv ); // not really needed anything from argc, argv, yet; maybe we should
CHECKIERR( ierr, "Cannot initialize iMOAB" )
int cmpAtmAppID = -1;
iMOAB_AppID cmpAtmPID = &cmpAtmAppID; // atm
int cplAtmAppID = -1; // -1 means it is not initialized
iMOAB_AppID cplAtmPID = &cplAtmAppID; // atm on coupler PEs
#ifdef ENABLE_ATMOCN_COUPLING
int cmpOcnAppID = -1;
iMOAB_AppID cmpOcnPID = &cmpOcnAppID; // ocn
int cplOcnAppID = -1, cplAtmOcnAppID = -1, cplOcnAtmAppID = -1; // -1 means it is not initialized
iMOAB_AppID cplOcnPID = &cplOcnAppID; // ocn on coupler PEs
iMOAB_AppID cplAtmOcnPID = &cplAtmOcnAppID; // intx atm - ocn on coupler PEs
iMOAB_AppID cplOcnAtmPID = &cplOcnAtmAppID; // intx ocn - atm on coupler PEs
#endif
#ifdef ENABLE_ATMLND_COUPLING
int cmpLndAppID = -1;
iMOAB_AppID cmpLndPID = &cmpLndAppID; // lnd
int cplLndAppID = -1, cplAtmLndAppID = -1, cplLndAtmAppID = -1; // -1 means it is not initialized
iMOAB_AppID cplLndPID = &cplLndAppID; // land on coupler PEs
iMOAB_AppID cplAtmLndPID = &cplAtmLndAppID; // intx atm - lnd on coupler PEs will be similar to ocn atm intx
iMOAB_AppID cplLndAtmPID = &cplLndAtmAppID;
#endif
int cmpPhysAtmID = -1;
iMOAB_AppID cmpPhAtmPID = &cmpPhysAtmID; // phys atm; we do not need to move it to cpl!
if( couComm != MPI_COMM_NULL )
{
MPI_Comm_rank( couComm, &rankInCouComm );
// Register all the applications on the coupler PEs
ierr = iMOAB_RegisterApplication( "ATMX", &couComm, &cplatm, cplAtmPID ); // atm on coupler pes
CHECKIERR( ierr, "Cannot register ATM over coupler PEs" )
#ifdef ENABLE_ATMOCN_COUPLING
ierr = iMOAB_RegisterApplication( "OCNX", &couComm, &cplocn, cplOcnPID ); // ocn on coupler pes
CHECKIERR( ierr, "Cannot register OCN over coupler PEs" )
#endif
#ifdef ENABLE_ATMLND_COUPLING
ierr = iMOAB_RegisterApplication( "LNDX", &couComm, &cpllnd, cplLndPID ); // lnd on coupler pes
CHECKIERR( ierr, "Cannot register LND over coupler PEs" )
#endif
}
if( atmComm != MPI_COMM_NULL )
{
MPI_Comm_rank( atmComm, &rankInAtmComm );
ierr = iMOAB_RegisterApplication( "ATM1", &atmComm, &cmpatm, cmpAtmPID );
CHECKIERR( ierr, "Cannot register ATM App" )
}
#ifdef ENABLE_ATMOCN_COUPLING
if( ocnComm != MPI_COMM_NULL )
{
MPI_Comm_rank( ocnComm, &rankInOcnComm );
ierr = iMOAB_RegisterApplication( "OCN1", &ocnComm, &cmpocn, cmpOcnPID );
CHECKIERR( ierr, "Cannot register OCN App" )
}
#endif
// atm
ierr =
setup_component_coupler_meshes( cmpAtmPID, cmpatm, cplAtmPID, cplatm, &atmComm, &atmPEGroup, &couComm,
&couPEGroup, &atmCouComm, atmFilename, readopts, nghlay, repartitioner_scheme );
CHECKIERR( ierr, "Cannot load and migrate atm mesh" )
MPI_Barrier( MPI_COMM_WORLD );
#ifdef ENABLE_ATMOCN_COUPLING
// ocean
ierr =
setup_component_coupler_meshes( cmpOcnPID, cmpocn, cplOcnPID, cplocn, &ocnComm, &ocnPEGroup, &couComm,
&couPEGroup, &ocnCouComm, ocnFilename, readopts, nghlay, repartitioner_scheme );
CHECKIERR( ierr, "Cannot load and migrate ocn mesh" )
if( couComm != MPI_COMM_NULL )
{
char outputFileTgt3[] = "recvOcn3.h5m";
PUSH_TIMER( "Write migrated OCN mesh on coupler PEs" )
ierr = iMOAB_WriteMesh( cplOcnPID, outputFileTgt3, fileWriteOptions );
CHECKIERR( ierr, "cannot write ocn mesh after receiving" )
POP_TIMER( couComm, rankInCouComm )
}
#endif // #ifdef ENABLE_ATMOCN_COUPLING
MPI_Barrier( MPI_COMM_WORLD );
// load phys atm mesh, with some data on it already
if( atmComm != MPI_COMM_NULL )
{
ierr = iMOAB_RegisterApplication( "PhysAtm", &atmComm, &cmpPhysAtm, cmpPhAtmPID );
CHECKIERR( ierr, "Cannot register Phys Atm App " )
// load the next component mesh
PUSH_TIMER( "Load Phys Atm mesh" )
ierr = iMOAB_LoadMesh( cmpPhAtmPID, atmPhysMesh.c_str(), readoptsPhysAtm.c_str(), &nghlay );
CHECKIERR( ierr, "Cannot load Atm Phys mesh on atm pes" )
POP_TIMER( atmComm, rankInAtmComm )
int nverts[3], nelem[3];
ierr = iMOAB_GetMeshInfo( cmpPhAtmPID, nverts, nelem, 0, 0, 0 );
CHECKIERR( ierr, "failed to get mesh info" );
printf( "Phys Atm Component Mesh: %d vertices and %d elements\n", nverts[0], nelem[0] );
}
MPI_Barrier( MPI_COMM_WORLD );
#ifdef ENABLE_ATMLND_COUPLING
// land
if( lndComm != MPI_COMM_NULL )
{
ierr = iMOAB_RegisterApplication( "LND1", &lndComm, &cmplnd, cmpLndPID );
CHECKIERR( ierr, "Cannot register LND App " )
}
ierr = setup_component_coupler_meshes( cmpLndPID, cmplnd, cplLndPID, cpllnd, &lndComm, &lndPEGroup, &couComm,<--- ierr is assigned
&couPEGroup, &lndCouComm, lndFilename, readoptsPhysAtm, nghlay,
repartitioner_scheme );
if( couComm != MPI_COMM_NULL )<--- First condition
{ // write only for n==1 case
char outputFileLnd[] = "recvLnd.h5m";
ierr = iMOAB_WriteMesh( cplLndPID, outputFileLnd, fileWriteOptions );
CHECKIERR( ierr, "cannot write lnd mesh after receiving" )
}
#endif // #ifdef ENABLE_ATMLND_COUPLING
#ifdef ENABLE_ATMOCN_COUPLING
if( couComm != MPI_COMM_NULL )<--- Second condition
{
// now compute intersection between OCNx and ATMx on coupler PEs
ierr = iMOAB_RegisterApplication( "ATMOCN", &couComm, &atmocnid, cplAtmOcnPID );
CHECKIERR( ierr, "Cannot register ocn_atm intx over coupler pes " )
ierr = iMOAB_RegisterApplication( "OCNATM", &couComm, &ocnatmid, cplOcnAtmPID );
CHECKIERR( ierr, "Cannot register atm_ocn intx over coupler pes " )
}
#endif
#ifdef ENABLE_ATMLND_COUPLING
if( couComm != MPI_COMM_NULL )
{
// now compute intersection between LNDx and ATMx on coupler PEs
ierr = iMOAB_RegisterApplication( "ATMLND", &couComm, &atmlndid, cplAtmLndPID );
CHECKIERR( ierr, "Cannot register atm_lnd intx over coupler pes " )
// now compute intersection between ATMx and LNDx on coupler PEs
ierr = iMOAB_RegisterApplication( "LNDATM", &couComm, &lndatmid, cplLndAtmPID );
CHECKIERR( ierr, "Cannot register lnd_atm intx over coupler pes " )
}
#endif
const char* weights_identifiers[2] = { "scalar", "scalar-pc" };
int disc_orders[3] = { 4, 1, 1 };
const char* disc_methods[3] = { "cgll", "fv", "pcloud" };
const char* dof_tag_names[3] = { "GLOBAL_DOFS", "GLOBAL_ID", "GLOBAL_ID" };
#ifdef ENABLE_ATMOCN_COUPLING
if( couComm != MPI_COMM_NULL )
{
PUSH_TIMER( "Compute ATM-OCN mesh intersection" )
ierr = iMOAB_ComputeMeshIntersectionOnSphere(
cplAtmPID, cplOcnPID, cplAtmOcnPID ); // coverage mesh was computed here, for cplAtmPID, atm on coupler pes
// basically, atm was redistributed according to target (ocean) partition, to "cover" the ocean partitions
// check if intx valid, write some h5m intx file
CHECKIERR( ierr, "cannot compute intersection" )
POP_TIMER( couComm, rankInCouComm )
PUSH_TIMER( "Compute OCN-ATM mesh intersection" )
ierr =
iMOAB_ComputeMeshIntersectionOnSphere( cplOcnPID, cplAtmPID, cplOcnAtmPID ); // coverage mesh was computed
CHECKIERR( ierr, "cannot compute intersection" )
POP_TIMER( couComm, rankInCouComm )
}
if( atmCouComm != MPI_COMM_NULL )
{
// the new graph will be for sending data from atm comp to coverage mesh;
// it involves initial atm app; cmpAtmPID; also migrate atm mesh on coupler pes, cplAtmPID
// results are in cplAtmOcnPID, intx mesh; remapper also has some info about coverage mesh
// after this, the sending of tags from atm pes to coupler pes will use the new par comm graph, that has more
// precise info about what to send for ocean cover ; every time, we will
// use the element global id, which should uniquely identify the element
PUSH_TIMER( "Compute OCN coverage graph for ATM mesh" )
ierr = iMOAB_CoverageGraph( &atmCouComm, cmpAtmPID, cplAtmPID, cplAtmOcnPID, &cmpatm, &cplatm,
&cplocn ); // it happens over joint communicator
CHECKIERR( ierr, "cannot recompute direct coverage graph for ocean" )
POP_TIMER( atmCouComm, rankInAtmComm ) // hijack this rank
}
if( ocnCouComm != MPI_COMM_NULL )
{
// now for the second intersection, ocn-atm; will be sending data from ocean to atm
// Can we reuse the intx atm-ocn? Not sure yet; we will compute everything again :(
// the new graph will be for sending data from ocn comp to coverage mesh over atm;
// it involves initial ocn app; cmpOcnPID; also migrated ocn mesh on coupler pes, cplOcnPID
// results are in cplOcnAtmPID, intx mesh; remapper also has some info about coverage mesh
// after this, the sending of tags from ocn pes to coupler pes will use the new par comm graph, that has more
// precise info about what to send for atm cover ; every time, we will
// use the element global id, which should uniquely identify the element
PUSH_TIMER( "Compute ATM coverage graph for OCN mesh" )
ierr = iMOAB_CoverageGraph( &ocnCouComm, cmpOcnPID, cplOcnPID, cplOcnAtmPID, &cmpocn, &cplocn,
&cplatm ); // it happens over joint communicator, ocean + coupler
CHECKIERR( ierr, "cannot recompute direct coverage graph for atm" )
POP_TIMER( ocnCouComm, rankInOcnComm ) // hijack this rank
}
// need to compute graph between phys atm and atm/ocn intx coverage
if( atmCouComm != MPI_COMM_NULL )
{
int typeA = 2; // point cloud, phys mesh
int typeB = 3; // cells of atmosphere, dof based; maybe need another type for ParCommGraph graphtype ?
ierr = iMOAB_ComputeCommGraph( cmpPhAtmPID, cplAtmOcnPID, &atmCouComm, &atmPEGroup, &couPEGroup, &typeA, &typeB,
&cmpatm, &atmocnid );
CHECKIERR( ierr, "cannot compute graph between phys grid on atm and intx between FV atm and ocn" )
}
// also
// need to compute graph between ocn/atm intx and phys atm mesh
/*if( atmCouComm != MPI_COMM_NULL )
{
int typeA = 3; // cells of atmosphere, dof based; maybe need another type for ParCommGraph graphtype ?
int typeB = 2; // point cloud, phys mesh
ierr = iMOAB_ComputeCommGraph( cplOcnAtmPID, cmpPhAtmPID, &atmCouComm, &couPEGroup, &atmPEGroup, &typeA, &typeB,
&ocnatmid, &cmpatm );
}*/
// need to compute graph between atm on coupler and phys atm mesh on component
if( atmCouComm != MPI_COMM_NULL )
{
int typeA = 2; // point cloud, phys mesh
int typeB = 3; // cells of atmosphere, dof based; need another type for ParCommGraph graphtype ?
ierr = iMOAB_ComputeCommGraph( cmpPhAtmPID, cplAtmPID, &atmCouComm, &atmPEGroup, &couPEGroup, &typeA, &typeB,
&cmpatm, &cplatm );
CHECKIERR( ierr, "cannot compute graph between phys grid on atm and FV atm on coupler" )
}
#endif
#ifdef ENABLE_ATMLND_COUPLING
if( couComm != MPI_COMM_NULL )
{
PUSH_TIMER( "Compute ATM-LND mesh intersection" )
ierr = iMOAB_ComputeMeshIntersectionOnSphere( cplAtmPID, cplLndPID, cplAtmLndPID );
CHECKIERR( ierr, "failed to compute atm - land intx for mapping" );
POP_TIMER( couComm, rankInCouComm )
PUSH_TIMER( "Compute LND-ATM mesh intersection" )
ierr =
iMOAB_ComputeMeshIntersectionOnSphere( cplLndPID, cplAtmPID, cplLndAtmPID ); // coverage mesh was computed
CHECKIERR( ierr, "cannot compute intersection" )
POP_TIMER( couComm, rankInCouComm )
}
if( atmCouComm != MPI_COMM_NULL )
{
// the new graph will be for sending data from atm comp to coverage mesh for land mesh;
// it involves initial atm app; cmpAtmPID; also migrate atm mesh on coupler pes, cplAtmPID
// results are in cplAtmLndPID, intx mesh; remapper also has some info about coverage mesh
// after this, the sending of tags from atm pes to coupler pes will use the new par comm graph, that has more
// precise info about what to send (specifically for land cover); every time,
/// we will use the element global id, which should uniquely identify the element
PUSH_TIMER( "Compute LND coverage graph for ATM mesh" )
ierr = iMOAB_CoverageGraph( &atmCouComm, cmpAtmPID, cplAtmPID, cplAtmLndPID, &cmpatm, &cplatm,
&cpllnd ); // it happens over joint communicator
CHECKIERR( ierr, "cannot recompute direct coverage graph for land" )
POP_TIMER( atmCouComm, rankInAtmComm ) // hijack this rank
}
// we will compute comm graph between atm phys and land, directly;
// on the new TriGrid workflow, we do need intersection between atm and land;
if( atmCouComm != MPI_COMM_NULL )
{
int typeA = 2; // point cloud
int typeB = 3; // type 3 for land on coupler, based on global ids for land cells ?
ierr = iMOAB_ComputeCommGraph( cmpPhAtmPID, cplAtmLndPID, &atmCouComm, &atmPEGroup, &couPEGroup, &typeA, &typeB,
&cmpatm, &atmlndid );
CHECKIERR( ierr, "cannot compute comm graph between atm and atm/lnd intersection" )
}
// for reverse direction, lnd - atm intx:
if( lndCouComm != MPI_COMM_NULL )
{
// now for the second intersection, lnd-atm; will be sending data from lnd to atm
// Can we reuse the intx atm-lnd? Not sure yet; we will compute everything again :(
// the new graph will be for sending data from lnd comp to coverage mesh over atm;
// it involves initial lnd app; cmpLndPID; also migrated lnd mesh on coupler pes, cplLndPID
// results are in cplLndAtmPID, intx mesh; remapper also has some info about coverage mesh
// after this, the sending of tags from lnd pes to coupler pes will use the new par comm graph, that has more
// precise info about what to send for atm cover ; every time, we will
// use the element global id, which should uniquely identify the element
PUSH_TIMER( "Compute ATM coverage graph for LND mesh" )
ierr = iMOAB_CoverageGraph( &lndCouComm, cmpLndPID, cplLndPID, cplLndAtmPID, &cmplnd, &cpllnd,
&cplatm ); // it happens over joint communicator, ocean + coupler
CHECKIERR( ierr, "cannot recompute direct coverage graph for atm for intx with land" )
POP_TIMER( lndCouComm, rankInLndComm )
}
#endif
MPI_Barrier( MPI_COMM_WORLD );
int fMonotoneTypeID = 0, fVolumetric = 0, fValidate = 1, fNoConserve = 0, fNoBubble = 1, fInverseDistanceMap = 0;
#ifdef ENABLE_ATMOCN_COUPLING
#ifdef VERBOSE
if( couComm != MPI_COMM_NULL )
{
char serialWriteOptions[] = ""; // for writing in serial
std::stringstream outf;
outf << "intxAtmOcn_" << rankInCouComm << ".h5m";
std::string intxfile = outf.str(); // write in serial the intx file, for debugging
ierr = iMOAB_WriteMesh( cplAtmOcnPID, intxfile.c_str(), serialWriteOptions );
CHECKIERR( ierr, "cannot write intx file result" )
}
#endif
if( couComm != MPI_COMM_NULL )
{
PUSH_TIMER( "Compute the projection weights with TempestRemap" )
ierr = iMOAB_ComputeScalarProjectionWeights( cplAtmOcnPID, weights_identifiers[0], disc_methods[1],
&disc_orders[1], // fv
disc_methods[1], &disc_orders[1], // fv
&fNoBubble, &fMonotoneTypeID, &fVolumetric, &fInverseDistanceMap,
&fNoConserve, &fValidate, dof_tag_names[1], dof_tag_names[1] );
CHECKIERR( ierr, "cannot compute scalar projection weights" )
POP_TIMER( couComm, rankInCouComm )
}
// now compute weight maps for ocn to atm mapping;
if( couComm != MPI_COMM_NULL )
{
PUSH_TIMER( "Compute the projection weights with TempestRemap for ocn - atm map" )
ierr = iMOAB_ComputeScalarProjectionWeights( cplOcnAtmPID, weights_identifiers[0], disc_methods[1],
&disc_orders[1], // fv
disc_methods[1], &disc_orders[1], // fv
&fNoBubble, &fMonotoneTypeID, &fVolumetric, &fInverseDistanceMap,
&fNoConserve, &fValidate, dof_tag_names[1], dof_tag_names[1] );
CHECKIERR( ierr, "cannot compute scalar projection weights" )
POP_TIMER( couComm, rankInCouComm )
}
#endif
MPI_Barrier( MPI_COMM_WORLD );
// we do not need to compute weights ? just send tags between dofs ?
#ifdef ENABLE_ATMLND_COUPLING
if( couComm != MPI_COMM_NULL )
{
// Compute the weights to project the solution from ATM component to LND component
PUSH_TIMER( "Compute ATM-LND remapping weights" )
ierr = iMOAB_ComputeScalarProjectionWeights( cplAtmLndPID, weights_identifiers[0], disc_methods[1],
&disc_orders[1], disc_methods[1], &disc_orders[1], &fNoBubble,
&fMonotoneTypeID, &fVolumetric, &fInverseDistanceMap, &fNoConserve,
&fValidate, dof_tag_names[1], dof_tag_names[1] );
CHECKIERR( ierr, "failed to compute remapping projection weights for ATM-LND scalar non-conservative field" );
POP_TIMER( couComm, rankInCouComm )
// Compute the weights to project the solution from LND component to ATM component
PUSH_TIMER( "Compute LND-ATM remapping weights" )
ierr = iMOAB_ComputeScalarProjectionWeights( cplLndAtmPID, weights_identifiers[0], disc_methods[1],
&disc_orders[1], disc_methods[1], &disc_orders[1], &fNoBubble,
&fMonotoneTypeID, &fVolumetric, &fInverseDistanceMap, &fNoConserve,
&fValidate, dof_tag_names[1], dof_tag_names[1] );
CHECKIERR( ierr, "failed to compute remapping projection weights for LND-ATM scalar non-conservative field" );
POP_TIMER( couComm, rankInCouComm )
}
#endif
int tagIndex[2];
int tagTypes[2] = { DENSE_DOUBLE, DENSE_DOUBLE };
int atmCompNDoFs = 1 /* FV disc_orders[0]*disc_orders[0] */, ocnCompNDoFs = 1 /*FV*/;
const char* bottomFields = "T_ph:u_ph:v_ph"; // same as on phys atm mesh
const char* bottomProjectedFields = "T_proj:u_proj:v_proj";
// coming from ocn to atm, project back from T_proj
const char* bottomFields2 = "T2_ph:u2_ph:v2_ph"; // same as on phys atm mesh<--- The scope of the variable 'bottomFields2' can be reduced. [+]The scope of the variable 'bottomFields2' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
// coming from lnd to atm, project back from T_proj
const char* bottomFields3 = "T3_ph:u3_ph:v3_ph"; // same as on phys atm mesh
// tags on phys grid atm mesh
const char* bottomPhProjectedFields = "Tph_proj:uph_proj:vph_proj";<--- The scope of the variable 'bottomPhProjectedFields' can be reduced. [+]The scope of the variable 'bottomPhProjectedFields' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
// tags on phys grid atm mesh
const char* bottomPhLndProjectedFields =<--- The scope of the variable 'bottomPhLndProjectedFields' can be reduced. [+]The scope of the variable 'bottomPhLndProjectedFields' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced:
void f(int x)
{
int i = 0;
if (x) {
// it's safe to move 'int i = 0;' here
for (int n = 0; n < 10; ++n) {
// it is possible but not safe to move 'int i = 0;' here
do_something(&i);
}
}
}
When you see this message it is always safe to reduce the variable scope 1 level.
"TphL_proj:uphL_proj:vphL_proj"; // L and Lnd signify the fields projected from land
if( couComm != MPI_COMM_NULL )
{
ierr = iMOAB_DefineTagStorage( cplAtmPID, bottomFields, &tagTypes[0], &atmCompNDoFs, &tagIndex[0] );
CHECKIERR( ierr, "failed to define the field tags T_ph, u_ph, v_ph " );
#ifdef ENABLE_ATMOCN_COUPLING
ierr = iMOAB_DefineTagStorage( cplOcnPID, bottomProjectedFields, &tagTypes[1], &ocnCompNDoFs, &tagIndex[1] );
CHECKIERR( ierr, "failed to define the field tags T_proj, u_proj, v_proj " );
#endif
#ifdef ENABLE_ATMLND_COUPLING
// need to define tag storage for land; will use the same T_proj, u_proj, v_proj name, because it will be
// used to send between point clouds !
// use the same ndof and same size as ocnCompNDoFs (1) !!
ierr = iMOAB_DefineTagStorage( cplLndPID, bottomProjectedFields, &tagTypes[1], &ocnCompNDoFs, &tagIndex[1] );
CHECKIERR( ierr, "failed to define the field tags T_proj, u_proj, v_proj" );
#endif
}
// need to make sure that the coverage mesh (created during intx method) received the tag that need to be projected
// to target so far, the coverage mesh has only the ids and global dofs; need to change the migrate method to
// accommodate any GLL tag now send a tag from original atmosphere (cmpAtmPID) towards migrated coverage mesh
// (cplAtmPID), using the new coverage graph communicator
// make the tag 0, to check we are actually sending needed data
{
if( cplAtmAppID >= 0 )
{
int nverts[3], nelem[3], nblocks[3], nsbc[3], ndbc[3];
/*
* Each process in the communicator will have access to a local mesh instance, which will contain the
* original cells in the local partition and ghost entities. Number of vertices, primary cells, visible
* blocks, number of sidesets and nodesets boundary conditions will be returned in numProcesses 3 arrays,
* for local, ghost and total numbers.
*/
ierr = iMOAB_GetMeshInfo( cplAtmPID, nverts, nelem, nblocks, nsbc, ndbc );
CHECKIERR( ierr, "failed to get num primary elems" );
int numAllElem = nelem[2];
std::vector< double > vals;
int storLeng = atmCompNDoFs * numAllElem * 3; // 3 tags
vals.resize( storLeng );
for( int k = 0; k < storLeng; k++ )
vals[k] = 0.;
int eetype = 1;
ierr = iMOAB_SetDoubleTagStorage( cplAtmPID, bottomFields, &storLeng, &eetype, &vals[0] );
CHECKIERR( ierr, "cannot make tag nul" )
// set the tag to 0
}
}
#ifdef ENABLE_ATMOCN_COUPLING
PUSH_TIMER( "Send/receive data from atm component to coupler in ocn context" )
if( atmComm != MPI_COMM_NULL )
{
// as always, use nonblocking sends
// this is for projection to ocean:
ierr = iMOAB_SendElementTag( cmpPhAtmPID, "T_ph:u_ph:v_ph", &atmCouComm, &atmocnid );
CHECKIERR( ierr, "cannot send tag values" )
}
if( couComm != MPI_COMM_NULL )
{
// receive on atm on coupler pes, that was redistributed according to coverage
ierr = iMOAB_ReceiveElementTag( cplAtmOcnPID, "T_ph:u_ph:v_ph", &atmCouComm, &cmpatm );
CHECKIERR( ierr, "cannot receive tag values" )
}
POP_TIMER( MPI_COMM_WORLD, rankInGlobalComm )
// we can now free the sender buffers
if( atmComm != MPI_COMM_NULL )
{
ierr = iMOAB_FreeSenderBuffers( cmpPhAtmPID, &atmocnid ); // context is for ocean
CHECKIERR( ierr, "cannot free buffers used to resend atm tag towards the coverage mesh" )
}
/*
#ifdef VERBOSE
if (couComm != MPI_COMM_NULL) {
char outputFileRecvd[] = "recvAtmCoupOcn.h5m";
ierr = iMOAB_WriteMesh(cplAtmPID, outputFileRecvd, fileWriteOptions );
}
#endif
*/
if( couComm != MPI_COMM_NULL )
{
const char* concat_fieldname = "T_ph:u_ph:v_ph";
const char* concat_fieldnameT = "T_proj:u_proj:v_proj";
/* We have the remapping weights now. Let us apply the weights onto the tag we defined
on the source mesh and get the projection on the target mesh */
PUSH_TIMER( "Apply Scalar projection weights" )
ierr = iMOAB_ApplyScalarProjectionWeights( cplAtmOcnPID, weights_identifiers[0], concat_fieldname,
concat_fieldnameT );
CHECKIERR( ierr, "failed to compute projection weight application" );
POP_TIMER( couComm, rankInCouComm )
char outputFileTgt[] = "fOcnOnCpl3.h5m";
ierr = iMOAB_WriteMesh( cplOcnPID, outputFileTgt, fileWriteOptions );
CHECKIERR( ierr, "failed to write fOcnOnCpl3.h5m " );
}
// send the projected tag back to ocean pes, with send/receive tag
if( ocnComm != MPI_COMM_NULL )
{
int tagIndexIn2;
ierr = iMOAB_DefineTagStorage( cmpOcnPID, bottomProjectedFields, &tagTypes[1], &ocnCompNDoFs, &tagIndexIn2 );
CHECKIERR( ierr,
"failed to define the field tag for receiving back the tag T_proj, u_proj, v_proj on ocn pes" );
}
// send the tag to ocean pes, from ocean mesh on coupler pes
// from couComm, using common joint comm ocn_coupler
// as always, use nonblocking sends
// original graph (context is -1_
if( couComm != MPI_COMM_NULL )
{
context_id = cmpocn;
ierr = iMOAB_SendElementTag( cplOcnPID, "T_proj:u_proj:v_proj", &ocnCouComm, &context_id );
CHECKIERR( ierr, "cannot send tag values back to ocean pes" )
}
// receive on component 2, ocean
if( ocnComm != MPI_COMM_NULL )
{
context_id = cplocn;
ierr = iMOAB_ReceiveElementTag( cmpOcnPID, "T_proj:u_proj:v_proj", &ocnCouComm, &context_id );
CHECKIERR( ierr, "cannot receive tag values from ocean mesh on coupler pes" )
}
MPI_Barrier( MPI_COMM_WORLD );
if( couComm != MPI_COMM_NULL )
{
context_id = cmpocn;
ierr = iMOAB_FreeSenderBuffers( cplOcnPID, &context_id );
CHECKIERR( ierr, "cannot free buffers related to send tag" )
}
if( ocnComm != MPI_COMM_NULL )
{
char outputFileOcn[] = "OcnWithProj3.h5m";
ierr = iMOAB_WriteMesh( cmpOcnPID, outputFileOcn, fileWriteOptions );
CHECKIERR( ierr, "cannot write OcnWithProj3.h5m" )
}
#endif
MPI_Barrier( MPI_COMM_WORLD );
#ifdef ENABLE_ATMLND_COUPLING
// start land proj:
// we used this to compute
// ierr = iMOAB_ComputeCommGraph(cmpPhAtmPID, cplLndPID, &atmCouComm, &atmPEGroup, &couPEGroup,
// &typeA, &typeB, &cmpatm, &atmlndid);
// end copy
PUSH_TIMER( "Send/receive data from phys comp atm to coupler land, using computed graph" )
if( atmComm != MPI_COMM_NULL )
{
// as always, use nonblocking sends
// this is for projection to land:
ierr = iMOAB_SendElementTag( cmpPhAtmPID, "T_ph:u_ph:v_ph", &atmCouComm, &atmlndid );
CHECKIERR( ierr, "cannot send tag values towards cpl on land" )
}
if( couComm != MPI_COMM_NULL )
{
// receive on lnd on coupler pes
ierr = iMOAB_ReceiveElementTag( cplAtmLndPID, "T_ph:u_ph:v_ph", &atmCouComm, &cmpatm );
CHECKIERR( ierr, "cannot receive tag values on land on coupler, for atm coupling" )
}
POP_TIMER( MPI_COMM_WORLD, rankInGlobalComm )
// we can now free the sender buffers
if( atmComm != MPI_COMM_NULL )
{
ierr = iMOAB_FreeSenderBuffers( cmpPhAtmPID, &atmlndid );
CHECKIERR( ierr, "cannot free buffers used to resend atm tag towards the land on coupler" )
}
if( couComm != MPI_COMM_NULL )
{
const char* concat_fieldname = "T_ph:u_ph:v_ph";
const char* concat_fieldnameT = "T_proj:u_proj:v_proj";
/* We have the remapping weights now. Let us apply the weights onto the tag we defined
on the source mesh and get the projection on the target mesh */
PUSH_TIMER( "Apply Scalar projection weights" )
ierr = iMOAB_ApplyScalarProjectionWeights( cplAtmLndPID, weights_identifiers[0], concat_fieldname,
concat_fieldnameT );
CHECKIERR( ierr, "failed to compute projection weight application" );
POP_TIMER( couComm, rankInCouComm )
char outputFileTgt[] = "fLndOnCpl3.h5m";
ierr = iMOAB_WriteMesh( cplLndPID, outputFileTgt, fileWriteOptions );
CHECKIERR( ierr, "cannot write land on coupler" )
}
// end land proj
// send the tags back to land pes, from land mesh on coupler pes
// send from cplLndPID to cmpLndPID, using common joint comm
// as always, use nonblocking sends
// original graph
// int context_id = -1;
// the land might not have these tags yet; it should be a different name for land
// in e3sm we do have different names
if( lndComm != MPI_COMM_NULL )
{
int tagIndexIn2;
ierr = iMOAB_DefineTagStorage( cmpLndPID, bottomProjectedFields, &tagTypes[1], &ocnCompNDoFs, &tagIndexIn2 );
CHECKIERR( ierr,
"failed to define the field tag for receiving back the tag T_proj, u_proj, v_proj on lnd pes" );
}
if( couComm != MPI_COMM_NULL )
{
context_id = cmplnd;
ierr = iMOAB_SendElementTag( cplLndPID, "T_proj:u_proj:v_proj", &lndCouComm, &context_id );
CHECKIERR( ierr, "cannot send tag values back to land pes" )
}
// receive on component 3, land
if( lndComm != MPI_COMM_NULL )
{
context_id = cpllnd;
ierr = iMOAB_ReceiveElementTag( cmpLndPID, "T_proj:u_proj:v_proj", &lndCouComm, &context_id );
CHECKIERR( ierr, "cannot receive tag values from land mesh on coupler pes" )
}
MPI_Barrier( MPI_COMM_WORLD );
if( couComm != MPI_COMM_NULL )
{
context_id = cmplnd;
ierr = iMOAB_FreeSenderBuffers( cplLndPID, &context_id );
CHECKIERR( ierr, "cannot free buffers related to sending tags from coupler to land pes" )
}
if( lndComm != MPI_COMM_NULL )
{
char outputFileLnd[] = "LndWithProj3.h5m";
ierr = iMOAB_WriteMesh( cmpLndPID, outputFileLnd, fileWriteOptions );
CHECKIERR( ierr, "cannot write land file with projection" )
}
// we have received on ocean component some data projected from atm, on coupler
// path was T_ph (atm phys) towards atm on FV mesh, we projected, then we sent back to ocean comp
// start copy ocn atm coupling; go reverse direction now !!
#ifdef ENABLE_ATMOCN_COUPLING
PUSH_TIMER( "Send/receive data from ocn component to coupler in atm context" )
if( ocnComm != MPI_COMM_NULL )
{
// as always, use nonblocking sends
// this is for projection to ocean:
ierr = iMOAB_SendElementTag( cmpOcnPID, "T_proj:u_proj:v_proj", &ocnCouComm, &cplatm );
CHECKIERR( ierr, "cannot send tag values T_proj, etc towards ocn coupler" )
}
if( couComm != MPI_COMM_NULL )
{
// receive on ocn on coupler pes, that was redistributed according to coverage
ierr = iMOAB_ReceiveElementTag( cplOcnPID, "T_proj:u_proj:v_proj", &ocnCouComm, &cplatm );
CHECKIERR( ierr, "cannot receive tag values" )
}
POP_TIMER( MPI_COMM_WORLD, rankInGlobalComm )
// we can now free the sender buffers
if( ocnComm != MPI_COMM_NULL )
{
ierr = iMOAB_FreeSenderBuffers( cmpOcnPID, &cplatm ); // context is for atm
CHECKIERR( ierr, "cannot free buffers used to send ocn tag towards the coverage mesh for atm" )
}
//#ifdef VERBOSE
if( couComm != MPI_COMM_NULL )<--- First condition
{
// write only for n==1 case
char outputFileRecvd[] = "recvOcnCpl.h5m";
ierr = iMOAB_WriteMesh( cplOcnPID, outputFileRecvd, fileWriteOptions );
CHECKIERR( ierr, "could not write recvOcnCplOcn.h5m to disk" )
}
//#endif
if( couComm != MPI_COMM_NULL )<--- Second condition
{
/* We have the remapping weights now. Let us apply the weights onto the tag we defined
on the source mesh and get the projection on the target mesh */
const char* concat_fieldname = "T_proj:u_proj:v_proj"; // this is now source tag
const char* concat_fieldnameT = "T2_ph:u2_ph:v2_ph"; // projected tag on
// make sure the new tags exist on atm coupler mesh;
ierr = iMOAB_DefineTagStorage( cplAtmPID, bottomFields2, &tagTypes[0], &atmCompNDoFs, &tagIndex[0] );
CHECKIERR( ierr, "failed to define the field tags T2_ph, u2_ph, v2_ph" );
PUSH_TIMER( "Apply Scalar projection weights" )
ierr = iMOAB_ApplyScalarProjectionWeights( cplLndAtmPID, weights_identifiers[0], concat_fieldname,
concat_fieldnameT );
CHECKIERR( ierr, "failed to compute projection weight application" );
POP_TIMER( couComm, rankInCouComm )
char outputFileTgt[] = "fAtm2OnCpl2.h5m";
ierr = iMOAB_WriteMesh( cplAtmPID, outputFileTgt, fileWriteOptions );
CHECKIERR( ierr, "could not write fAtm2OnCpl.h5m to disk" )
}
// send the projected tag back to atm pes, with send/receive partial par graph computed
// from intx ocn/atm towards atm physics mesh !
if( atmComm != MPI_COMM_NULL )
{
int tagIndexIn2;
ierr =
iMOAB_DefineTagStorage( cmpPhAtmPID, bottomPhProjectedFields, &tagTypes[1], &atmCompNDoFs, &tagIndexIn2 );
CHECKIERR( ierr, "failed to define the field tag for receiving back the tag "
"Tph_proj, etc on atm pes" );
}
// send the tag to atm pes, from atm pg2 mesh on coupler pes
// from couComm, using common joint comm atm_coupler, and computed graph, phys-grid -> atm FV on cpl, in reverse
// as always, use nonblocking sends
// graph context comes from commgraph ?
// ierr = iMOAB_ComputeCommGraph( cmpPhAtmPID, cplAtmPID, &atmCouComm, &atmPEGroup, &couPEGroup, &typeA,
// &typeB,
// &cmpatm, &cplatm );
if( couComm != MPI_COMM_NULL )
{
context_id = cmpatm;
ierr = iMOAB_SendElementTag( cplAtmPID, "T2_ph:u2_ph:v2_ph", &atmCouComm, &context_id );
CHECKIERR( ierr, "cannot send tag values back to atm pes" )
}
// receive on component atm phys mesh
if( atmComm != MPI_COMM_NULL )
{
context_id = cplatm;
ierr = iMOAB_ReceiveElementTag( cmpPhAtmPID, "Tph_proj:uph_proj:vph_proj", &atmCouComm, &context_id );
CHECKIERR( ierr, "cannot receive tag values from atm pg2 mesh on coupler pes" )
}
MPI_Barrier( MPI_COMM_WORLD );
if( couComm != MPI_COMM_NULL )
{
context_id = cmpatm;
ierr = iMOAB_FreeSenderBuffers( cplAtmPID, &context_id );
CHECKIERR( ierr, "cannot free buffers for sending T2_ph from cpl to phys atm" )
}
if( atmComm != MPI_COMM_NULL ) // write only for n==1 case
{
char outputFileAtmPh[] = "AtmPhysProj.h5m";
ierr = iMOAB_WriteMesh( cmpPhAtmPID, outputFileAtmPh, fileWriteOptions );
CHECKIERR( ierr, "could not write AtmPhysProj.h5m to disk" )
}
#endif
// end copy need more work for land
// start copy
// lnd atm coupling; go reverse direction now, from lnd to atm , using lnd - atm intx, weight gen
// send back the T_proj , etc , from lan comp to land coupler
#ifdef ENABLE_ATMLND_COUPLING
PUSH_TIMER( "Send/receive data from lnd component to coupler in atm context" )
if( lndComm != MPI_COMM_NULL )
{
// as always, use nonblocking sends
ierr = iMOAB_SendElementTag( cmpLndPID, "T_proj:u_proj:v_proj", &lndCouComm, &cplatm );
CHECKIERR( ierr, "cannot send tag values T_proj, etc towards lnd coupler" )
}
if( couComm != MPI_COMM_NULL )
{
// receive on ocn on coupler pes, that was redistributed according to coverage
ierr = iMOAB_ReceiveElementTag( cplLndPID, "T_proj:u_proj:v_proj", &lndCouComm, &cplatm );
CHECKIERR( ierr, "cannot receive tag values" )
}
POP_TIMER( MPI_COMM_WORLD, rankInGlobalComm )
// we can now free the sender buffers
if( lndComm != MPI_COMM_NULL )
{
ierr = iMOAB_FreeSenderBuffers( cmpLndPID, &cplatm ); // context is for atm
CHECKIERR( ierr, "cannot free buffers used to send lnd tag towards the coverage mesh for atm" )
}
//#ifdef VERBOSE
if( couComm != MPI_COMM_NULL )<--- First condition
{
char outputFileRecvd[] = "recvLndCpl.h5m";
ierr = iMOAB_WriteMesh( cplLndPID, outputFileRecvd, fileWriteOptions );
CHECKIERR( ierr, "could not write recvLndCpl.h5m to disk" )
}
//#endif
if( couComm != MPI_COMM_NULL )<--- Second condition
{
PUSH_TIMER( "Apply Scalar projection weights for lnd - atm coupling" )
const char* concat_fieldname = "T_proj:u_proj:v_proj"; // this is now source tag, on land cpl
const char* concat_fieldnameT = "T3_ph:u3_ph:v3_ph"; // projected tag on
// make sure the new tags exist on atm coupler mesh;
ierr = iMOAB_DefineTagStorage( cplAtmPID, bottomFields3, &tagTypes[0], &atmCompNDoFs, &tagIndex[0] );
CHECKIERR( ierr, "failed to define the field tag T3_ph" );
ierr = iMOAB_ApplyScalarProjectionWeights( cplLndAtmPID, weights_identifiers[0], concat_fieldname,
concat_fieldnameT );
CHECKIERR( ierr, "failed to compute projection weight application from lnd to atm " );
POP_TIMER( couComm, rankInCouComm )
char outputFileTgt[] = "fAtm3OnCpl.h5m"; // this is for T3_ph, etc
ierr = iMOAB_WriteMesh( cplAtmPID, outputFileTgt, fileWriteOptions );
CHECKIERR( ierr, "could not write fAtm3OnCpl.h5m to disk" )
}
// send the projected tag back to atm pes, with send/receive partial par graph computed
// from intx lnd/atm towards atm physics mesh !
if( atmComm != MPI_COMM_NULL )
{
int tagIndexIn2;
ierr = iMOAB_DefineTagStorage( cmpPhAtmPID, bottomPhLndProjectedFields, &tagTypes[1], &atmCompNDoFs,
&tagIndexIn2 );
CHECKIERR( ierr, "failed to define the field tag for receiving back the tag "
"TphL_proj, on atm pes" );
}
// send the tag to atm pes, from atm pg2 mesh on coupler pes
// from couComm, using common joint comm atm_coupler, and computed graph, phys-grid -> atm FV on cpl, in reverse
// as always, use nonblocking sends
// graph context comes from commgraph ?
// ierr = iMOAB_ComputeCommGraph( cmpPhAtmPID, cplAtmPID, &atmCouComm, &atmPEGroup, &couPEGroup, &typeA,
// &typeB,
// &cmpatm, &cplatm );
if( couComm != MPI_COMM_NULL )
{
context_id = cmpatm;
ierr = iMOAB_SendElementTag( cplAtmPID, "T3_ph:u3_ph:v3_ph", &atmCouComm, &context_id );
CHECKIERR( ierr, "cannot send tag values back to atm pes" )
}
// receive on component atm phys mesh
if( atmComm != MPI_COMM_NULL )
{
context_id = cplatm;
ierr = iMOAB_ReceiveElementTag( cmpPhAtmPID, "TphL_proj:uphL_proj:vphL_proj", &atmCouComm, &context_id );
CHECKIERR( ierr, "cannot receive tag values from atm pg2 mesh on coupler pes" )
}
MPI_Barrier( MPI_COMM_WORLD );
if( couComm != MPI_COMM_NULL )
{
context_id = cmpatm;
ierr = iMOAB_FreeSenderBuffers( cplAtmPID, &context_id );
CHECKIERR( ierr, "cannot free buffers used for sending back atm tags " )
}
if( atmComm != MPI_COMM_NULL ) // write only for n==1 case
{
char outputFileAtmPh[] = "AtmPhysProj3.h5m";
ierr = iMOAB_WriteMesh( cmpPhAtmPID, outputFileAtmPh, fileWriteOptions );
CHECKIERR( ierr, "could not write AtmPhysProj3.h5m to disk" )
}
#endif
// we could deregister cplLndAtmPID
if( couComm != MPI_COMM_NULL )<--- First condition
{
ierr = iMOAB_DeregisterApplication( cplLndAtmPID );
CHECKIERR( ierr, "cannot deregister app intx LA" )
}
// we could deregister cplAtmLndPID
if( couComm != MPI_COMM_NULL )<--- Second condition<--- First condition
{
ierr = iMOAB_DeregisterApplication( cplAtmLndPID );
CHECKIERR( ierr, "cannot deregister app intx AL" )
}
#endif // ENABLE_ATMLND_COUPLING
#ifdef ENABLE_ATMOCN_COUPLING
if( couComm != MPI_COMM_NULL )<--- Second condition<--- First condition
{
ierr = iMOAB_DeregisterApplication( cplOcnAtmPID );
CHECKIERR( ierr, "cannot deregister app intx OA" )
}
if( couComm != MPI_COMM_NULL )<--- Second condition
{
ierr = iMOAB_DeregisterApplication( cplAtmOcnPID );
CHECKIERR( ierr, "cannot deregister app intx AO" )
}
#endif
#ifdef ENABLE_ATMLND_COUPLING
if( lndComm != MPI_COMM_NULL )
{
ierr = iMOAB_DeregisterApplication( cmpLndPID );
CHECKIERR( ierr, "cannot deregister app LND1" )
}
#endif // ENABLE_ATMLND_COUPLING
if( atmComm != MPI_COMM_NULL )
{
ierr = iMOAB_DeregisterApplication( cmpPhAtmPID );
CHECKIERR( ierr, "cannot deregister app PhysAtm " )
}
#ifdef ENABLE_ATMOCN_COUPLING
if( ocnComm != MPI_COMM_NULL )
{
ierr = iMOAB_DeregisterApplication( cmpOcnPID );
CHECKIERR( ierr, "cannot deregister app OCN1" )
}
#endif // ENABLE_ATMOCN_COUPLING
if( atmComm != MPI_COMM_NULL )
{
ierr = iMOAB_DeregisterApplication( cmpAtmPID );
CHECKIERR( ierr, "cannot deregister app ATM1" )
}
#ifdef ENABLE_ATMLND_COUPLING
if( couComm != MPI_COMM_NULL )<--- First condition
{
ierr = iMOAB_DeregisterApplication( cplLndPID );
CHECKIERR( ierr, "cannot deregister app LNDX" )
}
#endif // ENABLE_ATMLND_COUPLING
#ifdef ENABLE_ATMOCN_COUPLING
if( couComm != MPI_COMM_NULL )<--- Second condition<--- First condition
{
ierr = iMOAB_DeregisterApplication( cplOcnPID );
CHECKIERR( ierr, "cannot deregister app OCNX" )
}
#endif // ENABLE_ATMOCN_COUPLING
if( couComm != MPI_COMM_NULL )<--- Second condition
{
ierr = iMOAB_DeregisterApplication( cplAtmPID );
CHECKIERR( ierr, "cannot deregister app ATMX" )
}
//#endif
ierr = iMOAB_Finalize();<--- ierr is overwritten
CHECKIERR( ierr, "did not finalize iMOAB" )
// free atm coupler group and comm
if( MPI_COMM_NULL != atmCouComm ) MPI_Comm_free( &atmCouComm );
MPI_Group_free( &joinAtmCouGroup );
if( MPI_COMM_NULL != atmComm ) MPI_Comm_free( &atmComm );
#ifdef ENABLE_ATMOCN_COUPLING
if( MPI_COMM_NULL != ocnComm ) MPI_Comm_free( &ocnComm );
// free ocn - coupler group and comm
if( MPI_COMM_NULL != ocnCouComm ) MPI_Comm_free( &ocnCouComm );
MPI_Group_free( &joinOcnCouGroup );
#endif
#ifdef ENABLE_ATMLND_COUPLING
if( MPI_COMM_NULL != lndComm ) MPI_Comm_free( &lndComm );
// free land - coupler group and comm
if( MPI_COMM_NULL != lndCouComm ) MPI_Comm_free( &lndCouComm );
MPI_Group_free( &joinLndCouGroup );
#endif
if( MPI_COMM_NULL != couComm ) MPI_Comm_free( &couComm );
MPI_Group_free( &atmPEGroup );
#ifdef ENABLE_ATMOCN_COUPLING
MPI_Group_free( &ocnPEGroup );
#endif
#ifdef ENABLE_ATMLND_COUPLING
MPI_Group_free( &lndPEGroup );
#endif
MPI_Group_free( &couPEGroup );
MPI_Group_free( &jgroup );
MPI_Finalize();
// endif #if 0
return 0;
}
|