Difference between revisions of "Defining Cracks"

From OSUPDOCS
Jump to navigation Jump to search
Line 15: Line 15:
In scripted files, a single crack is started with a <tt>NewCrack</tt> command, which is followed by one or more of the other commands to complete the crack definition:
In scripted files, a single crack is started with a <tt>NewCrack</tt> command, which is followed by one or more of the other commands to complete the crack definition:


  NewCrack
  NewCrack (x1),(y1),<(mat)>,<(frict)>,<(tract)>
  GrowCrack
  GrowCrack
  GrowCrackLine
  GrowCrackLine
Line 24: Line 24:
In <tt>XML</tt> files, each crack is defined in a <tt>CrackList</tt> element:
In <tt>XML</tt> files, each crack is defined in a <tt>CrackList</tt> element:


  <CrackList friction='0.1' Dn='200' Dnc='-1' Dnt='200' Dt='5'>
  <CrackList friction='(frict)'>
   <pt units='mm' x='50.5' y='0' tip='1'/>
   <pt units='mm' x='(x1)' y='(x2)' tip='(mat)'/>
   <pt x='53' y='0'/>
   <pt x='53' y='0'/>
       .
       . . .
      .
    <pt x='100.5' y='0'/>
      .
  <pt x='100.5' y='0'/>
   <Line xmin="102" ymin="0" xmax="130" ymax="10" resolution="5"
   <Line xmin="102" ymin="0" xmax="130" ymax="10" resolution="5"
             start_tip="1" end_tip="1"/>
             start_tip="1" end_tip="1"/>
Line 50: Line 48:


  NewCrack (x1),(y1),<(mat)>,<(frict)>,<(tract)>
  NewCrack (x1),(y1),<(mat)>,<(frict)>,<(tract)>
In <tt>XML</tt> files, a crack is started with
<CrackList friction='(frict)'>
  <pt units='mm' x='(x1)' y='(x2)' tip='(mat)'/>


