-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathfiles.html
More file actions
2395 lines (2252 loc) · 164 KB
/
Copy pathfiles.html
File metadata and controls
2395 lines (2252 loc) · 164 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>
All Files – 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" id='text'>
<div class="col-lg-12">
<h1>Source Files</h1>
<table class="table table-striped">
<thead><tr><th>File</th><th>Description</th></tr></thead>
<tbody>
<tr><td><a href='../sourcefile/advec.f90.html'>advec.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/advec_mpi.f90.html'>advec_mpi.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/atmos.f90.html'>atmos.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/aurora.f90.html'>aurora.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/aurora_hdf5.f90.html'>aurora_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/aurora_ncdf.f90.html'>aurora_ncdf.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/aurora_raw.f90.html'>aurora_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/calculus.f90.html'>calculus.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/collisions.f90.html'>collisions.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/diffusion.f90.html'>diffusion.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/div.f90.html'>div.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/elliptic2d.f90.html'>elliptic2d.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/elliptic3d.f90.html'>elliptic3d.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/fang.f90.html'>fang.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/fang_run.f90.html'>fang_run.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/gbsv.f90.html'>gbsv.f90</a></td><td><p>ADAPTED FROM LAPACK_95 by Guy Grubbs and Michael Hirsch</p></td></tr>
<tr><td><a href='../sourcefile/gemini.f90.html'>gemini.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/glow_dummy.f90.html'>glow_dummy.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/glow_run.f90.html'>glow_run.F90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/gradient.f90.html'>gradient.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/grid.f90.html'>grid.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/input.f90.html'>input.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/integral.f90.html'>integral.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/interp2d.f90.html'>interp2d.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/interpolation.f90.html'>interpolation.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/io.f90.html'>io.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/ionization.f90.html'>ionization.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/logging.f90.html'>logging.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mag.f90.html'>mag.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mag_hdf5.f90.html'>mag_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mag_ncdf.f90.html'>mag_ncdf.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mag_raw.f90.html'>mag_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/magcalc.f90.html'>magcalc.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mesh.f90.html'>mesh.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mhd1d_saw.f90.html'>MHD1D_SAW.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mhd1d_shock.f90.html'>MHD1D_shock.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mhd1d_snd.f90.html'>MHD1D_SND.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mpihalo.f90.html'>mpihalo.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mpimod.f90.html'>mpimod.F90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mpirecv.f90.html'>mpirecv.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mpisend.f90.html'>mpisend.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/msis00_gfortran.f.html'>msis00_gfortran.f</a></td><td></td></tr>
<tr><td><a href='../sourcefile/msis_driver.f90.html'>msis_driver.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/multifluid.f90.html'>multifluid.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mumps_real32.f90.html'>mumps_real32.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/mumps_real64.f90.html'>mumps_real64.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/neutral.f90.html'>neutral.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/output.f90.html'>output.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/path_exists.f90.html'>path_exists.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/path_exists_intel.f90.html'>path_exists_intel.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/pathlib.f90.html'>pathlib.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/pathlib_unix.f90.html'>pathlib_unix.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/pathlib_windows.f90.html'>pathlib_windows.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/pdeelliptic.f90.html'>PDEelliptic.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/pdeparabolic.f90.html'>PDEparabolic.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/phys_consts.f90.html'>phys_consts.F90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma.f90.html'>plasma.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma_input_hdf5.f90.html'>plasma_input_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma_input_raw.f90.html'>plasma_input_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma_output_hdf5.f90.html'>plasma_output_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma_output_ncdf.f90.html'>plasma_output_ncdf.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/plasma_output_raw.f90.html'>plasma_output_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potential2d.f90.html'>potential2d.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potential_comm_mumps.f90.html'>potential_comm_mumps.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potential_mumps.f90.html'>potential_mumps.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potential_root.f90.html'>potential_root.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potential_worker.f90.html'>potential_worker.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/potentialbcs_mumps.f90.html'>potentialBCs_mumps.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/precipbcs_mod.f90.html'>precipBCs_mod.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/read.f90.html'>read.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/reader.f90.html'>reader.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/reader_hdf5.f90.html'>reader_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/reader_raw.f90.html'>reader_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/readgrid_hdf5.f90.html'>readgrid_hdf5.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/readgrid_raw.f90.html'>readgrid_raw.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/sources.f90.html'>sources.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/sources_mpi.f90.html'>sources_mpi.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/temporal.f90.html'>temporal.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_dayrollover.f90.html'>test_dayrollover.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_diffusion1d.f90.html'>test_diffusion1D.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_fang.f90.html'>test_fang.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_formats.f90.html'>test_formats.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_potential2d.f90.html'>test_potential2D.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_potential3d.f90.html'>test_potential3D.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/test_sza.f90.html'>test_sza.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/testinterp1.f90.html'>testinterp1.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/testinterp2.f90.html'>testinterp2.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/testinterp3.f90.html'>testinterp3.f90</a></td><td></td></tr>
<tr><td><a href='../sourcefile/timeutils.f90.html'>timeutils.f90</a></td><td></td></tr>
</tbody></table>
<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: file~~graph~~FileGraph Pages: 1 -->
<svg id="filegraphFileGraph" width="641pt" height="1781pt"
viewBox="0.00 0.00 641.00 1781.20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="file~~graph~~FileGraph" class="graph" transform="scale(.634 .634) rotate(0) translate(4 2805.3497)">
<title>file~~graph~~FileGraph</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-2805.3497 1007,-2805.3497 1007,4 -4,4"/>
<!-- sourcefile~gemini.f90 -->
<g id="file~~graph~~FileGraph_node1" class="node">
<title>sourcefile~gemini.f90</title>
<g id="a_file~~graph~~FileGraph_node1"><a xlink:href=".././sourcefile/gemini.f90.html" xlink:title="gemini.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="62,-1381.3497 0,-1381.3497 0,-1357.3497 62,-1357.3497 62,-1381.3497"/>
<text text-anchor="middle" x="31" y="-1366.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">gemini.f90</text>
</a>
</g>
</g>
<!-- sourcefile~precipbcs_mod.f90 -->
<g id="file~~graph~~FileGraph_node2" class="node">
<title>sourcefile~precipbcs_mod.f90</title>
<g id="a_file~~graph~~FileGraph_node2"><a xlink:href=".././sourcefile/precipbcs_mod.f90.html" xlink:title="precipBCs_mod.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="565,-1283.3497 459,-1283.3497 459,-1259.3497 565,-1259.3497 565,-1283.3497"/>
<text text-anchor="middle" x="512" y="-1268.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">precipBCs_mod.f90</text>
</a>
</g>
</g>
<!-- sourcefile~precipbcs_mod.f90->sourcefile~gemini.f90 -->
<g id="file~~graph~~FileGraph_edge3" class="edge">
<title>sourcefile~precipbcs_mod.f90->sourcefile~gemini.f90</title>
<path fill="none" stroke="#000000" d="M467.7591,-1259.2628C459.8844,-1255.6941 452.2218,-1251.1375 446,-1245.3497 418.9279,-1220.1661 441.2946,-1190.0413 410,-1170.3497 354.3268,-1135.3182 318.7314,-1137.0591 262,-1170.3497 183.4044,-1216.4704 248.8994,-1321.9108 162,-1349.3497"/>
</g>
<!-- sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_node51" class="node">
<title>sourcefile~multifluid.f90</title>
<g id="a_file~~graph~~FileGraph_node51"><a xlink:href=".././sourcefile/multifluid.f90.html" xlink:title="multifluid.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="198.5,-1401.3497 125.5,-1401.3497 125.5,-1377.3497 198.5,-1377.3497 198.5,-1401.3497"/>
<text text-anchor="middle" x="162" y="-1386.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">multifluid.f90</text>
</a>
</g>
</g>
<!-- sourcefile~precipbcs_mod.f90->sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_edge130" class="edge">
<title>sourcefile~precipbcs_mod.f90->sourcefile~multifluid.f90</title>
<path fill="none" stroke="#000000" d="M460.623,-1259.3245C396.7919,-1245.6752 292.5484,-1228.0207 262,-1250.3497 219.4464,-1281.4537 261.7999,-1324.6633 226,-1363.3497 220.9599,-1368.7962 214.6174,-1373.1287 207.8965,-1376.5676"/>
<polygon fill="#000000" stroke="#000000" points="206.2893,-1373.4521 198.5839,-1380.7238 209.1422,-1379.8444 206.2893,-1373.4521"/>
</g>
<!-- sourcefile~fang_run.f90 -->
<g id="file~~graph~~FileGraph_node3" class="node">
<title>sourcefile~fang_run.f90</title>
<g id="a_file~~graph~~FileGraph_node3"><a xlink:href=".././sourcefile/fang_run.f90.html" xlink:title="fang_run.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="704,-771.3497 631,-771.3497 631,-747.3497 704,-747.3497 704,-771.3497"/>
<text text-anchor="middle" x="667.5" y="-756.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">fang_run.f90</text>
</a>
</g>
</g>
<!-- sourcefile~test_fang.f90 -->
<g id="file~~graph~~FileGraph_node76" class="node">
<title>sourcefile~test_fang.f90</title>
<g id="a_file~~graph~~FileGraph_node76"><a xlink:href=".././sourcefile/test_fang.f90.html" xlink:title="test_fang.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="549.5,-771.3497 474.5,-771.3497 474.5,-747.3497 549.5,-747.3497 549.5,-771.3497"/>
<text text-anchor="middle" x="512" y="-756.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">test_fang.f90</text>
</a>
</g>
</g>
<!-- sourcefile~fang_run.f90->sourcefile~test_fang.f90 -->
<g id="file~~graph~~FileGraph_edge174" class="edge">
<title>sourcefile~fang_run.f90->sourcefile~test_fang.f90</title>
<path fill="none" stroke="#000000" d="M630.6487,-759.3497C609.4644,-759.3497 582.6172,-759.3497 559.821,-759.3497"/>
<polygon fill="#000000" stroke="#000000" points="559.667,-755.8498 549.667,-759.3497 559.667,-762.8498 559.667,-755.8498"/>
</g>
<!-- sourcefile~test_diffusion1d.f90 -->
<g id="file~~graph~~FileGraph_node4" class="node">
<title>sourcefile~test_diffusion1d.f90</title>
<g id="a_file~~graph~~FileGraph_node4"><a xlink:href=".././sourcefile/test_diffusion1d.f90.html" xlink:title="test_diffusion1D.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="721,-2633.3497 614,-2633.3497 614,-2609.3497 721,-2609.3497 721,-2633.3497"/>
<text text-anchor="middle" x="667.5" y="-2618.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">test_diffusion1D.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec_mpi.f90 -->
<g id="file~~graph~~FileGraph_node5" class="node">
<title>sourcefile~advec_mpi.f90</title>
<g id="a_file~~graph~~FileGraph_node5"><a xlink:href=".././sourcefile/advec_mpi.f90.html" xlink:title="advec_mpi.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="553,-1829.3497 471,-1829.3497 471,-1805.3497 553,-1805.3497 553,-1829.3497"/>
<text text-anchor="middle" x="512" y="-1814.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">advec_mpi.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec_mpi.f90->sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_edge136" class="edge">
<title>sourcefile~advec_mpi.f90->sourcefile~multifluid.f90</title>
<path fill="none" stroke="#000000" d="M477.1136,-1829.4662C466.8825,-1833.4509 455.8122,-1838.1948 446,-1843.3497 393.8383,-1870.7534 382.6607,-1953.33 336,-1917.3497"/>
<path fill="none" stroke="#000000" d="M336,-1917.3497C286.6794,-1879.3183 286.0201,-1855.8123 262,-1798.3497 235.5583,-1735.094 242.2235,-1714.9623 226,-1648.3497 204.5848,-1560.4199 178.5772,-1455.8364 167.4625,-1411.243"/>
<polygon fill="#000000" stroke="#000000" points="170.8434,-1410.3351 165.0279,-1401.479 164.0513,-1412.0288 170.8434,-1410.3351"/>
</g>
<!-- sourcefile~temporal.f90 -->
<g id="file~~graph~~FileGraph_node6" class="node">
<title>sourcefile~temporal.f90</title>
<g id="a_file~~graph~~FileGraph_node6"><a xlink:href=".././sourcefile/temporal.f90.html" xlink:title="temporal.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="704,-2553.3497 631,-2553.3497 631,-2529.3497 704,-2529.3497 704,-2553.3497"/>
<text text-anchor="middle" x="667.5" y="-2538.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">temporal.f90</text>
</a>
</g>
</g>
<!-- sourcefile~temporal.f90->sourcefile~gemini.f90 -->
<g id="file~~graph~~FileGraph_edge2" class="edge">
<title>sourcefile~temporal.f90->sourcefile~gemini.f90</title>
<path fill="none" stroke="#000000" d="M630.6938,-2542.5789C569.5011,-2544.3965 442.9798,-2547.1944 336,-2543.3497"/>
</g>
<!-- sourcefile~sources_mpi.f90 -->
<g id="file~~graph~~FileGraph_node7" class="node">
<title>sourcefile~sources_mpi.f90</title>
<g id="a_file~~graph~~FileGraph_node7"><a xlink:href=".././sourcefile/sources_mpi.f90.html" xlink:title="sources_mpi.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="381.5,-1283.3497 290.5,-1283.3497 290.5,-1259.3497 381.5,-1259.3497 381.5,-1283.3497"/>
<text text-anchor="middle" x="336" y="-1268.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">sources_mpi.f90</text>
</a>
</g>
</g>
<!-- sourcefile~collisions.f90 -->
<g id="file~~graph~~FileGraph_node8" class="node">
<title>sourcefile~collisions.f90</title>
<g id="a_file~~graph~~FileGraph_node8"><a xlink:href=".././sourcefile/collisions.f90.html" xlink:title="collisions.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="704,-1947.3497 631,-1947.3497 631,-1923.3497 704,-1923.3497 704,-1947.3497"/>
<text text-anchor="middle" x="667.5" y="-1932.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">collisions.f90</text>
</a>
</g>
</g>
<!-- sourcefile~potential_comm_mumps.f90 -->
<g id="file~~graph~~FileGraph_node34" class="node">
<title>sourcefile~potential_comm_mumps.f90</title>
<g id="a_file~~graph~~FileGraph_node34"><a xlink:href=".././sourcefile/potential_comm_mumps.f90.html" xlink:title="potential_comm_mumps.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="410,-1969.3497 262,-1969.3497 262,-1945.3497 410,-1945.3497 410,-1969.3497"/>
<text text-anchor="middle" x="336" y="-1954.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential_comm_mumps.f90</text>
</a>
</g>
</g>
<!-- sourcefile~collisions.f90->sourcefile~potential_comm_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge87" class="edge">
<title>sourcefile~collisions.f90->sourcefile~potential_comm_mumps.f90</title>
<path fill="none" stroke="#000000" d="M512,-1937.3497C482.016,-1937.5425 449.3408,-1940.4898 420.374,-1944.0653"/>
<polygon fill="#000000" stroke="#000000" points="419.7693,-1940.614 410.2933,-1945.3527 420.6561,-1947.5576 419.7693,-1940.614"/>
</g>
<!-- sourcefile~collisions.f90->sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_edge137" class="edge">
<title>sourcefile~collisions.f90->sourcefile~multifluid.f90</title>
<path fill="none" stroke="#000000" d="M630.7416,-1935.9556C599.2331,-1936.4431 552.6323,-1937.0884 512,-1937.3497"/>
<path fill="none" stroke="#000000" d="M512,-1937.3497C472.638,-1937.6028 367.1716,-1941.3864 336,-1917.3497"/>
</g>
<!-- sourcefile~sources.f90 -->
<g id="file~~graph~~FileGraph_node73" class="node">
<title>sourcefile~sources.f90</title>
<g id="a_file~~graph~~FileGraph_node73"><a xlink:href=".././sourcefile/sources.f90.html" xlink:title="sources.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="546,-1665.3497 478,-1665.3497 478,-1641.3497 546,-1641.3497 546,-1665.3497"/>
<text text-anchor="middle" x="512" y="-1650.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">sources.f90</text>
</a>
</g>
</g>
<!-- sourcefile~collisions.f90->sourcefile~sources.f90 -->
<g id="file~~graph~~FileGraph_edge170" class="edge">
<title>sourcefile~collisions.f90->sourcefile~sources.f90</title>
<path fill="none" stroke="#000000" d="M653.7783,-1923.0455C641.3606,-1911.0953 623.5923,-1891.8041 614,-1871.3497 576.2091,-1790.7655 636.8055,-1741.162 578,-1674.3497 572.1124,-1667.6605 564.1025,-1663.0843 555.6925,-1659.9583"/>
<polygon fill="#000000" stroke="#000000" points="556.7064,-1656.6084 546.1192,-1657.0099 554.6459,-1663.2983 556.7064,-1656.6084"/>
</g>
<!-- sourcefile~pathlib_windows.f90 -->
<g id="file~~graph~~FileGraph_node9" class="node">
<title>sourcefile~pathlib_windows.f90</title>
<g id="a_file~~graph~~FileGraph_node9"><a xlink:href=".././sourcefile/pathlib_windows.f90.html" xlink:title="pathlib_windows.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="566.5,-203.3497 457.5,-203.3497 457.5,-179.3497 566.5,-179.3497 566.5,-203.3497"/>
<text text-anchor="middle" x="512" y="-188.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">pathlib_windows.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interp2d.f90 -->
<g id="file~~graph~~FileGraph_node10" class="node">
<title>sourcefile~interp2d.f90</title>
<g id="a_file~~graph~~FileGraph_node10"><a xlink:href=".././sourcefile/interp2d.f90.html" xlink:title="interp2d.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="702.5,-2103.3497 632.5,-2103.3497 632.5,-2079.3497 702.5,-2079.3497 702.5,-2103.3497"/>
<text text-anchor="middle" x="667.5" y="-2088.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">interp2d.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90 -->
<g id="file~~graph~~FileGraph_node11" class="node">
<title>sourcefile~interpolation.f90</title>
<g id="a_file~~graph~~FileGraph_node11"><a xlink:href=".././sourcefile/interpolation.f90.html" xlink:title="interpolation.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="852.5,-2005.3497 763.5,-2005.3497 763.5,-1981.3497 852.5,-1981.3497 852.5,-2005.3497"/>
<text text-anchor="middle" x="808" y="-1990.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">interpolation.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~precipbcs_mod.f90 -->
<g id="file~~graph~~FileGraph_edge13" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~precipbcs_mod.f90</title>
<path fill="none" stroke="#000000" d="M798.0714,-1981.1634C785.9972,-1965.5756 766.1048,-1937.246 757,-1909.3497 727.8664,-1820.0868 778.3787,-1562.6755 721,-1488.3497 705.5807,-1468.3763 679.2107,-1491.7004 667.5,-1469.3497"/>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~interp2d.f90 -->
<g id="file~~graph~~FileGraph_edge35" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~interp2d.f90</title>
<path fill="none" stroke="#000000" d="M795.4888,-2005.3588C779.2257,-2020.5659 749.5216,-2046.9936 721,-2065.3497 715.8819,-2068.6436 710.2848,-2071.799 704.7004,-2074.7049"/>
<polygon fill="#000000" stroke="#000000" points="702.7895,-2071.7467 695.4013,-2079.3405 705.9124,-2078.0115 702.7895,-2071.7467"/>
</g>
<!-- sourcefile~testinterp1.f90 -->
<g id="file~~graph~~FileGraph_node24" class="node">
<title>sourcefile~testinterp1.f90</title>
<g id="a_file~~graph~~FileGraph_node24"><a xlink:href=".././sourcefile/testinterp1.f90.html" xlink:title="testinterp1.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="708,-2229.3497 627,-2229.3497 627,-2205.3497 708,-2205.3497 708,-2229.3497"/>
<text text-anchor="middle" x="667.5" y="-2214.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">testinterp1.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~testinterp1.f90 -->
<g id="file~~graph~~FileGraph_edge64" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~testinterp1.f90</title>
<path fill="none" stroke="#000000" d="M806.0971,-2005.7236C800.1126,-2040.5627 778.533,-2140.5646 721,-2196.3497 719.7195,-2197.5913 718.357,-2198.7619 716.9302,-2199.8653"/>
<polygon fill="#000000" stroke="#000000" points="714.7066,-2197.1333 708.1782,-2205.4778 718.4854,-2203.0258 714.7066,-2197.1333"/>
</g>
<!-- sourcefile~potential_mumps.f90 -->
<g id="file~~graph~~FileGraph_node38" class="node">
<title>sourcefile~potential_mumps.f90</title>
<g id="a_file~~graph~~FileGraph_node38"><a xlink:href=".././sourcefile/potential_mumps.f90.html" xlink:title="potential_mumps.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="568,-1909.3497 456,-1909.3497 456,-1885.3497 568,-1885.3497 568,-1909.3497"/>
<text text-anchor="middle" x="512" y="-1894.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potential_mumps.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~potential_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge96" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~potential_mumps.f90</title>
<path fill="none" stroke="#000000" d="M763.4161,-1991.7495C722.5979,-1988.726 661.4981,-1980.1912 614,-1956.3497 594.6015,-1946.6127 596.4058,-1934.8536 578,-1923.3497 572.106,-1919.6659 565.6031,-1916.3427 559.0461,-1913.4001"/>
<polygon fill="#000000" stroke="#000000" points="560.0398,-1910.0209 549.4654,-1909.3636 557.3219,-1916.4717 560.0398,-1910.0209"/>
</g>
<!-- sourcefile~potentialbcs_mumps.f90 -->
<g id="file~~graph~~FileGraph_node41" class="node">
<title>sourcefile~potentialbcs_mumps.f90</title>
<g id="a_file~~graph~~FileGraph_node41"><a xlink:href=".././sourcefile/potentialbcs_mumps.f90.html" xlink:title="potentialBCs_mumps.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="578,-1581.3497 446,-1581.3497 446,-1557.3497 578,-1557.3497 578,-1581.3497"/>
<text text-anchor="middle" x="512" y="-1566.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">potentialBCs_mumps.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~potentialbcs_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge104" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~potentialbcs_mumps.f90</title>
<path fill="none" stroke="#000000" d="M798.7325,-1981.2737C787.1569,-1965.5755 767.5888,-1936.9 757,-1909.3497 726.3224,-1829.5319 775.3282,-1786.3834 721,-1720.3497 688.4375,-1680.7713 650.4254,-1713.4046 614,-1677.3497 584.2593,-1647.9116 608.8102,-1618.6666 578,-1590.3497 576.6914,-1589.147 575.3139,-1588.0132 573.8797,-1586.9443"/>
<polygon fill="#000000" stroke="#000000" points="575.4733,-1583.8137 565.1331,-1581.5049 571.7766,-1589.758 575.4733,-1583.8137"/>
</g>
<!-- sourcefile~testinterp3.f90 -->
<g id="file~~graph~~FileGraph_node44" class="node">
<title>sourcefile~testinterp3.f90</title>
<g id="a_file~~graph~~FileGraph_node44"><a xlink:href=".././sourcefile/testinterp3.f90.html" xlink:title="testinterp3.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="708,-2187.3497 627,-2187.3497 627,-2163.3497 708,-2163.3497 708,-2187.3497"/>
<text text-anchor="middle" x="667.5" y="-2172.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">testinterp3.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~testinterp3.f90 -->
<g id="file~~graph~~FileGraph_edge115" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~testinterp3.f90</title>
<path fill="none" stroke="#000000" d="M804.5662,-2005.6969C795.6996,-2035.4096 769.2875,-2111.5943 721,-2154.3497 719.5152,-2155.6644 717.9385,-2156.9015 716.2931,-2158.0652"/>
<polygon fill="#000000" stroke="#000000" points="714.3683,-2155.1385 707.6012,-2163.2906 717.975,-2161.1378 714.3683,-2155.1385"/>
</g>
<!-- sourcefile~neutral.f90 -->
<g id="file~~graph~~FileGraph_node48" class="node">
<title>sourcefile~neutral.f90</title>
<g id="a_file~~graph~~FileGraph_node48"><a xlink:href=".././sourcefile/neutral.f90.html" xlink:title="neutral.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="544,-1083.3497 480,-1083.3497 480,-1059.3497 544,-1059.3497 544,-1083.3497"/>
<text text-anchor="middle" x="512" y="-1068.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">neutral.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~neutral.f90 -->
<g id="file~~graph~~FileGraph_edge121" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~neutral.f90</title>
<path fill="none" stroke="#000000" d="M798.0435,-1981.1724C785.9407,-1965.594 766.0186,-1937.274 757,-1909.3497 725.8959,-1813.0424 779.3186,-1538.0631 721,-1455.3497 690.9656,-1412.7518 646.2923,-1448.2624 614,-1407.3497 560.7508,-1339.8857 603.8837,-1299.3064 578,-1217.3497 563.451,-1171.2826 538.2668,-1120.5256 523.5733,-1092.6438"/>
<polygon fill="#000000" stroke="#000000" points="526.468,-1090.6338 518.6737,-1083.4575 520.2916,-1093.9281 526.468,-1090.6338"/>
</g>
<!-- sourcefile~testinterp2.f90 -->
<g id="file~~graph~~FileGraph_node52" class="node">
<title>sourcefile~testinterp2.f90</title>
<g id="a_file~~graph~~FileGraph_node52"><a xlink:href=".././sourcefile/testinterp2.f90.html" xlink:title="testinterp2.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="708,-2145.3497 627,-2145.3497 627,-2121.3497 708,-2121.3497 708,-2145.3497"/>
<text text-anchor="middle" x="667.5" y="-2130.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">testinterp2.f90</text>
</a>
</g>
</g>
<!-- sourcefile~interpolation.f90->sourcefile~testinterp2.f90 -->
<g id="file~~graph~~FileGraph_edge141" class="edge">
<title>sourcefile~interpolation.f90->sourcefile~testinterp2.f90</title>
<path fill="none" stroke="#000000" d="M802.0818,-2005.5744C790.008,-2029.3271 760.3202,-2082.0358 721,-2112.3497 719.1701,-2113.7605 717.2335,-2115.0878 715.2246,-2116.3353"/>
<polygon fill="#000000" stroke="#000000" points="713.1818,-2113.4614 706.0588,-2121.3045 716.5181,-2119.6153 713.1818,-2113.4614"/>
</g>
<!-- sourcefile~aurora_raw.f90 -->
<g id="file~~graph~~FileGraph_node12" class="node">
<title>sourcefile~aurora_raw.f90</title>
<g id="a_file~~graph~~FileGraph_node12"><a xlink:href=".././sourcefile/aurora_raw.f90.html" xlink:title="aurora_raw.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="204.5,-276.3497 119.5,-276.3497 119.5,-252.3497 204.5,-252.3497 204.5,-276.3497"/>
<text text-anchor="middle" x="162" y="-261.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">aurora_raw.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec.f90 -->
<g id="file~~graph~~FileGraph_node13" class="node">
<title>sourcefile~advec.f90</title>
<g id="a_file~~graph~~FileGraph_node13"><a xlink:href=".././sourcefile/advec.f90.html" xlink:title="advec.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="837.5,-2330.3497 778.5,-2330.3497 778.5,-2306.3497 837.5,-2306.3497 837.5,-2330.3497"/>
<text text-anchor="middle" x="808" y="-2315.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">advec.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mhd1d_saw.f90 -->
<g id="file~~graph~~FileGraph_node26" class="node">
<title>sourcefile~mhd1d_saw.f90</title>
<g id="a_file~~graph~~FileGraph_node26"><a xlink:href=".././sourcefile/mhd1d_saw.f90.html" xlink:title="MHD1D_SAW.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="716,-2393.3497 619,-2393.3497 619,-2369.3497 716,-2369.3497 716,-2393.3497"/>
<text text-anchor="middle" x="667.5" y="-2378.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">MHD1D_SAW.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec.f90->sourcefile~mhd1d_saw.f90 -->
<g id="file~~graph~~FileGraph_edge68" class="edge">
<title>sourcefile~advec.f90->sourcefile~mhd1d_saw.f90</title>
<path fill="none" stroke="#000000" d="M784.2235,-2330.4297C766.8621,-2339.1023 742.6707,-2350.8819 721,-2360.3497 717.0911,-2362.0575 712.9958,-2363.7805 708.8854,-2365.466"/>
<polygon fill="#000000" stroke="#000000" points="707.3166,-2362.3245 699.3474,-2369.3062 709.931,-2368.818 707.3166,-2362.3245"/>
</g>
<!-- sourcefile~mhd1d_snd.f90 -->
<g id="file~~graph~~FileGraph_node70" class="node">
<title>sourcefile~mhd1d_snd.f90</title>
<g id="a_file~~graph~~FileGraph_node70"><a xlink:href=".././sourcefile/mhd1d_snd.f90.html" xlink:title="MHD1D_SND.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="715.5,-2351.3497 619.5,-2351.3497 619.5,-2327.3497 715.5,-2327.3497 715.5,-2351.3497"/>
<text text-anchor="middle" x="667.5" y="-2336.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">MHD1D_SND.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec.f90->sourcefile~mhd1d_snd.f90 -->
<g id="file~~graph~~FileGraph_edge161" class="edge">
<title>sourcefile~advec.f90->sourcefile~mhd1d_snd.f90</title>
<path fill="none" stroke="#000000" d="M778.2036,-2322.8033C762.9113,-2325.0889 743.7395,-2327.9545 725.6675,-2330.6556"/>
<polygon fill="#000000" stroke="#000000" points="725.145,-2327.1948 715.7723,-2332.1346 726.1798,-2334.1179 725.145,-2327.1948"/>
</g>
<!-- sourcefile~mhd1d_shock.f90 -->
<g id="file~~graph~~FileGraph_node87" class="node">
<title>sourcefile~mhd1d_shock.f90</title>
<g id="a_file~~graph~~FileGraph_node87"><a xlink:href=".././sourcefile/mhd1d_shock.f90.html" xlink:title="MHD1D_shock.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="718.5,-2309.3497 616.5,-2309.3497 616.5,-2285.3497 718.5,-2285.3497 718.5,-2309.3497"/>
<text text-anchor="middle" x="667.5" y="-2294.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">MHD1D_shock.f90</text>
</a>
</g>
</g>
<!-- sourcefile~advec.f90->sourcefile~mhd1d_shock.f90 -->
<g id="file~~graph~~FileGraph_edge193" class="edge">
<title>sourcefile~advec.f90->sourcefile~mhd1d_shock.f90</title>
<path fill="none" stroke="#000000" d="M778.2036,-2313.8961C763.7263,-2311.7323 745.7719,-2309.0487 728.5654,-2306.4769"/>
<polygon fill="#000000" stroke="#000000" points="728.9604,-2302.9972 718.5528,-2304.9804 727.9255,-2309.9203 728.9604,-2302.9972"/>
</g>
<!-- sourcefile~ionization.f90 -->
<g id="file~~graph~~FileGraph_node14" class="node">
<title>sourcefile~ionization.f90</title>
<g id="a_file~~graph~~FileGraph_node14"><a xlink:href=".././sourcefile/ionization.f90.html" xlink:title="ionization.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="374,-1043.3497 298,-1043.3497 298,-1019.3497 374,-1019.3497 374,-1043.3497"/>
<text text-anchor="middle" x="336" y="-1028.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">ionization.f90</text>
</a>
</g>
</g>
<!-- sourcefile~glow_dummy.f90 -->
<g id="file~~graph~~FileGraph_node33" class="node">
<title>sourcefile~glow_dummy.f90</title>
<g id="a_file~~graph~~FileGraph_node33"><a xlink:href=".././sourcefile/glow_dummy.f90.html" xlink:title="glow_dummy.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="209,-1043.3497 115,-1043.3497 115,-1019.3497 209,-1019.3497 209,-1043.3497"/>
<text text-anchor="middle" x="162" y="-1028.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">glow_dummy.f90</text>
</a>
</g>
</g>
<!-- sourcefile~ionization.f90->sourcefile~glow_dummy.f90 -->
<g id="file~~graph~~FileGraph_edge81" class="edge">
<title>sourcefile~ionization.f90->sourcefile~glow_dummy.f90</title>
<path fill="none" stroke="#000000" d="M297.815,-1031.3497C274.7647,-1031.3497 244.955,-1031.3497 219.1381,-1031.3497"/>
<polygon fill="#000000" stroke="#000000" points="219.0932,-1027.8498 209.0932,-1031.3497 219.0931,-1034.8498 219.0932,-1027.8498"/>
</g>
<!-- sourcefile~glow_run.f90 -->
<g id="file~~graph~~FileGraph_node47" class="node">
<title>sourcefile~glow_run.f90</title>
<g id="a_file~~graph~~FileGraph_node47"><a xlink:href=".././sourcefile/glow_run.f90.html" xlink:title="glow_run.F90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="201,-851.3497 123,-851.3497 123,-827.3497 201,-827.3497 201,-851.3497"/>
<text text-anchor="middle" x="162" y="-836.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">glow_run.F90</text>
</a>
</g>
</g>
<!-- sourcefile~ionization.f90->sourcefile~glow_run.f90 -->
<g id="file~~graph~~FileGraph_edge119" class="edge">
<title>sourcefile~ionization.f90->sourcefile~glow_run.f90</title>
<path fill="none" stroke="#000000" d="M325.1155,-1019.3392C295.8815,-987.081 215.4489,-898.3278 179.6192,-858.7916"/>
<polygon fill="#000000" stroke="#000000" points="182.1891,-856.4152 172.8804,-851.3556 177.0021,-861.1159 182.1891,-856.4152"/>
</g>
<!-- sourcefile~ionization.f90->sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_edge129" class="edge">
<title>sourcefile~ionization.f90->sourcefile~multifluid.f90</title>
<path fill="none" stroke="#000000" d="M312.5861,-1043.5193C295.6003,-1053.6582 273.6414,-1069.7514 262,-1090.3497 201.7847,-1196.895 300.8432,-1266.5186 226,-1363.3497 221.3107,-1369.4167 214.9715,-1374.075 208.0991,-1377.6498"/>
<polygon fill="#000000" stroke="#000000" points="206.2387,-1374.645 198.5021,-1381.8835 209.0641,-1381.0495 206.2387,-1374.645"/>
</g>
<!-- sourcefile~magcalc.f90 -->
<g id="file~~graph~~FileGraph_node15" class="node">
<title>sourcefile~magcalc.f90</title>
<g id="a_file~~graph~~FileGraph_node15"><a xlink:href=".././sourcefile/magcalc.f90.html" xlink:title="magcalc.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="371,-772.3497 301,-772.3497 301,-748.3497 371,-748.3497 371,-772.3497"/>
<text text-anchor="middle" x="336" y="-757.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">magcalc.f90</text>
</a>
</g>
</g>
<!-- sourcefile~gradient.f90 -->
<g id="file~~graph~~FileGraph_node16" class="node">
<title>sourcefile~gradient.f90</title>
<g id="a_file~~graph~~FileGraph_node16"><a xlink:href=".././sourcefile/gradient.f90.html" xlink:title="gradient.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="547,-2397.3497 477,-2397.3497 477,-2373.3497 547,-2373.3497 547,-2397.3497"/>
<text text-anchor="middle" x="512" y="-2382.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">gradient.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mag.f90 -->
<g id="file~~graph~~FileGraph_node17" class="node">
<title>sourcefile~mag.f90</title>
<g id="a_file~~graph~~FileGraph_node17"><a xlink:href=".././sourcefile/mag.f90.html" xlink:title="mag.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="363,-367.3497 309,-367.3497 309,-343.3497 363,-343.3497 363,-367.3497"/>
<text text-anchor="middle" x="336" y="-352.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mesh.f90 -->
<g id="file~~graph~~FileGraph_node18" class="node">
<title>sourcefile~mesh.f90</title>
<g id="a_file~~graph~~FileGraph_node18"><a xlink:href=".././sourcefile/mesh.f90.html" xlink:title="mesh.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="836.5,-1867.3497 779.5,-1867.3497 779.5,-1843.3497 836.5,-1843.3497 836.5,-1867.3497"/>
<text text-anchor="middle" x="808" y="-1852.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mesh.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mesh.f90->sourcefile~gemini.f90 -->
<g id="file~~graph~~FileGraph_edge8" class="edge">
<title>sourcefile~mesh.f90->sourcefile~gemini.f90</title>
<path fill="none" stroke="#000000" d="M512,-2505.3497C440.3238,-2469.7621 415.9703,-2546.2991 336,-2543.3497"/>
<path fill="none" stroke="#000000" d="M336,-2543.3497C88.8741,-2534.2353 38.4776,-1553.7048 31.8403,-1391.8513"/>
<polygon fill="#000000" stroke="#000000" points="35.3288,-1391.491 31.4359,-1381.6373 28.3343,-1391.768 35.3288,-1391.491"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~precipbcs_mod.f90 -->
<g id="file~~graph~~FileGraph_edge19" class="edge">
<title>sourcefile~mesh.f90->sourcefile~precipbcs_mod.f90</title>
<path fill="none" stroke="#000000" d="M805.1193,-1843.1545C790.0947,-1779.5538 721.3894,-1488.7838 721,-1488.3497 704.1513,-1469.5664 679.2107,-1491.7004 667.5,-1469.3497"/>
<path fill="none" stroke="#000000" d="M667.5,-1469.3497C655.4051,-1446.2657 631.4314,-1464.7225 614,-1445.3497 579.5926,-1407.1102 605.2605,-1378.9729 578,-1335.3497 566.9698,-1317.6987 550.0509,-1301.4233 536.105,-1289.7023"/>
<polygon fill="#000000" stroke="#000000" points="538.2691,-1286.9509 528.3044,-1283.3514 533.8495,-1292.3793 538.2691,-1286.9509"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~advec_mpi.f90 -->
<g id="file~~graph~~FileGraph_edge26" class="edge">
<title>sourcefile~mesh.f90->sourcefile~advec_mpi.f90</title>
<path fill="none" stroke="#000000" d="M779.4774,-1855.8746C751.092,-1856.369 706.2868,-1857.0737 667.5,-1857.3497"/>
<path fill="none" stroke="#000000" d="M667.5,-1857.3497C626.3756,-1857.6424 581.0061,-1844.3128 549.9428,-1832.9648"/>
<polygon fill="#000000" stroke="#000000" points="550.9755,-1829.6139 540.3835,-1829.3698 548.5115,-1836.1659 550.9755,-1829.6139"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~temporal.f90 -->
<g id="file~~graph~~FileGraph_edge29" class="edge">
<title>sourcefile~mesh.f90->sourcefile~temporal.f90</title>
<path fill="none" stroke="#000000" d="M779.2456,-1863.7589C770.688,-1867.7049 762.2129,-1873.3589 757,-1881.3497 679.898,-1999.54 799.2266,-2397.9007 721,-2515.3497 718.7146,-2518.781 715.8409,-2521.7744 712.6181,-2524.383"/>
<polygon fill="#000000" stroke="#000000" points="710.4079,-2521.6497 704.0237,-2530.1051 714.2873,-2527.4764 710.4079,-2521.6497"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~ionization.f90 -->
<g id="file~~graph~~FileGraph_edge44" class="edge">
<title>sourcefile~mesh.f90->sourcefile~ionization.f90</title>
<path fill="none" stroke="#000000" d="M512,-1031.3497C496.8987,-1011.9002 431.0501,-1016.941 384.3394,-1023.3439"/>
<polygon fill="#000000" stroke="#000000" points="383.7977,-1019.8857 374.394,-1024.7662 384.7888,-1026.8152 383.7977,-1019.8857"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~magcalc.f90 -->
<g id="file~~graph~~FileGraph_edge51" class="edge">
<title>sourcefile~mesh.f90->sourcefile~magcalc.f90</title>
<path fill="none" stroke="#000000" d="M804.7905,-1843.2424C796.1985,-1810.5422 772.2907,-1717.6297 757,-1639.3497 746.998,-1588.1449 755.963,-1446.0739 721,-1407.3497 704.529,-1389.1068 676.1809,-1416.3441 667.5,-1393.3497"/>
<path fill="none" stroke="#000000" d="M667.5,-1393.3497C658.4195,-1369.297 629.4807,-1391.8762 614,-1371.3497 527.557,-1256.7313 670.6042,-1160.0504 578,-1050.3497 558.3101,-1027.0246 530.7202,-1055.4601 512,-1031.3497"/>
<path fill="none" stroke="#000000" d="M512,-1031.3497C493.2798,-1007.2394 468.9534,-1032.4717 446,-1012.3497 374.4006,-949.5827 347.5963,-831.6422 339.2491,-782.6097"/>
<polygon fill="#000000" stroke="#000000" points="342.6615,-781.7841 337.622,-772.4645 335.7498,-782.8926 342.6615,-781.7841"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~potential_comm_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge86" class="edge">
<title>sourcefile~mesh.f90->sourcefile~potential_comm_mumps.f90</title>
<path fill="none" stroke="#000000" d="M779.2601,-1863.7684C770.7035,-1867.715 762.2253,-1873.367 757,-1881.3497 683.7239,-1993.2948 813.2236,-2385.4173 721,-2482.3497 688.793,-2516.2012 553.6482,-2526.5308 512,-2505.3497"/>
<path fill="none" stroke="#000000" d="M512,-2505.3497C483.6134,-2491.2556 466.3025,-2502.686 446,-2478.3497 380.5479,-2399.8932 346.1144,-2068.486 337.9315,-1979.4483"/>
<polygon fill="#000000" stroke="#000000" points="341.4088,-1979.0382 337.0253,-1969.3928 334.4371,-1979.6666 341.4088,-1979.0382"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~potential_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge99" class="edge">
<title>sourcefile~mesh.f90->sourcefile~potential_mumps.f90</title>
<path fill="none" stroke="#000000" d="M667.5,-1857.3497C626.7529,-1857.6397 581.8382,-1870.6408 550.8013,-1881.742"/>
<polygon fill="#000000" stroke="#000000" points="549.4118,-1878.5238 541.235,-1885.261 551.8285,-1885.0934 549.4118,-1878.5238"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~potentialbcs_mumps.f90 -->
<g id="file~~graph~~FileGraph_edge110" class="edge">
<title>sourcefile~mesh.f90->sourcefile~potentialbcs_mumps.f90</title>
<path fill="none" stroke="#000000" d="M804.7164,-1843.0685C796.0265,-1812.7315 769.6908,-1733.3808 721,-1687.3497 702.0623,-1669.4465 688.5441,-1678.722 667.5,-1663.3497"/>
<path fill="none" stroke="#000000" d="M667.5,-1663.3497C646.4559,-1647.9775 634.2735,-1655.7249 614,-1639.3497 592.9775,-1622.3696 599.9529,-1606.1086 578,-1590.3497 575.7869,-1588.761 573.4486,-1587.2891 571.0246,-1585.9256"/>
<polygon fill="#000000" stroke="#000000" points="572.4597,-1582.731 561.9428,-1581.4487 569.3646,-1589.0095 572.4597,-1582.731"/>
</g>
<!-- sourcefile~calculus.f90 -->
<g id="file~~graph~~FileGraph_node42" class="node">
<title>sourcefile~calculus.f90</title>
<g id="a_file~~graph~~FileGraph_node42"><a xlink:href=".././sourcefile/calculus.f90.html" xlink:title="calculus.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="702,-2473.3497 633,-2473.3497 633,-2449.3497 702,-2449.3497 702,-2473.3497"/>
<text text-anchor="middle" x="667.5" y="-2458.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">calculus.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mesh.f90->sourcefile~calculus.f90 -->
<g id="file~~graph~~FileGraph_edge111" class="edge">
<title>sourcefile~mesh.f90->sourcefile~calculus.f90</title>
<path fill="none" stroke="#000000" d="M779.3029,-1863.7965C770.7491,-1867.745 762.2618,-1873.391 757,-1881.3497 692.9962,-1978.1588 766.4892,-2295.5826 721,-2402.3497 714.3946,-2417.8531 701.953,-2431.9671 690.7291,-2442.5008"/>
<polygon fill="#000000" stroke="#000000" points="688.3635,-2439.9209 683.24,-2449.1945 693.0284,-2445.14 688.3635,-2439.9209"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~neutral.f90 -->
<g id="file~~graph~~FileGraph_edge127" class="edge">
<title>sourcefile~mesh.f90->sourcefile~neutral.f90</title>
<path fill="none" stroke="#000000" d="M667.5,-1393.3497C658.2955,-1368.9686 630.6053,-1389.4351 614,-1369.3497 569.7642,-1315.8432 600.4019,-1283.0605 578,-1217.3497 562.4114,-1171.6239 537.5981,-1120.7452 523.2507,-1092.7497"/>
<polygon fill="#000000" stroke="#000000" points="526.18,-1090.7948 518.4748,-1083.5228 519.9634,-1094.0126 526.18,-1090.7948"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~multifluid.f90 -->
<g id="file~~graph~~FileGraph_edge135" class="edge">
<title>sourcefile~mesh.f90->sourcefile~multifluid.f90</title>
<path fill="none" stroke="#000000" d="M667.5,-1857.3497C568.6965,-1858.0529 542.3991,-1854.6742 446,-1876.3497 395.0965,-1887.7954 377.3172,-1949.2097 336,-1917.3497"/>
</g>
<!-- sourcefile~grid.f90 -->
<g id="file~~graph~~FileGraph_node71" class="node">
<title>sourcefile~grid.f90</title>
<g id="a_file~~graph~~FileGraph_node71"><a xlink:href=".././sourcefile/grid.f90.html" xlink:title="grid.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="694.5,-1521.3497 640.5,-1521.3497 640.5,-1497.3497 694.5,-1497.3497 694.5,-1521.3497"/>
<text text-anchor="middle" x="667.5" y="-1506.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">grid.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mesh.f90->sourcefile~grid.f90 -->
<g id="file~~graph~~FileGraph_edge165" class="edge">
<title>sourcefile~mesh.f90->sourcefile~grid.f90</title>
<path fill="none" stroke="#000000" d="M804.3311,-1843.1842C793.3223,-1807.1485 758.9774,-1698.0671 721,-1611.3497 708.3964,-1582.5708 691.1113,-1550.6965 679.6386,-1530.3666"/>
<polygon fill="#000000" stroke="#000000" points="682.6563,-1528.5928 674.6668,-1521.6344 676.5732,-1532.0563 682.6563,-1528.5928"/>
</g>
<!-- sourcefile~mesh.f90->sourcefile~sources.f90 -->
<g id="file~~graph~~FileGraph_edge169" class="edge">
<title>sourcefile~mesh.f90->sourcefile~sources.f90</title>
<path fill="none" stroke="#000000" d="M667.5,-1663.3497C635.726,-1640.1395 589.8593,-1640.076 556.1716,-1644.3493"/>
<polygon fill="#000000" stroke="#000000" points="555.5361,-1640.9046 546.1369,-1645.7938 556.5336,-1647.8332 555.5361,-1640.9046"/>
</g>
<!-- sourcefile~diffusion.f90 -->
<g id="file~~graph~~FileGraph_node81" class="node">
<title>sourcefile~diffusion.f90</title>
<g id="a_file~~graph~~FileGraph_node81"><a xlink:href=".././sourcefile/diffusion.f90.html" xlink:title="diffusion.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="547,-2065.3497 477,-2065.3497 477,-2041.3497 547,-2041.3497 547,-2065.3497"/>
<text text-anchor="middle" x="512" y="-2050.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">diffusion.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mesh.f90->sourcefile~diffusion.f90 -->
<g id="file~~graph~~FileGraph_edge182" class="edge">
<title>sourcefile~mesh.f90->sourcefile~diffusion.f90</title>
<path fill="none" stroke="#000000" d="M779.3683,-1865.1564C771.2276,-1869.1118 762.9637,-1874.419 757,-1881.3497 723.9987,-1919.7022 757.2144,-1954.0153 721,-1989.3497 676.8101,-2032.4658 604.3737,-2046.6283 557.4419,-2051.2244"/>
<polygon fill="#000000" stroke="#000000" points="556.9131,-2047.7571 547.2544,-2052.1114 557.5203,-2054.7307 556.9131,-2047.7571"/>
</g>
<!-- sourcefile~plasma_output_raw.f90 -->
<g id="file~~graph~~FileGraph_node19" class="node">
<title>sourcefile~plasma_output_raw.f90</title>
<g id="a_file~~graph~~FileGraph_node19"><a xlink:href=".././sourcefile/plasma_output_raw.f90.html" xlink:title="plasma_output_raw.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="224,-659.3497 100,-659.3497 100,-635.3497 224,-635.3497 224,-659.3497"/>
<text text-anchor="middle" x="162" y="-644.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_output_raw.f90</text>
</a>
</g>
</g>
<!-- sourcefile~mag_ncdf.f90 -->
<g id="file~~graph~~FileGraph_node20" class="node">
<title>sourcefile~mag_ncdf.f90</title>
<g id="a_file~~graph~~FileGraph_node20"><a xlink:href=".././sourcefile/mag_ncdf.f90.html" xlink:title="mag_ncdf.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="375,-493.3497 297,-493.3497 297,-469.3497 375,-469.3497 375,-493.3497"/>
<text text-anchor="middle" x="336" y="-478.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_ncdf.f90</text>
</a>
</g>
</g>
<!-- sourcefile~test_potential2d.f90 -->
<g id="file~~graph~~FileGraph_node21" class="node">
<title>sourcefile~test_potential2d.f90</title>
<g id="a_file~~graph~~FileGraph_node21"><a xlink:href=".././sourcefile/test_potential2d.f90.html" xlink:title="test_potential2D.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="566,-1623.3497 458,-1623.3497 458,-1599.3497 566,-1599.3497 566,-1623.3497"/>
<text text-anchor="middle" x="512" y="-1608.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">test_potential2D.f90</text>
</a>
</g>
</g>
<!-- sourcefile~aurora_hdf5.f90 -->
<g id="file~~graph~~FileGraph_node22" class="node">
<title>sourcefile~aurora_hdf5.f90</title>
<g id="a_file~~graph~~FileGraph_node22"><a xlink:href=".././sourcefile/aurora_hdf5.f90.html" xlink:title="aurora_hdf5.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="206.5,-215.3497 117.5,-215.3497 117.5,-191.3497 206.5,-191.3497 206.5,-215.3497"/>
<text text-anchor="middle" x="162" y="-200.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">aurora_hdf5.f90</text>
</a>
</g>
</g>
<!-- sourcefile~logging.f90 -->
<g id="file~~graph~~FileGraph_node23" class="node">
<title>sourcefile~logging.f90</title>
<g id="a_file~~graph~~FileGraph_node23"><a xlink:href=".././sourcefile/logging.f90.html" xlink:title="logging.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="981.5,-2675.3497 916.5,-2675.3497 916.5,-2651.3497 981.5,-2651.3497 981.5,-2675.3497"/>
<text text-anchor="middle" x="949" y="-2660.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">logging.f90</text>
</a>
</g>
</g>
<!-- sourcefile~aurora_ncdf.f90 -->
<g id="file~~graph~~FileGraph_node25" class="node">
<title>sourcefile~aurora_ncdf.f90</title>
<g id="a_file~~graph~~FileGraph_node25"><a xlink:href=".././sourcefile/aurora_ncdf.f90.html" xlink:title="aurora_ncdf.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="206,-173.3497 118,-173.3497 118,-149.3497 206,-149.3497 206,-173.3497"/>
<text text-anchor="middle" x="162" y="-158.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">aurora_ncdf.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90 -->
<g id="file~~graph~~FileGraph_node27" class="node">
<title>sourcefile~io.f90</title>
<g id="a_file~~graph~~FileGraph_node27"><a xlink:href=".././sourcefile/io.f90.html" xlink:title="io.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="539,-409.3497 485,-409.3497 485,-385.3497 539,-385.3497 539,-409.3497"/>
<text text-anchor="middle" x="512" y="-394.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90->sourcefile~gemini.f90 -->
<g id="file~~graph~~FileGraph_edge9" class="edge">
<title>sourcefile~io.f90->sourcefile~gemini.f90</title>
<path fill="none" stroke="#000000" d="M502.7395,-385.2268C488.3089,-365.7135 460.6013,-325.6388 446,-287.3497 415.5315,-207.4518 469.3608,-159.8989 410,-98.3497 312.87,2.361 199.4262,40.0329 98,-56.3497 49.225,-102.6992 33.4558,-1177.9158 31.2738,-1347.0479"/>
<polygon fill="#000000" stroke="#000000" points="27.7717,-1347.2042 31.1447,-1357.2477 34.7711,-1347.2929 27.7717,-1347.2042"/>
</g>
<!-- sourcefile~io.f90->sourcefile~magcalc.f90 -->
<g id="file~~graph~~FileGraph_edge52" class="edge">
<title>sourcefile~io.f90->sourcefile~magcalc.f90</title>
<path fill="none" stroke="#000000" d="M503.5122,-409.3809C489.9052,-429.0901 463.0148,-469.8257 446,-507.3497 424.4076,-554.969 430.2239,-571.1333 410,-619.3497 391.5242,-663.3983 364.2791,-712.2169 348.5182,-739.3015"/>
<polygon fill="#000000" stroke="#000000" points="345.311,-737.8514 343.2686,-748.2475 351.3483,-741.3941 345.311,-737.8514"/>
</g>
<!-- sourcefile~io.f90->sourcefile~mag.f90 -->
<g id="file~~graph~~FileGraph_edge54" class="edge">
<title>sourcefile~io.f90->sourcefile~mag.f90</title>
<path fill="none" stroke="#000000" d="M484.8857,-390.8793C454.9127,-383.7266 406.456,-372.1631 373.007,-364.1809"/>
<polygon fill="#000000" stroke="#000000" points="373.6844,-360.7444 363.1451,-361.8275 372.0595,-367.5532 373.6844,-360.7444"/>
</g>
<!-- sourcefile~io.f90->sourcefile~mag_ncdf.f90 -->
<g id="file~~graph~~FileGraph_edge58" class="edge">
<title>sourcefile~io.f90->sourcefile~mag_ncdf.f90</title>
<path fill="none" stroke="#000000" d="M495.4719,-409.568C475.928,-423.5273 442.0004,-446.2544 410,-460.3497 402.0942,-463.832 393.4589,-466.8953 384.9675,-469.529"/>
<polygon fill="#000000" stroke="#000000" points="383.7257,-466.2458 375.1178,-472.4227 385.6989,-472.962 383.7257,-466.2458"/>
</g>
<!-- sourcefile~mag_raw.f90 -->
<g id="file~~graph~~FileGraph_node30" class="node">
<title>sourcefile~mag_raw.f90</title>
<g id="a_file~~graph~~FileGraph_node30"><a xlink:href=".././sourcefile/mag_raw.f90.html" xlink:title="mag_raw.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="373.5,-451.3497 298.5,-451.3497 298.5,-427.3497 373.5,-427.3497 373.5,-451.3497"/>
<text text-anchor="middle" x="336" y="-436.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_raw.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90->sourcefile~mag_raw.f90 -->
<g id="file~~graph~~FileGraph_edge77" class="edge">
<title>sourcefile~io.f90->sourcefile~mag_raw.f90</title>
<path fill="none" stroke="#000000" d="M484.8857,-403.8202C457.8838,-410.2638 415.881,-420.2872 383.3637,-428.047"/>
<polygon fill="#000000" stroke="#000000" points="382.5182,-424.6504 373.6037,-430.3761 384.1431,-431.4592 382.5182,-424.6504"/>
</g>
<!-- sourcefile~input.f90 -->
<g id="file~~graph~~FileGraph_node32" class="node">
<title>sourcefile~input.f90</title>
<g id="a_file~~graph~~FileGraph_node32"><a xlink:href=".././sourcefile/input.f90.html" xlink:title="input.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="363,-131.3497 309,-131.3497 309,-107.3497 363,-107.3497 363,-131.3497"/>
<text text-anchor="middle" x="336" y="-116.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">input.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90->sourcefile~input.f90 -->
<g id="file~~graph~~FileGraph_edge80" class="edge">
<title>sourcefile~io.f90->sourcefile~input.f90</title>
<path fill="none" stroke="#000000" d="M503.5587,-385.2973C490.017,-365.5583 463.2163,-324.7817 446,-287.3497 424.8579,-241.3822 438.8033,-220.9474 410,-179.3497 398.2724,-162.4128 380.4393,-147.7535 365.218,-137.1649"/>
<polygon fill="#000000" stroke="#000000" points="366.8811,-134.0666 356.6236,-131.4145 362.9884,-139.8844 366.8811,-134.0666"/>
</g>
<!-- sourcefile~plasma.f90 -->
<g id="file~~graph~~FileGraph_node43" class="node">
<title>sourcefile~plasma.f90</title>
<g id="a_file~~graph~~FileGraph_node43"><a xlink:href=".././sourcefile/plasma.f90.html" xlink:title="plasma.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="368.5,-575.3497 303.5,-575.3497 303.5,-551.3497 368.5,-551.3497 368.5,-575.3497"/>
<text text-anchor="middle" x="336" y="-560.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90->sourcefile~plasma.f90 -->
<g id="file~~graph~~FileGraph_edge113" class="edge">
<title>sourcefile~io.f90->sourcefile~plasma.f90</title>
<path fill="none" stroke="#000000" d="M506.1118,-409.5052C492.6842,-436.0256 457.2687,-499.5642 410,-535.3497 400.5978,-542.4678 389.1795,-547.9607 378.1546,-552.1179"/>
<polygon fill="#000000" stroke="#000000" points="376.9211,-548.8412 368.6279,-555.4346 379.2227,-555.452 376.9211,-548.8412"/>
</g>
<!-- sourcefile~mag_hdf5.f90 -->
<g id="file~~graph~~FileGraph_node53" class="node">
<title>sourcefile~mag_hdf5.f90</title>
<g id="a_file~~graph~~FileGraph_node53"><a xlink:href=".././sourcefile/mag_hdf5.f90.html" xlink:title="mag_hdf5.f90">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="375.5,-409.3497 296.5,-409.3497 296.5,-385.3497 375.5,-385.3497 375.5,-409.3497"/>
<text text-anchor="middle" x="336" y="-394.9497" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag_hdf5.f90</text>
</a>
</g>
</g>
<!-- sourcefile~io.f90->sourcefile~mag_hdf5.f90 -->
<g id="file~~graph~~FileGraph_edge143" class="edge">
<title>sourcefile~io.f90->sourcefile~mag_hdf5.f90</title>