Skip to content

Commit

Permalink
Move impl tag within docstring for proper formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
keckler committed Jan 24, 2024
1 parent c80794c commit 16d81f3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions armi/physics/executers.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,19 @@ class DefaultExecuter(Executer):
externally-executed physics codes. It is here for convenience
but is not required. The sequence look like:
* Choose modeling options (either from the global run settings input or dictated programmatically)
* Apply geometry transformations to the ARMI Reactor as needed
* Build run-specific working directory
* Write input file(s)
* Put specific input files and libs in run directory
* Run the analysis (external execution, or not)
* Process output while still in run directory
* Check error conditions
* Move desired output files back to main working directory
* Clean up run directory
* Un-apply geometry transformations as needed
* Update ARMI data model as desired
.. impl:: Default tool for executing external calculations.
:id: I_ARMI_EX1
:implements: R_ARMI_EX
Expand All @@ -190,19 +203,6 @@ class DefaultExecuter(Executer):
from the run as specified in subclasses.
Finally, any geometry perturbations that were performed are undone.
* Choose modeling options (either from the global run settings input or dictated programmatically)
* Apply geometry transformations to the ARMI Reactor as needed
* Build run-specific working directory
* Write input file(s)
* Put specific input files and libs in run directory
* Run the analysis (external execution, or not)
* Process output while still in run directory
* Check error conditions
* Move desired output files back to main working directory
* Clean up run directory
* Un-apply geometry transformations as needed
* Update ARMI data model as desired
"""

def run(self):
Expand Down

0 comments on commit 16d81f3

Please sign in to comment.