Skip to content

Commit

Permalink
test to get rid of a couple of errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsettgast committed Sep 10, 2024
1 parent 209ffbe commit a53bc85
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions scripts/SchemaToRSTDocumentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,14 +262,14 @@ def buildTableValues(type_map, link_string='XML', include_defaults=True):
# Build documentation tables
with open('%s.rst' % (complete_output), 'w') as output_handle:
# Write the file header
output_handle.write('######################\n')
output_handle.write('###################\n')
output_handle.write('Datastructure Index\n')
output_handle.write('######################\n\n')
output_handle.write('###################\n\n')

# Parse the input schema definitions
output_handle.write('**************************\n\n')
output_handle.write('************************\n')
output_handle.write('Input Schema Definitions\n')
output_handle.write('**************************\n\n')
output_handle.write('************************\n\n')

output_handle.write(':download:`XML Schema <%s/../schema.xsd>`\n\n' % (sphinx_path))

Expand All @@ -287,9 +287,9 @@ def buildTableValues(type_map, link_string='XML', include_defaults=True):
output_handle.write('.. include:: %s/%s.rst\n\n' % (sphinx_path, type_name))

# Parse the non-input schema definitions
output_handle.write('********************************\n')
output_handle.write('*************************\n')
output_handle.write('Datastructure Definitions\n')
output_handle.write('********************************\n\n')
output_handle.write('*************************\n\n')

for type_name in sorted(other_attribute_map.keys()):
# Write the individual tables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ Either the entire field or specified named sets of indices in the field can be c
In this example, ``phaseVolumeFractionCollection`` is specified to output the time history of phase saturations ``fieldName="phaseVolumeFraction"`` across the computational domain.

.. literalinclude:: ../../../../../../../inputFiles/compositionalMultiphaseFlow/benchmarks/buckleyLeverettProblem/buckleyLeverett_base.xml
:language: xml
:start-after: <!-- SPHINX_TASKS -->
:end-before: <!-- SPHINX_TASKS_END -->
:language: xml
:start-after: <!-- SPHINX_TASKS -->
:end-before: <!-- SPHINX_TASKS_END -->

This task is triggered using the ``Event`` manager with a ``PeriodicEvent`` defined for the recurring tasks.
GEOS writes one file named after the string defined in the ``filename`` keyword, formatted as a HDF5 file (saturationHistory.hdf5). The TimeHistory file contains the collected time history information from the specified time history collector.
Expand Down

0 comments on commit a53bc85

Please sign in to comment.