Difference between revisions of "ReverseLoad Custom Task"

From OSUPDOCS
Jump to navigation Jump to search
Line 25: Line 25:
     <Parameter name='maxLength'>(length)</Parameter>
     <Parameter name='maxLength'>(length)</Parameter>
     <Parameter name='crackNumber'>(number)</Parameter>
     <Parameter name='crackNumber'>(number)</Parameter>
     <Parameter name=style'>(style)</Parameter>
     <Parameter name=style'>(styleNumber)</Parameter>
  </Schedule>
  </Schedule>
   
   
Line 32: Line 32:
     <Parameter name='mat'>(matOrBCNum)</Parameter>
     <Parameter name='mat'>(matOrBCNum)</Parameter>
     <Parameter name='maxValue'>(value)</Parameter>
     <Parameter name='maxValue'>(value)</Parameter>
     <Parameter name=style'>(style)</Parameter>
     <Parameter name=style'>(styleNumber)</Parameter>
  </Schedule>
  </Schedule>


Line 43: Line 43:


* <tt>(quant)</tt> - gives the name of the [[MPM Global Archiving Options|global archive quantity]] to use a trigger. In <tt>XML</tt> files, the quantiy name must be embedded in the parameter name, such as <tt>'global sxx'</tt>.
* <tt>(quant)</tt> - gives the name of the [[MPM Global Archiving Options|global archive quantity]] to use a trigger. In <tt>XML</tt> files, the quantiy name must be embedded in the parameter name, such as <tt>'global sxx'</tt>.
* <tt>(matOrBCID)</tt> - if the desired [[MPM Global Archiving Options|global archive quantity]] is defined for a specific material or for a specific boundary condition, enter that material ID or boundary condition ID in this parameter.
* <tt>(matOrBCID)</tt> - if the desired [[MPM Global Archiving Options|global archive quantity]] is defined for a specific material or for a specific boundary condition, enter that [[Material Block Command|material ID]] or boundary condition ID in this parameter.
* <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.



Revision as of 09:24, 7 April 2014

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

Introduction

The ReverseLoad custom task monitors crack lengths or monitors any current global archive quantity. Once any crack or a specified crack reaches a specified crack length or the specified global quantity passes a critical value, the task's action is triggered. When monitor crack lengths, the task also stops crack propagation of all cracks stops before performing its designated action.

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)

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

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>
</Schedule>

<Schedule name='ReverseLoad'>
   <Parameter name='global (quant)'/>
   <Parameter name='mat'>(matOrBCNum)</Parameter>
   <Parameter name='maxValue'>(value)</Parameter>
   <Parameter name=style'>(styleNumber)</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, (tt)(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 three parameter 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, enter that material ID or boundary condition ID in this parameter.
  • (matOrBCNum) - in XML files, the specific material or boundary condition ID must be specified by number.
  • style - determines what happens after the specified crack length is reached and crack propagation is stopped. The options are:
    • reverse: Reverses all linearly increasing loads (see "linear" style in particle loads) and reverses direction of all rigid particles. This style will unload until the load (on loaded particles) or displacement (on moving rigid particles) returns to zero at which point the analysis will stop.
    • hold: Stops all linearly increasing loads (see "linear" style in particle loads) and stops all rigid particles at their current values. The analysis continues.
    • continue: All loads and rigid particles continue unchanged. Only the crack propagation stops.
    • abort: The analysis terminates.

The default (style) is to reverse all loads to unload the specimen (as implied by the name)