Difference between revisions of "Linear Imperfect Interface"

From OSUPDOCS
Jump to navigation Jump to search
(Created page with "__TOC__ == Description == This imperfect interface contact law assume the normal and tangential tractions are linear and dep...")
 
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
== Description ==
== Description ==


This [[Contact Laws#Imperfect Interface Contact Laws|imperfect interface contact law]] assume the normal and tangential tractions are linear and depend only on the normal and tangentatial displacement discontinuities:
This [[Contact Laws#Imperfect Interface Contact Laws|imperfect interface contact law]] assumes the normal and tangential tractions are linear and depend only on the normal and tangentatial displacement discontinuities, respectively:


     
<math>T_n = D_n[u_n]</math>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>T_t = D_t[u_t]</math>
where D<sub>n</sub> and D<sub>t</sub> are two interface parameters, which are infinite for a perfect interface (zero displacement discontinuity) and 0 for a debonded interface (zero traction). But this linear law would allow the two materials to interpenetrate, especially if D<sub>n</sub> was low. To correct this issue, the traction law in the normal direction is allowed to be bilinear:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<math>T_n = \left\{ \begin{array}{ll} D_{nt}[u_n] & {\rm \ if\ }[u_n]>0 \\ D_{nc}[u_n] & {\rm \ otherwise} \end{array} \right.</math>
where D<sub>nt</sub> and D<sub>nc</sub> are separate interface parameters for the interface being in tension or compression.


== Properties ==
== Properties ==
The properties for this law are:
{| class="wikitable"
|-
! Property !! Description !! Units !! Default
|-
| Dnt (or Dn) || Imperfect interface parameter for normal direction when in tension || [[ConsistentUnits Command#Legacy and Consistent Units|pressure/length units]] || -1
|-
| Dnc || Imperfect interface parameter for normal direction when in compression. If Dnc is not specified, it set equal to Dnt. || [[ConsistentUnits Command#Legacy and Consistent Units|pressure/length units]] || none
|-
| Dt || Imperfect interface parameter for tangential direction || [[ConsistentUnits Command#Legacy and Consistent Units|pressure/length units]] || -1
|}
In theory, very large interface parameters will result in a perfect interface, but they also make the numerical equations very "stiff" and therefore potentially unstable. To solve this issue, you can set any interface parameter to -1 to indicate an infinite interface parameter or a perfect interface. When a parameter is -1, the equations are handled differently to avoid stability issues.
== Examples ==
  Material "interfaceID","My Imperfect Interface","LinearInterface"
    Dn 500
    Dt 0
  Done

Latest revision as of 09:38, 9 February 2017

Description

This imperfect interface contact law assumes the normal and tangential tractions are linear and depend only on the normal and tangentatial displacement discontinuities, respectively:

      [math]\displaystyle{ T_n = D_n[u_n] }[/math]

      [math]\displaystyle{ T_t = D_t[u_t] }[/math]

where Dn and Dt are two interface parameters, which are infinite for a perfect interface (zero displacement discontinuity) and 0 for a debonded interface (zero traction). But this linear law would allow the two materials to interpenetrate, especially if Dn was low. To correct this issue, the traction law in the normal direction is allowed to be bilinear:

      [math]\displaystyle{ T_n = \left\{ \begin{array}{ll} D_{nt}[u_n] & {\rm \ if\ }[u_n]\gt 0 \\ D_{nc}[u_n] & {\rm \ otherwise} \end{array} \right. }[/math]

where Dnt and Dnc are separate interface parameters for the interface being in tension or compression.

Properties

The properties for this law are:

Property Description Units Default
Dnt (or Dn) Imperfect interface parameter for normal direction when in tension pressure/length units -1
Dnc Imperfect interface parameter for normal direction when in compression. If Dnc is not specified, it set equal to Dnt. pressure/length units none
Dt Imperfect interface parameter for tangential direction pressure/length units -1

In theory, very large interface parameters will result in a perfect interface, but they also make the numerical equations very "stiff" and therefore potentially unstable. To solve this issue, you can set any interface parameter to -1 to indicate an infinite interface parameter or a perfect interface. When a parameter is -1, the equations are handled differently to avoid stability issues.

Examples

 Material "interfaceID","My Imperfect Interface","LinearInterface"
   Dn 500
   Dt 0
 Done