-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathgrid.html
More file actions
1984 lines (1454 loc) · 81.7 KB
/
Copy pathgrid.html
File metadata and controls
1984 lines (1454 loc) · 81.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="GEMINI3D is a modular ionospheric model that incorporates kinetic models such as Fang, GLOW.">
<meta name="author" content="Matthew Zettergren
Guy Grubbs
Michael Hirsch" >
<link rel="icon" href="../favicon.png">
<title>grid – GEMINI3D</title>
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link href="../css/pygments.css" rel="stylesheet">
<link href="../css/font-awesome.min.css" rel="stylesheet">
<link href="../css/local.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="../js/jquery-2.1.3.min.js"></script>
<script src="../js/svg-pan-zoom.min.js"></script>
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">GEMINI3D </a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="dropdown hidden-xs visible-sm visible-md hidden-lg">
<a href="#" class="dropdown-toggle"
data-toggle="dropdown" role="button"
aria-haspopup="true"
aria-expanded="false">Contents <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="../lists/files.html">Source Files</a></li>
<li><a href="../lists/modules.html">Modules</a></li>
<li><a href="../blockdata/gtd7bk.html">Block Data</a></li>
<li><a href="../lists/procedures.html">Procedures</a></li>
<li><a href="../lists/types.html">Derived Types</a></li>
<li><a href="../lists/programs.html">Programs</a></li>
</ul>
</li>
<li class="visible-xs hidden-sm visible-lg"><a href="../lists/files.html">Source Files</a></li>
<li class="visible-xs hidden-sm visible-lg"><a href="../lists/modules.html">Modules</a></li>
<li class="visible-xs hidden-sm visible-lg"><a href="../blockdata/gtd7bk.html">Block Data</a></li>
<li class="visible-xs hidden-sm visible-lg"><a href="../lists/procedures.html">Procedures</a></li>
<li class="visible-xs hidden-sm visible-lg"><a href="../lists/types.html">Derived Types</a></li>
<li class="visible-xs hidden-sm visible-lg"><a href="../lists/programs.html">Programs</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="row">
<h1>grid
<small>Module</small>
</h1>
<div class="row">
<div class="col-lg-12">
<div class="well well-sm">
<ul class="list-inline" style="margin-bottom:0px;display:inline">
<li><i class="fa fa-list-ol"></i>
<a data-toggle="tooltip"
data-placement="bottom" data-html="true"
title=" 0.9% of total for modules and submodules.">100 statements</a>
</li>
<li><i class="fa fa-code"></i><a href="../src/grid.f90"> Source File</a></li>
</ul>
<ol class="breadcrumb in-well text-right">
<li><a href='../sourcefile/grid.f90.html'>grid.f90</a></li>
<li class="active">grid</li>
</ol>
</div>
</div>
</div>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</div>
<div class="row">
<div class="col-md-3 hidden-xs hidden-sm visible-md visible-lg">
<div id="sidebar">
<h3>Contents</h3>
<div class="panel panel-primary">
<div class="panel-heading text-left"><h3 class="panel-title"><a data-toggle="collapse" href="#vars-0">Variables</a></h3></div>
<div id="vars-0" class="panel-collapse collapse">
<div class="list-group">
<a class="list-group-item" href="../module/grid.html#variable-lx1~3">lx1</a>
<a class="list-group-item" href="../module/grid.html#variable-lx2~3">lx2</a>
<a class="list-group-item" href="../module/grid.html#variable-lx3~3">lx3</a>
<a class="list-group-item" href="../module/grid.html#variable-lx2all~5">lx2all</a>
<a class="list-group-item" href="../module/grid.html#variable-lx3all~5">lx3all</a>
<a class="list-group-item" href="../module/grid.html#variable-g1">g1</a>
<a class="list-group-item" href="../module/grid.html#variable-g2">g2</a>
<a class="list-group-item" href="../module/grid.html#variable-g3">g3</a>
<a class="list-group-item" href="../module/grid.html#variable-gridflag~2">gridflag</a>
<a class="list-group-item" href="../module/grid.html#variable-flagswap~2">flagswap</a>
</div>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading text-left"><h3 class="panel-title"><a data-toggle="collapse" href="#inters-0">Interfaces</a></h3></div>
<div id="inters-0" class="panel-collapse collapse">
<div class="list-group">
<a class="list-group-item" href="../module/grid.html#interface-read_grid">read_grid</a>
</div>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-heading text-left"><h3 class="panel-title"><a data-toggle="collapse" href="#subs-0">Subroutines</a></h3></div>
<div class="list-group">
<div id="subs-0" class="panel-collapse collapse">
<a class="list-group-item" href="../module/grid.html#proc-grid_size">grid_size</a>
<a class="list-group-item" href="../module/grid.html#proc-clear_grid">clear_grid</a>
<a class="list-group-item" href="../module/grid.html#proc-clear_unitvecs">clear_unitvecs</a>
<a class="list-group-item" href="../module/grid.html#proc-load_grav">load_grav</a>
<a class="list-group-item" href="../module/grid.html#proc-clear_grav">clear_grav</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-9" id='text'>
<br>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Uses</h3>
</div>
<ul class="list-group">
<li class="list-group-item">
<ul class="list-inline">
<li><a href="http://fortranwiki.org/fortran/show/ISO_FORTRAN_ENV">iso_fortran_env</a></li>
<li><a href='../module/mesh.html'>mesh</a></li>
<li><a href='../module/phys_consts.html'>phys_consts</a></li>
<li><a href='../module/reader.html'>reader</a></li>
<li><a href='../module/mpimod.html'>mpimod</a></li>
</ul>
</li>
<li class="list-group-item">
<div class="depgraph"><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: module~~grid~~UsesGraph Pages: 1 -->
<svg id="modulegridUsesGraph" width="383pt" height="184pt"
viewBox="0.00 0.00 383.00 183.63" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="module~~grid~~UsesGraph" class="graph" transform="scale(1 1) rotate(0) translate(4 179.6329)">
<title>module~~grid~~UsesGraph</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-179.6329 379,-179.6329 379,4 -4,4"/>
<!-- module~grid -->
<g id="module~~grid~~UsesGraph_node1" class="node">
<title>module~grid</title>
<polygon fill="none" stroke="#000000" points="375,-93.6329 321,-93.6329 321,-69.6329 375,-69.6329 375,-93.6329"/>
<text text-anchor="middle" x="348" y="-79.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#000000">grid</text>
</g>
<!-- module~reader -->
<g id="module~~grid~~UsesGraph_node2" class="node">
<title>module~reader</title>
<g id="a_module~~grid~~UsesGraph_node2"><a xlink:href=".././module/reader.html" xlink:title="reader">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-175.6329 231,-175.6329 231,-151.6329 285,-151.6329 285,-175.6329"/>
<text text-anchor="middle" x="258" y="-161.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">reader</text>
</a>
</g>
</g>
<!-- module~grid->module~reader -->
<g id="module~~grid~~UsesGraph_edge1" class="edge">
<title>module~grid->module~reader</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M336.2873,-93.7248C323.9031,-106.3284 303.6207,-126.4601 285,-142.6329 284.0417,-143.4652 283.0551,-144.305 282.0518,-145.1451"/>
<polygon fill="#000000" stroke="#000000" points="279.7969,-142.4673 274.2203,-151.4758 284.1975,-147.9111 279.7969,-142.4673"/>
</g>
<!-- iso_fortran_env -->
<g id="module~~grid~~UsesGraph_node3" class="node">
<title>iso_fortran_env</title>
<g id="a_module~~grid~~UsesGraph_node3"><a xlink:href="http://fortranwiki.org/fortran/show/ISO_FORTRAN_ENV" xlink:title="iso_fortran_env">
<polygon fill="#337ab7" stroke="#337ab7" points="87,-113.6329 0,-113.6329 0,-89.6329 87,-89.6329 87,-113.6329"/>
<text text-anchor="middle" x="43.5" y="-99.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">iso_fortran_env</text>
</a>
</g>
</g>
<!-- module~grid->iso_fortran_env -->
<g id="module~~grid~~UsesGraph_edge2" class="edge">
<title>module~grid->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M339.9425,-69.4136C329.3682,-54.6172 309.2727,-30.4584 285,-20.6329 218.2607,6.3831 189.3899,7.2309 123,-20.6329 94.0094,-32.8002 70.2729,-61.2677 56.5034,-80.9891"/>
<polygon fill="#000000" stroke="#000000" points="53.5621,-79.0911 50.8952,-89.3448 59.3743,-82.9922 53.5621,-79.0911"/>
</g>
<!-- module~phys_consts -->
<g id="module~~grid~~UsesGraph_node4" class="node">
<title>module~phys_consts</title>
<g id="a_module~~grid~~UsesGraph_node4"><a xlink:href=".././module/phys_consts.html" xlink:title="phys_consts">
<polygon fill="#337ab7" stroke="#337ab7" points="195,-133.6329 123,-133.6329 123,-109.6329 195,-109.6329 195,-133.6329"/>
<text text-anchor="middle" x="159" y="-119.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">phys_consts</text>
</a>
</g>
</g>
<!-- module~grid->module~phys_consts -->
<g id="module~~grid~~UsesGraph_edge3" class="edge">
<title>module~grid->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M320.8659,-85.0764C297.0357,-88.3291 261.5091,-93.7338 231,-100.6329 222.4185,-102.5734 213.351,-104.9526 204.6519,-107.4036"/>
<polygon fill="#000000" stroke="#000000" points="203.6686,-104.0445 195.0325,-110.182 205.611,-110.7696 203.6686,-104.0445"/>
</g>
<!-- module~mesh -->
<g id="module~~grid~~UsesGraph_node5" class="node">
<title>module~mesh</title>
<g id="a_module~~grid~~UsesGraph_node5"><a xlink:href=".././module/mesh.html" xlink:title="mesh">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-133.6329 231,-133.6329 231,-109.6329 285,-109.6329 285,-133.6329"/>
<text text-anchor="middle" x="258" y="-119.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mesh</text>
</a>
</g>
</g>
<!-- module~grid->module~mesh -->
<g id="module~~grid~~UsesGraph_edge4" class="edge">
<title>module~grid->module~mesh</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M320.997,-93.6342C312.7078,-97.3183 303.4431,-101.4359 294.6234,-105.3558"/>
<polygon fill="#000000" stroke="#000000" points="293.0116,-102.242 285.295,-109.5018 295.8546,-108.6387 293.0116,-102.242"/>
</g>
<!-- module~mpimod -->
<g id="module~~grid~~UsesGraph_node6" class="node">
<title>module~mpimod</title>
<g id="a_module~~grid~~UsesGraph_node6"><a xlink:href=".././module/mpimod.html" xlink:title="mpimod">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-53.6329 231,-53.6329 231,-29.6329 285,-29.6329 285,-53.6329"/>
<text text-anchor="middle" x="258" y="-39.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mpimod</text>
</a>
</g>
</g>
<!-- module~grid->module~mpimod -->
<g id="module~~grid~~UsesGraph_edge5" class="edge">
<title>module~grid->module~mpimod</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M320.997,-69.6315C312.7078,-65.9474 303.4431,-61.8298 294.6234,-57.9099"/>
<polygon fill="#000000" stroke="#000000" points="295.8546,-54.6271 285.295,-53.764 293.0116,-61.0237 295.8546,-54.6271"/>
</g>
<!-- module~reader->iso_fortran_env -->
<g id="module~~grid~~UsesGraph_edge6" class="edge">
<title>module~reader->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.7661,-161.9736C203.0684,-159.6935 159.1937,-154.4359 123,-142.6329 105.0268,-136.7717 86.1702,-127.2137 71.3345,-118.8001"/>
<polygon fill="#000000" stroke="#000000" points="73.0641,-115.7572 62.6606,-113.7526 69.5433,-121.8073 73.0641,-115.7572"/>
</g>
<!-- module~reader->module~phys_consts -->
<g id="module~~grid~~UsesGraph_edge7" class="edge">
<title>module~reader->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-152.1562C220.3923,-147.6781 208.109,-142.467 196.7112,-137.6315"/>
<polygon fill="#000000" stroke="#000000" points="197.9753,-134.366 187.4026,-133.6824 195.2415,-140.81 197.9753,-134.366"/>
</g>
<!-- module~phys_consts->iso_fortran_env -->
<g id="module~~grid~~UsesGraph_edge8" class="edge">
<title>module~phys_consts->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M122.772,-115.3596C114.6884,-113.9599 105.9484,-112.4464 97.3255,-110.9533"/>
<polygon fill="#000000" stroke="#000000" points="97.7538,-107.4755 87.3033,-109.2178 96.5594,-114.3728 97.7538,-107.4755"/>
</g>
<!-- module~mesh->module~phys_consts -->
<g id="module~~grid~~UsesGraph_edge9" class="edge">
<title>module~mesh->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-121.6329C223.0473,-121.6329 214.1788,-121.6329 205.4382,-121.6329"/>
<polygon fill="#000000" stroke="#000000" points="205.3018,-118.133 195.3018,-121.6329 205.3018,-125.133 205.3018,-118.133"/>
</g>
<!-- module~mpimod->iso_fortran_env -->
<g id="module~~grid~~UsesGraph_edge11" class="edge">
<title>module~mpimod->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.8423,-51.1465C219.7793,-54.9012 206.8321,-59.1425 195,-62.6329 162.7262,-72.1533 126.2073,-81.5931 97.1111,-88.8005"/>
<polygon fill="#000000" stroke="#000000" points="96.0216,-85.4641 87.1482,-91.2532 97.6949,-92.2612 96.0216,-85.4641"/>
</g>
<!-- module~mpimod->module~phys_consts -->
<g id="module~~grid~~UsesGraph_edge12" class="edge">
<title>module~mpimod->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M244.2664,-53.9828C231.6872,-65.1543 212.4292,-81.9078 195,-95.6329 191.6611,-98.2622 188.0909,-100.9647 184.5438,-103.587"/>
<polygon fill="#000000" stroke="#000000" points="182.4583,-100.7759 176.429,-109.4879 186.5752,-106.4374 182.4583,-100.7759"/>
</g>
<!-- mpi -->
<g id="module~~grid~~UsesGraph_node7" class="node">
<title>mpi</title>
<g id="a_module~~grid~~UsesGraph_node7"><a xlink:href="http://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node410.htm" xlink:title="mpi">
<polygon fill="#337ab7" stroke="#337ab7" points="186,-53.6329 132,-53.6329 132,-29.6329 186,-29.6329 186,-53.6329"/>
<text text-anchor="middle" x="159" y="-39.2329" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mpi</text>
</a>
</g>
</g>
<!-- module~mpimod->mpi -->
<g id="module~~grid~~UsesGraph_edge10" class="edge">
<title>module~mpimod->mpi</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-41.6329C220.2528,-41.6329 207.784,-41.6329 196.2596,-41.6329"/>
<polygon fill="#000000" stroke="#000000" points="196.0195,-38.133 186.0195,-41.6329 196.0194,-45.133 196.0195,-38.133"/>
</g>
</g>
</svg>
</div><div><a type="button" class="graph-help" data-toggle="modal" href="#graph-help-text">Help</a></div><div class="modal fade" id="graph-help-text" tabindex="-1" role="dialog"><div class="modal-dialog modal-lg" role="document"><div class="modal-content"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button><h4 class="modal-title" id="-graph-help-label">Graph Key</h4></div><div class="modal-body">
<p>Nodes of different colours represent the following: </p>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: Graph Key Pages: 1 -->
<svg width="490pt" height="32pt"
viewBox="0.00 0.00 489.50 32.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 28)">
<title>Graph Key</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-28 485.5,-28 485.5,4 -4,4"/>
<!-- Module -->
<g id="node1" class="node">
<title>Module</title>
<polygon fill="#337ab7" stroke="#337ab7" points="54,-24 0,-24 0,0 54,0 54,-24"/>
<text text-anchor="middle" x="27" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Module</text>
</g>
<!-- Submodule -->
<g id="node2" class="node">
<title>Submodule</title>
<polygon fill="#5bc0de" stroke="#5bc0de" points="139.5,-24 72.5,-24 72.5,0 139.5,0 139.5,-24"/>
<text text-anchor="middle" x="106" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Submodule</text>
</g>
<!-- Subroutine -->
<g id="node3" class="node">
<title>Subroutine</title>
<polygon fill="#d9534f" stroke="#d9534f" points="222,-24 158,-24 158,0 222,0 222,-24"/>
<text text-anchor="middle" x="190" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Subroutine</text>
</g>
<!-- Function -->
<g id="node4" class="node">
<title>Function</title>
<polygon fill="#d94e8f" stroke="#d94e8f" points="294,-24 240,-24 240,0 294,0 294,-24"/>
<text text-anchor="middle" x="267" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Function</text>
</g>
<!-- Program -->
<g id="node5" class="node">
<title>Program</title>
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="366,-24 312,-24 312,0 366,0 366,-24"/>
<text text-anchor="middle" x="339" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Program</text>
</g>
<!-- This Page's Entity -->
<g id="node6" class="node">
<title>This Page's Entity</title>
<polygon fill="none" stroke="#000000" points="481.5,-24 384.5,-24 384.5,0 481.5,0 481.5,-24"/>
<text text-anchor="middle" x="433" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#000000">This Page's Entity</text>
</g>
</g>
</svg>
<p>Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
</p>
</div></div></div></div>
</li>
</ul>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Used by</h3>
</div>
<ul class="list-group">
<li class="list-group-item">
<ul class="list-inline">
<li><h5>Descendants:</h5></li>
<li><a href='../module/grid_read.html'>grid_read</a></li>
</ul>
</li>
<li class="list-group-item">
<div class="depgraph"><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
-->
<!-- Title: module~~grid~~UsedByGraph Pages: 1 -->
<svg id="modulegridUsedByGraph" width="586pt" height="916pt"
viewBox="0.00 0.00 586.00 915.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="module~~grid~~UsedByGraph" class="graph" transform="scale(1 1) rotate(0) translate(4 911.6247)">
<title>module~~grid~~UsedByGraph</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-911.6247 582,-911.6247 582,4 -4,4"/>
<!-- module~grid -->
<g id="module~~grid~~UsedByGraph_node1" class="node">
<title>module~grid</title>
<polygon fill="none" stroke="#000000" points="54,-264.6247 0,-264.6247 0,-240.6247 54,-240.6247 54,-264.6247"/>
<text text-anchor="middle" x="27" y="-250.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#000000">grid</text>
</g>
<!-- module~potentialbcs_mumps -->
<g id="module~~grid~~UsedByGraph_node2" class="node">
<title>module~potentialbcs_mumps</title>
<g id="a_module~~grid~~UsedByGraph_node2"><a xlink:href=".././module/potentialbcs_mumps.html" xlink:title="potentialBCs_mumps">
<polygon fill="#337ab7" stroke="#337ab7" points="305,-848.6247 191,-848.6247 191,-824.6247 305,-824.6247 305,-848.6247"/>
<text text-anchor="middle" x="248" y="-834.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potentialBCs_mumps</text>
</a>
</g>
</g>
<!-- module~potentialbcs_mumps->module~grid -->
<g id="module~~grid~~UsedByGraph_edge1" class="edge">
<title>module~potentialbcs_mumps->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M218.13,-848.7425C183.7102,-862.3003 130.7958,-881.7427 122.5,-876.6247"/>
</g>
<!-- module~sources -->
<g id="module~~grid~~UsedByGraph_node3" class="node">
<title>module~sources</title>
<g id="a_module~~grid~~UsedByGraph_node3"><a xlink:href=".././module/sources.html" xlink:title="sources">
<polygon fill="#337ab7" stroke="#337ab7" points="275,-264.6247 221,-264.6247 221,-240.6247 275,-240.6247 275,-264.6247"/>
<text text-anchor="middle" x="248" y="-250.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">sources</text>
</a>
</g>
</g>
<!-- module~sources->module~grid -->
<g id="module~~grid~~UsedByGraph_edge2" class="edge">
<title>module~sources->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M220.9011,-252.6247C181.6333,-252.6247 108.771,-252.6247 64.4085,-252.6247"/>
<polygon fill="#000000" stroke="#000000" points="64.3206,-249.1248 54.3206,-252.6247 64.3206,-256.1248 64.3206,-249.1248"/>
</g>
<!-- module~potential_comm -->
<g id="module~~grid~~UsedByGraph_node4" class="node">
<title>module~potential_comm</title>
<g id="a_module~~grid~~UsedByGraph_node4"><a xlink:href=".././module/potential_comm.html" xlink:title="potential_comm">
<polygon fill="#337ab7" stroke="#337ab7" points="440,-886.6247 352,-886.6247 352,-862.6247 440,-862.6247 440,-886.6247"/>
<text text-anchor="middle" x="396" y="-872.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential_comm</text>
</a>
</g>
</g>
<!-- module~potential_comm->module~grid -->
<g id="module~~grid~~UsedByGraph_edge3" class="edge">
<title>module~potential_comm->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M358.165,-886.6589C302.0795,-902.0663 195.6456,-921.7514 122.5,-876.6247"/>
</g>
<!-- module~potential_comm->module~potentialbcs_mumps -->
<g id="module~~grid~~UsedByGraph_edge15" class="edge">
<title>module~potential_comm->module~potentialbcs_mumps</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M351.9958,-863.3263C337.2476,-859.5396 320.5858,-855.2616 304.9899,-851.2572"/>
<polygon fill="#000000" stroke="#000000" points="305.4821,-847.7701 294.9258,-848.6732 303.7412,-854.5502 305.4821,-847.7701"/>
</g>
<!-- module~potential2d -->
<g id="module~~grid~~UsedByGraph_node5" class="node">
<title>module~potential2d</title>
<g id="a_module~~grid~~UsedByGraph_node5"><a xlink:href=".././module/potential2d.html" xlink:title="potential2d">
<polygon fill="#5bc0de" stroke="#5bc0de" points="155,-620.6247 90,-620.6247 90,-596.6247 155,-596.6247 155,-620.6247"/>
<text text-anchor="middle" x="122.5" y="-606.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential2d</text>
</a>
</g>
</g>
<!-- module~potential2d->module~grid -->
<g id="module~~grid~~UsedByGraph_edge4" class="edge">
<title>module~potential2d->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M98.4714,-596.4285C95.2268,-593.9016 92.2476,-590.9705 90,-587.6247 55.1401,-535.73 34.9093,-341.3165 28.9047,-274.973"/>
<polygon fill="#000000" stroke="#000000" points="32.3722,-274.4501 28.0053,-264.7971 25.3994,-275.0665 32.3722,-274.4501"/>
</g>
<!-- module~io -->
<g id="module~~grid~~UsedByGraph_node6" class="node">
<title>module~io</title>
<g id="a_module~~grid~~UsedByGraph_node6"><a xlink:href=".././module/io.html" xlink:title="io">
<polygon fill="#337ab7" stroke="#337ab7" points="149.5,-578.6247 95.5,-578.6247 95.5,-554.6247 149.5,-554.6247 149.5,-578.6247"/>
<text text-anchor="middle" x="122.5" y="-564.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io</text>
</a>
</g>
</g>
<!-- module~io->module~grid -->
<g id="module~~grid~~UsedByGraph_edge6" class="edge">
<title>module~io->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M118.7563,-554.3155C104.3445,-506.9302 52.3288,-335.9048 33.6974,-274.6454"/>
<polygon fill="#000000" stroke="#000000" points="36.9763,-273.3976 30.7178,-264.8488 30.2791,-275.4345 36.9763,-273.3976"/>
</g>
<!-- program~gemini3d -->
<g id="module~~grid~~UsedByGraph_node7" class="node">
<title>program~gemini3d</title>
<g id="a_module~~grid~~UsedByGraph_node7"><a xlink:href=".././program/gemini3d.html" xlink:title="Gemini3D">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="562.5,-350.6247 502.5,-350.6247 502.5,-326.6247 562.5,-326.6247 562.5,-350.6247"/>
<text text-anchor="middle" x="532.5" y="-336.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Gemini3D</text>
</a>
</g>
</g>
<!-- program~gemini3d->module~grid -->
<g id="module~~grid~~UsedByGraph_edge7" class="edge">
<title>program~gemini3d->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M530.6711,-326.4613C523.1851,-278.4249 493.2628,-102.915 451,-69.6247 336.1164,20.8688 251.7068,17.8801 122.5,-50.6247"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M122.5,-50.6247C108.4006,-59.6335 100.6072,-56.6849 90,-69.6247 50.2328,-118.1369 34.9623,-193.2141 29.6085,-230.3125"/>
<polygon fill="#000000" stroke="#000000" points="26.0979,-230.1609 28.2492,-240.535 33.0369,-231.0836 26.0979,-230.1609"/>
</g>
<!-- program~gemini3d->module~potentialbcs_mumps -->
<g id="module~~grid~~UsedByGraph_edge16" class="edge">
<title>program~gemini3d->module~potentialbcs_mumps</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M532.3235,-350.7826C531.0722,-418.6287 521.385,-749.7478 451,-815.6247 415.3616,-848.9805 359.2897,-852.5168 315.0986,-848.6685"/>
<polygon fill="#000000" stroke="#000000" points="315.3053,-845.1716 305.0033,-847.6454 314.5994,-852.1359 315.3053,-845.1716"/>
</g>
<!-- program~gemini3d->module~potential_comm -->
<g id="module~~grid~~UsedByGraph_edge19" class="edge">
<title>program~gemini3d->module~potential_comm</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M532.0641,-350.7859C529.3587,-420.2058 512.8964,-766.1534 451,-848.6247 448.6077,-851.8122 445.7257,-854.625 442.5503,-857.1042"/>
<polygon fill="#000000" stroke="#000000" points="440.6076,-854.1926 434.1646,-862.6032 444.4463,-860.0463 440.6076,-854.1926"/>
</g>
<!-- program~gemini3d->module~io -->
<g id="module~~grid~~UsedByGraph_edge23" class="edge">
<title>program~gemini3d->module~io</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M530.0688,-350.8098C521.1084,-394.3665 488.4984,-541.1678 451,-567.6247 362.7535,-629.8868 225.3109,-599.4883 159.7429,-579.4463"/>
<polygon fill="#000000" stroke="#000000" points="160.4447,-575.998 149.8552,-576.3344 158.3432,-582.6751 160.4447,-575.998"/>
</g>
<!-- module~multifluid -->
<g id="module~~grid~~UsedByGraph_node9" class="node">
<title>module~multifluid</title>
<g id="a_module~~grid~~UsedByGraph_node9"><a xlink:href=".././module/multifluid.html" xlink:title="multifluid">
<polygon fill="#337ab7" stroke="#337ab7" points="423.5,-102.6247 368.5,-102.6247 368.5,-78.6247 423.5,-78.6247 423.5,-102.6247"/>
<text text-anchor="middle" x="396" y="-88.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">multifluid</text>
</a>
</g>
</g>
<!-- program~gemini3d->module~multifluid -->
<g id="module~~grid~~UsedByGraph_edge34" class="edge">
<title>program~gemini3d->module~multifluid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M531.6117,-326.4307C528.2519,-289.0916 513.138,-175.0205 451,-111.6247 446.0488,-106.5733 439.7554,-102.7184 433.2071,-99.7821"/>
<polygon fill="#000000" stroke="#000000" points="434.1484,-96.3954 423.5575,-96.1053 431.6559,-102.9366 434.1484,-96.3954"/>
</g>
<!-- module~precipbcs_mod -->
<g id="module~~grid~~UsedByGraph_node13" class="node">
<title>module~precipbcs_mod</title>
<g id="a_module~~grid~~UsedByGraph_node13"><a xlink:href=".././module/precipbcs_mod.html" xlink:title="precipBCs_mod">
<polygon fill="#337ab7" stroke="#337ab7" points="292,-390.6247 204,-390.6247 204,-366.6247 292,-366.6247 292,-390.6247"/>
<text text-anchor="middle" x="248" y="-376.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">precipBCs_mod</text>
</a>
</g>
</g>
<!-- program~gemini3d->module~precipbcs_mod -->
<g id="module~~grid~~UsedByGraph_edge41" class="edge">
<title>program~gemini3d->module~precipbcs_mod</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M502.499,-340.4532C464.6728,-343.0215 397.7263,-348.4419 341,-357.6247 328.3649,-359.6701 314.8774,-362.3959 302.2055,-365.2044"/>
<polygon fill="#000000" stroke="#000000" points="301.2273,-361.8373 292.2495,-367.4631 302.776,-368.6638 301.2273,-361.8373"/>
</g>
<!-- module~neutral -->
<g id="module~~grid~~UsedByGraph_node14" class="node">
<title>module~neutral</title>
<g id="a_module~~grid~~UsedByGraph_node14"><a xlink:href=".././module/neutral.html" xlink:title="neutral">
<polygon fill="#337ab7" stroke="#337ab7" points="149.5,-224.6247 95.5,-224.6247 95.5,-200.6247 149.5,-200.6247 149.5,-224.6247"/>
<text text-anchor="middle" x="122.5" y="-210.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">neutral</text>
</a>
</g>
</g>
<!-- program~gemini3d->module~neutral -->
<g id="module~~grid~~UsedByGraph_edge42" class="edge">
<title>program~gemini3d->module~neutral</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M527.2718,-326.4663C516.6916,-303.5679 490.3529,-254.4784 451,-233.6247 356.0514,-183.3101 223.3595,-195.5784 159.5932,-205.6395"/>
<polygon fill="#000000" stroke="#000000" points="158.8995,-202.2066 149.6028,-207.2881 160.0393,-209.1132 158.8995,-202.2066"/>
</g>
<!-- module~grid_read -->
<g id="module~~grid~~UsedByGraph_node8" class="node">
<title>module~grid_read</title>
<g id="a_module~~grid~~UsedByGraph_node8"><a xlink:href=".././module/grid_read.html" xlink:title="grid_read">
<polygon fill="#5bc0de" stroke="#5bc0de" points="151.5,-306.6247 93.5,-306.6247 93.5,-282.6247 151.5,-282.6247 151.5,-306.6247"/>
<text text-anchor="middle" x="122.5" y="-292.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">grid_read</text>
</a>
</g>
</g>
<!-- module~grid_read->module~grid -->
<g id="module~~grid~~UsedByGraph_edge14" class="edge">
<title>module~grid_read->module~grid</title>
<path fill="none" stroke="#000000" d="M95.1335,-282.5892C85.2589,-278.2464 73.9526,-273.274 63.4255,-268.6443"/>
<polygon fill="#000000" stroke="#000000" points="64.6032,-265.3387 54.0403,-264.5168 61.7851,-271.7464 64.6032,-265.3387"/>
</g>
<!-- module~multifluid->module~grid -->
<g id="module~~grid~~UsedByGraph_edge8" class="edge">
<title>module~multifluid->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M368.4505,-90.2737C338.7291,-89.9336 290.0112,-89.4877 248,-89.6247"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M248,-89.6247C189.5914,-89.8152 174.1044,-23.2643 122.5,-50.6247"/>
</g>
<!-- module~multifluid->module~sources -->
<g id="module~~grid~~UsedByGraph_edge17" class="edge">
<title>module~multifluid->module~sources</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M368.4329,-96.4751C358.8151,-99.6414 348.5501,-104.4355 341,-111.6247 312.1754,-139.0717 327.1748,-160.5721 305,-193.6247 295.2004,-208.2314 281.5902,-222.4761 270.1268,-233.3085"/>
<polygon fill="#000000" stroke="#000000" points="267.5975,-230.8796 262.6067,-240.2253 272.3362,-236.0317 267.5975,-230.8796"/>
</g>
<!-- module~advec_mpi -->
<g id="module~~grid~~UsedByGraph_node10" class="node">
<title>module~advec_mpi</title>
<g id="a_module~~grid~~UsedByGraph_node10"><a xlink:href=".././module/advec_mpi.html" xlink:title="advec_mpi">
<polygon fill="#337ab7" stroke="#337ab7" points="154.5,-144.6247 90.5,-144.6247 90.5,-120.6247 154.5,-120.6247 154.5,-144.6247"/>
<text text-anchor="middle" x="122.5" y="-130.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">advec_mpi</text>
</a>
</g>
</g>
<!-- module~multifluid->module~advec_mpi -->
<g id="module~~grid~~UsedByGraph_edge35" class="edge">
<title>module~multifluid->module~advec_mpi</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M248,-89.6247C214.2481,-89.7348 178.0126,-103.8098 153.1974,-115.8253"/>
<polygon fill="#000000" stroke="#000000" points="151.3202,-112.8512 143.9515,-120.4639 154.4592,-119.108 151.3202,-112.8512"/>
</g>
<!-- module~diffusion -->
<g id="module~~grid~~UsedByGraph_node11" class="node">
<title>module~diffusion</title>
<g id="a_module~~grid~~UsedByGraph_node11"><a xlink:href=".././module/diffusion.html" xlink:title="diffusion">
<polygon fill="#337ab7" stroke="#337ab7" points="149.5,-102.6247 95.5,-102.6247 95.5,-78.6247 149.5,-78.6247 149.5,-102.6247"/>
<text text-anchor="middle" x="122.5" y="-88.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">diffusion</text>
</a>
</g>
</g>
<!-- module~multifluid->module~diffusion -->
<g id="module~~grid~~UsedByGraph_edge36" class="edge">
<title>module~multifluid->module~diffusion</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M248,-89.6247C218.449,-89.7211 184.985,-89.996 160.0482,-90.2332"/>
<polygon fill="#000000" stroke="#000000" points="159.8847,-86.7346 149.9194,-90.332 159.953,-93.7342 159.8847,-86.7346"/>
</g>
<!-- module~ionization -->
<g id="module~~grid~~UsedByGraph_node12" class="node">
<title>module~ionization</title>
<g id="a_module~~grid~~UsedByGraph_node12"><a xlink:href=".././module/ionization.html" xlink:title="ionization">
<polygon fill="#337ab7" stroke="#337ab7" points="277,-142.6247 219,-142.6247 219,-118.6247 277,-118.6247 277,-142.6247"/>
<text text-anchor="middle" x="248" y="-128.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">ionization</text>
</a>
</g>
</g>
<!-- module~multifluid->module~ionization -->
<g id="module~~grid~~UsedByGraph_edge37" class="edge">
<title>module~multifluid->module~ionization</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M368.1623,-98.1484C345.2466,-104.3418 312.4973,-113.193 286.974,-120.0912"/>
<polygon fill="#000000" stroke="#000000" points="285.9722,-116.7363 277.2318,-122.7242 287.7986,-123.4938 285.9722,-116.7363"/>
</g>
<!-- module~multifluid->module~precipbcs_mod -->
<g id="module~~grid~~UsedByGraph_edge40" class="edge">
<title>module~multifluid->module~precipbcs_mod</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M368.4591,-95.098C358.3703,-98.1176 347.7761,-103.171 341,-111.6247 271.891,-197.8438 374.6141,-271.8129 305,-357.6247 303.6795,-359.2525 302.2205,-360.754 300.6524,-362.1392"/>
<polygon fill="#000000" stroke="#000000" points="298.2433,-359.552 292.0395,-368.1406 302.2452,-365.2952 298.2433,-359.552"/>
</g>
<!-- module~advec_mpi->module~grid -->
<g id="module~~grid~~UsedByGraph_edge13" class="edge">
<title>module~advec_mpi->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M105.4493,-144.6747C100.1989,-148.7899 94.5962,-153.6238 90,-158.6247 69.0931,-181.3724 50.0978,-211.6459 38.5554,-231.614"/>
<polygon fill="#000000" stroke="#000000" points="35.3989,-230.085 33.5121,-240.5105 41.4885,-233.5371 35.3989,-230.085"/>
</g>
<!-- module~diffusion->module~grid -->
<g id="module~~grid~~UsedByGraph_edge9" class="edge">
<title>module~diffusion->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M99.7999,-102.8351C96.2284,-105.4159 92.7981,-108.3605 90,-111.6247 59.229,-147.5216 40.957,-200.869 32.5652,-230.5923"/>
<polygon fill="#000000" stroke="#000000" points="29.1454,-229.8313 29.9157,-240.3981 35.9031,-231.6572 29.1454,-229.8313"/>
</g>
<!-- module~ionization->module~grid -->
<g id="module~~grid~~UsedByGraph_edge10" class="edge">
<title>module~ionization->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M218.9476,-137.9608C185.9236,-147.1501 131.2567,-164.995 90,-191.6247 72.416,-202.9745 55.5504,-219.7246 43.7021,-232.8024"/>
<polygon fill="#000000" stroke="#000000" points="41.0005,-230.5742 37.0116,-240.3895 46.2507,-235.204 41.0005,-230.5742"/>
</g>
<!-- module~ionization->module~neutral -->
<g id="module~~grid~~UsedByGraph_edge43" class="edge">
<title>module~ionization->module~neutral</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M218.7812,-138.7589C209.512,-142.0159 199.477,-146.2846 191,-151.6247 172.1188,-163.519 171.7322,-171.8596 155,-186.6247 152.1793,-189.1138 149.1617,-191.6658 146.144,-194.1522"/>
<polygon fill="#000000" stroke="#000000" points="143.873,-191.4874 138.2907,-200.4923 148.2702,-196.9339 143.873,-191.4874"/>
</g>
<!-- module~precipbcs_mod->module~grid -->
<g id="module~~grid~~UsedByGraph_edge11" class="edge">
<title>module~precipbcs_mod->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M204.0289,-366.5803C170.9157,-356.2518 125.3412,-339.2745 90,-315.6247 72.1152,-303.6565 55.0629,-286.0899 43.2204,-272.5447"/>
<polygon fill="#000000" stroke="#000000" points="45.7054,-270.0642 36.5592,-264.7165 40.3742,-274.6007 45.7054,-270.0642"/>
</g>
<!-- module~neutral->module~grid -->
<g id="module~~grid~~UsedByGraph_edge12" class="edge">
<title>module~neutral->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M95.389,-223.9801C85.5095,-228.1181 74.1704,-232.8675 63.6028,-237.2937"/>
<polygon fill="#000000" stroke="#000000" points="62.0503,-234.1493 54.1788,-241.2409 64.7546,-240.6058 62.0503,-234.1493"/>
</g>
<!-- program~magcalc -->
<g id="module~~grid~~UsedByGraph_node15" class="node">
<title>program~magcalc</title>
<g id="a_module~~grid~~UsedByGraph_node15"><a xlink:href=".././program/magcalc.html" xlink:title="MagCalc">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="275.5,-806.6247 220.5,-806.6247 220.5,-782.6247 275.5,-782.6247 275.5,-806.6247"/>
<text text-anchor="middle" x="248" y="-792.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">MagCalc</text>
</a>
</g>
</g>
<!-- program~magcalc->module~grid -->
<g id="module~~grid~~UsedByGraph_edge5" class="edge">
<title>program~magcalc->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M220.3727,-802.472C210.7199,-805.8092 200.044,-810.2001 191,-815.6247 156.0402,-836.5934 157.1947,-898.0293 122.5,-876.6247"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M122.5,-876.6247C69.7444,-844.0775 35.6466,-381.6909 28.4326,-274.638"/>
<polygon fill="#000000" stroke="#000000" points="31.9238,-274.3881 27.7681,-264.6423 24.9392,-274.8525 31.9238,-274.3881"/>
</g>
<!-- program~magcalc->module~io -->
<g id="module~~grid~~UsedByGraph_edge22" class="edge">
<title>program~magcalc->module~io</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M220.271,-790.3854C209.6739,-787.3965 198.3766,-782.303 191,-773.6247 136.4674,-709.4688 202.1365,-657.3952 155,-587.6247 154.6474,-587.1028 154.2771,-586.591 153.8908,-586.0893"/>
<polygon fill="#000000" stroke="#000000" points="156.0963,-583.3493 146.513,-578.8314 151.1873,-588.3394 156.0963,-583.3493"/>
</g>
<!-- module~mag_raw -->
<g id="module~~grid~~UsedByGraph_node16" class="node">
<title>module~mag_raw</title>
<g id="a_module~~grid~~UsedByGraph_node16"><a xlink:href=".././module/mag_raw.html" xlink:title="mag_raw">
<polygon fill="#5bc0de" stroke="#5bc0de" points="276.5,-516.6247 219.5,-516.6247 219.5,-492.6247 276.5,-492.6247 276.5,-516.6247"/>
<text text-anchor="middle" x="248" y="-502.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_raw</text>
</a>
</g>
</g>
<!-- module~mag_raw->module~io -->
<g id="module~~grid~~UsedByGraph_edge24" class="edge">
<title>module~mag_raw->module~io</title>
<path fill="none" stroke="#000000" d="M219.4469,-513.9655C210.2176,-517.295 200.038,-521.3015 191,-525.6247 176.7133,-532.4586 161.5332,-541.3602 149.1035,-549.1222"/>
<polygon fill="#000000" stroke="#000000" points="147.1572,-546.212 140.591,-554.5269 150.9092,-552.1216 147.1572,-546.212"/>
</g>
<!-- module~mag -->
<g id="module~~grid~~UsedByGraph_node17" class="node">
<title>module~mag</title>
<g id="a_module~~grid~~UsedByGraph_node17"><a xlink:href=".././module/mag.html" xlink:title="mag">
<polygon fill="#5bc0de" stroke="#5bc0de" points="275,-474.6247 221,-474.6247 221,-450.6247 275,-450.6247 275,-474.6247"/>
<text text-anchor="middle" x="248" y="-460.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag</text>
</a>
</g>
</g>
<!-- module~mag->module~io -->
<g id="module~~grid~~UsedByGraph_edge25" class="edge">
<title>module~mag->module~io</title>
<path fill="none" stroke="#000000" d="M220.751,-469.4279C210.8179,-472.7138 199.8602,-477.3406 191,-483.6247 167.4031,-500.3607 147.2914,-527.2157 135.0814,-545.8263"/>
<polygon fill="#000000" stroke="#000000" points="132.0013,-544.1475 129.5907,-554.4645 137.9089,-547.9026 132.0013,-544.1475"/>
</g>
<!-- module~io_aurora -->
<g id="module~~grid~~UsedByGraph_node18" class="node">
<title>module~io_aurora</title>
<g id="a_module~~grid~~UsedByGraph_node18"><a xlink:href=".././module/io_aurora.html" xlink:title="io_aurora">
<polygon fill="#5bc0de" stroke="#5bc0de" points="277,-558.6247 219,-558.6247 219,-534.6247 277,-534.6247 277,-558.6247"/>
<text text-anchor="middle" x="248" y="-544.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io_aurora</text>
</a>
</g>
</g>
<!-- module~io_aurora->module~io -->
<g id="module~~grid~~UsedByGraph_edge26" class="edge">
<title>module~io_aurora->module~io</title>
<path fill="none" stroke="#000000" d="M218.8923,-551.2634C201.2967,-554.0675 178.6904,-557.67 159.7931,-560.6816"/>
<polygon fill="#000000" stroke="#000000" points="159.0562,-557.2548 149.7316,-562.285 160.1579,-564.1675 159.0562,-557.2548"/>
</g>
<!-- module~glow_mod -->
<g id="module~~grid~~UsedByGraph_node19" class="node">
<title>module~glow_mod</title>
<g id="a_module~~grid~~UsedByGraph_node19"><a xlink:href=".././module/glow_mod.html" xlink:title="glow_mod">
<polygon fill="#5bc0de" stroke="#5bc0de" points="426.5,-186.6247 365.5,-186.6247 365.5,-162.6247 426.5,-162.6247 426.5,-186.6247"/>
<text text-anchor="middle" x="396" y="-172.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">glow_mod</text>
</a>
</g>
</g>
<!-- module~glow_mod->module~ionization -->
<g id="module~~grid~~UsedByGraph_edge38" class="edge">
<title>module~glow_mod->module~ionization</title>
<path fill="none" stroke="#000000" d="M365.3343,-165.5079C342.5632,-158.7381 311.3394,-149.4553 286.8262,-142.1676"/>
<polygon fill="#000000" stroke="#000000" points="287.6986,-138.7756 277.1158,-139.2808 285.7038,-145.4854 287.6986,-138.7756"/>
</g>
<!-- module~potential_worker -->
<g id="module~~grid~~UsedByGraph_node20" class="node">
<title>module~potential_worker</title>
<g id="a_module~~grid~~UsedByGraph_node20"><a xlink:href=".././module/potential_worker.html" xlink:title="potential_worker">
<polygon fill="#5bc0de" stroke="#5bc0de" points="578,-865.6247 487,-865.6247 487,-841.6247 578,-841.6247 578,-865.6247"/>
<text text-anchor="middle" x="532.5" y="-851.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential_worker</text>
</a>
</g>
</g>
<!-- module~potential_worker->module~potential_comm -->
<g id="module~~grid~~UsedByGraph_edge20" class="edge">
<title>module~potential_worker->module~potential_comm</title>
<path fill="none" stroke="#000000" d="M486.6677,-860.6758C474.9291,-862.4817 462.1952,-864.4408 450.0839,-866.3041"/>
<polygon fill="#000000" stroke="#000000" points="449.4438,-862.8613 440.0923,-867.8413 450.5083,-869.7799 449.4438,-862.8613"/>
</g>
<!-- module~potential_root -->
<g id="module~~grid~~UsedByGraph_node21" class="node">
<title>module~potential_root</title>
<g id="a_module~~grid~~UsedByGraph_node21"><a xlink:href=".././module/potential_root.html" xlink:title="potential_root">
<polygon fill="#5bc0de" stroke="#5bc0de" points="571.5,-907.6247 493.5,-907.6247 493.5,-883.6247 571.5,-883.6247 571.5,-907.6247"/>
<text text-anchor="middle" x="532.5" y="-893.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential_root</text>
</a>
</g>
</g>
<!-- module~potential_root->module~potential_comm -->
<g id="module~~grid~~UsedByGraph_edge21" class="edge">
<title>module~potential_root->module~potential_comm</title>
<path fill="none" stroke="#000000" d="M493.3846,-889.6069C480.0719,-887.5588 464.9387,-885.2306 450.6367,-883.0303"/>
<polygon fill="#000000" stroke="#000000" points="450.8235,-879.518 440.4075,-881.4566 449.759,-886.4366 450.8235,-879.518"/>
</g>
<!-- module~input -->
<g id="module~~grid~~UsedByGraph_node22" class="node">
<title>module~input</title>
<g id="a_module~~grid~~UsedByGraph_node22"><a xlink:href=".././module/input.html" xlink:title="input">
<polygon fill="#5bc0de" stroke="#5bc0de" points="275,-432.6247 221,-432.6247 221,-408.6247 275,-408.6247 275,-432.6247"/>
<text text-anchor="middle" x="248" y="-418.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">input</text>
</a>
</g>
</g>
<!-- module~input->module~io -->
<g id="module~~grid~~UsedByGraph_edge27" class="edge">
<title>module~input->module~io</title>
<path fill="none" stroke="#000000" d="M220.947,-426.2891C210.6966,-429.4728 199.4686,-434.3274 191,-441.6247 158.419,-469.6994 138.5046,-517.2667 129.0748,-544.9203"/>
<polygon fill="#000000" stroke="#000000" points="125.7362,-543.8693 125.9695,-554.4616 132.3925,-546.0357 125.7362,-543.8693"/>
</g>
<!-- module~sources_mpi -->
<g id="module~~grid~~UsedByGraph_node23" class="node">
<title>module~sources_mpi</title>
<g id="a_module~~grid~~UsedByGraph_node23"><a xlink:href=".././module/sources_mpi.html" xlink:title="sources_mpi">
<polygon fill="#5bc0de" stroke="#5bc0de" points="432.5,-266.6247 359.5,-266.6247 359.5,-242.6247 432.5,-242.6247 432.5,-266.6247"/>
<text text-anchor="middle" x="396" y="-252.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">sources_mpi</text>
</a>
</g>
</g>
<!-- module~sources_mpi->module~sources -->
<g id="module~~grid~~UsedByGraph_edge18" class="edge">
<title>module~sources_mpi->module~sources</title>
<path fill="none" stroke="#000000" d="M359.4157,-254.1303C336.9512,-253.8267 308.2437,-253.4388 285.5953,-253.1327"/>
<polygon fill="#000000" stroke="#000000" points="285.386,-249.6297 275.3395,-252.9941 285.2913,-256.629 285.386,-249.6297"/>
</g>
<!-- module~mag_hdf5 -->
<g id="module~~grid~~UsedByGraph_node24" class="node">
<title>module~mag_hdf5</title>
<g id="a_module~~grid~~UsedByGraph_node24"><a xlink:href=".././module/mag_hdf5.html" xlink:title="mag_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="278.5,-764.6247 217.5,-764.6247 217.5,-740.6247 278.5,-740.6247 278.5,-764.6247"/>
<text text-anchor="middle" x="248" y="-750.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_hdf5</text>
</a>
</g>
</g>
<!-- module~mag_hdf5->module~io -->
<g id="module~~grid~~UsedByGraph_edge28" class="edge">
<title>module~mag_hdf5->module~io</title>
<path fill="none" stroke="#000000" d="M217.2559,-747.1956C207.6707,-744.0969 197.8325,-739.2381 191,-731.6247 146.9384,-682.5271 193.3873,-641.2756 155,-587.6247 154.5456,-586.9896 154.0654,-586.3688 153.5628,-585.7625"/>
<polygon fill="#000000" stroke="#000000" points="155.7154,-582.9828 146.0291,-578.6904 150.9245,-588.0864 155.7154,-582.9828"/>
</g>
<!-- module~mag_hdf5~2 -->
<g id="module~~grid~~UsedByGraph_node25" class="node">
<title>module~mag_hdf5~2</title>
<g id="a_module~~grid~~UsedByGraph_node25"><a xlink:href=".././module/mag_hdf5~2.html" xlink:title="mag_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="278.5,-722.6247 217.5,-722.6247 217.5,-698.6247 278.5,-698.6247 278.5,-722.6247"/>
<text text-anchor="middle" x="248" y="-708.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_hdf5</text>
</a>
</g>
</g>
<!-- module~mag_hdf5~2->module~io -->
<g id="module~~grid~~UsedByGraph_edge29" class="edge">
<title>module~mag_hdf5~2->module~io</title>
<path fill="none" stroke="#000000" d="M217.3669,-704.7158C207.9028,-701.5875 198.1097,-696.8325 191,-689.6247 157.2401,-655.3992 184.7858,-625.3595 155,-587.6247 154.4173,-586.8865 153.8011,-586.1662 153.1569,-585.4641"/>
<polygon fill="#000000" stroke="#000000" points="155.2423,-582.6367 145.4267,-578.6486 150.613,-587.8873 155.2423,-582.6367"/>
</g>
<!-- module~readgrid_hdf5 -->
<g id="module~~grid~~UsedByGraph_node26" class="node">
<title>module~readgrid_hdf5</title>
<g id="a_module~~grid~~UsedByGraph_node26"><a xlink:href=".././module/readgrid_hdf5.html" xlink:title="readgrid_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="287.5,-306.6247 208.5,-306.6247 208.5,-282.6247 287.5,-282.6247 287.5,-306.6247"/>
<text text-anchor="middle" x="248" y="-292.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">readgrid_hdf5</text>
</a>
</g>
</g>
<!-- module~readgrid_hdf5->module~grid_read -->
<g id="module~~grid~~UsedByGraph_edge32" class="edge">
<title>module~readgrid_hdf5->module~grid_read</title>
<path fill="none" stroke="#000000" d="M208.291,-294.6247C193.4978,-294.6247 176.7206,-294.6247 161.9507,-294.6247"/>
<polygon fill="#000000" stroke="#000000" points="161.6077,-291.1248 151.6077,-294.6247 161.6076,-298.1248 161.6077,-291.1248"/>
</g>
<!-- module~plasma -->
<g id="module~~grid~~UsedByGraph_node27" class="node">
<title>module~plasma</title>
<g id="a_module~~grid~~UsedByGraph_node27"><a xlink:href=".././module/plasma.html" xlink:title="plasma">
<polygon fill="#5bc0de" stroke="#5bc0de" points="275,-638.6247 221,-638.6247 221,-614.6247 275,-614.6247 275,-638.6247"/>
<text text-anchor="middle" x="248" y="-624.2247" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma</text>
</a>
</g>
</g>
<!-- module~plasma->module~io -->
<g id="module~~grid~~UsedByGraph_edge30" class="edge">
<title>module~plasma->module~io</title>
<path fill="none" stroke="#000000" d="M220.9503,-614.5051C211.4495,-610.1904 200.7223,-605.2534 191,-600.6247 179.3871,-595.0959 166.7541,-588.8827 155.5359,-583.2948"/>
<polygon fill="#000000" stroke="#000000" points="157.0085,-580.118 146.4989,-578.7768 153.8783,-586.3792 157.0085,-580.118"/>
</g>
<!-- module~atmos -->