Optimization solvers
Module for solving the optimization problem to determine the load factor in crack propagation simulations.
This module provides the LoadFactorSolver class, which implements the GMERR (Generalized Maximum Energy Release Rate) criterion for crack propagation.
The solver is based on the work of Amestoy and Leblond (1992) and is designed to work with the gcrack.lefm module.
It uses gradient descent with line search to find the optimal crack propagation angle and load factor.
The module also includes a custom gradient descent optimizer with line search for robust convergence, even in the presence of discontinuities or "cups" in critical energy release rate Gc.
References
Amestoy, M., & Leblond, J. B. (1992). A new numerical method for crack growth prediction. International Journal of Solids and Structures, 29(21), 2619-2638. https://doi.org/10.1016/0020-7683(92)90210-K
LoadFactorSolver
Solver for load factors and crack propagation angles using the GMERR criterion.
This class implements the GMERR (Generalized Maximum Energy Release Rate) criterion for crack propagation. It uses automatic differentiation to compute gradients and Hessians of the objective function, and employs gradient descent with line search to find the optimal crack propagation angle and load factor.
Attributes:
| Name | Type | Description |
|---|---|---|
model |
ElasticModel
|
The elastic model used for the simulation. |
Gc |
Callable
|
The critical energy release rate function. |
grad |
Callable
|
The gradient of the objective function. |
hess |
Callable
|
The Hessian of the objective function. |
grad_pert |
Callable
|
The gradient of the perturbed objective function. |
hess_pert |
Callable
|
The Hessian of the perturbed objective function. |
Source code in src/gcrack/optimization_solvers.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 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 221 222 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | |
__init__(model, Gc_func, xc)
Initializes the LoadFactorSolver.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
ElasticModel
|
The elastic model used for the simulation. |
required |
Gc_func
|
Callable
|
The critical energy release rate function. |
required |
xc
|
List
|
Position of the crack tip. |
required |
Source code in src/gcrack/optimization_solvers.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | |
export_minimization_plots(phi, load_factor, phi0, SIFs_controlled, SIFs_prescribed, s, t, dir_name)
Exports plots of the objective function and its gradient during minimization.
This function generates and saves plots of the objective function, its perturbed version, and the gradient of the objective function during the minimization process. This function is mainly use to illustrate the minimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi
|
float
|
Optimal crack propagation angle. |
required |
load_factor
|
float
|
Optimal load factor. |
required |
phi0
|
float
|
Initial crack angle. |
required |
SIFs_controlled
|
dict
|
Stress intensity factors for the controlled problem. |
required |
SIFs_prescribed
|
dict
|
Stress intensity factors for the prescribed problem. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
t
|
int
|
Current time step. |
required |
dir_name
|
Path
|
Directory to save the plots. |
required |
Source code in src/gcrack/optimization_solvers.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | |
objective(x, Ep, s, KIc, KIIc, Tc, KIp, KIIp, Tp, phi0)
Computes the objective function for the GMERR criterion.
This function computes the objective function for the GMERR criterion, which is used to find the optimal crack propagation angle and load factor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
ndarray
|
The optimization variables (crack propagation angle). |
required |
Ep
|
float
|
Plane strain modulus. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
KIc
|
float
|
Mode I stress intensity factor for the controlled problem. |
required |
KIIc
|
float
|
Mode II stress intensity factor for the controlled problem. |
required |
Tc
|
float
|
T-stress for the controlled problem. |
required |
KIp
|
float
|
Mode I stress intensity factor for the prescribed problem. |
required |
KIIp
|
float
|
Mode II stress intensity factor for the prescribed problem. |
required |
Tp
|
float
|
T-stress for the prescribed problem. |
required |
phi0
|
float
|
Initial crack angle. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the objective function. |
Source code in src/gcrack/optimization_solvers.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
objective_pert(x, Ep, s, KIc, KIIc, Tc, KIp, KIIp, Tp, phi0)
Computes the perturbed objective function for the GMERR criterion.
This function adds a small perturbation to the objective function to avoid convergence to a maximum instead of a minimum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x
|
ndarray
|
The optimization variables (crack propagation angle). |
required |
Ep
|
float
|
Plane strain modulus. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
KIc
|
float
|
Mode I stress intensity factor for the controlled problem. |
required |
KIIc
|
float
|
Mode II stress intensity factor for the controlled problem. |
required |
Tc
|
float
|
T-stress for the controlled problem. |
required |
KIp
|
float
|
Mode I stress intensity factor for the prescribed problem. |
required |
KIIp
|
float
|
Mode II stress intensity factor for the prescribed problem. |
required |
Tp
|
float
|
T-stress for the prescribed problem. |
required |
phi0
|
float
|
Initial crack angle. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The value of the perturbed objective function. |
Source code in src/gcrack/optimization_solvers.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | |
solve(phi0, SIFs_controlled, SIFs_prescribed, s)
Solves for the optimal crack propagation angle and load factor.
This function uses gradient descent with line search to find the optimal crack propagation angle and load factor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi0
|
float
|
Initial crack angle. |
required |
SIFs_controlled
|
dict
|
Stress intensity factors for the controlled problem. |
required |
SIFs_prescribed
|
dict
|
Stress intensity factors for the prescribed problem. |
required |
s
|
float
|
Internal length associated with T-stress. |
required |
Returns:
| Type | Description |
|---|---|
|
Tuple[float, float]: The optimal crack propagation angle and load factor. |
Source code in src/gcrack/optimization_solvers.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
gradient_descent_with_line_search(phi0, gra, tol=1e-06, max_iter=10000, kwargs={})
Performs gradient descent with line search to minimize an objective function.
This function implements gradient descent with a custom line search to find the minimum of an objective function. It is designed to handle discontinuities and "cups" in the objective function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
phi0
|
float
|
Initial guess for the crack propagation angle. |
required |
gra
|
Callable
|
The gradient of the objective function. |
required |
tol
|
float
|
Tolerance for convergence. |
1e-06
|
max_iter
|
int
|
Maximum number of iterations. |
10000
|
kwargs
|
dict
|
Additional arguments to pass to the gradient function. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The optimal crack propagation angle. |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the gradient descent fails to converge. |
Source code in src/gcrack/optimization_solvers.py
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |