Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion process/models/cs_fatigue.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def surface_stress_intensity_factor(hoop_stress, t, w, a, c, phi):
H2 = (
1.0e0
+ (-2.11e0 + 0.77e0 * c_a) * a_t # G21 * a / t
+ (0.55e0 - 0.72e0 * c_a**0.75e0 + 0.14e0 * c_a * 1.5e0) * a_t_2 # G22
+ (0.55e0 - 0.72e0 * c_a**0.75e0 + 0.14e0 * c_a**1.5e0) * a_t_2 # G22
)

# compute the unitless geometric correction
Expand Down
31 changes: 30 additions & 1 deletion tests/unit/models/test_cs_fatigue.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,36 @@ def test_embedded_stress_intensity_factor(
0.0026699999999999996,
1.5707963267948966,
35.744426954844926,
)
),
# a > c branch, phi = pi/2 and phi = 0. Expected values computed
# independently from the Newman-Raju surface-crack equations
# (NASA TM, "Stress-Intensity Factor Equations for Cracks in
# Three-Dimensional Finite Bodies Subjected to Tension and Bending
# Loads") for a/c > 1 with zero bending:
# Q = 1 + 1.464(c/a)^1.65, M1 = sqrt(c/a)(1 + 0.04 c/a),
# M2 = 0.2(c/a)^4, M3 = -0.11(c/a)^4,
# g = 1 + [0.1 + 0.35 (c/a)(a/t)^2](1 - sin(phi))^2,
# f_phi = [(c/a)^2 sin^2(phi) + cos^2(phi)]^0.25,
# f_w = sec[pi c/(2w) sqrt(a/t)]^0.5,
# K = sigma (M1 + M2 (a/t)^2 + M3 (a/t)^4) g f_phi f_w sqrt(pi a / Q)
(
659.99351867335338,
0.0063104538380405924,
0.0063104538380405924,
0.0026699999999999996,
0.00088999999999999995,
1.5707963267948966,
18.451605120658158,
),
(
659.99351867335338,
0.0063104538380405924,
0.0063104538380405924,
0.0026699999999999996,
0.00088999999999999995,
0.0,
35.82251644569079,
),
],
)
def test_surface_stress_intensity_factor(
Expand Down
Loading