I have a Fortran program that outputs simulation data by writing enormous text files. The text files will give fluid-property data for collections of mesh cells and conductor data for collections of conductor mesh cells. So something like the following example.
Cell Group 1
Axial Level | Pressure | Temperature | Velocity
1 | 150.1 | 198 | 3.5
2 | 150 | 200 | 3.5
... | ... | ... |
Cell Group 2
Axial Level | Pressure | Temperature | Velocity
1 | 150.1 | 201 | 3.5
2 | 150 | 205 | 3.5
... | ... | ... |
Conductor Group 1
Axial Level | Conductivity | Temperature
1 | 19.8 | 301
2 | 19.7 | 305
... | ... | ...
Typically, we would want to organize this data into some graphical way in order to interpret or present it. For example, I might want to know what the change in pressure is for Fluid-Cell Group 1,302. To get this information, I would do one of the following:
- Re-write the output subroutine of my Fortran program so that it gives me the specific data that I want in a table that I could use GNUplot to graph.
- Write a Python script to grab output from the text file and write it to a new file that I can work with using GNUplot.
- Copy and paste the data into spreadsheet software and build a plot that way.
I have started to encounter XML being used in some projects I'm involved with, but I know almost nothing about it. I want to figure out if it would be worth my time to learn about XML and start adding the capability to this Fortran program to write its data in XML format. Can my previous method for analyzing simulation data be improved upon by making it easier, faster, and more automatable if I started writing data to XML? If so, how, and how should I get started?