Reference ASTM standards for material properties, testing methods, and design code compliance
American Society for Testing and Materials (ASTM) standards for material properties and testing methods.
Version: 1.0.0 Created: 2026-01-12 Category: SME / Codes & Standards
ASTM standards define the specific properties of materials (steel, plastic, rubber) and the exact methods used to test them. They are referenced by almost all other design codes (API, DNV, ASME).
ASTM specifications often have multiple Grades (strength levels) and Classes (heat treatment/processing).
Critical for offshore/subsea applications. Ensures material is ductile at operating temperature.
def select_bolt_grade(temperature_c):
"""
Suggest ASTM bolt grade based on service temperature.
"""
if temperature_c < -40:
return "ASTM A320 Grade L7 (Low Temp)"
elif temperature_c > 400:
return "ASTM A193 Grade B16 (High Temp)"
else:
return "ASTM A193 Grade B7 (Standard)"
/mnt/ace/O&G-Standards/ASTM/