where
where
Line 62: Line 65:
<li><tt>"fixed"</tt> - this text indicates a fixed crack. A fixed crack will not translate with the object and will not track surfaces. It can calculate J Integral but not Stress Intensity factor. It is useful when using cracks to create surfaces in an object. The surface can change by propagating the crack at constant crack speed initiated by critical J or by initiation time (see steady state propagation).
<li><tt>"fixed"</tt> - this text indicates a fixed crack. A fixed crack will not translate with the object and will not track surfaces. It can calculate J Integral but not Stress Intensity factor. It is useful when using cracks to create surfaces in an object. The surface can change by propagating the crack at constant crack speed initiated by critical J or by initiation time (see steady state propagation).
</ol>
</ol>
<li><tt>(frict)</tt> - this optional parameter can specify a custom contact law for this crack. This option lets each crack have a different contact law such as different coefficients of friction. See the Friction Command for options in setting the contact law. If you want to set a contact law on a non-fixed crack, but do not want to define a tip material in parameter #3, you can enter parameter #3 as free, and then enter optional #4.
<li><tt>(frict)</tt> - this optional parameter can specify custom frictional contact for this crack. The frictional properties are setting use the same options available in the [[Friction#fparams|<tt>Friction</tt> and <tt>FrictionMM</tt> commands]]. This option lets each crack have a different contact law such as different coefficients of friction. If you want to set a contact law on a non-fixed crack, but do not want to define a tip material in <tt>(mat)</tt>, you can enter <tt>(mat)</tt>=<tt>"free"</tt>, and then enter the desired <tt>(frict)</tt>.
<li><tt>(frict)</tt> and <tt>(traction)</tt> - alternatively, the optional #4 and #5 parameters can assign a traction law to the initial crack tip. To use this option, set #4 to traction and #5 to a material ID for a traction law material. The traction law will applied only to the first crack particle. To continue the traction law along the crack, use the traction law options in subsequent GrowCrack, GrowCrackLine and GrowCrackArc commands.
<li><tt>(frict)</tt> and <tt>(tract)</tt> - alternatively, these optional parameters can assign a traction law to the initial crack tip. To use this option, set <tt>(frict)</tt>=<tt>"traction"</tt> and then set <tt>(tract)</tt> to a material ID for a traction law material. The traction law will applied only to the first crack particle.
</ul>
</ul>



Revision as of 18:45, 28 September 2013

This section explains how to add explicit cracks to an MPM simulation.

Introduction

The extension of MPM to model explicit cracks is called CRAMP for CRAcks in the Material Point Method. The commands is this section are used to define the explicit cracks (and there can be any number of them). In addition, whenever a simulation has cracks you can use various crack settings commands to customize the features of the crack physics and set various material fracture properties.

The development of CRAMP is described first in a paper by Nairn (2003)[1] (and its development was done using NairnMPM). Some other papers discuss calculation of J integral and stress intensity factor,[2], propose energy balance propagation,[3] handle cracks in 3D[4] (although not currently available in NairnMPM), use cracks to model imperfect interfaces,[5], and use traction laws with cracks.[6] Some applications of using cracks in MPM include wood fracture,[7] use of cracks to model glue bods in oriented strand board,[8] simulation of dynamic fracture,[9] and simulation of crack growth with fiber bridging.[10]

Crack Definition Commmands

OneCrack.png

In CRAMP,[1] a crack is defined as series of massless particles connected by crack segments. The first particle is the "start" tip and the last particle is the "end" tip. When CRAMP is active, nodes around the crack will be divided into two velocity fields to separately model motion of particle "above" the crack and "below" the crack. You define a crack by providing the points along the crack - (x1,y1) to (xn,yn). In addition, CRAMP fully accounts for crack contact, can model cracks with frictional contact, can use cracks to model imperfect interfaces, and can insert traction laws to model cohesive zones. When defining cracks, some additional are used to set crack contact mechanics, set crack tip materials, and insert traction laws.

In scripted files, a single crack is started with a NewCrack command, which is followed by one or more of the other commands to complete the crack definition:

NewCrack (x1),(y1),<(mat)>,<(frict)>,<(tract)>
GrowCrack
GrowCrackLine
GrowCrackArc
CrackInterface
CrackThickness

In XML files, each crack is defined in a CrackList element:

<CrackList friction='(frict)'>
  <pt units='mm' x='(x1)' y='(x2)' tip='(mat)'/>
  <pt x='53' y='0'/>
     . . .
   <pt x='100.5' y='0'/>
  <Line xmin="102" ymin="0" xmax="130" ymax="10" resolution="5"
           start_tip="1" end_tip="1"/>
  <Circle xmin="102" ymin="0" xmax="130" ymax="10" resolution="10"
           start_tip="1" end_tip="1" start_angle="0" end_angle="90"/>
  <Thickness>1.0</Thickness>
</CrackList>

The commands and their functions are:

Starting the Crack

In scripted files, crack is started with the NewCrack command:

NewCrack (x1),(y1),<(mat)>,<(frict)>,<(tract)>

In XML files, a crack is started with

<CrackList friction='(frict)'>
  <pt units='mm' x='(x1)' y='(x2)' tip='(mat)'/>

where

  • (x1),(y1) - defines the start of the crack with crack tip (the coordinates are (R,Z) if axisymmetric).
  • (mat) - this optional parameter can be one of three things:
    1. A Material ID - It can define the material at the start of the crack. Crack propagation is only possible when one or both of its crack tips have a material ID. If the material ID is omitted, the MPM calculations will correctly model that crack, but no propagation or fracture parameter calculations will occur.
    2. "exterior" - this text indicates a crack tip at the edge of the body.
    3. "fixed" - this text indicates a fixed crack. A fixed crack will not translate with the object and will not track surfaces. It can calculate J Integral but not Stress Intensity factor. It is useful when using cracks to create surfaces in an object. The surface can change by propagating the crack at constant crack speed initiated by critical J or by initiation time (see steady state propagation).
  • (frict) - this optional parameter can specify custom frictional contact for this crack. The frictional properties are setting use the same options available in the Friction and FrictionMM commands. This option lets each crack have a different contact law such as different coefficients of friction. If you want to set a contact law on a non-fixed crack, but do not want to define a tip material in (mat), you can enter (mat)="free", and then enter the desired (frict).
  • (frict) and (tract) - alternatively, these optional parameters can assign a traction law to the initial crack tip. To use this option, set (frict)="traction" and then set (tract) to a material ID for a traction law material. The traction law will applied only to the first crack particle.

Growing the Crack

Crack Contact Mechanics

Crack Thickness

Interacting Cracks

References

  1. 1.0 1.1 J. A. Nairn, "Material Point Method Calculations with Explicit Cracks," Computer Modeling in Engineering & Sciences, 4, 649-664 (2003). (See PDF)
  2. Y. Guo and J. A. Nairn, "Calculation of J-Integral and Stress Intensity Factors using the Material Point Method," Computer Modeling in Engineering & Sciences, 6, 295-308 (2004). (See PDF)
  3. J. A. Nairn, "Simulation of Crack Growth in Ductile Materials,"; Engr. Fract. Mech., 72, 961-979 (2005). (See PDF)
  4. Y. Guo and J. A. Nairn, "Three-Dimensional Dynamic Fracture Analysis Using the Material Point Method," Computer Modeling in Eng. & Sci., 16, 141-156 (2006). (See PDF)
  5. J. A. Nairn, "Numerical Implementation of Imperfect Interfaces, Computational Materials Science, 40, 525-536 (2007). (See PDF)
  6. J. A. Nairn, "Analytical and Numerical Modeling of R Curves for Cracks with Bridging Zones," Int. J. Fracture, 155, 167-181 (2009). (See PDF)
  7. J. A. Nairn, "Material Point Method Simulations of Transverse Fracture in Wood with Realistic Morphologies," Holzforschung, 61, 375-381 (2007). (See PDF)
  8. J. A. Nairn and E. Le, "Numerical Modeling and Experiments on the Role of Strand-to-Strand Interface Quality on the Properties of Oriented Strand Board," Proc of 9th Int. Conf. on Wood Adhesives, Lake Tahoe, Neveda, USA, Sept. 28-30, 2009. (See PDF)
  9. S. G. Bardenhagen, J.A. Nairn, and H. Lu, "Simulation of dynamic fracture with the Material Point Method using a mixed J-integral and cohesive law approach," Int. J. Fracture, 170, 49-66 (2011).
  10. N. Matsumoto and J.A. Nairn, "Fracture Toughness of Wood and Wood Composites During Crack Propagation," Wood and Fiber Science, 44, 121-133 (2012). (See PDF)