Difference between revisions of "ReverseLoad Custom Task"

From OSUPDOCS
Jump to navigation Jump to search
Line 55: Line 55:
* <tt>(matOrBCNum)</tt> - in <tt>XML</tt> files, the specific material or boundary condition ID must be specified by number.
* <tt>(matOrBCNum)</tt> - in <tt>XML</tt> files, the specific material or boundary condition ID must be specified by number.
* <tt>(value)</tt> - specifies the critical value for the [[MPM Global Archiving Options|global archive quantity]] to trigger the task action. If the number is positive, the action is triggered when the quantity reaches the value; if it is negative, the action is triggered when the quantity become more negative the than the value.
* <tt>(value)</tt> - specifies the critical value for the [[MPM Global Archiving Options|global archive quantity]] to trigger the task action. If the number is positive, the action is triggered when the quantity reaches the value; if it is negative, the action is triggered when the quantity become more negative the than the value.
=== Task Action ===


Once the specified crack length is reached (and all crack propagation stops) or the critical [[MPM Global Archiving Options|global archive quantity]] is reached, the task performs various actions specified by the <tt>(style)</tt> and <tt>(hold)</tt> parameters. Scripted files can enter text for the style, but <tt>XML</tt> files must use the <tt>(styleNumber)</tt>:
Once the specified crack length is reached (and all crack propagation stops) or the critical [[MPM Global Archiving Options|global archive quantity]] is reached, the task performs various actions specified by the <tt>(style)</tt> and <tt>(hold)</tt> parameters. Scripted files can enter text for the style, but <tt>XML</tt> files must use the <tt>(styleNumber)</tt>:


