-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathio.html
More file actions
2885 lines (1711 loc) · 75.4 KB
/
Copy pathio.html
File metadata and controls
2885 lines (1711 loc) · 75.4 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>io – 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>io
<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.">94 statements</a>
</li>
<li><i class="fa fa-code"></i><a href="../src/io.f90"> Source File</a></li>
</ul>
<ol class="breadcrumb in-well text-right">
<li><a href='../sourcefile/io.f90.html'>io.f90</a></li>
<li class="active">io</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/io.html#variable-indatfile">indatfile</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/io.html#interface-create_outdir_aur">create_outdir_aur</a>
<a class="list-group-item" href="../module/io.html#interface-output_aur">output_aur</a>
<a class="list-group-item" href="../module/io.html#interface-output_aur_workers">output_aur_workers</a>
<a class="list-group-item" href="../module/io.html#interface-create_outdir_mag">create_outdir_mag</a>
<a class="list-group-item" href="../module/io.html#interface-output_magfields">output_magfields</a>
<a class="list-group-item" href="../module/io.html#interface-input_plasma">input_plasma</a>
<a class="list-group-item" href="../module/io.html#interface-input_plasma_currents">input_plasma_currents</a>
<a class="list-group-item" href="../module/io.html#interface-output_plasma">output_plasma</a>
<a class="list-group-item" href="../module/io.html#interface-create_outdir">create_outdir</a>
<a class="list-group-item" href="../module/io.html#interface-read_configfile">read_configfile</a>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-9" id='text'>
<p>HANDLES INPUT AND OUTPUT OF PLASMA STATE PARAMETERS (NOT GRID INPUTS)</p>
<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="http://fortranwiki.org/fortran/show/IEEE_ARITHMETIC">ieee_arithmetic</a></li>
<li><a href="http://fortranwiki.org/fortran/show/ISO_C_BINDING">iso_c_binding</a></li>
<li><a href='../module/phys_consts.html'>phys_consts</a></li>
<li><a href='../module/pathlib.html'>pathlib</a></li>
<li><a href='../module/mpimod.html'>mpimod</a></li>
<li><a href='../module/grid.html'>grid</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~~io~~UsesGraph Pages: 1 -->
<svg id="moduleioUsesGraph" width="504pt" height="338pt"
viewBox="0.00 0.00 504.00 337.80" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="module~~io~~UsesGraph" class="graph" transform="scale(1 1) rotate(0) translate(4 333.8018)">
<title>module~~io~~UsesGraph</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-333.8018 500,-333.8018 500,4 -4,4"/>
<!-- module~io -->
<g id="module~~io~~UsesGraph_node1" class="node">
<title>module~io</title>
<polygon fill="none" stroke="#000000" points="496,-201 442,-201 442,-177 496,-177 496,-201"/>
<text text-anchor="middle" x="469" y="-186.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#000000">io</text>
</g>
<!-- module~pathlib -->
<g id="module~~io~~UsesGraph_node2" class="node">
<title>module~pathlib</title>
<g id="a_module~~io~~UsesGraph_node2"><a xlink:href=".././module/pathlib.html" xlink:title="pathlib">
<polygon fill="#337ab7" stroke="#337ab7" points="186,-316 132,-316 132,-292 186,-292 186,-316"/>
<text text-anchor="middle" x="159" y="-301.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">pathlib</text>
</a>
</g>
</g>
<!-- module~io->module~pathlib -->
<g id="module~~io~~UsesGraph_edge1" class="edge">
<title>module~io->module~pathlib</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M466.6019,-201.3449C461.0251,-226.2385 444.6041,-282.036 406,-305 340.662,-343.867 247.3616,-328.4218 196.1636,-315.2491"/>
<polygon fill="#000000" stroke="#000000" points="196.7697,-311.788 186.2043,-312.5775 194.956,-318.549 196.7697,-311.788"/>
</g>
<!-- ieee_arithmetic -->
<g id="module~~io~~UsesGraph_node3" class="node">
<title>ieee_arithmetic</title>
<g id="a_module~~io~~UsesGraph_node3"><a xlink:href="http://fortranwiki.org/fortran/show/IEEE_ARITHMETIC" xlink:title="ieee_arithmetic">
<polygon fill="#337ab7" stroke="#337ab7" points="406,-296 321,-296 321,-272 406,-272 406,-296"/>
<text text-anchor="middle" x="363.5" y="-281.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">ieee_arithmetic</text>
</a>
</g>
</g>
<!-- module~io->ieee_arithmetic -->
<g id="module~~io~~UsesGraph_edge2" class="edge">
<title>module~io->ieee_arithmetic</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M459.6485,-201.1866C448.072,-215.78 427.2693,-240.4484 406,-258 402.4516,-260.9281 398.5431,-263.7619 394.5774,-266.414"/>
<polygon fill="#000000" stroke="#000000" points="392.4971,-263.5886 385.9217,-271.8962 396.2425,-269.5023 392.4971,-263.5886"/>
</g>
<!-- iso_fortran_env -->
<g id="module~~io~~UsesGraph_node4" class="node">
<title>iso_fortran_env</title>
<g id="a_module~~io~~UsesGraph_node4"><a xlink:href="http://fortranwiki.org/fortran/show/ISO_FORTRAN_ENV" xlink:title="iso_fortran_env">
<polygon fill="#337ab7" stroke="#337ab7" points="87,-226 0,-226 0,-202 87,-202 87,-226"/>
<text text-anchor="middle" x="43.5" y="-211.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">iso_fortran_env</text>
</a>
</g>
</g>
<!-- module~io->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge3" class="edge">
<title>module~io->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M363.5,-244C258.5229,-264.5192 228.7971,-250.7547 123,-235 112.9396,-233.5019 102.3211,-231.2109 92.2343,-228.6846"/>
<polygon fill="#000000" stroke="#000000" points="92.9255,-225.2477 82.3651,-226.1004 91.1524,-232.0194 92.9255,-225.2477"/>
</g>
<!-- module~phys_consts -->
<g id="module~~io~~UsesGraph_node5" class="node">
<title>module~phys_consts</title>
<g id="a_module~~io~~UsesGraph_node5"><a xlink:href=".././module/phys_consts.html" xlink:title="phys_consts">
<polygon fill="#337ab7" stroke="#337ab7" points="195,-146 123,-146 123,-122 195,-122 195,-146"/>
<text text-anchor="middle" x="159" y="-131.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">phys_consts</text>
</a>
</g>
</g>
<!-- module~io->module~phys_consts -->
<g id="module~~io~~UsesGraph_edge4" class="edge">
<title>module~io->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M461.6824,-176.8937C451.1917,-160.4339 430.4253,-130.989 406,-113 348.714,-70.8094 328.2309,-40.627 258,-52"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M258,-52C220.3471,-55.6398 189.1544,-90.4076 172.3738,-113.4875"/>
<polygon fill="#000000" stroke="#000000" points="169.3155,-111.7545 166.4717,-121.9606 175.0594,-115.7555 169.3155,-111.7545"/>
</g>
<!-- module~mpimod -->
<g id="module~~io~~UsesGraph_node6" class="node">
<title>module~mpimod</title>
<g id="a_module~~io~~UsesGraph_node6"><a xlink:href=".././module/mpimod.html" xlink:title="mpimod">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-226 231,-226 231,-202 285,-202 285,-226"/>
<text text-anchor="middle" x="258" y="-211.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mpimod</text>
</a>
</g>
</g>
<!-- module~io->module~mpimod -->
<g id="module~~io~~UsesGraph_edge5" class="edge">
<title>module~io->module~mpimod</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M452.9487,-201.17C433.1776,-215.2203 397.9622,-237.2639 363.5,-244"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M363.5,-244C337.7319,-249.0367 309.1164,-239.945 288.1959,-230.483"/>
<polygon fill="#000000" stroke="#000000" points="289.6942,-227.3199 279.1632,-226.1589 286.6717,-233.6338 289.6942,-227.3199"/>
</g>
<!-- module~grid -->
<g id="module~~io~~UsesGraph_node7" class="node">
<title>module~grid</title>
<g id="a_module~~io~~UsesGraph_node7"><a xlink:href=".././module/grid.html" xlink:title="grid">
<polygon fill="#337ab7" stroke="#337ab7" points="390.5,-146 336.5,-146 336.5,-122 390.5,-122 390.5,-146"/>
<text text-anchor="middle" x="363.5" y="-131.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">grid</text>
</a>
</g>
</g>
<!-- module~io->module~grid -->
<g id="module~~io~~UsesGraph_edge6" class="edge">
<title>module~io->module~grid</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M445.8476,-176.93C431.1433,-169.2643 411.9025,-159.2335 395.7174,-150.7958"/>
<polygon fill="#000000" stroke="#000000" points="397.0838,-147.5611 386.5984,-146.0418 393.8478,-153.7682 397.0838,-147.5611"/>
</g>
<!-- iso_c_binding -->
<g id="module~~io~~UsesGraph_node8" class="node">
<title>iso_c_binding</title>
<g id="a_module~~io~~UsesGraph_node8"><a xlink:href="http://fortranwiki.org/fortran/show/ISO_C_BINDING" xlink:title="iso_c_binding">
<polygon fill="#337ab7" stroke="#337ab7" points="402.5,-24 324.5,-24 324.5,0 402.5,0 402.5,-24"/>
<text text-anchor="middle" x="363.5" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">iso_c_binding</text>
</a>
</g>
</g>
<!-- module~io->iso_c_binding -->
<g id="module~~io~~UsesGraph_edge7" class="edge">
<title>module~io->iso_c_binding</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M466.5818,-176.6771C460.6253,-149.036 442.9673,-81.1381 406,-38 403.5481,-35.1388 400.7,-32.4986 397.6616,-30.0868"/>
<polygon fill="#000000" stroke="#000000" points="399.5143,-27.1114 389.3155,-24.2419 395.4989,-32.8452 399.5143,-27.1114"/>
</g>
<!-- module~pathlib->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge8" class="edge">
<title>module~pathlib->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M143.4232,-291.8622C123.8764,-276.6309 90.1563,-250.3555 67.3521,-232.586"/>
<polygon fill="#000000" stroke="#000000" points="69.2382,-229.6187 59.1989,-226.2329 64.9357,-235.1403 69.2382,-229.6187"/>
</g>
<!-- module~phys_consts->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge9" class="edge">
<title>module~phys_consts->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M141.458,-146.1503C122.1818,-159.5018 91.0406,-181.0715 69.0521,-196.3016"/>
<polygon fill="#000000" stroke="#000000" points="67.0564,-193.4263 60.8286,-201.9975 71.0422,-199.1807 67.0564,-193.4263"/>
</g>
<!-- module~mpimod->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge11" class="edge">
<title>module~mpimod->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M242.8436,-201.9595C223.9303,-188.3545 190.2596,-168.7403 159,-174"/>
</g>
<!-- module~mpimod->module~phys_consts -->
<g id="module~~io~~UsesGraph_edge12" class="edge">
<title>module~mpimod->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M244.2664,-201.6501C231.6872,-190.4785 212.4292,-173.725 195,-160 191.6611,-157.3707 188.0909,-154.6682 184.5438,-152.0459"/>
<polygon fill="#000000" stroke="#000000" points="186.5752,-149.1955 176.429,-146.145 182.4583,-154.8569 186.5752,-149.1955"/>
</g>
<!-- mpi -->
<g id="module~~io~~UsesGraph_node10" class="node">
<title>mpi</title>
<g id="a_module~~io~~UsesGraph_node10"><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,-226 132,-226 132,-202 186,-202 186,-226"/>
<text text-anchor="middle" x="159" y="-211.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mpi</text>
</a>
</g>
</g>
<!-- module~mpimod->mpi -->
<g id="module~~io~~UsesGraph_edge10" class="edge">
<title>module~mpimod->mpi</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-214C220.2528,-214 207.784,-214 196.2596,-214"/>
<polygon fill="#000000" stroke="#000000" points="196.0195,-210.5001 186.0195,-214 196.0194,-217.5001 196.0195,-210.5001"/>
</g>
<!-- module~grid->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge14" class="edge">
<title>module~grid->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M336.432,-142.0418C321.3839,-146.3099 302.2635,-151.401 285,-155 229.5589,-166.5581 214.8481,-164.6031 159,-174"/>
</g>
<!-- module~grid->module~phys_consts -->
<g id="module~~io~~UsesGraph_edge15" class="edge">
<title>module~grid->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M356.4603,-121.777C341.2687,-97.1913 303.1121,-44.6947 258,-52"/>
</g>
<!-- module~grid->module~mpimod -->
<g id="module~~io~~UsesGraph_edge17" class="edge">
<title>module~grid->module~mpimod</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M347.4768,-146.1503C330.0254,-159.3836 301.9271,-180.6904 281.875,-195.8958"/>
<polygon fill="#000000" stroke="#000000" points="279.6817,-193.1664 273.8283,-201.9975 283.9113,-198.7441 279.6817,-193.1664"/>
</g>
<!-- module~reader -->
<g id="module~~io~~UsesGraph_node9" class="node">
<title>module~reader</title>
<g id="a_module~~io~~UsesGraph_node9"><a xlink:href=".././module/reader.html" xlink:title="reader">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-146 231,-146 231,-122 285,-122 285,-146"/>
<text text-anchor="middle" x="258" y="-131.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">reader</text>
</a>
</g>
</g>
<!-- module~grid->module~reader -->
<g id="module~~io~~UsesGraph_edge13" class="edge">
<title>module~grid->module~reader</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M336.3311,-134C323.7791,-134 308.6773,-134 295.0974,-134"/>
<polygon fill="#000000" stroke="#000000" points="295.0768,-130.5001 285.0768,-134 295.0768,-137.5001 295.0768,-130.5001"/>
</g>
<!-- module~mesh -->
<g id="module~~io~~UsesGraph_node11" class="node">
<title>module~mesh</title>
<g id="a_module~~io~~UsesGraph_node11"><a xlink:href=".././module/mesh.html" xlink:title="mesh">
<polygon fill="#337ab7" stroke="#337ab7" points="285,-104 231,-104 231,-80 285,-80 285,-104"/>
<text text-anchor="middle" x="258" y="-89.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mesh</text>
</a>
</g>
</g>
<!-- module~grid->module~mesh -->
<g id="module~~io~~UsesGraph_edge16" class="edge">
<title>module~grid->module~mesh</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M336.3311,-123.184C323.656,-118.138 308.3809,-112.0569 294.6984,-106.6098"/>
<polygon fill="#000000" stroke="#000000" points="295.6622,-103.2264 285.0768,-102.7794 293.0731,-109.73 295.6622,-103.2264"/>
</g>
<!-- module~reader->iso_fortran_env -->
<g id="module~~io~~UsesGraph_edge18" class="edge">
<title>module~reader->iso_fortran_env</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M236.0162,-146.1261C216.4777,-156.0998 186.7863,-169.3247 159,-174"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M159,-174C131.6567,-178.6007 102.1364,-188.9256 79.7846,-197.9327"/>
<polygon fill="#000000" stroke="#000000" points="78.2708,-194.7711 70.3629,-201.822 80.9418,-201.2414 78.2708,-194.7711"/>
</g>
<!-- module~reader->module~phys_consts -->
<g id="module~~io~~UsesGraph_edge19" class="edge">
<title>module~reader->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-134C223.0473,-134 214.1788,-134 205.4382,-134"/>
<polygon fill="#000000" stroke="#000000" points="205.3018,-130.5001 195.3018,-134 205.3018,-137.5001 205.3018,-130.5001"/>
</g>
<!-- module~mesh->module~phys_consts -->
<g id="module~~io~~UsesGraph_edge20" class="edge">
<title>module~mesh->module~phys_consts</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M230.9478,-103.4767C220.3923,-107.9548 208.109,-113.1659 196.7112,-118.0013"/>
<polygon fill="#000000" stroke="#000000" points="195.2415,-114.8228 187.4026,-121.9504 197.9753,-121.2669 195.2415,-114.8228"/>
</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/input.html'>input</a></li>
<li><a href='../module/io_aurora.html'>io_aurora</a></li>
<li><a href='../module/mag.html'>mag</a></li>
<li><a href='../module/mag_hdf5.html'>mag_hdf5</a></li>
<li><a href='../module/mag_hdf5~2.html'>mag_hdf5</a></li>
<li><a href='../module/mag_raw.html'>mag_raw</a></li>
<li><a href='../module/output.html'>output</a></li>
<li><a href='../module/plasma.html'>plasma</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~~io~~UsedByGraph Pages: 1 -->
<svg id="moduleioUsedByGraph" width="305pt" height="431pt"
viewBox="0.00 0.00 305.00 431.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="module~~io~~UsedByGraph" class="graph" transform="scale(1 1) rotate(0) translate(4 427)">
<title>module~~io~~UsedByGraph</title>
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-427 301,-427 301,4 -4,4"/>
<!-- module~io -->
<g id="module~~io~~UsedByGraph_node1" class="node">
<title>module~io</title>
<polygon fill="none" stroke="#000000" points="54,-234 0,-234 0,-210 54,-210 54,-234"/>
<text text-anchor="middle" x="27" y="-219.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#000000">io</text>
</g>
<!-- module~mag_raw -->
<g id="module~~io~~UsedByGraph_node2" class="node">
<title>module~mag_raw</title>
<g id="a_module~~io~~UsedByGraph_node2"><a xlink:href=".././module/mag_raw.html" xlink:title="mag_raw">
<polygon fill="#5bc0de" stroke="#5bc0de" points="149,-423 92,-423 92,-399 149,-399 149,-423"/>
<text text-anchor="middle" x="120.5" y="-408.6" 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~~io~~UsedByGraph_edge3" class="edge">
<title>module~mag_raw->module~io</title>
<path fill="none" stroke="#000000" d="M99.3537,-398.9928C95.9052,-396.3587 92.6125,-393.3434 90,-390 54.8678,-345.039 37.7569,-278.4067 30.8649,-244.1353"/>
<polygon fill="#000000" stroke="#000000" points="34.2846,-243.3829 28.9764,-234.2138 27.4081,-244.6919 34.2846,-243.3829"/>
</g>
<!-- module~mag -->
<g id="module~~io~~UsedByGraph_node3" class="node">
<title>module~mag</title>
<g id="a_module~~io~~UsedByGraph_node3"><a xlink:href=".././module/mag.html" xlink:title="mag">
<polygon fill="#5bc0de" stroke="#5bc0de" points="147.5,-381 93.5,-381 93.5,-357 147.5,-357 147.5,-381"/>
<text text-anchor="middle" x="120.5" y="-366.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">mag</text>
</a>
</g>
</g>
<!-- module~mag->module~io -->
<g id="module~~io~~UsedByGraph_edge4" class="edge">
<title>module~mag->module~io</title>
<path fill="none" stroke="#000000" d="M99.9538,-356.9953C96.3651,-354.327 92.8685,-351.2989 90,-348 62.5154,-316.3919 43.6087,-270.6821 34.1038,-243.8857"/>
<polygon fill="#000000" stroke="#000000" points="37.3692,-242.6178 30.8176,-234.2915 30.7469,-244.8861 37.3692,-242.6178"/>
</g>
<!-- module~io_aurora -->
<g id="module~~io~~UsedByGraph_node4" class="node">
<title>module~io_aurora</title>
<g id="a_module~~io~~UsedByGraph_node4"><a xlink:href=".././module/io_aurora.html" xlink:title="io_aurora">
<polygon fill="#5bc0de" stroke="#5bc0de" points="149.5,-339 91.5,-339 91.5,-315 149.5,-315 149.5,-339"/>
<text text-anchor="middle" x="120.5" y="-324.6" 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~~io~~UsedByGraph_edge5" class="edge">
<title>module~io_aurora->module~io</title>
<path fill="none" stroke="#000000" d="M100.7347,-314.7881C96.9972,-312.0996 93.2459,-309.117 90,-306 69.9579,-286.7539 51.4473,-260.6462 39.7501,-242.6715"/>
<polygon fill="#000000" stroke="#000000" points="42.6086,-240.6443 34.2823,-234.0927 36.7056,-244.4067 42.6086,-240.6443"/>
</g>
<!-- program~gemini3d -->
<g id="module~~io~~UsedByGraph_node5" class="node">
<title>program~gemini3d</title>
<g id="a_module~~io~~UsedByGraph_node5"><a xlink:href=".././program/gemini3d.html" xlink:title="Gemini3D">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="150.5,-297 90.5,-297 90.5,-273 150.5,-273 150.5,-297"/>
<text text-anchor="middle" x="120.5" y="-282.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">Gemini3D</text>
</a>
</g>
</g>
<!-- program~gemini3d->module~io -->
<g id="module~~io~~UsedByGraph_edge2" class="edge">
<title>program~gemini3d->module~io</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M102.4723,-272.853C88.6319,-263.5274 69.3079,-250.5069 53.6785,-239.9759"/>
<polygon fill="#000000" stroke="#000000" points="55.2213,-236.7951 44.9724,-234.1097 51.3098,-242.6003 55.2213,-236.7951"/>
</g>
<!-- module~input -->
<g id="module~~io~~UsedByGraph_node6" class="node">
<title>module~input</title>
<g id="a_module~~io~~UsedByGraph_node6"><a xlink:href=".././module/input.html" xlink:title="input">
<polygon fill="#5bc0de" stroke="#5bc0de" points="147.5,-255 93.5,-255 93.5,-231 147.5,-231 147.5,-255"/>
<text text-anchor="middle" x="120.5" y="-240.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">input</text>
</a>
</g>
</g>
<!-- module~input->module~io -->
<g id="module~~io~~UsedByGraph_edge6" class="edge">
<title>module~input->module~io</title>
<path fill="none" stroke="#000000" d="M93.4559,-236.9259C84.3293,-234.8761 73.9763,-232.5508 64.2044,-230.3561"/>
<polygon fill="#000000" stroke="#000000" points="64.8312,-226.9097 54.3072,-228.1332 63.2971,-233.7396 64.8312,-226.9097"/>
</g>
<!-- module~mag_hdf5 -->
<g id="module~~io~~UsedByGraph_node7" class="node">
<title>module~mag_hdf5</title>
<g id="a_module~~io~~UsedByGraph_node7"><a xlink:href=".././module/mag_hdf5.html" xlink:title="mag_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="151,-213 90,-213 90,-189 151,-189 151,-213"/>
<text text-anchor="middle" x="120.5" y="-198.6" 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~~io~~UsedByGraph_edge7" class="edge">
<title>module~mag_hdf5->module~io</title>
<path fill="none" stroke="#000000" d="M89.8846,-207.8762C81.6162,-209.7333 72.5802,-211.7627 64.0025,-213.6893"/>
<polygon fill="#000000" stroke="#000000" points="63.2067,-210.2807 54.2168,-215.8871 64.7408,-217.1106 63.2067,-210.2807"/>
</g>
<!-- module~mag_hdf5~2 -->
<g id="module~~io~~UsedByGraph_node8" class="node">
<title>module~mag_hdf5~2</title>
<g id="a_module~~io~~UsedByGraph_node8"><a xlink:href=".././module/mag_hdf5~2.html" xlink:title="mag_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="151,-171 90,-171 90,-147 151,-147 151,-171"/>
<text text-anchor="middle" x="120.5" y="-156.6" 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~~io~~UsedByGraph_edge8" class="edge">
<title>module~mag_hdf5~2->module~io</title>
<path fill="none" stroke="#000000" d="M102.4723,-171.147C88.6319,-180.4726 69.3079,-193.4931 53.6785,-204.0241"/>
<polygon fill="#000000" stroke="#000000" points="51.3098,-201.3997 44.9724,-209.8903 55.2213,-207.2049 51.3098,-201.3997"/>
</g>
<!-- module~plasma -->
<g id="module~~io~~UsedByGraph_node9" class="node">
<title>module~plasma</title>
<g id="a_module~~io~~UsedByGraph_node9"><a xlink:href=".././module/plasma.html" xlink:title="plasma">
<polygon fill="#5bc0de" stroke="#5bc0de" points="147.5,-129 93.5,-129 93.5,-105 147.5,-105 147.5,-129"/>
<text text-anchor="middle" x="120.5" y="-114.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma</text>
</a>
</g>
</g>
<!-- module~plasma->module~io -->
<g id="module~~io~~UsedByGraph_edge9" class="edge">
<title>module~plasma->module~io</title>
<path fill="none" stroke="#000000" d="M100.7347,-129.2119C96.9972,-131.9004 93.2459,-134.883 90,-138 69.9579,-157.2461 51.4473,-183.3538 39.7501,-201.3285"/>
<polygon fill="#000000" stroke="#000000" points="36.7056,-199.5933 34.2823,-209.9073 42.6086,-203.3557 36.7056,-199.5933"/>
</g>
<!-- module~output -->
<g id="module~~io~~UsedByGraph_node10" class="node">
<title>module~output</title>
<g id="a_module~~io~~UsedByGraph_node10"><a xlink:href=".././module/output.html" xlink:title="output">
<polygon fill="#5bc0de" stroke="#5bc0de" points="147.5,-87 93.5,-87 93.5,-63 147.5,-63 147.5,-87"/>
<text text-anchor="middle" x="120.5" y="-72.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">output</text>
</a>
</g>
</g>
<!-- module~output->module~io -->
<g id="module~~io~~UsedByGraph_edge10" class="edge">
<title>module~output->module~io</title>
<path fill="none" stroke="#000000" d="M99.9538,-87.0047C96.3651,-89.673 92.8685,-92.7011 90,-96 62.5154,-127.6081 43.6087,-173.3179 34.1038,-200.1143"/>
<polygon fill="#000000" stroke="#000000" points="30.7469,-199.1139 30.8176,-209.7085 37.3692,-201.3822 30.7469,-199.1139"/>
</g>
<!-- program~magcalc -->
<g id="module~~io~~UsedByGraph_node11" class="node">
<title>program~magcalc</title>
<g id="a_module~~io~~UsedByGraph_node11"><a xlink:href=".././program/magcalc.html" xlink:title="MagCalc">
<polygon fill="#f0ad4e" stroke="#f0ad4e" points="148,-45 93,-45 93,-21 148,-21 148,-45"/>
<text text-anchor="middle" x="120.5" y="-30.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">MagCalc</text>
</a>
</g>
</g>
<!-- program~magcalc->module~io -->
<g id="module~~io~~UsedByGraph_edge1" class="edge">
<title>program~magcalc->module~io</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M99.3537,-45.0072C95.9052,-47.6413 92.6125,-50.6566 90,-54 54.8678,-98.961 37.7569,-165.5933 30.8649,-199.8647"/>
<polygon fill="#000000" stroke="#000000" points="27.4081,-199.3081 28.9764,-209.7862 34.2846,-200.6171 27.4081,-199.3081"/>
</g>
<!-- module~plasma_output_hdf5 -->
<g id="module~~io~~UsedByGraph_node12" class="node">
<title>module~plasma_output_hdf5</title>
<g id="a_module~~io~~UsedByGraph_node12"><a xlink:href=".././module/plasma_output_hdf5.html" xlink:title="plasma_output_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="297,-192 187,-192 187,-168 297,-168 297,-192"/>
<text text-anchor="middle" x="242" y="-177.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_output_hdf5</text>
</a>
</g>
</g>
<!-- module~plasma_output_hdf5->module~plasma -->
<g id="module~~io~~UsedByGraph_edge16" class="edge">
<title>module~plasma_output_hdf5->module~plasma</title>
<path fill="none" stroke="#000000" d="M207.2204,-167.9228C200.4095,-165.2232 193.3981,-162.2021 187,-159 179.038,-155.0152 161.9317,-144.1917 147.0634,-134.5306"/>
<polygon fill="#000000" stroke="#000000" points="148.94,-131.5759 138.6538,-129.0372 145.1118,-137.4364 148.94,-131.5759"/>
</g>
<!-- module~io_aurora_raw -->
<g id="module~~io~~UsedByGraph_node13" class="node">
<title>module~io_aurora_raw</title>
<g id="a_module~~io~~UsedByGraph_node13"><a xlink:href=".././module/io_aurora_raw.html" xlink:title="io_aurora_raw">
<polygon fill="#5bc0de" stroke="#5bc0de" points="283,-402 201,-402 201,-378 283,-378 283,-402"/>
<text text-anchor="middle" x="242" y="-387.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io_aurora_raw</text>
</a>
</g>
</g>
<!-- module~io_aurora_raw->module~io_aurora -->
<g id="module~~io~~UsedByGraph_edge12" class="edge">
<title>module~io_aurora_raw->module~io_aurora</title>
<path fill="none" stroke="#000000" d="M207.2204,-377.9228C200.4095,-375.2232 193.3981,-372.2021 187,-369 179.038,-365.0152 161.9317,-354.1917 147.0634,-344.5306"/>
<polygon fill="#000000" stroke="#000000" points="148.94,-341.5759 138.6538,-339.0372 145.1118,-347.4364 148.94,-341.5759"/>
</g>
<!-- module~path_exists~2 -->
<g id="module~~io~~UsedByGraph_node14" class="node">
<title>module~path_exists~2</title>
<g id="a_module~~io~~UsedByGraph_node14"><a xlink:href=".././module/path_exists~2.html" xlink:title="path_exists">
<polygon fill="#5bc0de" stroke="#5bc0de" points="275.5,-276 208.5,-276 208.5,-252 275.5,-252 275.5,-276"/>
<text text-anchor="middle" x="242" y="-261.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">path_exists</text>
</a>
</g>
</g>
<!-- module~path_exists~2->module~input -->
<g id="module~~io~~UsedByGraph_edge15" class="edge">
<title>module~path_exists~2->module~input</title>
<path fill="none" stroke="#000000" d="M208.478,-258.2061C192.8055,-255.4972 174.0846,-252.2615 157.9487,-249.4726"/>
<polygon fill="#000000" stroke="#000000" points="158.2265,-245.9688 147.7764,-247.7144 157.0342,-252.8665 158.2265,-245.9688"/>
</g>
<!-- module~plasma_input_raw -->
<g id="module~~io~~UsedByGraph_node15" class="node">
<title>module~plasma_input_raw</title>
<g id="a_module~~io~~UsedByGraph_node15"><a xlink:href=".././module/plasma_input_raw.html" xlink:title="plasma_input_raw">
<polygon fill="#5bc0de" stroke="#5bc0de" points="292,-150 192,-150 192,-126 292,-126 292,-150"/>
<text text-anchor="middle" x="242" y="-135.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_input_raw</text>
</a>
</g>
</g>
<!-- module~plasma_input_raw->module~plasma -->
<g id="module~~io~~UsedByGraph_edge17" class="edge">
<title>module~plasma_input_raw->module~plasma</title>
<path fill="none" stroke="#000000" d="M191.8798,-129.3373C180.3873,-127.3509 168.3709,-125.274 157.5455,-123.4029"/>
<polygon fill="#000000" stroke="#000000" points="158.0374,-119.9361 147.5874,-121.6818 156.8452,-126.8339 158.0374,-119.9361"/>
</g>
<!-- module~plasma_input_hdf5 -->
<g id="module~~io~~UsedByGraph_node16" class="node">
<title>module~plasma_input_hdf5</title>
<g id="a_module~~io~~UsedByGraph_node16"><a xlink:href=".././module/plasma_input_hdf5.html" xlink:title="plasma_input_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="293.5,-108 190.5,-108 190.5,-84 293.5,-84 293.5,-108"/>
<text text-anchor="middle" x="242" y="-93.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_input_hdf5</text>
</a>
</g>
</g>
<!-- module~plasma_input_hdf5->module~plasma -->
<g id="module~~io~~UsedByGraph_edge18" class="edge">
<title>module~plasma_input_hdf5->module~plasma</title>
<path fill="none" stroke="#000000" d="M190.4731,-104.9059C179.4132,-106.8175 167.9358,-108.8012 157.5535,-110.5957"/>
<polygon fill="#000000" stroke="#000000" points="156.8499,-107.1653 147.5921,-112.3174 158.0422,-114.063 156.8499,-107.1653"/>
</g>
<!-- module~io_aurora_hdf5 -->
<g id="module~~io~~UsedByGraph_node17" class="node">
<title>module~io_aurora_hdf5</title>
<g id="a_module~~io~~UsedByGraph_node17"><a xlink:href=".././module/io_aurora_hdf5.html" xlink:title="io_aurora_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="284.5,-360 199.5,-360 199.5,-336 284.5,-336 284.5,-360"/>
<text text-anchor="middle" x="242" y="-345.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io_aurora_hdf5</text>
</a>
</g>
</g>
<!-- module~io_aurora_hdf5->module~io_aurora -->
<g id="module~~io~~UsedByGraph_edge13" class="edge">
<title>module~io_aurora_hdf5->module~io_aurora</title>
<path fill="none" stroke="#000000" d="M199.1636,-340.5962C186.3534,-338.3821 172.376,-335.9662 159.8043,-333.7933"/>
<polygon fill="#000000" stroke="#000000" points="160.0813,-330.2894 149.6312,-332.035 158.889,-337.1871 160.0813,-330.2894"/>
</g>
<!-- module~io_aurora_hdf5~2 -->
<g id="module~~io~~UsedByGraph_node18" class="node">
<title>module~io_aurora_hdf5~2</title>
<g id="a_module~~io~~UsedByGraph_node18"><a xlink:href=".././module/io_aurora_hdf5~2.html" xlink:title="io_aurora_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="284.5,-318 199.5,-318 199.5,-294 284.5,-294 284.5,-318"/>
<text text-anchor="middle" x="242" y="-303.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">io_aurora_hdf5</text>
</a>
</g>
</g>
<!-- module~io_aurora_hdf5~2->module~io_aurora -->
<g id="module~~io~~UsedByGraph_edge11" class="edge">
<title>module~io_aurora_hdf5~2->module~io_aurora</title>
<path fill="none" stroke="#000000" d="M199.1636,-313.4038C186.3534,-315.6179 172.376,-318.0338 159.8043,-320.2067"/>
<polygon fill="#000000" stroke="#000000" points="158.889,-316.8129 149.6312,-321.965 160.0813,-323.7106 158.889,-316.8129"/>
</g>
<!-- module~plasma_output_raw -->
<g id="module~~io~~UsedByGraph_node19" class="node">
<title>module~plasma_output_raw</title>
<g id="a_module~~io~~UsedByGraph_node19"><a xlink:href=".././module/plasma_output_raw.html" xlink:title="plasma_output_raw">
<polygon fill="#5bc0de" stroke="#5bc0de" points="295,-66 189,-66 189,-42 295,-42 295,-66"/>
<text text-anchor="middle" x="242" y="-51.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_output_raw</text>
</a>
</g>
</g>
<!-- module~plasma_output_raw->module~plasma -->
<g id="module~~io~~UsedByGraph_edge19" class="edge">
<title>module~plasma_output_raw->module~plasma</title>
<path fill="none" stroke="#000000" d="M207.2204,-66.0772C200.4095,-68.7768 193.3981,-71.7979 187,-75 179.038,-78.9848 161.9317,-89.8083 147.0634,-99.4694"/>
<polygon fill="#000000" stroke="#000000" points="145.1118,-96.5636 138.6538,-104.9628 148.94,-102.4241 145.1118,-96.5636"/>
</g>
<!-- module~plasma_output_hdf5~2 -->
<g id="module~~io~~UsedByGraph_node20" class="node">
<title>module~plasma_output_hdf5~2</title>
<g id="a_module~~io~~UsedByGraph_node20"><a xlink:href=".././module/plasma_output_hdf5~2.html" xlink:title="plasma_output_hdf5">
<polygon fill="#5bc0de" stroke="#5bc0de" points="297,-24 187,-24 187,0 297,0 297,-24"/>
<text text-anchor="middle" x="242" y="-9.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">plasma_output_hdf5</text>
</a>
</g>
</g>
<!-- module~plasma_output_hdf5~2->module~plasma -->
<g id="module~~io~~UsedByGraph_edge20" class="edge">
<title>module~plasma_output_hdf5~2->module~plasma</title>
<path fill="none" stroke="#000000" d="M200.8577,-24.0254C195.8828,-26.5117 191.1145,-29.4764 187,-33 162.5056,-53.9768 172.8279,-72.2609 151,-96 150.2603,-96.8045 149.4843,-97.5948 148.6801,-98.3691"/>
<polygon fill="#000000" stroke="#000000" points="146.3334,-95.7689 140.8999,-104.8645 150.8195,-101.1425 146.3334,-95.7689"/>
</g>
<!-- module~path_exists -->
<g id="module~~io~~UsedByGraph_node21" class="node">
<title>module~path_exists</title>
<g id="a_module~~io~~UsedByGraph_node21"><a xlink:href=".././module/path_exists.html" xlink:title="path_exists">
<polygon fill="#5bc0de" stroke="#5bc0de" points="275.5,-234 208.5,-234 208.5,-210 275.5,-210 275.5,-234"/>
<text text-anchor="middle" x="242" y="-219.6" font-family="Helvetica,sans-Serif" font-size="10.50" fill="#ffffff">path_exists</text>
</a>
</g>
</g>
<!-- module~path_exists->module~input -->
<g id="module~~io~~UsedByGraph_edge14" class="edge">
<title>module~path_exists->module~input</title>
<path fill="none" stroke="#000000" d="M208.478,-227.7939C192.8055,-230.5028 174.0846,-233.7385 157.9487,-236.5274"/>
<polygon fill="#000000" stroke="#000000" points="157.0342,-233.1335 147.7764,-238.2856 158.2265,-240.0312 157.0342,-233.1335"/>
</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>
<br>
<section class="visible-xs visible-sm hidden-md">
<h3>Contents</h3>
<div class="panel panel-primary">
<div class="panel-heading text-left"><h3 class="panel-title"><a data-toggle="collapse" href="#vars-1">Variables</a></h3></div>
<div id="vars-1" class="panel-collapse collapse">
<div class="list-group">
<a class="list-group-item" href="../module/io.html#variable-indatfile">indatfile</a>
</div>
</div>
</div>