TABLE OF CONTENTS
::pwtk::queue::runDYNMAT
SYNOPSIS
proc ::pwtk::queue::runDYNMAT {queueSystem head} {
PURPOSE
Run the dynmat.x program via queueSystem.
ARGUMENTS
- queueSystem -- name of batch queuing system (e.g. slurm, ll, lsf, ...)
- head -- rootname of the input file (for example the rootname of file.inp is file)
SOURCE
variable scriptBody set head [::pwtk::headname $head {.dynmat.in .dynmat.inp .in .inp}] set ihandle [::pwtk::input_handle] ::pwtk::dmi_fprint $head.dynmat.in set script_ { \$PREFIX \$DYNMAT \$POSTFIX $ihandle $head.dynmat.in > $head.dynmat.out } append scriptBody($queueSystem) "[subst -nocommands $script_]\n" }