Difference between revisions of "Softening Law Implementation"

From OSUPDOCS
Jump to navigation Jump to search
 
(32 intermediate revisions by the same user not shown)
Line 2: Line 2:
== Introduction ==
== Introduction ==


[[Softening Laws]] are used to implement damage mechanics in [[Material_Models#Softening_Materials|softening materials]].
[[Softening Laws]] are used to implement damage mechanics in [[Material_Models#Softening_Materials|softening materials]]. This documentation explains how to write code for user-defined softening laws.


== Softening Law Definition ==
== Softening Law Definition ==
Line 11: Line 11:
<math>F(\delta,s) = \sigma_{init}f(\delta,s)</math>
<math>F(\delta,s) = \sigma_{init}f(\delta,s)</math>


Because the initiation stress is provided by the choosen [[Damage Initiation Laws|initiation law]], the softening law depends only on dimensionless <math>f(\delta,s)</math> that is equal to 1 when <math>\delta=0</math> and <math>s</math> is a scaling function to connect total energy released to particle volume and crack orientation <ref name="dmref"/>:
Because the initiation stress is provided by the choosen [[Damage Initiation Laws|initiation law]], the softening law depends only on dimensionless <math>f(\delta,s)</math> that is equal to 1 when <math>\delta=0</math> and <math>s</math> is a scaling factor to connect total energy released to particle volume and crack orientation <ref name="dmref"/>:


&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Line 21: Line 21:
<math>\frac{\partial f(\delta,s)}{\partial \delta} \le \frac{f(\delta,s)}{\delta}</math>
<math>\frac{\partial f(\delta,s)}{\partial \delta} \le \frac{f(\delta,s)}{\delta}</math>


If you plot <math>f(\delta,s)</math> as a function of <math>\delta</math> means no line from <math>\bigl(\delta,f(\delta,s)\bigr)</math> back to the origin can cross over the <math>f(\delta,s)</math>. Thermodynamically, it means that dissipated energy is nonnegative and that stiffness is monotonically decreasing. The function <math>f(\delta,s)</math>, however, my increase to a peak before decreasing to failure.
If you plot <math>f(\delta,s)</math> as a function of <math>\delta</math>, this condition means no line from <math>\bigl(\delta,f(\delta,s)\bigr)</math> back to the origin can cross over the <math>f(\delta,s)</math> plot. Thermodynamically, it means that dissipated energy is nonnegative and that stiffness is monotonically decreasing. The function <math>f(\delta,s)</math>, however, may increase to a peak before decreasing to zero at failure.


== Writing Softening Law Code ==
== Writing Softening Law Code ==


The first steps are to create source files for the new softening law class, to give the law a unique name and number, and to allow the main [[NairnMPM]] code to instantiate this softening law when it is needed.
The following sections list the tasks needed to write and implement a user-defined softening law in [[NairnMPM]].


=== Class Source Code ===
=== Class Source Code ===


The parent class for all softening laws are in <tt>NewMaterial.cpp</tt> and <tt>NewMaterial.hpp</tt> files. Normally, you will create new files that subclass this class (which can be done by starting with new files or duplicating files from an existing softening law). You can pick any unique name for the softening law source files.
The first step is to create source files for the new softening law class. The parent class for all softening laws are in <tt>SofteningLaw.cpp</tt> and <tt>SofteningLaw.hpp</tt> files. Normally, you will create new files that subclass this class (which can be done by starting with new files or by duplicating files from an existing softening law). You can pick any unique name for the softening law source files. If beneficial, a new law cal alternative subclass any other existing softening law.


=== Editing Core Code ===
=== Editing Core Code ===


Almost all coding will be done in the new softening laws class files, but for that law to be recognized as an option in [[NairnMPM]], one source file in the core code has to be edited first. These should be the only changes needed outside the new softening laws's class files.
Almost all coding will be done in the new softening law class files, but for that law to be recognized as an option in [[NairnMPM]], one source file in the core code has to be edited first. These should be the only changes needed outside the new softening laws's class files.


<ol>
<ol>
Line 41: Line 41:
</pre>
</pre>
or the appropriate relative path to the new law's header file.
or the appropriate relative path to the new law's header file.
<li>In <tt>void MaterialBase::SetSofteningLaw(char *lawName,int mode)</tt>, instantiate you new law based on user input of a name or a number. Pick any name and number that does  not conflict with currently implemented softening laws. The new code will look like:
<li>In <tt>void MaterialBase::SetSofteningLaw(char *lawName,int mode)</tt>, instantiate your new law based on user input of a name or a number. Pick any name and number that does  not conflict with currently implemented softening laws. The new code will look like:
<pre>
<pre>
  else if(strcmp(lawName,"MyFavoriteLaw")==0 || strcmp(lawName,"9")==0)
  else if(strcmp(lawName,"MyFavoriteLaw")==0 || strcmp(lawName,"9")==0)
Line 64: Line 64:


<li><tt>double MySofteningLaw::GetDeltaMax(double s) const</tt><br>
<li><tt>double MySofteningLaw::GetDeltaMax(double s) const</tt><br>
Return <math>\delta_{max}</math> or the value of <math>\delta</math> for which <math>f(\delta_{max},s)=0</math>. Some softening laws (like [[Exponential Softening]]) may never reach zero, but are advised to implement a critical value where <math>f(\delta_{max},s)={\rm min}</math> or where the softening law decreases to some small value (specified in <tt>min</tt>).
Return <math>\delta_{max}</math> or the value of <math>\delta</math> for which <math>f(\delta_{max},s)=0</math>. Some softening laws (like [[Exponential Softening]]) may never reach zero, but are advised to implement a critical value where <math>f(\delta_{max},s)={\rm min}</math> or where the softening law decreases to some small value (specified in <tt>min</tt>, which is available to all subclasses of <tt>SofteningLaw</tt>).
</li>
</li>


Line 75: Line 75:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>\Omega(\delta,s) = \int_0^\delta f(u,s) du - \frac{1}{2}\delta f(\delta,s)</math>
<math>\Omega(\delta,s) = \int_0^\delta f(u,s) du - \frac{1}{2}\delta f(\delta,s)</math>
<br><i>Note</i>: that recent code changes have eliminated this method. New cohesive laws need not implement it.
</li>
</li>


<li><tt>double MySofteningLaw::GetGoverGc(double delta,double gScaling) const</tt><br>
<li><tt>double MySofteningLaw::GetGoverGc(double delta,double gScaling) const</tt><br>
Return ratio of energy released to the total toughness. It is defined by<br>
Return ratio of energy released to the total toughness. It is defined by<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>\frac{\Omega(\delta,s)}{\Omega(\delta_{max},s)}</math><br>
<math>\frac{G}{G_c} = \frac{\Omega(\delta,s)}{\Omega(\delta_{max},s)}</math><br>
Although this result could be found from<br>
Although this result could be found from<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<tt>GetGToDelta(delta,s)/GetGToDelta(GetDeltaMax(s),s)</tt><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<tt>GetGToDelta(delta,s)/GetGToDelta(GetDeltaMax(s),s)</tt><br>
that approach is less efficient (probably for any softening law). As a result, this implementation requires implementation of a separate method to do the calculation.
that approach is less efficient (probably for any softening law). As a result, this implementation requires implementation of a separate method to do the calculation.<br>
<i>Note</i>: this method is only used for cubic failure surfaces (and then only in 3D for isotropic softening materials). Cohesive laws that do not override this method are limited to other modes (but cubic failure surface is no longer recommended).
</li>
</li>


<li><tt>double MySofteningLaw::GetMaxSlope(double gScaling) const</tt><br>
<li><tt>double MySofteningLaw::GetEtaStability(void) const</tt><br>
Return the maximum value for the negative slope or<br>
Return dimensionless stability factor, <math>\eta</math> <ref name="dmref"/>. It is given by<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>\max\left(-\frac{\partial f(\delta,s)}{\partial\delta}\right)</math><br>
<math>\frac{1}{\eta} = sG_c\max\left(-\frac{\partial f(\delta,s)}{\partial\delta}\right)</math><br>
This calculation is used to verify cell sizes are sufficently small for stable calculations.
None of the current laws need <tt>s</tt> to find <math>\eta</math>. If that ever changes for a future softening law, this method will change to include <tt>s</tt> as an argument.
</li>
 
<li><tt>double MySofteningLaw::GetEtaStability(void) const</tt><br>
Return dimensionless stability factor, <math>\eta</math> <ref name="dmref"/>. It is given by <tt>s*G<sub>c</sub>*GetMaxSlope(s)</tt>, but the scaling factor <tt>s</tt> is not provided as a parameter. None of the current laws need <tt>s</tt> to find <math>\eta</math>. If that ever changes for a future softening law, this method will change to include <tt>s</tt> as an argument.
</li>
</li>


Line 101: Line 100:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>\varphi(\delta,s) = f(\delta,s) - \delta\frac{\partial f(\delta,s)}{\partial\delta}</math><br>
<math>\varphi(\delta,s) = f(\delta,s) - \delta\frac{\partial f(\delta,s)}{\partial\delta}</math><br>
Note that the only requirement for valid softening laws is that <math>\varphi(\delta,s)\ge0</math> for all <math>\delta</math>.
Note that the [[#Softening Law Definition|above requirement]] for a valid softening law is equivalent to <math>\varphi(\delta,s)\ge0</math> for all <math>\delta</math>.
</li>
</li>


<li><tt>double MySofteningLaw::GetRdFxn(double delta,double s,double ei) const</tt><br>
<li><tt>double MySofteningLaw::GetRdFxn(double delta,double s,double ei) const</tt><br>
Return function that relates evolution of damage variable <math>D</math> to damage variable <math>\delta</math> defined by:<br>
Return function that gives ratio of damage variable <math>D</math> evolution to damage variable <math>\delta</math> evolution. It is found from:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>\frac{dD}{d\delta} = \frac{\varepsilon_i\varphi(\delta,s)}{\bigl(\delta + \varepsilon_i f(\delta,s)\bigr)^2}</math><br>
<math>\frac{dD}{d\delta} = \frac{\varepsilon_i\varphi(\delta,s)}{\bigl(\delta + \varepsilon_i f(\delta,s)\bigr)^2}</math><br>
Line 113: Line 112:
</ol>
</ol>


=== Implementing Option Methods ===
=== Implementing Optional Methods ===


The required methods in the previous section are sufficient to implement a new softening law. The parent class, <tt>SofteningLaw.cpp</tt> implements calculations that work for any softening law that provides these methods. Some of those calculations, however, use numerical solutions to key problems. If any specific law can find closed-form solutions instead, implementing one or more of the following options methods can improve calculation speed when uses you custom softening law. you can refer to [[Linear Softening]] or [[Exponential Softening]] coding to see examples of overriding these methods.
The required methods in the previous section are sufficient to implement a new softening law. The parent class, <tt>SofteningLaw.cpp</tt> implements calculations that work for any softening law that provides these methods. Some of those calculations, however, use numerical solutions to key problems. If any specific law can find closed-form solutions instead, implementing one or more of the following optional methods can improve calculation speed for new laws. You can refer to [[Linear Softening]] or [[Exponential Softening]] coding to see examples of overriding these methods.


<ol>
<ol>


<li><tt>double MySofteningLaw::GetDeltaFromDamage(double d,double s,double ei,double deltaGuess)</tt><br>
<li><tt>double MySofteningLaw::GetDeltaFromDamage(double D,double s,double ei,double deltaGuess)</tt><br>
The damage variable <math>D</math> is related to the damage variable <math>\delta</math> by <ref name="dmref"/>:<br>
The damage variable <math>D</math> is related to the damage variable <math>\delta</math> by <ref name="dmref"/>:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>D = \frac{\delta}{\delta + \varepsilon_i f(\delta,s)}</math><br>
<math>D = \frac{\delta}{\delta + \varepsilon_i f(\delta,s)}</math><br>
The purpose of this function is to invert this expression to find <math>D</math> in terms of <math>\delta</math> and <tt>s</tt>. The general code inverts it numerically using Newton's method. If it can be inverted analytical for your softening law, override this method and implement the analytical solution.
The purpose of this method is to invert this expression to find <math>\delta</math> in terms <math>D</math> and <tt>s</tt>. The general code inverts it numerically using Newton's method. If it can be inverted analytical for your softening law, override this method and implement the analytical solution.
</li>
</li>


Line 129: Line 128:
A core calculation for finite amount of damage evolution is to solve:<br>
A core calculation for finite amount of damage evolution is to solve:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>d\varepsilon = d\delta +  \varepsilon_i \bigl(f(\delta+d\delta,s) - f(\delta,s)\bigr)</math>
<math>d\varepsilon = d\delta +  \varepsilon_i \bigl(f(\delta+d\delta,s) - f(\delta,s)\bigr)</math><br>
for <math>d\delta</math> where <math>d\varepsilon</math><tt>=de</tt> is an input strain increment. The generic code solves this numerically using Newton's method with bracketing. The initial brackets are:<br>
for <math>d\delta</math> where <math>d\varepsilon</math><tt>=de</tt> is an input strain increment. The generic code solves this numerically using Newton's method with bracketing. The initial brackets are:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>D\varepsilon \le d\delta \le d\varepsilon +  \varepsilon_if(\delta,s)</math><br>
<math>Dd\varepsilon \le d\delta \le d\varepsilon +  \varepsilon_if(\delta,s)</math><br>
The lower limit is found because <math>\varphi(\delta,s)\ge0</math>. The upper limit is if failure occurs such that <math>f(\delta+d\delta,s)=0</math>. If <math>d\delta_n</math> is the Newton's method sequence approaching the solution, the next increment by Newton's method is derived to be:<br>
The lower limit is found because <math>\varphi(\delta,s)\ge0</math>. The upper limit is if failure occurs such that <math>f(\delta+d\delta,s)=0</math>. If <math>d\delta_n</math> is the Newton's method sequence approaching the solution, the next increment by Newton's method is derived to be:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Line 138: Line 137:
{1\over \varepsilon_0f(\delta,s)} +  {f'(\delta+d\delta,s)\over f(\delta,s)}}</math><br>
{1\over \varepsilon_0f(\delta,s)} +  {f'(\delta+d\delta,s)\over f(\delta,s)}}</math><br>
When the next increment is outside the current brackets, a custom bracketing calculation is used to make the solution always stable.<br>
When the next increment is outside the current brackets, a custom bracketing calculation is used to make the solution always stable.<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Although generic code can solve this differential equation for any softening law with provided properties listed above, some softening laws may have more efficient solutions. Any new softening laws can override this method to return a closed-form solution or a more efficient numerical solution.
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Although generic code can solve this differential equation for any softening law that [[#Implementing Required Methods|implements all requred methods]], some softening laws may have more efficient solutions. Any new softening law can override this method to return a closed-form solution or provide a more efficient numerical solution.
</li>
</li>


<li><tt>double MySofteningLaw::GetRelFFxn(double delta,double x,double gScaling) const</tt><br>
<li><tt>double MySofteningLaw::GetRelFFxn(double delta,double x,double gScaling) const</tt><br>
This method returns <math>f(\delta+d\delta,s)/f(\delta,s)</math> that is needed in the Newton's method calculations described for <tt>GetDDelta()</tt>. If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, is has only been useful for [[Exponential Softening]] where finding the ratio is more efficient than evaluating the numerator and denominator separately).
This method returns <math>f(\delta+d\delta,s)/f(\delta,s)</math> that is needed in the Newton's method calculations described for <tt>GetDDelta()</tt>. If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, it has only been useful for [[Exponential Softening]] where finding the ratio is more efficient than evaluating the numerator and denominator separately).
</li>
</li>


<li><tt>double MySofteningLaw::GetRelFFxn(double delta,double x,double gScaling) const</tt><br>
<li><tt>double MySofteningLaw::GetRelFpFxn(double delta,double x,double gScaling) const</tt><br>
This method returns <math>[\partial f(\delta+d\delta,s)/\partial \delta]/f(\delta,s)</math> that is needed in the Newton's method calculations described for <tt>GetDDelta()</tt>. If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, is has only been useful for [[Exponential Softening]] where finding the ratio is more efficient than evaluating numerator and denominator separately).
This method returns <math>[\partial f(\delta+d\delta,s)/\partial \delta]/f(\delta,s)</math> that is needed in the Newton's method calculations described for <tt>GetDDelta()</tt>. If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, it has only been useful for [[Exponential Softening]] where finding the ratio is more efficient than evaluating numerator and denominator separately).
</li>
</li>


Line 160: Line 159:
=== Including Additional Softening Law Properties ===
=== Including Additional Softening Law Properties ===


The parent class <tt>SofteningLaw.cpp</tt> mains two softening law properties for toughness, <tt>G<sub>c</sub></tt>, and minimum value for failure, <tt>min</tt>, used by some laws. New custom laws are likely to need additional parameters. Because softening laws are dimensions, new parameters should be dimensionless as well. To allow users to input the laws, the new class will need the following overrides:  
The parent class <tt>SofteningLaw.cpp</tt> mains two softening law properties for toughness, <tt>G<sub>c</sub></tt>, and minimum value for failure, <tt>min</tt>, used by some laws. New custom laws are likely to need additional parameters. Because softening laws are dimensionless, new parameters should be dimensionless as well. To allow users to input new parameters, the new class will need the following overrides:  


<pre>
<pre>
Line 170: Line 169:
  {  if(strcmp(xName,"MyParameter")==0)
  {  if(strcmp(xName,"MyParameter")==0)
     {  input=DOUBLE_NUM;
     {  input=DOUBLE_NUM;
return &myVariable;
return (char *)&myVariable;
     }
     }
     return SofteningLaw::InputSofteningProperty(xName,input,gScaling);
     return SofteningLaw::InputSofteningProperty(xName,input,gScaling);
Line 182: Line 181:
</pre>
</pre>


The first methods add a constructor (that was not needed before) and it initializes your laws parameter (which here is a class variable <tt>myVariable</tt>. The second method overrides method to decode input parameters. If the current one matches the name for you parameter, return a point to the class variable. If not, pass the method onto your methods superclass. The third method will print information about the value used for your parameter in the simulation output file. This override calls the parent class for its parameters and then prints this laws new variable. This scheme can be continues to add any number of parameters with any names.
The first method adds a constructor (that was not needed before) and it initializes your law's parameter (which here is in a class variable <tt>myVariable</tt>). The second method overrides the method to decode input parameters. If the current one matches the name for your parameter, return a pointer of appropriate type to the class variable. If not, pass the method onto your law's super class. The third method will print information about the value used for your parameter in the simulation output file. This override calls the parent class to print its parameters and then prints this law's new variable. This scheme can be expanded to add any number of parameters with any names.


To support new parameters in input XML files, you have to add multiple definitions for that parameter (because of the way softening laws properties are set). The best approach is to copy definitions for a previous softening law parameter as follows:
To support new parameters in input XML files, you have to add multiple definitions for that parameter to the <tt>DTD</tt> file (because of the way softening law properties are set in material definitions). The best approach is to replicate the definitions for a previous softening law parameter as follows:


# Open the <tt>NairnMPM.dtd</tt> file and search for all occurrences of <tt>"-Gc"</tt>. They will show up in various forms such as <tt>"I-Gc"</tt>, <tt>"II-Gc"</tt>, <i>etc.</i> (if any).
# Open the <tt>NairnMPM.dtd</tt> file and search for all occurrences of <tt>"-Gc"</tt>. They will show up in various forms such as <tt>"I-Gc"</tt>, <tt>"II-Gc"</tt>, <i>etc.</i> (if any).
# For each occurrence of <tt>"-Gc"</tt>, add a corresponding entry for your parameter (<i>e.g.</i>, for <tt>"I-Gc"</tt>, add <tt>"I-MyParameter"</tt>, where you use the name used in <tt>InputSofteningProperty()</tt> above.
# For each occurrence of <tt>"-Gc"</tt>, add a corresponding entry for your parameter (<i>e.g.</i>, for <tt>"I-Gc"</tt>, add <tt>"I-MyParameter"</tt>, where you use the name used in <tt>InputSofteningProperty()</tt> above).


=== Compiling with make Command ===
=== Compiling with make Command ===


To enable compiling code with the new softening law in Linux, Unix, or Mac without using XCode, the new softening law should be added the the <tt>makefile</tt>. The best approach is to search the make for for an existing softening law (such as <tt>LinearSoftening</tt>) and use all those entries at templates for adding your new softening law.
To enable compiling code with the new softening law in Linux, Unix, or Mac without using XCode, the new softening law should be added to the <tt>makefile</tt>. The best approach is to search the <tt>makefile</tt> for an existing softening law (such as <tt>LinearSoftening</tt>) and use all those entries as templates for adding your new softening law.


== References ==
== References ==

Latest revision as of 17:56, 8 September 2021

Introduction

Softening Laws are used to implement damage mechanics in softening materials. This documentation explains how to write code for user-defined softening laws.

Softening Law Definition

Implementation of softening laws starts by defining a model that gives strength as a function damage parameter δ. The law is defined in the form

      [math]\displaystyle{ F(\delta,s) = \sigma_{init}f(\delta,s) }[/math]

Because the initiation stress is provided by the choosen initiation law, the softening law depends only on dimensionless [math]\displaystyle{ f(\delta,s) }[/math] that is equal to 1 when [math]\displaystyle{ \delta=0 }[/math] and [math]\displaystyle{ s }[/math] is a scaling factor to connect total energy released to particle volume and crack orientation [1]:

      [math]\displaystyle{ s = {A_c \over V_p \sigma_{init}} }[/math]

Note that although softening laws are traditionally monotonically decreasing functions, that is not a thermodynamic requirement. The only limitation on softening laws is that its derivative must satisfy:

      [math]\displaystyle{ \frac{\partial f(\delta,s)}{\partial \delta} \le \frac{f(\delta,s)}{\delta} }[/math]

If you plot [math]\displaystyle{ f(\delta,s) }[/math] as a function of [math]\displaystyle{ \delta }[/math], this condition means no line from [math]\displaystyle{ \bigl(\delta,f(\delta,s)\bigr) }[/math] back to the origin can cross over the [math]\displaystyle{ f(\delta,s) }[/math] plot. Thermodynamically, it means that dissipated energy is nonnegative and that stiffness is monotonically decreasing. The function [math]\displaystyle{ f(\delta,s) }[/math], however, may increase to a peak before decreasing to zero at failure.

Writing Softening Law Code

The following sections list the tasks needed to write and implement a user-defined softening law in NairnMPM.

Class Source Code

The first step is to create source files for the new softening law class. The parent class for all softening laws are in SofteningLaw.cpp and SofteningLaw.hpp files. Normally, you will create new files that subclass this class (which can be done by starting with new files or by duplicating files from an existing softening law). You can pick any unique name for the softening law source files. If beneficial, a new law cal alternative subclass any other existing softening law.

Editing Core Code

Almost all coding will be done in the new softening law class files, but for that law to be recognized as an option in NairnMPM, one source file in the core code has to be edited first. These should be the only changes needed outside the new softening laws's class files.

  1. Include the new softening law's header file at the top of NairnMPM/src/Materials/MaterialBaseMPM.cpp:
     #include "Materials/MySofteningLaw.hpp"
    

    or the appropriate relative path to the new law's header file.

  2. In void MaterialBase::SetSofteningLaw(char *lawName,int mode), instantiate your new law based on user input of a name or a number. Pick any name and number that does not conflict with currently implemented softening laws. The new code will look like:
     else if(strcmp(lawName,"MyFavoriteLaw")==0 || strcmp(lawName,"9")==0)
     {   sLaw = new MySofteningLaw();
     }
    

Implementing Required Methods

Once source code is created and made available to core code, the next steps are to implement all the required methods for softening laws. The required methods are:

  1. const char *MySofteningLaw::GetSofteningLawName(void)
    Return a string with name for the law (to be displayed in output files). It should be unique name among all implemented softening laws.
  2. double MySofteningLaw::GetFFxn(double delta,double s) const
    Return [math]\displaystyle{ f(\delta,s) }[/math].
  3. double MySofteningLaw::GetDeltaMax(double s) const
    Return [math]\displaystyle{ \delta_{max} }[/math] or the value of [math]\displaystyle{ \delta }[/math] for which [math]\displaystyle{ f(\delta_{max},s)=0 }[/math]. Some softening laws (like Exponential Softening) may never reach zero, but are advised to implement a critical value where [math]\displaystyle{ f(\delta_{max},s)={\rm min} }[/math] or where the softening law decreases to some small value (specified in min, which is available to all subclasses of SofteningLaw).
  4. double MySofteningLaw::GetFpFxn(double delta,double gScaling) const
    Return derivative of the softening law or [math]\displaystyle{ \partial f(\delta,s)/\partial\delta }[/math].
  5. double MySofteningLaw::GetGToDelta(double delta,double gScaling) const
    Return normalized energy released for material point that has evolved to [math]\displaystyle{ \delta }[/math]. It is found from:
          [math]\displaystyle{ \Omega(\delta,s) = \int_0^\delta f(u,s) du - \frac{1}{2}\delta f(\delta,s) }[/math]
    Note: that recent code changes have eliminated this method. New cohesive laws need not implement it.
  6. double MySofteningLaw::GetGoverGc(double delta,double gScaling) const
    Return ratio of energy released to the total toughness. It is defined by
          [math]\displaystyle{ \frac{G}{G_c} = \frac{\Omega(\delta,s)}{\Omega(\delta_{max},s)} }[/math]
    Although this result could be found from
         GetGToDelta(delta,s)/GetGToDelta(GetDeltaMax(s),s)
    that approach is less efficient (probably for any softening law). As a result, this implementation requires implementation of a separate method to do the calculation.
    Note: this method is only used for cubic failure surfaces (and then only in 3D for isotropic softening materials). Cohesive laws that do not override this method are limited to other modes (but cubic failure surface is no longer recommended).
  7. double MySofteningLaw::GetEtaStability(void) const
    Return dimensionless stability factor, [math]\displaystyle{ \eta }[/math] [1]. It is given by
          [math]\displaystyle{ \frac{1}{\eta} = sG_c\max\left(-\frac{\partial f(\delta,s)}{\partial\delta}\right) }[/math]
    None of the current laws need s to find [math]\displaystyle{ \eta }[/math]. If that ever changes for a future softening law, this method will change to include s as an argument.
  8. double MySofteningLaw::GetPhiFxn(double delta,double s) const
    Return the energy dissipation function [1] defined by
          [math]\displaystyle{ \varphi(\delta,s) = f(\delta,s) - \delta\frac{\partial f(\delta,s)}{\partial\delta} }[/math]
    Note that the above requirement for a valid softening law is equivalent to [math]\displaystyle{ \varphi(\delta,s)\ge0 }[/math] for all [math]\displaystyle{ \delta }[/math].
  9. double MySofteningLaw::GetRdFxn(double delta,double s,double ei) const
    Return function that gives ratio of damage variable [math]\displaystyle{ D }[/math] evolution to damage variable [math]\displaystyle{ \delta }[/math] evolution. It is found from:
          [math]\displaystyle{ \frac{dD}{d\delta} = \frac{\varepsilon_i\varphi(\delta,s)}{\bigl(\delta + \varepsilon_i f(\delta,s)\bigr)^2} }[/math]
    where [math]\displaystyle{ \varepsilon_i }[/math] is initiation strain provided in a parameter.

Implementing Optional Methods

The required methods in the previous section are sufficient to implement a new softening law. The parent class, SofteningLaw.cpp implements calculations that work for any softening law that provides these methods. Some of those calculations, however, use numerical solutions to key problems. If any specific law can find closed-form solutions instead, implementing one or more of the following optional methods can improve calculation speed for new laws. You can refer to Linear Softening or Exponential Softening coding to see examples of overriding these methods.

  1. double MySofteningLaw::GetDeltaFromDamage(double D,double s,double ei,double deltaGuess)
    The damage variable [math]\displaystyle{ D }[/math] is related to the damage variable [math]\displaystyle{ \delta }[/math] by [1]:
          [math]\displaystyle{ D = \frac{\delta}{\delta + \varepsilon_i f(\delta,s)} }[/math]
    The purpose of this method is to invert this expression to find [math]\displaystyle{ \delta }[/math] in terms [math]\displaystyle{ D }[/math] and s. The general code inverts it numerically using Newton's method. If it can be inverted analytical for your softening law, override this method and implement the analytical solution.
  2. double MySofteningLaw::GetDDelta(double de,double ei,double delta,double D,double s) const
    A core calculation for finite amount of damage evolution is to solve:
          [math]\displaystyle{ d\varepsilon = d\delta + \varepsilon_i \bigl(f(\delta+d\delta,s) - f(\delta,s)\bigr) }[/math]
    for [math]\displaystyle{ d\delta }[/math] where [math]\displaystyle{ d\varepsilon }[/math]=de is an input strain increment. The generic code solves this numerically using Newton's method with bracketing. The initial brackets are:
          [math]\displaystyle{ Dd\varepsilon \le d\delta \le d\varepsilon + \varepsilon_if(\delta,s) }[/math]
    The lower limit is found because [math]\displaystyle{ \varphi(\delta,s)\ge0 }[/math]. The upper limit is if failure occurs such that [math]\displaystyle{ f(\delta+d\delta,s)=0 }[/math]. If [math]\displaystyle{ d\delta_n }[/math] is the Newton's method sequence approaching the solution, the next increment by Newton's method is derived to be:
          [math]\displaystyle{ d\delta_{n+1} = d\delta_n - {{d\delta-d\varepsilon\over \varepsilon_0f(\delta,s)} + {f(\delta+d\delta,s)\over f(\delta,s)}-1\over {1\over \varepsilon_0f(\delta,s)} + {f'(\delta+d\delta,s)\over f(\delta,s)}} }[/math]
    When the next increment is outside the current brackets, a custom bracketing calculation is used to make the solution always stable.
         Although generic code can solve this differential equation for any softening law that implements all requred methods, some softening laws may have more efficient solutions. Any new softening law can override this method to return a closed-form solution or provide a more efficient numerical solution.
  3. double MySofteningLaw::GetRelFFxn(double delta,double x,double gScaling) const
    This method returns [math]\displaystyle{ f(\delta+d\delta,s)/f(\delta,s) }[/math] that is needed in the Newton's method calculations described for GetDDelta(). If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, it has only been useful for Exponential Softening where finding the ratio is more efficient than evaluating the numerator and denominator separately).
  4. double MySofteningLaw::GetRelFpFxn(double delta,double x,double gScaling) const
    This method returns [math]\displaystyle{ [\partial f(\delta+d\delta,s)/\partial \delta]/f(\delta,s) }[/math] that is needed in the Newton's method calculations described for GetDDelta(). If that method is overridden, this method provides no function. If it is not overridden, however, this method might provide some benefit (although to date, it has only been useful for Exponential Softening where finding the ratio is more efficient than evaluating numerator and denominator separately).
  5. double MySofteningLaw::GetDDeltaElastic(double delta,double sigmaAlpha,double s,double D,double E1md) const
    This methods solves for elastic change in damage variable [math]\displaystyle{ \delta }[/math] when another parameter (such as pressure) affects the damage evolution (it implements some unpublished damage mechanics methods). The numerical task is to solve
          [math]\displaystyle{ {\rm E1md*}(\delta +d\delta_e) = {\rm D*sigmaAlpha*}f(\delta+d\delta_e,s) }[/math]
    for [math]\displaystyle{ d\delta_e }[/math]. The generic code solves this equation numerically. Any new softening laws can override this method to return a closed-form solution or a more-efficient numerical solution.

Including Additional Softening Law Properties

The parent class SofteningLaw.cpp mains two softening law properties for toughness, Gc, and minimum value for failure, min, used by some laws. New custom laws are likely to need additional parameters. Because softening laws are dimensionless, new parameters should be dimensionless as well. To allow users to input new parameters, the new class will need the following overrides:

 MySofteningLaw::MySofteningLaw() : SofteningLaw()
 {   myVariable = 0.;
 }

 char *MySofteningLaw::InputSofteningProperty(char *xName,int &input,double &gScaling)
 {   if(strcmp(xName,"MyParameter")==0)
     {   input=DOUBLE_NUM;
	 return (char *)&myVariable;
     }
     return SofteningLaw::InputSofteningProperty(xName,input,gScaling);
 }

 void MySofteningLaw::PrintSofteningProperties(double sigmainit)
 {   SofteningLaw::PrintSofteningProperties(sigmainit);
     MaterialBase::PrintProperty("MyParameter",myVariable,"");
     cout << endl;
 }

The first method adds a constructor (that was not needed before) and it initializes your law's parameter (which here is in a class variable myVariable). The second method overrides the method to decode input parameters. If the current one matches the name for your parameter, return a pointer of appropriate type to the class variable. If not, pass the method onto your law's super class. The third method will print information about the value used for your parameter in the simulation output file. This override calls the parent class to print its parameters and then prints this law's new variable. This scheme can be expanded to add any number of parameters with any names.

To support new parameters in input XML files, you have to add multiple definitions for that parameter to the DTD file (because of the way softening law properties are set in material definitions). The best approach is to replicate the definitions for a previous softening law parameter as follows:

  1. Open the NairnMPM.dtd file and search for all occurrences of "-Gc". They will show up in various forms such as "I-Gc", "II-Gc", etc. (if any).
  2. For each occurrence of "-Gc", add a corresponding entry for your parameter (e.g., for "I-Gc", add "I-MyParameter", where you use the name used in InputSofteningProperty() above).

Compiling with make Command

To enable compiling code with the new softening law in Linux, Unix, or Mac without using XCode, the new softening law should be added to the makefile. The best approach is to search the makefile for an existing softening law (such as LinearSoftening) and use all those entries as templates for adding your new softening law.

References

  1. 1.0 1.1 1.2 1.3 J. A. Nairn, C. Hammerquist, and Y. E. Aimene (2017), Numerical Implementation of Anisotropic Damage Mechanics, Int. J. for Numerical Methods in Engineering, 112(12), 1846-1868.