LEFM
Module for computing stress intensity factor (SIF) influence functions and energy release rates.
This module provides functions to compute the functions F_ij and G_i as described in Amestoy and Leblond (1992). These functions are used to calculate the SIFs at the tip of an infinitesimal straight crack extension with a given bifurcation angle.
References
Amestoy, M., & Leblond, J. B. (1992). Crack paths in plane situations—II. Detailed form of the expansion of the stress intensity factors. International Journal of Solids and Structures, 29(4), 465–501. https://doi.org/10.1016/0020-7683(92)90210-K
F11(m)
Computes F11 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the F11 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |
F12(m)
Computes F12 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the F12 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
F21(m)
Computes F21 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the F21 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | |
F22(m)
Computes F22 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the F22 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
Fmat(m)
Construct the matrix F containing the Fij functions of Amestoy-Leblond.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
jnp.ndarray: The 2x2 matrix F for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
115 116 117 118 119 120 121 122 123 124 125 | |
G1(m)
Computes G1 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the G1 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
G2(m)
Computes G2 function for a given normalized crack angle.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the G2 for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |
G_star(phi, phi0, KI, KII, T, Ep, s)
Computes the energy release rate G* after a infinitesimal kink of angle.
This function computes the energy release rate G* using the Irwin formula. The SIFs are calculated as described in Amestoy and Leblond (1992).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
float
|
Current crack angle. |
required |
phi0
|
float
|
Initial crack angle. |
required |
KI
|
float
|
Mode I stress intensity factor. |
required |
KII
|
float
|
Mode II stress intensity factor. |
required |
T
|
float
|
T-stress. |
required |
Ep
|
float
|
Plane strain/stress modulus. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The energy release rate G* for the given crack angle and stress intensity factors. |
Source code in src/gcrack/lefm.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | |
G_star_coupled(phi, phi0, KI1, KII1, T1, KI2, KII2, T2, Ep, s)
Computes the coupled energy release rate G* for two sets of stress intensity factors.
It is used to evaluate the energy release rate for two interacting loading conditions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
float
|
Current crack angle. |
required |
phi0
|
float
|
Initial crack angle. |
required |
KI1
|
float
|
Mode I stress intensity factor for the first load. |
required |
KII1
|
float
|
Mode II stress intensity factor for the first load. |
required |
T1
|
float
|
T-stress for the first load. |
required |
KI2
|
float
|
Mode I stress intensity factor for the second load. |
required |
KII2
|
float
|
Mode II stress intensity factor for the second load. |
required |
T2
|
float
|
T-stress for the second load. |
required |
Ep
|
float
|
Plane strain modulus. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The coupled energy release rate G* for the given crack angle and stress intensity factors. |
Source code in src/gcrack/lefm.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | |
Gvec(m)
Construct the vector G containing the Gi functions of Amestoy-Leblond.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
m
|
float
|
Normalized crack angle, defined as (phi - phi0) / pi. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
jnp.ndarray: The vector G for the given normalized crack angle. |
Source code in src/gcrack/lefm.py
176 177 178 179 180 181 182 183 184 185 186 | |