TABLE OF CONTENTS
::pwtk::rerunPH
SYNOPSIS
proc ::pwtk::rerunPH {args} {
USAGE
rerunPH ?OPTIONS? INPUT ?OUTPUT? ?&?
OPTIONS
- -bg --- run calculation in background (synonymous with "&" as the last argument)
- -serial --- run calculation in serial mode (default = parallel)
- -prefix PREFIX --- explicitly specify the prefix for parallel execution
- -postfix POSTFIX --- explicitly specify the postfix for parallel execution
- -exec EXECUTABLE --- explicitly specify the ph.x executable
- -ihandle VALUE --- explicitly set the input handle (for the description of input handle, see ::pwtk::input_handle)
PURPOSE
Construct the ph.x input file from the input data and run the ph.x program in restart mode. The output-file will be treated in append mode, whereas the rest is the same as for the ::pwtk::runPH routine.
SOURCE
# handle treatrun treat_run_ {*}$args input_pushpop { INPUTPH { recover = .true. } # take care of plugins restart plugins_restart_ ph.x set result [eval {runPH -append} $args] } return $result }