Undocumented Custom Task

From OSUPDOCS
Revision as of 14:39, 25 December 2013 by Nairnj (talk | contribs) (Created page with "If a custom task is available but is unknown to NairnFEAMPM and/or NairnFEAMPMViz, you can still use such tasks in scripted input file...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

If a custom task is available but is unknown to NairnFEAMPM and/or NairnFEAMPMViz, you can still use such tasks in scripted input files by adding them with an XMLData command block. The template for submitting undocumented custom tasks is:

XMLData,CustomTasks
    <Schedule name='Task Name'>
      <Parameter name='param 1'>2</Parameter>
      <Parameter name='param 2'>10</Parameter>
    </Schedule>
EndXMLData

where you enter the name of the task in the <Schedule> command and list all parameters needed by that task in subordinate Parameter commands. THis approach is also useful when first developing your own custom tasks.