* <tt>reverse</tt> (or 0): Reverses all linearly increasing [[Setting Forces and Fluxes|loads or traction]] (see [[Boundary Condition Styles|"linear" style]] in particle loads) and reverses direction of all [[Rigid Material|moving-boundary-condition rigid particles]] moving at constant velocity (i.e., the do not use any [[Rigid Material#Material Properties|setting functions]]). This style will unload until the load or traction (on loaded particles) or displacement (on moving rigid particles) returns to zero at which point the analysis will stop (the analysis, however, may stop sooner if the [[MPM Methods and Simulation Timing#Input Commands|maximum time]] is reached before loading returns to zero).
* <tt>reverse</tt> (or 0): Reverses all linearly increasing [[Setting Forces and Fluxes|loads or traction]] (see [[Boundary Condition Styles|"linear" style]] in particle loads) and reverses direction of all [[Rigid Material|moving-boundary-condition rigid particles]] moving at constant velocity (i.e., the do not use any [[Rigid Material#Material Properties|setting functions]]). This style will unload until the load or traction (on loaded particles) or displacement (on moving rigid particles) returns to zero at which point the analysis will stop (the analysis, however, may stop sooner if the [[MPM Methods and Simulation Timing#Input Commands|maximum time]] is reached before loading returns to zero).
* <tt>hold</tt> (or 1): Stops all linearly increasing [[Setting Forces and Fluxes|loads or traction]] (see [[Boundary Condition Styles|"linear" style]] in particle loads) and stops all [[Rigid Material|moving-boundary-condition rigid particles]] moving at constant velocity (''i.e.'', they do not use any [[Rigid Material#Material Properties|setting functions]]) and their current values. The analysis continues.
* <tt>hold</tt> (or 1): Stops all linearly increasing [[Setting Forces and Fluxes|loads or traction]] (see [[Boundary Condition Styles|"linear" style]] in particle loads) and stops all [[Rigid Material|moving-boundary-condition rigid particles]] moving at constant velocity (''i.e.'', they do not use any [[Rigid Material#Material Properties|setting functions]]) at their current values. The analysis continues.
* <tt>continue</tt> (or 2): All loads and rigid particles continue unchanged. Only the crack propagation stops. Because this action only stops crack propagation, it is meaningless when the tasks is triggered on a [[MPM Global Archiving Options|global archive quantity]], and is therefore not allowed for such tasks.
* <tt>continue</tt> (or 2): All loads and rigid particles continue unchanged. Only the crack propagation stops. Because this action only stops crack propagation, it is meaningless when the tasks is triggered on a [[MPM Global Archiving Options|global archive quantity]], and is therefore not allowed for such tasks.
* <tt>abort</tt> (or 3): The analysis terminates.
* <tt>abort</tt> (or 3): The analysis terminates.

Revision as of 22:57, 26 June 2014

A custom task to alter calculations based on crack propagation results.

Introduction

A ReverseLoad custom task can either monitor crack lengths or monitor any current global archive quantity and responds as follows:

  1. Crack length monitoring: Once any crack or a specified crack reaches a specified crack length, all crack propagation stops and the task's action is triggered
  2. Global quantity monitoring: Once the specified global quantity passes a critical value, the task's action is triggered.

The possible task actions are to reverse various boundary conditions, hold at current boundary conditions, stop the analysis, or continue (with no change except crack propagation stops).

Task Scheduling

In scripted files, a ReverseLoad custom task based on crack lengths or on a global archive quantity are scheduled with one of the two following blocks:

CustomTask ReverseLoad
Parameter maxLength,(length)
Parameter crackNumber,(number)
Parameter style,(style)
Parameter hold,(holdTIme)

CustomTask ReverseLoad
Parameter quantity,(quant)
Parameter material,(matOrBCID)
Parameter maxValue,(value)
Parameter style,(style)
Parameter hold,(holdTIme)

In XML files, these two task options are scheduled using <Schedule> elements, which must be within the single <CustomTasks> block:

<Schedule name='ReverseLoad'>
   <Parameter name='maxLength'>(length)</Parameter>
   <Parameter name='crackNumber'>(number)</Parameter>
   <Parameter name='style'>(styleNumber)</Parameter>
   <Parameter name='hold'>(holdTime)</Parameter>
</Schedule>

<Schedule name='ReverseLoad'>
   <Parameter name='global (quant)'/>
   <Parameter name='mat'>(matOrBCNum)</Parameter>
   <Parameter name='maxValue'>(value)</Parameter>
   <Parameter name='style'>(styleNumber)</Parameter>
   <Parameter name='hold'>(holdTime)</Parameter>
</Schedule>

When the task triggers on crack length, these two parameters determine its trigger point:

  • (length) - specifies the maximum crack length (in mm). Once this length is reached, all crack propagation will stop.
  • (number) - gives the crack number to watch. When that crack reaches the specified maximum length, the task will take effect. Alternatively, (number) can be zero which causes the task to take effect when any crack reaches the specified maximum length. The default value is 0 or to watch all cracks.

When the task triggers on a global archive quantity, these parameters determine its trigger point

  • (quant) - gives the name of the global archive quantity to use a trigger. In XML files, the quantiy name must be embedded in the parameter name, such as 'global sxx'.
  • (matOrBCID) - if the desired global archive quantity is defined for a specific material or for a specific boundary condition, you must enter that material ID or boundary condition ID in this parameter (otherwise the entered quantity will not match the global archive quantity).
  • (matOrBCNum) - in XML files, the specific material or boundary condition ID must be specified by number.
  • (value) - specifies the critical value for the global archive quantity to trigger the task action. If the number is positive, the action is triggered when the quantity reaches the value; if it is negative, the action is triggered when the quantity become more negative the than the value.

Task Action

Once the specified crack length is reached (and all crack propagation stops) or the critical global archive quantity is reached, the task performs various actions specified by the (style) and (hold) parameters. Scripted files can enter text for the style, but XML files must use the (styleNumber):

  • reverse (or 0): Reverses all linearly increasing loads or traction (see "linear" style in particle loads) and reverses direction of all moving-boundary-condition rigid particles moving at constant velocity (i.e., the do not use any setting functions). This style will unload until the load or traction (on loaded particles) or displacement (on moving rigid particles) returns to zero at which point the analysis will stop (the analysis, however, may stop sooner if the maximum time is reached before loading returns to zero).
  • hold (or 1): Stops all linearly increasing loads or traction (see "linear" style in particle loads) and stops all moving-boundary-condition rigid particles moving at constant velocity (i.e., they do not use any setting functions) at their current values. The analysis continues.
  • continue (or 2): All loads and rigid particles continue unchanged. Only the crack propagation stops. Because this action only stops crack propagation, it is meaningless when the tasks is triggered on a global archive quantity, and is therefore not allowed for such tasks.
  • abort (or 3): The analysis terminates.

The default (style) is to reverse loads, tractions and particle to unload the specimen (as implied by the task name)

If the (hold) parameter is used, it gives a time (in msec) to hold at current conditions before apply the task's action. The (hold) parameter only applies when (style) is reverse or abort. The hold phase will only hold boundary conditions that can be reversed, which means linearly increasing loads or tractions or constant velocity rigid particles. After the hold phase is done, the reverse style will unload as described above; the abort style will stop the analysis. The default (hold) is zero (or no hold phase).