commit 1cb4ea07eb364f8b3746ea9824dadfd31cab7988 Author: noisedestroyers Date: Sun Feb 15 10:03:46 2026 -0500 first commit diff --git a/Every_Test_Has_a_Story.pptx b/Every_Test_Has_a_Story.pptx new file mode 100644 index 0000000..af9ebdd Binary files /dev/null and b/Every_Test_Has_a_Story.pptx differ diff --git a/assets/1957_buick_dashboard.jpg b/assets/1957_buick_dashboard.jpg new file mode 100644 index 0000000..d76a9f6 Binary files /dev/null and b/assets/1957_buick_dashboard.jpg differ diff --git a/assets/1957_chevy_styling.jpg b/assets/1957_chevy_styling.jpg new file mode 100644 index 0000000..c66595a Binary files /dev/null and b/assets/1957_chevy_styling.jpg differ diff --git a/assets/atd_family.png b/assets/atd_family.png new file mode 100644 index 0000000..39145eb Binary files /dev/null and b/assets/atd_family.png differ diff --git a/assets/cadaver_crash_test.jpg b/assets/cadaver_crash_test.jpg new file mode 100644 index 0000000..9041c05 Binary files /dev/null and b/assets/cadaver_crash_test.jpg differ diff --git a/assets/child_dummy_booster.jpg b/assets/child_dummy_booster.jpg new file mode 100644 index 0000000..8cd4faa Binary files /dev/null and b/assets/child_dummy_booster.jpg differ diff --git a/assets/crabi_infant_dummy.jpg b/assets/crabi_infant_dummy.jpg new file mode 100644 index 0000000..9abaad5 Binary files /dev/null and b/assets/crabi_infant_dummy.jpg differ diff --git a/assets/crash_test_dummies_subaru.jpg b/assets/crash_test_dummies_subaru.jpg new file mode 100644 index 0000000..9c41f6b Binary files /dev/null and b/assets/crash_test_dummies_subaru.jpg differ diff --git a/assets/euro_ncap_logo.png b/assets/euro_ncap_logo.png new file mode 100644 index 0000000..4d94069 --- /dev/null +++ b/assets/euro_ncap_logo.png @@ -0,0 +1,223 @@ + + +image/svg+xml \ No newline at end of file diff --git a/assets/hybrid_ii_dummies.jpg b/assets/hybrid_ii_dummies.jpg new file mode 100644 index 0000000..07edea4 Binary files /dev/null and b/assets/hybrid_ii_dummies.jpg differ diff --git a/assets/hybrid_iii_family.jpg b/assets/hybrid_iii_family.jpg new file mode 100644 index 0000000..a939d5b Binary files /dev/null and b/assets/hybrid_iii_family.jpg differ diff --git a/assets/iihs_crash_hall.jpg b/assets/iihs_crash_hall.jpg new file mode 100644 index 0000000..0910d67 Binary files /dev/null and b/assets/iihs_crash_hall.jpg differ diff --git a/assets/iihs_frontal_crash_test.jpg b/assets/iihs_frontal_crash_test.jpg new file mode 100644 index 0000000..b71d946 Binary files /dev/null and b/assets/iihs_frontal_crash_test.jpg differ diff --git a/assets/john_stapp_portrait.jpg b/assets/john_stapp_portrait.jpg new file mode 100644 index 0000000..b7d7116 Binary files /dev/null and b/assets/john_stapp_portrait.jpg differ diff --git a/assets/john_stapp_rocket_sled.jpg b/assets/john_stapp_rocket_sled.jpg new file mode 100644 index 0000000..c6100ed Binary files /dev/null and b/assets/john_stapp_rocket_sled.jpg differ diff --git a/assets/ralph_nader_1975.jpg b/assets/ralph_nader_1975.jpg new file mode 100644 index 0000000..af46a85 Binary files /dev/null and b/assets/ralph_nader_1975.jpg differ diff --git a/assets/roof_strength_test.jpg b/assets/roof_strength_test.jpg new file mode 100644 index 0000000..9df390f Binary files /dev/null and b/assets/roof_strength_test.jpg differ diff --git a/assets/seatbelt_three_point.jpg b/assets/seatbelt_three_point.jpg new file mode 100644 index 0000000..744cf44 Binary files /dev/null and b/assets/seatbelt_three_point.jpg differ diff --git a/assets/sierra_sam.jpg b/assets/sierra_sam.jpg new file mode 100644 index 0000000..35bfe1e Binary files /dev/null and b/assets/sierra_sam.jpg differ diff --git a/assets/small_overlap_test.jpg b/assets/small_overlap_test.jpg new file mode 100644 index 0000000..f446970 Binary files /dev/null and b/assets/small_overlap_test.jpg differ diff --git a/assets/thor_dummy.jpg b/assets/thor_dummy.jpg new file mode 100644 index 0000000..8de4205 Binary files /dev/null and b/assets/thor_dummy.jpg differ diff --git a/assets/thor_male_female.jpg b/assets/thor_male_female.jpg new file mode 100644 index 0000000..7278a6f Binary files /dev/null and b/assets/thor_male_female.jpg differ diff --git a/assets/unsafe_at_any_speed_cover.jpg b/assets/unsafe_at_any_speed_cover.jpg new file mode 100644 index 0000000..73a14aa Binary files /dev/null and b/assets/unsafe_at_any_speed_cover.jpg differ diff --git a/assets/wiaman_dummy.jpg b/assets/wiaman_dummy.jpg new file mode 100644 index 0000000..bcb2ff7 Binary files /dev/null and b/assets/wiaman_dummy.jpg differ diff --git a/assets/worldsid_dummy.jpg b/assets/worldsid_dummy.jpg new file mode 100644 index 0000000..d582438 Binary files /dev/null and b/assets/worldsid_dummy.jpg differ diff --git a/create_presentation.py b/create_presentation.py new file mode 100644 index 0000000..332214b --- /dev/null +++ b/create_presentation.py @@ -0,0 +1,948 @@ +#!/usr/bin/env python3 +""" +Create PowerPoint presentation: "Every Test Has a Story" +Safety Testing History for DTS +""" + +from pptx import Presentation +from pptx.util import Inches, Pt +from pptx.dml.color import RGBColor +from pptx.enum.text import PP_ALIGN, MSO_ANCHOR +from pptx.enum.shapes import MSO_SHAPE +from pptx.oxml.ns import nsmap +from pptx.oxml import parse_xml + +# Create presentation with widescreen dimensions +prs = Presentation() +prs.slide_width = Inches(13.333) +prs.slide_height = Inches(7.5) + +# Color scheme +DARK_BLUE = RGBColor(0, 51, 102) +ACCENT_BLUE = RGBColor(0, 112, 192) +ACCENT_RED = RGBColor(192, 0, 0) +DARK_GRAY = RGBColor(64, 64, 64) +LIGHT_GRAY = RGBColor(200, 200, 200) + + +def add_title_slide(title, subtitle=""): + """Add a title slide""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Title + title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(2.5), Inches(12.333), Inches(1.5) + ) + tf = title_box.text_frame + p = tf.paragraphs[0] + p.text = title + p.font.size = Pt(54) + p.font.bold = True + p.font.color.rgb = DARK_BLUE + p.alignment = PP_ALIGN.CENTER + + # Subtitle + if subtitle: + sub_box = slide.shapes.add_textbox( + Inches(0.5), Inches(4.2), Inches(12.333), Inches(1) + ) + tf = sub_box.text_frame + p = tf.paragraphs[0] + p.text = subtitle + p.font.size = Pt(28) + p.font.color.rgb = DARK_GRAY + p.alignment = PP_ALIGN.CENTER + + return slide + + +def add_section_slide(title, subtitle=""): + """Add a section divider slide""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Add colored background bar + shape = slide.shapes.add_shape( + MSO_SHAPE.RECTANGLE, Inches(0), Inches(2.8), Inches(13.333), Inches(2) + ) + shape.fill.solid() + shape.fill.fore_color.rgb = DARK_BLUE + shape.line.fill.background() + + # Title on bar + title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(3), Inches(12.333), Inches(1.2) + ) + tf = title_box.text_frame + p = tf.paragraphs[0] + p.text = title + p.font.size = Pt(44) + p.font.bold = True + p.font.color.rgb = RGBColor(255, 255, 255) + p.alignment = PP_ALIGN.CENTER + + # Subtitle below bar + if subtitle: + sub_box = slide.shapes.add_textbox( + Inches(0.5), Inches(5), Inches(12.333), Inches(0.8) + ) + tf = sub_box.text_frame + p = tf.paragraphs[0] + p.text = subtitle + p.font.size = Pt(24) + p.font.italic = True + p.font.color.rgb = DARK_GRAY + p.alignment = PP_ALIGN.CENTER + + return slide + + +def add_content_slide(title, bullets, footnote=""): + """Add a content slide with title and bullets""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Title + title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(0.3), Inches(12.333), Inches(1) + ) + tf = title_box.text_frame + p = tf.paragraphs[0] + p.text = title + p.font.size = Pt(36) + p.font.bold = True + p.font.color.rgb = DARK_BLUE + + # Underline + line = slide.shapes.add_shape( + MSO_SHAPE.RECTANGLE, Inches(0.5), Inches(1.1), Inches(12.333), Inches(0.03) + ) + line.fill.solid() + line.fill.fore_color.rgb = ACCENT_BLUE + line.line.fill.background() + + # Bullets + body_box = slide.shapes.add_textbox( + Inches(0.5), Inches(1.4), Inches(12.333), Inches(5.5) + ) + tf = body_box.text_frame + tf.word_wrap = True + + for i, bullet in enumerate(bullets): + if i == 0: + p = tf.paragraphs[0] + else: + p = tf.add_paragraph() + + # Handle sub-bullets (indented with -) + if bullet.startswith(" -"): + p.text = " • " + bullet.strip().lstrip("-").strip() + p.font.size = Pt(20) + p.level = 1 + else: + p.text = "• " + bullet.strip().lstrip("-").strip() + p.font.size = Pt(24) + p.level = 0 + + p.font.color.rgb = DARK_GRAY + p.space_after = Pt(12) + + # Footnote + if footnote: + foot_box = slide.shapes.add_textbox( + Inches(0.5), Inches(6.8), Inches(12.333), Inches(0.5) + ) + tf = foot_box.text_frame + p = tf.paragraphs[0] + p.text = footnote + p.font.size = Pt(14) + p.font.italic = True + p.font.color.rgb = LIGHT_GRAY + + return slide + + +def add_quote_slide(quote, attribution=""): + """Add a quote slide""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Quote marks background (subtle) + quote_box = slide.shapes.add_textbox( + Inches(1), Inches(2), Inches(11.333), Inches(3) + ) + tf = quote_box.text_frame + tf.word_wrap = True + p = tf.paragraphs[0] + p.text = f'"{quote}"' + p.font.size = Pt(32) + p.font.italic = True + p.font.color.rgb = DARK_BLUE + p.alignment = PP_ALIGN.CENTER + + # Attribution + if attribution: + attr_box = slide.shapes.add_textbox( + Inches(1), Inches(5.2), Inches(11.333), Inches(0.8) + ) + tf = attr_box.text_frame + p = tf.paragraphs[0] + p.text = f"— {attribution}" + p.font.size = Pt(24) + p.font.color.rgb = DARK_GRAY + p.alignment = PP_ALIGN.CENTER + + return slide + + +def add_stat_slide(big_number, description, context=""): + """Add a big statistic slide""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Big number + num_box = slide.shapes.add_textbox( + Inches(0.5), Inches(1.5), Inches(12.333), Inches(2.5) + ) + tf = num_box.text_frame + p = tf.paragraphs[0] + p.text = big_number + p.font.size = Pt(120) + p.font.bold = True + p.font.color.rgb = ACCENT_BLUE + p.alignment = PP_ALIGN.CENTER + + # Description + desc_box = slide.shapes.add_textbox( + Inches(0.5), Inches(4), Inches(12.333), Inches(1) + ) + tf = desc_box.text_frame + p = tf.paragraphs[0] + p.text = description + p.font.size = Pt(36) + p.font.color.rgb = DARK_BLUE + p.alignment = PP_ALIGN.CENTER + + # Context + if context: + ctx_box = slide.shapes.add_textbox( + Inches(1), Inches(5.2), Inches(11.333), Inches(1.5) + ) + tf = ctx_box.text_frame + tf.word_wrap = True + p = tf.paragraphs[0] + p.text = context + p.font.size = Pt(20) + p.font.color.rgb = DARK_GRAY + p.alignment = PP_ALIGN.CENTER + + return slide + + +def add_two_column_slide(title, left_title, left_bullets, right_title, right_bullets): + """Add a two-column comparison slide""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Title + title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(0.3), Inches(12.333), Inches(1) + ) + tf = title_box.text_frame + p = tf.paragraphs[0] + p.text = title + p.font.size = Pt(36) + p.font.bold = True + p.font.color.rgb = DARK_BLUE + + # Underline + line = slide.shapes.add_shape( + MSO_SHAPE.RECTANGLE, Inches(0.5), Inches(1.1), Inches(12.333), Inches(0.03) + ) + line.fill.solid() + line.fill.fore_color.rgb = ACCENT_BLUE + line.line.fill.background() + + # Left column title + left_title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(1.4), Inches(5.9), Inches(0.6) + ) + tf = left_title_box.text_frame + p = tf.paragraphs[0] + p.text = left_title + p.font.size = Pt(24) + p.font.bold = True + p.font.color.rgb = ACCENT_BLUE + + # Left column bullets + left_box = slide.shapes.add_textbox( + Inches(0.5), Inches(2), Inches(5.9), Inches(4.5) + ) + tf = left_box.text_frame + tf.word_wrap = True + for i, bullet in enumerate(left_bullets): + if i == 0: + p = tf.paragraphs[0] + else: + p = tf.add_paragraph() + p.text = "• " + bullet + p.font.size = Pt(20) + p.font.color.rgb = DARK_GRAY + p.space_after = Pt(8) + + # Right column title + right_title_box = slide.shapes.add_textbox( + Inches(6.9), Inches(1.4), Inches(5.9), Inches(0.6) + ) + tf = right_title_box.text_frame + p = tf.paragraphs[0] + p.text = right_title + p.font.size = Pt(24) + p.font.bold = True + p.font.color.rgb = ACCENT_BLUE + + # Right column bullets + right_box = slide.shapes.add_textbox( + Inches(6.9), Inches(2), Inches(5.9), Inches(4.5) + ) + tf = right_box.text_frame + tf.word_wrap = True + for i, bullet in enumerate(right_bullets): + if i == 0: + p = tf.paragraphs[0] + else: + p = tf.add_paragraph() + p.text = "• " + bullet + p.font.size = Pt(20) + p.font.color.rgb = DARK_GRAY + p.space_after = Pt(8) + + return slide + + +def add_timeline_slide(title, events): + """Add a timeline slide with year-event pairs""" + slide_layout = prs.slide_layouts[6] # Blank + slide = prs.slides.add_slide(slide_layout) + + # Title + title_box = slide.shapes.add_textbox( + Inches(0.5), Inches(0.3), Inches(12.333), Inches(1) + ) + tf = title_box.text_frame + p = tf.paragraphs[0] + p.text = title + p.font.size = Pt(36) + p.font.bold = True + p.font.color.rgb = DARK_BLUE + + # Events + y_pos = 1.3 + for year, event in events: + # Year + year_box = slide.shapes.add_textbox( + Inches(0.5), Inches(y_pos), Inches(1.5), Inches(0.5) + ) + tf = year_box.text_frame + p = tf.paragraphs[0] + p.text = str(year) + p.font.size = Pt(22) + p.font.bold = True + p.font.color.rgb = ACCENT_BLUE + + # Event + event_box = slide.shapes.add_textbox( + Inches(2.2), Inches(y_pos), Inches(10.5), Inches(0.5) + ) + tf = event_box.text_frame + p = tf.paragraphs[0] + p.text = event + p.font.size = Pt(20) + p.font.color.rgb = DARK_GRAY + + y_pos += 0.6 + + return slide + + +# ============================================================ +# BUILD THE PRESENTATION +# ============================================================ + +# SLIDE 1: Title +add_title_slide( + "Every Test Has a Story", + "How Tragedy, Data, and Engineering Created Modern Crash Testing", +) + +# SLIDE 2: The Pattern +add_content_slide( + "The Pattern", + [ + "Every crash test exists because people were dying in a specific way", + "The pattern is always the same:", + " - TRAGEDY: People die in a specific way we don't understand", + " - INVESTIGATION: Researchers ask 'why?'", + " - DATA: Testing reveals the mechanism", + " - STANDARD: A test is created to measure it", + " - ENGINEERING: Manufacturers design to pass", + " - LIVES SAVED: The specific death mode decreases", + "Then a new tragedy emerges... and the cycle repeats", + ], +) + +# SLIDE 3: The Big Number +add_stat_slide( + "77%", + "Reduction in traffic fatality rate since 1970", + "1970: 4.74 deaths per 100M miles → Today: 1.10 deaths per 100M miles\n117,000 lives saved annually compared to 1970 rates", +) + +# SECTION: Chapter 1 - Frontal Impact +add_section_slide("Chapter 1: Frontal Impact", "The crash everyone thinks about") + +# SLIDE: The Dark Age +add_content_slide( + "Before 1968: The Dark Age", + [ + "No federal safety requirements existed", + "Seatbelts were optional accessories", + "Dashboards were solid steel and chrome", + "Steering columns were rigid metal shafts pointed at driver's chest", + "Over 1 MILLION people were killed by steering columns alone", + "Industry position: 'Crashes are caused by bad drivers, not bad cars'", + "The problem? No one had data to prove otherwise", + ], + "Fun fact: In 1937, death rate was 14.00 per 100M VMT — nearly 13x today's rate", +) + +# SLIDE: FMVSS 208 +add_content_slide( + "FMVSS 208: Where It All Began (1968)", + [ + "First Federal Motor Vehicle Safety Standard for occupant protection", + "Initially required only seatbelt anchorages", + "30 mph frontal barrier test added later", + "This one standard drove development of:", + " - Modern seatbelt systems", + " - Frontal airbags", + " - Advanced restraint systems", + "But the road to airbags was not smooth...", + ], +) + +# SLIDE: Airbag Wars Timeline +add_timeline_slide( + "The Airbag Wars: 28 Years of Fighting", + [ + ("1970", "NHTSA proposes airbag requirement"), + ("1972", "GM offers airbags on Oldsmobiles — few buyers"), + ("1976", "Industry lobbying delays requirement"), + ("1977", "Joan Claybrook pushes airbag mandate"), + ("1981", "Reagan administration RESCINDS mandate"), + ("1983", "Supreme Court rules rescission was arbitrary"), + ("1984", "Compromise: 'automatic restraint' required"), + ("1998", "FINALLY: Frontal airbags mandatory — 28 years later"), + ], +) + +# SLIDE: Airbag Crisis +add_content_slide( + "The Depowering Crisis (1990s)", + [ + "Early airbags were designed for unbelted adult males", + "Deployed with maximum force in all crashes", + "1990: First airbag fatality — a child in front seat", + "1997: 53 deaths from airbag deployment (peak year)", + " - Victims: mostly children and small women sitting close to airbag", + "The fix (1998-2000):", + " - 'Depowered' airbags with lower inflation force", + " - Weight sensors to detect occupant size", + " - Suppression systems for small occupants", + "Today: <10 airbag deaths/year vs. ~2,800 lives saved/year", + ], + "The data showed the problem. Better data gave us the fix.", +) + +# SLIDE: NCAP Introduction +add_content_slide( + "NHTSA NCAP: Consumer Power (1979)", + [ + "Joan Claybrook's innovation: Test ABOVE the minimum standard", + "35 mph instead of 30 mph — more demanding", + "Publish results as star ratings — let consumers decide", + "Industry reaction: 'Unfair! Misleading! Will confuse consumers!'", + "What actually happened:", + " - '5-star safety rating' became marketing gold", + " - Manufacturers competed for top ratings", + " - Model for Euro NCAP, IIHS, and programs worldwide", + "Public data created accountability", + ], +) + +# SLIDE: IIHS Moderate Overlap +add_content_slide( + "IIHS Moderate Overlap (1995)", + [ + "The problem with full frontal: Only 25% of real crashes are 'full frontal'", + "Most crashes are offset — hitting at an angle or with one side", + "European research showed offset crashes were MORE deadly", + "IIHS innovation: 40% overlap into deformable barrier at 40 mph", + "Tests structural engagement on ONE side only", + "Early results shocked the industry:", + " - Some '5-star' NCAP vehicles performed poorly", + " - A-pillars folded, footwells crushed", + "Manufacturers redesigned front structures", + ], +) + +# SLIDE: Small Overlap Introduction +add_stat_slide( + "25%", + "The width that changed everything", + "In 2012, IIHS introduced the small overlap test: only 25% of the vehicle hits a rigid barrier", +) + +# SLIDE: Small Overlap Results +add_two_column_slide( + "Small Overlap Test (2012): The Shock", + "What Failed", + [ + "BMW 3 Series — MARGINAL", + "Mercedes C-Class — MARGINAL", + "Audi A4 — MARGINAL", + "Lexus IS — MARGINAL", + "Lexus ES — MARGINAL", + "Lincoln MKZ — POOR", + "Buick Regal — POOR", + "Volkswagen CC — POOR", + ], + "What Passed", + [ + "Acura TL — GOOD", + "Volvo S60 — GOOD", + "Infiniti G — ACCEPTABLE", + "", + "These were luxury vehicles that", + "earned top marks in every other test.", + "", + "The small overlap exposed a", + "critical structural blind spot.", + ], +) + +# SLIDE: Small Overlap Response +add_content_slide( + "The Industry Response", + [ + "Initial reaction: 'The test isn't realistic!'", + "Then: Rapid engineering response", + "What had to change:", + " - Structural members added outboard of frame rails", + " - A-pillar connection reinforced", + " - Firewall 'blocking' structures added", + " - Footwell intrusion resistance improved", + "Timeline:", + " - 2012: Most vehicles Poor or Marginal", + " - 2014: Mixed results — some improve", + " - 2016: Most new designs earn Good", + " - 2017: IIHS adds PASSENGER side test (prevent asymmetric gaming)", + ], + "Five years. From widespread failure to widespread success.", +) + +# SECTION: Chapter 2 - Side Impact +add_section_slide("Chapter 2: Side Impact", "The door that wasn't a barrier") + +# SLIDE: Side Impact Stats +add_two_column_slide( + "Side Impact: The Neglected Crash", + "The Statistics", + [ + "25% of all crashes", + "30% of all fatalities", + "More deadly PER CRASH than frontal", + "", + "Why so deadly?", + "• Minimal crush space", + "• No crumple zone", + "• Direct loading to torso and head", + ], + "The History of Neglect", + [ + "1968: FMVSS 208 (frontal) — nothing for side", + "1979: NCAP ratings (frontal) — nothing for side", + "1990: First dynamic side test (FMVSS 214)", + "2003: IIHS side test", + "", + "Side got serious attention", + "25 YEARS after frontal.", + ], +) + +# SLIDE: Side Airbag Revolution +add_timeline_slide( + "The Side Airbag Revolution", + [ + ("Pre-1995", "Nothing between your ribs and the door"), + ("1995", "Volvo introduces first side torso airbag"), + ("1998", "First side curtain airbags (head protection)"), + ("2003", "IIHS side test launched — accelerates adoption"), + ("2007", "FMVSS 214 pole test requires head protection"), + ("2010", "Side curtain airbags standard on most vehicles"), + ("2021", "IIHS updates side test: heavier, taller, faster barrier"), + ], +) + +# SLIDE: 2021 Side Update +add_content_slide( + "IIHS Side Test Update (2021)", + [ + "The vehicle fleet changed — tests must change too", + "SUVs and trucks now dominate sales", + "Old barrier simulated an average car", + "New barrier simulates modern SUV/truck:", + " - Weight: 4,200 lbs (was 3,300 lbs)", + " - Speed: 37 mph (was 31 mph)", + " - Profile: Taller to match SUV front ends", + "Results: Many 'Good' vehicles dropped to lower ratings", + "Manufacturers redesigning structures AGAIN", + ], + "The test evolved because the threat evolved.", +) + +# SECTION: Chapter 3 - Rollover & Roof +add_section_slide("Chapter 3: Rollover & Roof", "When the sky falls") + +# SLIDE: Rollover Stats +add_stat_slide( + "3% → 30%", + "Rollovers: 3% of crashes, but 30% of fatalities", + "Ejection in rollover is 77% fatal • SUVs had higher rollover rates due to high center of gravity", +) + +# SLIDE: Roof Strength +add_two_column_slide( + "Roof Crush Resistance (FMVSS 216)", + "The Original Standard (1973)", + [ + "Static test: plate pressed onto roof", + "Required: 1.5× vehicle weight", + "Only ONE side tested", + "This standard was unchanged for 36 YEARS", + "", + "Advocates argued for decades:", + "• 1.5× is far too weak", + "• Roofs collapse in survivable crashes", + "• Should be 4× or higher", + ], + "The 2009 Upgrade", + [ + "Standard DOUBLED to 3× vehicle weight", + "BOTH sides must be tested", + "", + "What changed in vehicles:", + "• Stronger B-pillars", + "• Reinforced roof rails", + "• Ultra-high-strength steel", + "", + "IIHS pushed further: 4× for 'Good' rating", + "Many vehicles now achieve 5-6×", + ], +) + +# SLIDE: ESC +add_content_slide( + "The Other Solution: Electronic Stability Control", + [ + "Roof strength protects IN rollovers", + "ESC PREVENTS rollovers from happening", + "How it works:", + " - Detects loss of control (compares steering input to actual direction)", + " - Applies individual brakes to correct", + " - Acts in milliseconds — faster than human reaction", + "Effectiveness: 75% reduction in fatal single-vehicle rollovers", + "Required by FMVSS 126 (2012)", + "Combined with side curtain airbags = dramatically fewer rollover deaths", + ], + "You prevent the rollover with ESC. If one happens anyway, the strong roof protects you.", +) + +# SECTION: Chapter 4 - Hidden Killers +add_section_slide("Chapter 4: Fire & Whiplash", "The hidden killers") + +# SLIDE: Ford Pinto +add_content_slide( + "FMVSS 301: The Ford Pinto Scandal", + [ + "Post-crash fires were killing people in survivable crashes", + "Pinto's rear-mounted fuel tank could rupture in rear impacts", + "The infamous internal memo (1973):", + " - Fix cost: $11/car × 12.5 million cars = $137 million", + " - 'Acceptable' deaths: 180 × $200,000 = $36 million", + " - FORD CHOSE NOT TO FIX THE DESIGN", + "The reckoning:", + " - 1977: Mother Jones exposé 'Pinto Madness'", + " - 1978: Recall of 1.5 million Pintos", + " - 1978: First criminal prosecution of an automaker", + " - FMVSS 301 strengthened in direct response", + ], + "Estimated 27-180 deaths from this single design decision", +) + +# SLIDE: Whiplash +add_content_slide( + "IIHS Head Restraints: The Whiplash Epidemic", + [ + "Over 1 MILLION whiplash injuries per year in US", + "Most occur in low-speed rear impacts", + "Chronic pain can persist for years", + "The problem with early head restraints:", + " - Set too low (didn't support head)", + " - Too far back (head snapped backward before contact)", + " - Often adjusted incorrectly or removed", + "Swedish innovation: 'Active' head restraints", + " - Move up and forward during crash", + " - Engage head earlier, reduce relative motion", + "IIHS dynamic test (2004): BioRID II dummy, rewards active systems", + ], +) + +# SECTION: Chapter 5 - Active Safety +add_section_slide( + "Chapter 5: Active Safety", "From surviving crashes to preventing them" +) + +# SLIDE: The Shift +add_two_column_slide( + "The Philosophy Shift", + "The Old Model (Passive Safety)", + [ + "Assume crash WILL happen", + "Focus on protection DURING crash", + "• Seatbelts", + "• Airbags", + "• Structure", + "", + "After 50 years, we've gotten very good", + "at protecting people in crashes", + ], + "The New Model (Active Safety)", + [ + "Try to PREVENT the crash", + "Warn driver, brake automatically", + "• AEB (Autonomous Emergency Braking)", + "• ESC (Electronic Stability Control)", + "• Lane Keeping", + "• Blind Spot Monitoring", + "", + "If crash unavoidable, passive kicks in", + ], +) + +# SLIDE: AEB +add_content_slide( + "IIHS Front Crash Prevention (2013)", + [ + "Tests Autonomous Emergency Braking (AEB) systems", + "Vehicle approaches stationary target at 12 mph and 25 mph", + "Measures: Does it warn? Does it brake? How much speed reduction?", + "Ratings: Superior / Advanced / Basic", + "The 2016 Industry Agreement:", + " - 20 automakers voluntarily committed to make AEB standard", + " - No government mandate required", + " - Achieved by 2022", + "The fastest safety technology adoption in history", + "AEB reduces rear-end crashes by 50%+", + ], + "94% of crashes involve human error. AEB reacts in milliseconds.", +) + +# SLIDE: Pedestrians +add_content_slide( + "The Pedestrian Crisis", + [ + "While occupant deaths have FALLEN, pedestrian deaths are RISING", + " - 2009: 4,109 pedestrian deaths", + " - 2022: 7,500+ pedestrian deaths", + "Why?", + " - Larger vehicles (SUVs, trucks) dominate sales", + " - Higher front ends hit torso/head, not legs", + " - Distracted driving and walking (phones)", + "IIHS Pedestrian AEB testing (2019):", + " - Adult pedestrian target crossing road", + " - Child pedestrian target", + " - Day and night scenarios", + "This is an active area of development", + ], +) + +# SECTION: Chapter 6 - Pedestrian Protection +add_section_slide("Chapter 6: Pedestrian Protection", "When the car hits you") + +# SLIDE: Euro NCAP Pedestrian +add_content_slide( + "Euro NCAP Pedestrian Testing (Since 1997)", + [ + "Europe has tested pedestrian protection for 25+ years", + "Test methods use impactors (not full pedestrian dummies):", + " - Headform fired at hood surface", + " - Legform fired at bumper", + " - Measures acceleration, force, bending", + "What it drove:", + " - Active hood hinges (pop up to create crush space)", + " - Energy-absorbing bumper structures", + " - External pedestrian airbags (Volvo)", + "US has NO federal pedestrian crashworthiness standard", + "We test if cars AVOID pedestrians (AEB), not what happens if they don't", + ], + "Europe: 25 years ahead. US: Playing catch-up.", +) + +# SECTION: Chapter 7 - Sports/Helmets +add_section_slide("Chapter 7: Beyond Automotive", "Same physics, different arena") + +# SLIDE: Concussion Crisis +add_content_slide( + "The Concussion Crisis", + [ + "2005: Dr. Bennet Omalu publishes first CTE case in NFL player", + "2009: NFL finally acknowledges concussion problem", + "2011: $765 million settlement with former players", + "The science:", + " - Concussion: Brain injury from rapid deceleration", + " - CTE: Degenerative disease from repeated impacts", + " - Even 'subconcussive' impacts accumulate", + "The question: Can better helmets reduce brain injury?", + "Same question we answer in automotive: How do we protect the head?", + ], +) + +# SLIDE: NOCSAE +add_stat_slide( + "90%", + "Reduction in football fatalities since NOCSAE standards (1973)", + "1960s: 26 deaths/year • 1970s: 15/year • 2010s: 3/year", +) + +# SLIDE: Helmet Testing +add_two_column_slide( + "Helmet Testing Methods", + "Drop Tower Test", + [ + "Classic certification test", + "Helmet on headform dropped onto anvil", + "Measure head deceleration", + 'NOCSAE: 60" drop, SI < 1200', + "Multiple locations tested", + "Hot, cold, wet conditions", + "", + "Simple, repeatable, historical baseline", + ], + "Linear Impactor Test", + [ + "Newer, more game-realistic", + "Ram fired at helmet at various angles", + "Higher speeds achievable (20+ mph)", + "Measures rotation, not just linear", + "NFL/NFLPA protocol uses both", + "", + "Concussions may be caused more by", + "ROTATION than linear acceleration", + ], +) + +# SLIDE: Same Physics +add_content_slide( + "The Automotive-Sports Connection", + [ + "Same physics, same instrumentation:", + " - What we protect: Head, brain", + " - Mechanism: Deceleration, rotation", + " - Measurement: Accelerometer", + " - Metric: HIC (auto) ≈ SI (helmets)", + "DTS products used in BOTH:", + " - Same accelerometers in crash dummies and helmet headforms", + " - Same data acquisition systems", + " - Same calibration standards", + "Injury thresholds from automotive cadaver research", + "inform helmet certification standards", + "It's the same science. Same data. Different application.", + ], +) + +# SECTION: Closing +add_section_slide("The Pattern Continues", "What's next?") + +# SLIDE: The Cycle +add_content_slide( + "Every Test Exposed What the Previous Tests Missed", + [ + "1968: FMVSS 208 (frontal) → but side was neglected", + "1990: FMVSS 214 (side) → but offset crashes were missed", + "1995: IIHS Moderate Overlap → but small overlap was missed", + "2012: IIHS Small Overlap → but passenger side was gamed", + "2017: Small Overlap Passenger → but fleet changed (bigger SUVs)", + "2021: Updated Side Test → gaps remain...", + "What's next?", + " - Rear seat occupant protection", + " - Far-side impacts", + " - Vehicle compatibility (small cars vs. trucks)", + " - EV-specific tests (batteries, mass distribution)", + ], +) + +# SLIDE: The Data Thread +add_content_slide( + "Every Test Requires Data", + [ + "Frontal crash: Head, chest, femur loads — DTS instrumentation", + "Side crash: Pelvis, thorax, head loads — DTS instrumentation", + "Roof crush: Force vs. displacement — DTS load cells", + "Sled tests: Dummy kinematics — DTS systems", + "AEB tests: Vehicle dynamics, timing — expanding market", + "Pedestrian impactors: Headform acceleration — DTS accelerometers", + "Helmet testing: Same accelerometers, same DAQ", + "", + "Test methods evolve. Pass/fail thresholds change.", + "Vehicles change. DATA REQUIREMENTS REMAIN.", + "", + "DTS provides the data that makes every test meaningful.", + ], +) + +# SLIDE: Quote +add_quote_slide( + "A crashed car is gone forever. The data is what remains.", "Industry saying" +) + +# SLIDE: Bottom Line +add_content_slide( + "Why This Matters", + [ + "77% reduction in fatality rate since 1970", + "~117,000 lives saved per year compared to 1970 rates", + "Each of those lives was saved by:", + " - A tragedy that revealed a problem", + " - Research that generated data", + " - A test that measured the problem", + " - Engineering that solved it", + " - Data that validated the solution", + "DTS is in the chain at steps 2, 3, and 5.", + "We don't make cars safer directly.", + "We capture the data that lets engineers make cars safer.", + "THE DATA SAVES LIVES.", + ], +) + +# SLIDE: Q&A +add_title_slide( + "Questions?", + "Every test has a story. Every story started with tragedy.\nEvery tragedy ended when we got the data to understand it.", +) + +# Save the presentation +prs.save("Every_Test_Has_a_Story.pptx") +print("Presentation created: Every_Test_Has_a_Story.pptx") +print(f"Total slides: {len(prs.slides)}") diff --git a/presentation_data_saves_lives.md b/presentation_data_saves_lives.md new file mode 100644 index 0000000..71c91e1 --- /dev/null +++ b/presentation_data_saves_lives.md @@ -0,0 +1,1003 @@ +# The Data That Saves Lives +## How Crash Testing Went from Guesswork to Science +### DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +# CENTRAL THESIS + +> **"A crashed car is gone forever. The data is what remains."** + +Every safety innovation in automotive history - from seatbelts to airbags to autonomous braking - exists because someone captured the right data at the right moment. Before data, we had opinions. After data, we had proof. And proof saves lives. + +**This presentation follows the story of data:** +1. **HISTORY** - The desperate quest for data when we had none +2. **INFLUENCES** - Who uses data today and how it shapes the industry +3. **TEST METHODS** - How we capture the data that saves lives + +**The throughline:** DTS is part of an unbroken chain from John Stapp's rocket sled to tomorrow's autonomous vehicles. We are the keepers of the data. + +--- + +# PRESENTATION STRUCTURE + +| Section | Time | Slides | Theme | +|---------|------|--------|-------| +| Opening | 3 min | 1-2 | The power of data | +| **SECTION 1: HISTORY** | 15 min | 3-10 | The quest for data | +| **SECTION 2: INFLUENCES** | 12 min | 11-16 | Who uses data today | +| **SECTION 3: TEST METHODS** | 12 min | 17-22 | How we capture data | +| Closing | 3 min | 23-24 | Our role in the chain | +| Q&A | 5+ min | 25 | Discussion | + +--- + +# OPENING + +--- + +## SLIDE 1: Title Slide + +**Title:** "The Data That Saves Lives" +**Subtitle:** The Story of Crash Testing - From Guesswork to Science +**Presenter:** Ben, Application Engineer +**Company:** Diversified Technical Systems + +**Visual:** Split image - vintage crash test (black & white) vs. modern instrumented test + +--- + +## SLIDE 2: The Power of One Number + +### Content: +**The number that changed everything:** + +# 77% + +**That's the reduction in traffic fatality rate since 1970.** + +- 1970: 4.74 deaths per 100 million miles +- Today: 1.10 deaths per 100 million miles +- We drive 3x more miles, yet the death RATE dropped 77% + +**If we still had 1970 fatality rates today:** +→ 153,000 deaths per year instead of 36,000 +→ **117,000 lives saved annually** + +### Speaker Notes: +> "Let me start with a single number: 77%. That's how much safer driving has become since 1970. Back then, for every 100 million miles driven, nearly 5 people died. Today, it's just over 1. And we drive three times as many miles now. If we still had 1970 fatality rates with today's driving, we'd lose 153,000 people every year - instead of 36,000. That's 117,000 lives saved annually. This didn't happen by accident. It happened because of data. And that's what this presentation is about." + +--- + +# SECTION 1: HISTORY +## "The Quest for Data" +### When we had opinions instead of proof + +--- + +## SLIDE 3: The Dark Age - Before Data + +### Visual: +![[assets/1957_buick_dashboard.jpg|400]] +*1957 Buick dashboard - chrome, steel, and zero data on what it did to humans* + +### Content: +**Before 1950, we knew almost nothing about crashes.** + +What we "knew" (wrongly): +- "Humans can't survive more than 18g" ❌ +- "Crashes are unsurvivable - why bother designing for them?" ❌ +- "The problem is bad drivers, not bad cars" ❌ +- "Seatbelts might trap you in a burning car" ❌ + +**Why we were wrong:** +→ We had no data. +→ We had opinions, assumptions, and fear. + +**The result:** +- Rigid steering columns that impaled drivers +- Solid steel dashboards that crushed skulls +- No restraints to keep occupants in place +- **1+ million steering column deaths alone** + +### Speaker Notes: +> "Before the 1950s, crash safety was based on assumptions, not evidence. The prevailing belief was that crashes were simply unsurvivable - so why engineer for them? The focus was entirely on preventing crashes through better roads, better training, better enforcement. But once a crash happened? You were on your own. And the data we did have was terrifying - over a million people were killed by steering columns alone before anyone thought to make them collapsible. We didn't know what we didn't know. And without data, we couldn't learn." + +--- + +## SLIDE 4: The First Data Pioneer - Hugh DeHaven + +### Content: +**Hugh DeHaven (1895-1980)** +*"The Father of Crashworthiness"* + +**The Origin Story:** +- 1917: Mid-air collision during WWI pilot training +- Aircraft fell 500 feet +- Other pilot and his observer: killed +- DeHaven: walked away with minor injuries + +**The Question That Changed Everything:** +> "Why did I survive?" + +**What He Did:** +- Spent decades studying survivable crashes +- Analyzed people who fell from buildings and survived +- Founded Cornell Crash Injury Research Project (1942) +- Discovered the "second collision" - you hit the car interior AFTER the car stops + +**The Data Insight:** +DeHaven measured survivors. He quantified forces. He proved that crash survival wasn't luck - it was physics. And physics could be engineered. + +### Speaker Notes: +> "The data revolution started with one man asking one question. Hugh DeHaven survived a crash that killed everyone else. Instead of thanking God and moving on, he spent the rest of his life asking 'Why?' He studied falls, crashes, any situation where humans experienced extreme forces. And he discovered something crucial: it's not the crash that kills you - it's hitting the inside of your own car afterward. He called it the 'second collision.' This was data. This was measurable. And if it was measurable, it could be designed for." + +--- + +## SLIDE 5: The Human Guinea Pig - John Stapp + +### Visual: +![[assets/john_stapp_rocket_sled.jpg|450]] +*Col. John Stapp on the Sonic Wind rocket sled, moments before 46.2g* + +![[assets/john_stapp_portrait.jpg|250]] +*Stapp in uniform - the man who proved humans could survive* + +### Content: +**Col. John Paul Stapp (1910-1999)** +*"The Fastest Man on Earth"* + +**The Data Problem:** +- Military needed to know: Can pilots survive ejection? +- Existing belief: Humans die above 18g +- No one had ever measured it properly + +**Stapp's Solution: Become the Data** +- Rode rocket sleds **29 times** +- December 10, 1954: The big one + - Accelerated to 632 mph (faster than a bullet) + - Stopped in 1.4 seconds + - Peak deceleration: **46.2g** + - Duration: ~1 second + +**His Injuries:** +- Broken ribs, broken wrists +- Burst blood vessels in eyes (temporary blindness) +- Lost dental fillings +- **Full recovery within weeks** + +**The Data Revolution:** +Stapp didn't just survive - he was instrumented. He captured the data that proved the 18g limit was wrong. + +### Speaker Notes: +> "John Stapp took data collection to its logical extreme - he became the test subject. The military needed to know if pilots could survive high-speed ejection, and the textbooks said 18g was fatal. Stapp didn't believe it. So he strapped himself to a rocket sled and found out. On his final ride, he hit 46.2g - more than double what was 'supposed' to kill him. He broke bones, temporarily lost his vision, and proved that with proper restraint, humans could survive forces nobody imagined. But here's the key: he was instrumented. He captured the data. Opinion said 18g was the limit. Data said otherwise. Data won." + +--- + +## SLIDE 6: What Stapp's Data Proved + +### Content: +**Before Stapp (Opinion):** +| Belief | Source | +|--------|--------| +| 18g is fatal | "Common knowledge" | +| Ejection seats can't work | Engineering assumption | +| Restraints don't matter | Untested | + +**After Stapp (Data):** +| Finding | Evidence | +|---------|----------| +| 46.2g is survivable | Measured, documented, reproduced | +| Restraint design is critical | Stapp's harness innovations | +| Force distribution matters | Instrumented measurements | +| Duration affects survivability | Time-history data | + +**The Ripple Effects:** +- Fighter pilot ejection seats became viable +- Seatbelt advocacy had scientific backing +- "Crashworthiness" became an engineering discipline +- **Data replaced opinion as the basis for design** + +**Fun Fact:** Murphy's Law originated on Stapp's project. An engineer named Murphy wired sensors backward, leading Stapp to quip about what can go wrong, will go wrong. + +### Speaker Notes: +> "Stapp's data didn't just prove one thing - it changed the entire framework. Before: opinion. After: evidence. His work made ejection seats possible, gave seatbelt advocates scientific ammunition, and established crashworthiness as a real engineering discipline. Oh, and Murphy's Law? That came from Stapp's project too. An engineer wired the sensors backward, and Stapp told the press about it. But the bigger point is this: Stapp was instrumented. He captured time-history data on the forces his body experienced. That data - not just his survival - is what changed everything." + +--- + +## SLIDE 7: The Cadaver Data + +### Visual: +![[assets/cadaver_crash_test.jpg|400]] +*Early crash test using human cadaver - the data that built injury thresholds* + +### Content: +**The Uncomfortable Truth:** +The dead taught us how to save the living. + +**Wayne State University (1930s-1960s):** +- Dropped steel balls on skulls to measure fracture threshold +- Sent bodies down elevator shafts +- Crashed instrumented cadavers into barriers +- Professor Lawrence Patrick tested impacts on himself 400+ times + +**What This Data Gave Us:** +| Body Part | Injury Threshold | Source | +|-----------|------------------|--------| +| Skull fracture | ~75g (contact) | Ball drop tests | +| Chest compression | 63mm max | Cadaver impacts | +| Femur fracture | 10 kN | Sled tests | +| Neck tension | 3.3 kN | Controlled loading | + +**Albert King's Calculation (1995):** +For every cadaver used in crash research: +- 61 people survive annually (seatbelt improvements) +- 147 people survive annually (airbag design) +- 68 people survive annually (windshield impacts) + +**Total: ~8,500 lives saved per year from cadaver-derived data** + +### Speaker Notes: +> "This slide is uncomfortable, but it's essential. Before we had crash test dummies, researchers used human cadavers - and sometimes their own bodies. Wayne State University dropped ball bearings on skulls, sent bodies down elevator shafts, and measured what it took to break human bones. Professor Lawrence Patrick subjected himself to impacts 400+ times. This data gave us the injury thresholds that every crash test dummy is calibrated against. Albert King calculated that cadaver research saves about 8,500 lives per year. For every single cadaver used, 276 people survive annually. The dead taught us how to save the living. We owe them accuracy in how we use that data." + +--- + +## SLIDE 8: The Regulatory Data Revolution + +### Visual: +![[assets/unsafe_at_any_speed_cover.jpg|250]] +*The book that forced the industry to face the data* + +![[assets/ralph_nader_1975.jpg|300]] +*Ralph Nader - turned data into political power* + +### Content: +**1965: Ralph Nader publishes "Unsafe at Any Speed"** + +**Nader's Data-Driven Argument:** +- Exposed Corvair's dangerous handling characteristics +- Documented industry's refusal to adopt known safety features +- Calculated: $700/car on annual styling changes vs. $0.23 on safety + +**GM's Response:** +- Hired investigators to dig up dirt on Nader +- Surveillance, harassment, attempted entrapment +- **Got caught** → Congressional hearings → GM apologizes publicly + +**The Legislative Result:** +| Year | Action | Data Requirement | +|------|--------|------------------| +| 1966 | National Traffic & Motor Vehicle Safety Act | Manufacturers must report defects | +| 1966 | DOT created | Centralized data collection | +| 1970 | NHTSA established | Federal crash testing begins | +| 1979 | NCAP program | Public crash test ratings | + +**The Shift:** +Before: Industry self-regulated with minimal data +After: Government demanded data, made it public, let consumers decide + +### Speaker Notes: +> "Ralph Nader understood that data is power. His book 'Unsafe at Any Speed' didn't just make accusations - it documented them. He showed that manufacturers spent $700 per car on annual styling changes but only 23 cents on safety. GM tried to destroy him personally, got caught, and ended up apologizing before Congress. The result was the National Traffic and Motor Vehicle Safety Act of 1966, the creation of DOT, and eventually NHTSA. For the first time, the government would collect crash data, conduct tests, and publish results. Data went from proprietary to public. That changed everything." + +--- + +## SLIDE 9: The Data Surrogate - Birth of the Crash Test Dummy + +### Visual: +![[assets/sierra_sam.jpg|250]] +*Sierra Sam (1949) - the first crash test dummy* + +![[assets/hybrid_iii_family.jpg|400]] +*The Hybrid III family - standardized data collection* + +### Content: +**The Problem with Cadavers:** +- Ethical concerns +- No two bodies are identical (no reproducibility) +- Can't repeat tests +- Limited supply + +**The Solution: Mechanical Surrogates** + +| Year | Dummy | Data Advance | +|------|-------|--------------| +| 1949 | Sierra Sam | First repeatable surrogate (ejection seats) | +| 1971 | Hybrid I | First automotive-specific dummy | +| 1972 | Hybrid II | First FMVSS-compliant dummy | +| 1976 | Hybrid III | **Gold standard** - still used today | +| 2023 | THOR-5F | First true female dummy | + +**What Made Hybrid III Revolutionary:** +- Biofidelic response (mimics human tissue behavior) +- Standardized construction (every lab uses identical dummies) +- **Instrumentation capacity** - designed to hold sensors +- Reproducible results - test the same dummy 50+ times + +**The Key Insight:** +A dummy without instrumentation is just an expensive mannequin. The dummy is the BODY. The instrumentation is the NERVOUS SYSTEM. **DTS provides the nervous system.** + +### Speaker Notes: +> "Cadavers gave us the injury thresholds, but we couldn't keep using them for every test. We needed a surrogate that could be crashed repeatedly, produce consistent results, and capture data. That's the crash test dummy. Sierra Sam was first in 1949, but the real breakthrough was Hybrid III in 1976. It's still the global standard today - nearly 50 years later. But here's what matters for us: a dummy without sensors is just a mannequin. The dummy provides the mechanical response. The instrumentation captures the data. DTS provides that instrumentation - we are literally the nervous system of the crash test dummy." + +--- + +## SLIDE 10: Section 1 Summary - The History of Data + +### Content: +**The Data Journey:** + +| Era | Data Source | Limitation | Lives Saved | +|-----|-------------|------------|-------------| +| Pre-1940s | Opinions, assumptions | No scientific basis | Unknown | +| 1940s-50s | Human volunteers (Stapp) | Not scalable | Foundation laid | +| 1940s-60s | Cadaver research | Ethical, reproducibility | 8,500/year | +| 1970s+ | ATDs (dummies) | Standardized, repeatable | Millions | + +**The Throughline:** +1. **Opinions** → led to million+ deaths +2. **Human experiments** → proved survival was possible +3. **Cadaver data** → established injury thresholds +4. **Dummy testing** → made safety engineering scalable + +**Key Quote:** +> "Before data, we had opinions. After data, we had proof. And proof saves lives." + +### Speaker Notes: +> "Let's recap the history. We went from opinions - which killed millions - through human experimentation, cadaver research, and finally to standardized dummy testing. Each step gave us better data. Better data gave us better designs. Better designs saved more lives. The pioneers gathered data through sacrifice - their own bodies, the bodies of the dead. Our job today is to honor that legacy by capturing data with precision and reliability. That's the foundation for everything in sections 2 and 3." + +--- + +# SECTION 2: CURRENT INFLUENCES +## "Who Uses the Data" +### The ecosystem that turns data into saved lives + +--- + +## SLIDE 11: The Modern Data Ecosystem + +### Content: +**Data flows through a system. Everyone in the system uses DTS equipment.** + +``` +┌─────────────────────────────────────────────────────────────┐ +│ DATA ECOSYSTEM │ +├─────────────────────────────────────────────────────────────┤ +│ │ +│ RESEARCH REGULATION CONSUMER │ +│ (Universities) → (NHTSA/FMVSS) → (IIHS/NCAP) │ +│ ↓ ↓ ↓ │ +│ Injury thresholds Minimum standards Market pressure │ +│ ↓ ↓ ↓ │ +│ ───────────────────────────────────────────────────── │ +│ ↓ │ +│ MANUFACTURERS │ +│ (OEMs + Tier 1 Suppliers) │ +│ ↓ │ +│ SAFER VEHICLES │ +│ ↓ │ +│ LIVES SAVED │ +│ │ +└─────────────────────────────────────────────────────────────┘ +``` + +**Every node in this system needs data.** +**DTS equipment captures that data.** + +### Speaker Notes: +> "This is the ecosystem our customers operate in. Research universities establish injury thresholds and biomechanics. Regulators like NHTSA set minimum standards based on that research. Consumer testing organizations like IIHS create market pressure by publishing ratings. Manufacturers respond by designing safer vehicles. The result: lives saved. Data flows through every connection in this system. Every node needs accurate, reliable data capture. That's what we provide." + +--- + +## SLIDE 12: The Regulators - Setting the Floor + +### Content: +**NHTSA (National Highway Traffic Safety Administration)** + +**What They Do:** +- Set Federal Motor Vehicle Safety Standards (FMVSS) +- Test vehicles for compliance +- Investigate defects +- Publish 5-star safety ratings (NCAP) + +**Key FMVSS Standards:** +| Standard | Requirement | Data Captured | +|----------|-------------|---------------| +| FMVSS 208 | Occupant crash protection | Head, chest, femur loads | +| FMVSS 214 | Side impact protection | Pelvis, thorax, head | +| FMVSS 216 | Roof crush resistance | Force vs. displacement | +| FMVSS 301 | Fuel system integrity | Leakage measurement | + +**The Data Requirement:** +NHTSA doesn't just want pass/fail. They want: +- Time-history data (what happened when) +- Peak values with timing +- Injury criteria calculations (HIC, Nij, etc.) +- Full documentation for every test + +**DTS Connection:** +NHTSA's Vehicle Research & Test Center (East Liberty, OH) uses DTS equipment to generate the data that becomes regulation. + +### Speaker Notes: +> "NHTSA sets the floor - the minimum safety level every vehicle must meet. Their Federal Motor Vehicle Safety Standards cover everything from seatbelt anchorages to fuel tank integrity. But here's what's important: compliance isn't just pass/fail. NHTSA requires detailed data - time histories, peak values, calculated injury metrics. This data must be precise, documented, and defensible. The Vehicle Research and Test Center, where NHTSA develops and validates standards, uses DTS equipment. Our data literally becomes regulation." + +--- + +## SLIDE 13: The Influencers - Raising the Bar + +### Visual: +![[assets/iihs_crash_hall.jpg|400]] +*IIHS crash test facility - where ratings drive the market* + +![[assets/iihs_frontal_crash_test.jpg|400]] +*IIHS moderate overlap frontal test* + +### Content: +**IIHS (Insurance Institute for Highway Safety)** + +**What Makes IIHS Different:** +- Funded by insurance companies (they pay crash claims) +- NOT government - purely consumer information +- Tests often MORE demanding than FMVSS +- Ratings directly affect buying decisions + +**The Data Power Play:** +| Year | IIHS Test Introduction | Industry Response | +|------|------------------------|-------------------| +| 1995 | Moderate overlap frontal | Redesigned structures | +| 2003 | Side impact | Added side airbags | +| 2012 | Small overlap frontal | **Massive failures** → rapid fixes | +| 2021 | Updated side impact | Heavier, faster barrier | + +**The Small Overlap Story (2012):** +- First tests: Luxury cars failed miserably +- BMW, Mercedes, Audi: "Poor" or "Marginal" +- Public embarrassment → immediate engineering response +- By 2017: Most vehicles earned "Good" + +**The Data Demand:** +IIHS publishes detailed results, force plots, video. Manufacturers need matching data to diagnose problems and verify fixes. + +### Speaker Notes: +> "If NHTSA sets the floor, IIHS raises the bar. They're funded by insurance companies who pay out when people get hurt - so they're highly motivated to reduce injuries. Their tests are often tougher than federal requirements. And their ratings affect sales. When IIHS introduced the small overlap test in 2012, most vehicles failed - including luxury brands. The public embarrassment drove immediate engineering responses. Within five years, most vehicles earned 'Good' ratings. This is data creating market pressure. IIHS publishes detailed force plots and video. Manufacturers need equally detailed data to diagnose problems. That's where we come in." + +--- + +## SLIDE 14: The Researchers - Expanding Knowledge + +### Content: +**University Research Centers** + +| Institution | Focus | Data Need | +|-------------|-------|-----------| +| Wayne State University | Biomechanics, injury thresholds | Cadaver instrumentation | +| Ohio State University | Injury Biomechanics Research Center | ATD validation | +| University of Virginia | Center for Applied Biomechanics | Human body modeling | +| Wake Forest University | Injury prevention | Pediatric biomechanics | + +**What Researchers Do:** +- Establish new injury criteria +- Validate and improve ATD designs +- Develop computational human models +- Study populations not well-represented (elderly, children, females) + +**The Female Dummy Problem:** +- Most testing uses 50th percentile male (5'9", 175 lbs) +- Women are 17% more likely to die in equivalent crashes +- Researchers identified the gap +- THOR-5F (2023) - first true female dummy - emerged from this research + +**The Data Chain:** +Research data → ATD design → Test standards → Safer vehicles + +**DTS Connection:** +Research requires the highest precision. Novel instrumentation. Unusual test setups. We support the cutting edge. + +### Speaker Notes: +> "Universities are where new knowledge is created. Wayne State pioneered cadaver research. Ohio State validates crash test dummies. UVA builds computational human models. These researchers establish injury criteria that eventually become test standards. They also identify gaps - like the female dummy problem. Women are 17% more likely to die in equivalent crashes, partly because testing optimized for male anatomy. Research identified this. Now we have THOR-5F, the first true female dummy. Research data becomes ATD design becomes test standards becomes safer vehicles. We support researchers at the cutting edge." + +--- + +## SLIDE 15: The Manufacturers - Applying Data + +### Content: +**OEMs (Original Equipment Manufacturers)** + +**Every Major Automaker Has:** +- Dedicated crash test facilities +- Full-vehicle test capability +- Sled testing for component development +- Pre-production validation programs + +**The Development Data Loop:** + +``` +Design concept → Simulation (CAE) → Sled test → Full vehicle test + ↑ ↓ + ←──────────────── Iterate until pass ←────────┘ +``` + +**What Manufacturers Need from Data:** +1. **Speed**: Results fast enough to meet program timing +2. **Accuracy**: Must correlate to real-world outcomes +3. **Detail**: Time histories, not just peak values +4. **Reproducibility**: Run same test twice, get same data + +**Tier 1 Suppliers:** +- Autoliv, ZF, Joyson (restraint systems) +- Need component-level data +- Sled testing, out-of-position testing +- Supply data to OEM customers as validation + +**DTS Connection:** +We're in virtually every major OEM and Tier 1 crash lab worldwide. Our equipment captures the data that validates designs before production. + +### Speaker Notes: +> "Manufacturers are where data becomes product. Every major automaker has crash test facilities. They run simulations, sled tests, and full vehicle tests throughout development. The data loop is: design, simulate, test, iterate until it passes. What they need from data acquisition is speed, accuracy, detail, and reproducibility. One bad data point can mean a $100,000+ retest. Tier 1 suppliers like Autoliv and ZF also need component-level data - they supply airbags and seatbelts and must prove their products work. DTS equipment is in virtually every major crash lab. Our data validates designs before they reach production." + +--- + +## SLIDE 16: Section 2 Summary - The Data Users + +### Content: +**Everyone Needs Data. We Provide It.** + +| User | Purpose | Data Requirement | DTS Role | +|------|---------|------------------|----------| +| **NHTSA** | Set minimum standards | Compliance documentation | Certification testing | +| **IIHS/NCAP** | Consumer ratings | Detailed comparative data | Rating tests | +| **Universities** | Create new knowledge | Novel instrumentation | Research support | +| **OEMs** | Design safe vehicles | Development data loops | Lab instrumentation | +| **Tier 1** | Component validation | Sub-system testing | Sled test systems | + +**The Common Thread:** +Every organization in the safety ecosystem: +1. Runs crash tests +2. Needs precise data capture +3. Can't afford bad data +4. Uses DTS equipment + +**Key Quote:** +> "The data that flows through this ecosystem eventually becomes the car you drive home tonight." + +### Speaker Notes: +> "Let's summarize section 2. Regulators, consumer testers, researchers, OEMs, suppliers - they all need data. They all need it fast, accurate, detailed, and reproducible. They all use DTS equipment. The data that flows through this ecosystem eventually becomes the vehicles we all drive. When someone survives a crash because the airbag deployed correctly, because the seatbelt pretensioned at the right moment, because the structure absorbed energy as designed - that's data turned into engineering turned into saved lives." + +--- + +# SECTION 3: CURRENT TEST METHODS +## "How We Capture Data" +### The tests that generate the data that saves lives + +--- + +## SLIDE 17: The Test Hierarchy + +### Content: +**From Component to Complete Vehicle** + +| Level | Test Type | Purpose | Data Complexity | +|-------|-----------|---------|-----------------| +| 1 | Material testing | Properties of steel, plastic, foam | Low - force/displacement | +| 2 | Component testing | Individual part behavior | Medium - multiple channels | +| 3 | Subsystem testing | Integrated assemblies (seat, restraint) | Medium-High | +| 4 | Sled testing | Occupant response without vehicle | High - full ATD | +| 5 | Full vehicle crash | Complete system validation | **Very High** - vehicle + ATD | + +**Why This Matters:** +- Full vehicle tests cost $50K-$500K+ each +- Can't afford to fail at full vehicle stage +- Lower-level testing validates components first +- Data from each level feeds the next + +**The Economic Reality:** +| Component | Approximate Cost | +|-----------|------------------| +| Full vehicle test | $50,000 - $500,000+ | +| Test vehicle (destroyed) | $30,000 - $80,000 | +| Hybrid III 50th male ATD | $200,000 - $400,000 | +| THOR-50M | $500,000 - $800,000 | +| DTS data acquisition | [Small fraction] | + +**The Insight:** +A crashed car is gone forever. The data is what justifies the cost. Bad data = wasted test = repeat expense. + +### Speaker Notes: +> "Let's talk about how tests are structured. You don't start with a full vehicle crash - that's too expensive to get wrong. You start with material testing, then components, then subsystems, then sled tests, then finally full vehicle. Data from each level validates the next. A full vehicle test can cost half a million dollars. The vehicle is destroyed. The dummy costs $200,000 to $800,000. If the data is bad, you've wasted everything. The data acquisition system is a tiny fraction of the total cost - but it captures ALL the value." + +--- + +## SLIDE 18: Full Vehicle Crash Tests + +### Visual: +![[assets/small_overlap_test.jpg|400]] +*IIHS small overlap test - 25% of vehicle width at 40 mph* + +![[assets/roof_strength_test.jpg|350]] +*Roof strength test - critical for rollover protection* + +### Content: +**Frontal Impact Tests:** +| Test | Configuration | Speed | What It Measures | +|------|---------------|-------|------------------| +| NHTSA Full Frontal | 100% overlap, rigid barrier | 35 mph | Full structure + restraints | +| IIHS Moderate Overlap | 40% offset, deformable barrier | 40 mph | Structure + occupant compartment | +| IIHS Small Overlap | 25% offset, rigid barrier | 40 mph | Structural engagement | +| Oblique | Angled impact | Varies | Real-world crash modes | + +**Side Impact Tests:** +| Test | Configuration | What It Measures | +|------|---------------|------------------| +| NHTSA Side | Moving deformable barrier, 90° | Side structure + curtain airbags | +| IIHS Side | Heavier/faster barrier (2021+) | Updated injury criteria | +| Pole | Sliding into narrow object | Head protection, door intrusion | + +**Other Tests:** +- Roof crush (rollover protection) +- Rear impact (head restraint, whiplash) +- Pedestrian protection +- Fuel system integrity + +**Data Captured Per Test:** +A typical full vehicle test captures 50-100+ channels of data: +- Head, chest, pelvis acceleration (ATD) +- Neck, femur, tibia loads (ATD) +- Chest deflection (ATD) +- Vehicle acceleration +- Barrier loads +- High-speed video (multiple angles) + +### Speaker Notes: +> "Full vehicle tests are the ultimate validation. Frontal tests range from full overlap into rigid barriers to small overlap - just 25% of the width. Side tests simulate T-bone crashes and pole impacts. Roof crush tests rollover protection. Each test captures 50 to 100+ channels of data. The ATD alone might have 30-40 sensors measuring head acceleration, neck loads, chest compression, pelvis acceleration, femur loads. We capture all of it, time-synchronized, at sample rates up to 10,000 or even 100,000 samples per second. The data tells the story of what happened in that fraction of a second." + +--- + +## SLIDE 19: Sled Testing - The Workhorse + +### Content: +**What Is Sled Testing?** +- Simulates crash pulse without destroying a vehicle +- Occupant compartment (buck) mounted on acceleration sled +- Sled accelerates/decelerates to match target crash pulse +- **Repeatable, controllable, economical** + +**Advantages Over Full Vehicle:** +| Factor | Full Vehicle | Sled Test | +|--------|--------------|-----------| +| Cost per test | $50K-500K | $5K-50K | +| Vehicle consumed | Yes | No | +| Repeatability | Moderate | High | +| Parameter control | Limited | Excellent | +| Setup time | Days | Hours | + +**What Sled Tests Are Used For:** +1. Restraint system development (airbags, belts) +2. Seat design validation +3. Out-of-position (OoP) testing +4. Child restraint testing +5. ATD development and validation + +**The Data Demands:** +Sled tests often require MORE precision than full vehicle: +- Exact crash pulse reproduction +- Sub-millisecond timing +- Correlation to full vehicle results + +**DTS Role:** +Sled testing is where products are developed. The data must be precise enough to diagnose problems and verify fixes. + +### Speaker Notes: +> "Sled testing is the workhorse of crash safety development. Instead of destroying a car, you mount a test buck - a section of the occupant compartment - on a sled and reproduce the crash pulse. It's cheaper, faster, and more repeatable. This is where restraint systems are developed. Where out-of-position scenarios are tested. Where child seats are validated. The data demands are actually higher than full vehicle tests because you need precision to diagnose subtle problems. If the airbag is deploying 5 milliseconds late, you need data that can show that." + +--- + +## SLIDE 20: The ATD - Capturing Human Response + +### Visual: +![[assets/hybrid_iii_family.jpg|350]] +*Hybrid III family - 95th male to child sizes* + +![[assets/thor_dummy.jpg|350]] +*THOR-50M - the next generation* + +### Content: +**The Hybrid III (1976 - Still Standard)** +| Measurement Location | Sensor Type | What It Tells Us | +|---------------------|-------------|------------------| +| Head | Triaxial accelerometer | Head Injury Criterion (HIC) | +| Neck | 6-axis load cell | Neck tension, compression, bending | +| Chest | Accelerometer + potentiometer | Chest acceleration, deflection | +| Lumbar | 6-axis load cell | Spinal loading | +| Pelvis | Triaxial accelerometer | Pelvis acceleration | +| Femur | Load cells | Femur compression force | + +**The THOR-50M (Next Generation)** +- 150+ data channels (vs. ~40 for Hybrid III) +- Multi-point chest deflection +- Abdomen instrumentation +- More biofidelic response +- Required for some Euro NCAP tests + +**DTS Instrumentation:** +- Accelerometers +- Load cells (force measurement) +- Potentiometers (displacement) +- Angular rate sensors +- On-board data acquisition (survives the crash) + +**The Key Insight:** +The dummy provides the mechanical response. The instrumentation captures the data. Without instrumentation, a crash test is just an expensive car destruction. + +### Speaker Notes: +> "The crash test dummy is a sophisticated mechanical surrogate, but it can't tell us anything without instrumentation. A Hybrid III has about 40 sensors measuring head acceleration, neck loads, chest compression, pelvis movement, femur loads. THOR has over 150 channels. These sensors must survive the crash - which can exceed 40g - and continue recording. They must be accurate to calculate injury criteria. DTS provides this instrumentation. We put the nervous system into the dummy. Without us, you just have an expensive mannequin being destroyed." + +--- + +## SLIDE 21: Active Safety Testing - The New Frontier + +### Content: +**The Shift from Passive to Active:** + +| Passive Safety | Active Safety | +|----------------|---------------| +| Protects DURING crash | Prevents crash entirely | +| Seatbelts, airbags, structure | AEB, ESC, LDW | +| Testing: crash dummies | Testing: track, targets, scenarios | + +**AEB Testing (Autonomous Emergency Braking):** +- Vehicle approaches pedestrian/vehicle targets at set speeds +- System must detect and brake automatically +- Data captured: vehicle dynamics, system response time, stopping distance + +**IIHS AEB Ratings:** +| Speed | Requirement | +|-------|-------------| +| 12 mph | Avoid collision OR reduce impact speed | +| 25 mph | Reduce impact speed | + +**Euro NCAP Requirements:** +- AEB for vehicles +- AEB for pedestrians +- AEB for cyclists +- Lane support systems + +**The Data Challenge:** +Active safety testing needs different data: +- Vehicle position and velocity +- Target detection timing +- System activation point +- Braking force application + +**DTS Opportunity:** +As active safety grows, data needs expand. New sensor types, new test protocols, new customers. + +### Speaker Notes: +> "There's a revolution happening in safety testing. Passive safety - seatbelts, airbags, crumple zones - protects you during a crash. Active safety - AEB, ESC, lane keeping - tries to prevent the crash entirely. Testing active safety is different. Instead of crashing into barriers, you're testing whether the car stops before hitting a target. IIHS now requires AEB for top safety ratings. Euro NCAP tests pedestrian and cyclist detection. This creates new data needs: vehicle dynamics, system response timing, target detection. The market for data acquisition is expanding, not shrinking." + +--- + +## SLIDE 22: Section 3 Summary - The Data We Capture + +### Content: +**Test Methods Create Data. Data Creates Safety.** + +| Test Type | Data Volume | Precision Required | DTS Role | +|-----------|-------------|-------------------|----------| +| Full vehicle crash | 50-100+ channels | Very high | All ATD, vehicle sensors | +| Sled testing | 30-50 channels | Extremely high | ATD + buck instrumentation | +| Component testing | 5-20 channels | High | Targeted measurement | +| Active safety | Various | High | Expanding market | + +**What Makes Data Valuable:** +1. **Accuracy** - Must represent reality +2. **Precision** - Must be repeatable +3. **Completeness** - Can't have gaps or dropouts +4. **Timing** - Sub-millisecond synchronization +5. **Survivability** - Equipment must survive the crash + +**The DTS Value Proposition:** +We don't make cars safer directly. We capture the data that lets engineers make cars safer. One bad data point can invalidate a $500,000 test. + +**Key Quote:** +> "Trust in data is everything. When lives depend on the analysis, the data must be unquestionable." + +### Speaker Notes: +> "Let's summarize section 3. From full vehicle crashes to sled tests to component testing, every test generates data. That data must be accurate, precise, complete, properly timed, and the equipment must survive crash conditions. DTS provides that capability. We don't make vehicles safer directly - we capture the data that enables engineers to make them safer. When a test costs $500,000 and the data fails, you've wasted half a million dollars. When the data is good, you've created knowledge that protects people. Trust in data is everything." + +--- + +# CLOSING + +--- + +## SLIDE 23: The Chain We're Part Of + +### Content: +**The Unbroken Chain from Stapp to Tomorrow:** + +``` +1954: Stapp's rocket sled data proves survival is possible + ↓ +1960s: Cadaver research establishes injury thresholds + ↓ +1970s: Hybrid III enables standardized testing + ↓ +1980s-90s: NHTSA/IIHS create market pressure with data + ↓ +2000s-10s: Airbags, ESC, AEB become standard + ↓ +2020s: Active safety, female dummies, EV testing + ↓ +Future: Autonomous vehicles, new injury criteria + ↓ + EVERY STEP REQUIRES DATA + ↓ + DTS CAPTURES THAT DATA +``` + +**Our Place:** +We didn't invent the seatbelt. We didn't design the airbag. We didn't create the crash test dummy. But NONE of those innovations would exist without the data that proved they work. DTS is part of the chain. We capture the data that saves lives. + +### Speaker Notes: +> "Let me show you where we fit. Stapp's rocket sled proved humans could survive. Cadaver research gave us injury thresholds. The Hybrid III made standardized testing possible. NHTSA and IIHS created market pressure with public data. Airbags, ESC, AEB became standard because data proved they worked. Every step in this chain required data. We capture that data. We didn't invent the seatbelt or design the airbag - but without accurate data, none of those innovations could have been validated. DTS is part of an unbroken chain from Stapp to whatever comes next. We're the keepers of the data that saves lives." + +--- + +## SLIDE 24: The Bottom Line + +### Content: +**Remember This:** + +| Then | Now | Data Made the Difference | +|------|-----|-------------------------| +| 1970: 4.74 deaths/100M VMT | 2019: 1.10 deaths/100M VMT | **77% reduction** | +| Opinion: "18g is fatal" | Data: Stapp survived 46.2g | Changed engineering limits | +| Belief: "Crashes are unsurvivable" | Reality: Crashworthiness works | Millions of lives saved | + +**117,000 people are alive this year who would have died under 1970 conditions.** + +Every one of them was saved by a chain of decisions: +- Research that established injury thresholds +- Regulations that required minimum standards +- Testing that validated designs before production +- Data that made it all possible + +**We don't make cars safer directly.** +**We capture the data that lets engineers make cars safer.** +**The data saves lives.** + +### Speaker Notes: +> "Here's the bottom line. 117,000 people will survive this year who would have died under 1970 conditions. Every one of them was saved by a chain of decisions rooted in data. Research established injury thresholds. Regulations required minimum standards. Testing validated designs before production. Data made it all possible. We don't make cars safer directly. We capture the data that lets engineers make cars safer. That data saves lives. Every sensor, every channel, every data point we capture is part of that chain. That's why we're here. That's why this work matters." + +--- + +## SLIDE 25: Q&A + +### Content: +# Questions? + +**Contact:** +Ben, Application Engineer +[Email/Phone] + +**Key Takeaways:** +1. Data replaced opinion as the basis for safety engineering +2. Every organization in the safety ecosystem needs precise data +3. DTS captures the data that flows through the entire system +4. That data saves approximately 117,000 lives per year + +> **"A crashed car is gone forever. The data is what remains."** + +--- + +# APPENDIX + +--- + +## Quick Reference: Key Statistics + +| Metric | Value | Source | +|--------|-------|--------| +| Fatality rate reduction since 1970 | 77% | NHTSA FARS | +| Lives saved annually (vs. 1970 rates) | ~117,000 | Calculated | +| Seatbelt lives saved/year | ~15,000 | NHTSA | +| Airbag lives saved/year | ~2,790 | NHTSA | +| ESC lives saved/year | ~2,200 | NHTSA | +| Hybrid III cost | $200-400K | Industry estimate | +| THOR cost | $500-800K | Industry estimate | +| Full vehicle test cost | $50-500K | Industry estimate | +| Stapp's peak deceleration | 46.2g | Historical record | +| Lives saved per cadaver (annual) | 276 | Albert King, 1995 | + +--- + +## Quick Reference: Key People + +| Pioneer | Contribution | Data Innovation | +|---------|--------------|-----------------| +| Hugh DeHaven | Crashworthiness concept | Quantified survival forces | +| John Stapp | Human tolerance limits | Instrumented self-experimentation | +| Lawrence Patrick | Injury thresholds | Cadaver + self-testing | +| Nils Bohlin | 3-point seatbelt | Volvo shared data freely | +| Ralph Nader | Regulatory pressure | Made industry data public | +| William Haddon | NHTSA, IIHS | Systematized data collection | +| Samuel Alderson | Crash test dummy | Created repeatable surrogate | + +--- + +## Quick Reference: Key Organizations + +| Organization | Role | Data Function | +|--------------|------|---------------| +| NHTSA | US regulator | Sets standards, tests compliance | +| IIHS | Consumer testing | Publishes ratings, drives market | +| Euro NCAP | European ratings | Harmonized global standards | +| Universities | Research | Creates new knowledge | +| OEMs | Manufacturers | Applies data to design | +| Tier 1 Suppliers | Components | Validates subsystems | +| **DTS** | **Instrumentation** | **Captures the data** | + +--- + +## Video Resources + +### Recommended for This Presentation: + +**1. IIHS 1959 vs 2009 Crash Test (HIGHLY RECOMMENDED)** +- YouTube: https://www.youtube.com/watch?v=joMK1WZjP7g +- Duration: 1:43 +- **Best visual demonstration of 50 years of progress** +- Use after Section 1 (History) + +**2. John Stapp Rocket Sled Footage** +- YouTube: https://www.youtube.com/watch?v=s4D4rJIYyss +- Duration: ~4 min (excerpt 1-2 min) +- Use during Slide 5 (Stapp) + +**3. Modern IIHS Crash Test Compilation** +- Various on IIHS YouTube channel +- Shows sophistication of modern testing + +--- + +## Presentation Tips for Ben + +### Timing Guide: +| Section | Target Time | Key Points | +|---------|-------------|------------| +| Opening | 3 min | Hook with 77%, establish thesis | +| History | 15 min | Stories of pioneers - emotional connection | +| Influences | 12 min | Ecosystem overview - where we fit | +| Test Methods | 12 min | Technical but accessible | +| Closing | 3 min | Return to thesis, emotional close | +| Q&A | 5+ min | Prepared answers below | + +### Anticipated Questions: + +**Q: "What specific DTS products do customers use?"** +A: SLICE series (NANO, MICRO, SLICE6) for on-board data acquisition. Designed to survive crash conditions and capture high-sample-rate data from all ATD sensors. + +**Q: "How is testing changing with EVs?"** +A: New considerations - battery safety, heavier vehicles (battery weight), different mass distribution. But same fundamental data needs. New opportunities for instrumentation. + +**Q: "What about autonomous vehicles?"** +A: Even with perfect autonomy, crashes will occur (other vehicles, edge cases). Crashworthiness still matters. Plus, AV development needs extensive testing data. Market is expanding, not contracting. + +**Q: "Is this a growing market?"** +A: Yes. More test types, more global markets (China, India), more active safety testing. ADAS/AV alone has created massive new testing needs. + +### Engagement Techniques: + +**Opening hook:** "77% - that's how much safer driving is today than in 1970. Anyone want to guess how many lives that saves per year?" [Wait for guesses] "117,000." + +**Story moments:** Stapp and DeHaven are compelling stories. Don't rush them. Let the audience feel the human element. + +**The bridge:** When transitioning to DTS's role, use: "Every piece of data that flows through this system eventually becomes the car you drive home tonight. We capture that data." + +**Closing:** Return to the 117,000 number. "117,000 people. Every one of them saved by a chain of decisions rooted in data. We're part of that chain." + +--- + +*Document prepared for DTS internal presentation* +*Theme: "The Data That Saves Lives"* +*Last updated: February 12, 2026* diff --git a/presentation_full copy.md b/presentation_full copy.md new file mode 100644 index 0000000..18ff4b1 --- /dev/null +++ b/presentation_full copy.md @@ -0,0 +1,920 @@ +# Safety Testing Customer Showcase +## DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +# SLIDE-BY-SLIDE CONTENT WITH SPEAKER NOTES + +--- + +## SLIDE 1: Title Slide +**Title:** "Saving Lives, One Data Point at a Time" +**Subtitle:** Understanding Our Safety Testing Customers +**Presenter:** Ben, Application Engineer +**Company:** Diversified Technical Systems + +--- + +## SLIDE 2: Opening Hook - The Numbers + +### Content: +- **1970:** 4.74 deaths per 100 million vehicle miles traveled +- **2019:** 1.10 deaths per 100 million vehicle miles traveled +- **That's a 77% reduction in fatality rate** +- Despite 3x more miles driven annually (1.1 trillion vs 3.2 trillion) + +### Speaker Notes: +> "Let me start with a number that should make everyone in this room proud to work here. In 1970, for every 100 million miles Americans drove, nearly 5 people died. Today, that number is just over 1. We drive three times as many miles, yet the fatality rate has dropped by 77%. This didn't happen by accident - it happened because of research, testing, and the relentless pursuit of data. And DTS is part of that story." + +--- + +## SLIDE 3: The Dark Ages of Vehicle Safety + +### Visual: +![[assets/1957_buick_dashboard.jpg|400]] +*1957 Buick Roadmaster dashboard - chrome everywhere, no safety padding* + +![[assets/1957_chevy_styling.jpg|400]] +*1957 Chevrolet Bel Air - style over safety* + +### Content: +**Pre-1950s Reality:** +- No seatbelts standard in vehicles +- Rigid steering columns (speared drivers in crashes) +- Solid steel dashboards +- No crumple zones +- Chrome and glass everywhere +- Philosophy: "The driver is the problem" + +**1937:** 37,819 deaths with only 270 billion miles driven (14.0 deaths/100M miles) + +### Speaker Notes: +> "Before we appreciate where we are, we need to understand where we started. In the 1930s through 1950s, cars were essentially steel boxes designed to look good and go fast. Safety was an afterthought. If you crashed, the car stayed mostly intact - but YOU didn't. Steering columns speared through drivers. Passengers hit chrome-plated steel dashboards. The industry's position? 'Crashes are caused by bad drivers.' Improve the driver, not the car." + +--- + +## SLIDE 3B: The Cadaver Pioneers (Optional Slide) + +### Visual: +![[assets/cadaver_crash_test.jpg|400]] +*Cadaver used during a frontal impact test (historical)* + +### Content: +**Wayne State University - 1930s-1950s:** +- First serious research on crash injury mechanics +- Used human cadavers to study impact tolerance +- Ball bearings dropped on skulls to measure force thresholds +- Bodies dropped down elevator shafts onto steel plates +- Crude accelerometers attached to measure forces + +**What They Learned:** +- Human injury thresholds for different body parts +- Skull fracture forces +- Chest compression limits +- Foundation for all crash test dummy design + +**Albert King's 1995 Calculation:** +- For every cadaver used in research: + - 61 people survive annually due to seatbelts + - 147 survive due to airbags + - 68 survive windshield impact +- ~8,500 lives saved annually from cadaver research (as of 1987) + +### Speaker Notes: +> "Before we had crash test dummies, researchers had to use human cadavers - and sometimes themselves. Wayne State University pioneered this work in the 1930s and 40s. They dropped ball bearings on skulls to measure fracture thresholds. They sent bodies down elevator shafts to study impact forces. It sounds gruesome, but this research gave us the fundamental data about human injury tolerance that everything else is built on. Albert King calculated that cadaver research saves over 8,500 lives every year. For every single cadaver used, 61 people survive each year because of seatbelt designs, 147 because of airbag designs, and 68 survive windshield impacts. The ethical debates around this research were real, but the lives saved are undeniable." + +--- + +## SLIDE 4: Col. John Paul Stapp - "The Fastest Man on Earth" + +### Visual: +![[assets/john_stapp_portrait.jpg|300]] +*Col. John Stapp in Air Force uniform* + +![[assets/john_stapp_rocket_sled.jpg|400]] +*Stapp riding the rocket sled at Edwards Air Force Base* + +### Content: +**Key Facts:** +- USAF Flight Surgeon, Physician, Biophysicist (1910-1999) +- Began rocket sled deceleration experiments in 1947 +- Personally rode the sled **29 times** +- Final ride (Dec 10, 1954): **46.2 g deceleration** - still a record for voluntary human exposure +- Reached 632 mph, stopped in 1.4 seconds +- Injuries: broken wrists, broken ribs, temporary blindness, lost fillings + +### Speaker Notes: +> "Meet Colonel John Stapp - a man who literally put his body on the line for safety research. Starting in 1947, Stapp conducted rocket sled experiments to understand human tolerance to deceleration. But here's the remarkable thing - when he couldn't get enough volunteers, he rode the sled himself. 29 times. On his final ride in 1954, he accelerated to 632 miles per hour - faster than the land speed record at the time - then stopped in 1.4 seconds, experiencing 46.2 g's of deceleration. He broke bones, lost fillings, and temporarily lost his vision - but he survived. And he proved that humans could withstand far more than anyone believed." + +--- + +## SLIDE 5: Stapp's Legacy + +### Content: +**What Stapp Proved:** +- Prior belief: Humans couldn't survive beyond 18g +- Stapp survived 46.2g (and believed humans could withstand more) +- Proper restraints are critical +- Backward-facing seats are safest (though airlines still don't use them) +- Led to ejection seat development for fighter pilots + +**Quote:** "I felt a sensation in the eyes, somewhat like the extraction of a molar without anesthetic." - John Stapp, describing 46.2g + +**Fun Fact:** Stapp popularized "Murphy's Law" - the principle came from his project + +### Speaker Notes: +> "Stapp's work fundamentally changed what we knew about human survivability. Before his experiments, the accepted limit was 18g - anything beyond that was considered fatal. Stapp proved that was wrong. He also developed new harness designs, advocated tirelessly for seatbelts in cars, and his research led directly to fighter pilot ejection seats. After retiring from the Air Force, he was loaned to NHTSA to continue auto safety research. Oh, and one more thing - you've all heard of Murphy's Law? 'Anything that can go wrong, will go wrong.' That originated on Stapp's project. He's the one who popularized it." + +--- + +## SLIDE 6: Ralph Nader - "Unsafe at Any Speed" (1965) + +### Visual: +![[assets/unsafe_at_any_speed_cover.jpg|300]] +*Unsafe at Any Speed - the book that changed everything (1965)* + +![[assets/ralph_nader_1975.jpg|350]] +*Ralph Nader, consumer advocate and author* + +### Content: + +**The Controversy:** +- November 30, 1965: Book published, attacking auto industry +- Chapter 1: "The Sporty Corvair" - exposed dangerous swing-axle suspension +- Central thesis: Automakers prioritized style over safety +- Industry spent 23 cents per car on safety vs. $700 on annual styling changes + +**GM's Response:** +- Hired private investigators to dig up dirt on Nader +- Surveillance, harassment, attempted entrapment +- GM President forced to apologize before Congress (1966) +- Nader sued and won $425,000 - used it to found Center for Auto Safety + +### Speaker Notes: +> "In 1965, a young lawyer named Ralph Nader published a book that would change everything. 'Unsafe at Any Speed' was a scathing indictment of the auto industry. Nader documented how manufacturers prioritized style over safety, spending $700 per car on annual cosmetic changes while investing just 23 cents on safety. GM's response? They hired private investigators to follow Nader, tap his phones, and even hired women to try to entrap him. When this came to light, GM's president was hauled before Congress and forced to publicly apologize. Nader sued and won - and used the settlement to found the Center for Auto Safety, which still operates today." + +--- + +## SLIDE 7: The Birth of Modern Safety Regulation + +### Content: +**Timeline:** +- **1965:** Unsafe at Any Speed published +- **1966:** National Traffic and Motor Vehicle Safety Act signed +- **1966:** U.S. Department of Transportation created +- **1970:** NHTSA established (National Highway Traffic Safety Administration) + +**The Paradigm Shift:** +- Before: "Crashes are caused by bad drivers" (Education, Enforcement, Engineering of ROADS) +- After: "Crashworthiness" - design cars to protect occupants WHEN crashes occur + +**Federal Motor Vehicle Safety Standards (FMVSS):** Now over 50 standards covering everything from windshield wipers to fuel system integrity + +### Speaker Notes: +> "Nader's book, combined with growing public outrage, led to Congressional action. In 1966, President Johnson signed the National Traffic and Motor Vehicle Safety Act. The Department of Transportation was created that same year, and by 1970, NHTSA was established. This represented a fundamental shift in philosophy. The old 'Three E's' - Education, Enforcement, and Engineering - were all about blaming the driver. The new approach recognized that crashes WILL happen, so we need to design vehicles that protect people when they do. This philosophy - crashworthiness - is what our customers work on every day." + +--- + +## SLIDE 8: The Seatbelt Revolution - Nils Bohlin + +### Visual: +![[assets/seatbelt_three_point.jpg|400]] +*The modern three-point seatbelt - Nils Bohlin's life-saving invention (1959)* + +### Content: + +**The Inventor:** +- Nils Bohlin (1920-2002), Swedish engineer +- Previously designed ejection seats at Saab +- Hired by Volvo in 1958 as safety engineer +- Invented modern 3-point seatbelt in 1959 + +**The Patent Decision:** +- Volvo patented the design (US Patent 3,043,625) +- **Then made it available to all automakers for free** +- Volvo believed safety shouldn't be proprietary + +**Impact:** +- NHTSA estimates seatbelts save ~15,000 lives per year in US alone +- Bohlin's study of 28,000 accidents: No belted occupants died below 60 mph if compartment stayed intact + +### Speaker Notes: +> "While politicians debated, an engineer in Sweden was solving the problem. Nils Bohlin had spent years designing ejection seats at Saab - systems to get pilots OUT of aircraft. When he joined Volvo in 1958, he turned his attention to keeping people IN their vehicles safely. The result was the modern three-point seatbelt - the V-shaped design we all use today. Here's the remarkable part: Volvo patented it, then made the patent freely available to every automaker in the world. They believed something that important shouldn't be proprietary. Today, seatbelts save an estimated 15,000 lives per year in the US alone. Bohlin's invention is considered one of the most important safety innovations in history." + +--- + +## SLIDE 9: Video Segment - Historical Perspective + +### Content: +**VIDEO: 2-3 minutes** +Options: +1. Col. Stapp rocket sled footage (public domain, available on YouTube) +2. IIHS 50th Anniversary Test: 1959 Bel Air vs. 2009 Malibu +3. Compilation of early crash test footage + +**Suggested:** IIHS 1959 vs 2009 test - powerful visual of progress + +### Speaker Notes: +> "Let me show you just how far we've come. [PLAY VIDEO] In 2009, IIHS celebrated their 50th anniversary by crashing a 1959 Chevy Bel Air into a 2009 Chevy Malibu at 40 mph. The Bel Air completely collapses - the occupant compartment is destroyed. The Malibu? The driver probably walks away. This is what 50 years of safety research looks like. This is what our customers do." + +--- + +## SLIDE 10: The Modern Safety Ecosystem - Key Players + +### Content: +**Regulatory/Government:** +- NHTSA (US) - Mandatory FMVSS standards, 5-star ratings +- Transport Canada +- UNECE (European regulations) +- JNCAP, KNCAP, ANCAP, etc. + +**Independent Testing (Consumer Information):** +- IIHS (Insurance Institute for Highway Safety) - Founded 1959 +- Euro NCAP - Founded 1997 +- Global NCAP programs + +**Key Difference:** +- NHTSA: Minimum standards (pass/fail) +- IIHS/NCAP: Consumer ratings (competition for better) + +### Speaker Notes: +> "Let me walk you through the modern safety ecosystem - because understanding this helps you understand our customers. There are two parallel tracks. First, government regulations - NHTSA in the US sets Federal Motor Vehicle Safety Standards. These are the minimum requirements every vehicle must meet. Pass or fail. But here's where it gets interesting - the Insurance Institute for Highway Safety, IIHS, provides CONSUMER ratings. Their tests are often more demanding than government requirements, and their ratings directly affect buying decisions. This creates competitive pressure that pushes manufacturers beyond minimum compliance." + +--- + +## SLIDE 11: IIHS - Changing the Game + +### Visual: +![[assets/iihs_crash_hall.jpg|400]] +*IIHS crash test facility - where vehicles earn their safety ratings* + +![[assets/iihs_frontal_crash_test.jpg|400]] +*IIHS frontal crash test in progress* + +### Content: +**IIHS History:** +- Founded 1959 by insurance industry +- Funding: Auto insurance companies (they pay claims, so they're motivated) +- William Haddon Jr. became president 1969, began crash testing + +**Game-Changing Tests:** +- 1995: Moderate overlap frontal test (40% offset, deformable barrier) +- 2003: Side impact test +- 2009: Roof strength test +- **2012: Small overlap frontal test (25% offset)** - Most manufacturers failed initially +- 2021: Updated side test (heavier, faster) + +**The Small Overlap Story:** +- First tests (2012): Only 3 of 11 luxury cars earned "Good" or "Acceptable" +- Exposed a gap in protection that NHTSA tests missed +- Manufacturers scrambled to redesign structures + +### Speaker Notes: +> "IIHS deserves special attention because they've repeatedly pushed the industry forward. Their funding comes from insurance companies - the people who pay out when crashes happen. So they're highly motivated to reduce crash injuries. In 2012, IIHS introduced the small overlap frontal test. This simulates hitting a tree or pole with just 25% of the front end. When they first ran this test, most vehicles failed miserably - including luxury cars. It exposed a massive gap in protection that the existing tests didn't catch. Manufacturers had to completely redesign their structures. This is the competitive pressure that drives innovation." + +--- + +## SLIDE 12: Our Customer Segments + +### Content: +**1. Government/Regulatory** +- NHTSA Vehicle Research & Test Center (East Liberty, Ohio) +- Transport Canada +- JNCAP, KNCAP, etc. + +**2. Academic/Research Institutions** +- Ohio State Injury Biomechanics Research Center +- Wayne State University Bioengineering Center +- University of Virginia Center for Applied Biomechanics +- Wake Forest University + +**3. Independent Test Labs** +- Calspan (Buffalo, NY) +- MGA Research (Burlington, WI) +- Karco Engineering + +**4. OEM Safety Labs** +- GM, Ford, Stellantis (US) +- Toyota, Honda, Nissan (Japan) +- VW, BMW, Mercedes (Germany) +- Hyundai, Kia (Korea) + +### Speaker Notes: +> "So who are our customers? Let me break it down. Government labs like NHTSA's Vehicle Research and Test Center set and verify standards. Universities conduct fundamental research on human injury tolerance - Ohio State, Wayne State, UVA - these institutions have been advancing biomechanics for decades. Independent test labs like Calspan and MGA conduct tests for multiple clients - they might test the same vehicle for IIHS ratings, for an OEM validation program, and for a supplier qualification all in the same month. And of course, every major automaker has their own safety testing facilities." + +--- + +## SLIDE 13: Customer Segments (Continued) + +### Content: +**5. Insurance Industry** +- IIHS (Ruckersville, Virginia) +- Highway Loss Data Institute (HLDI) + +**6. Tier 1 Suppliers** +- Autoliv (airbags, seatbelts) +- ZF/TRW (occupant safety systems) +- Joyson Safety Systems +- Takata successor companies + +**7. Beyond Automotive** +- Helmet manufacturers (NFL, NHL, cycling) +- Military (blast protection, ejection seats) +- Child seat manufacturers +- Sports equipment +- Aerospace + +### Speaker Notes: +> "There's more. IIHS runs their own test facility in Virginia - one of the most sophisticated in the world. Tier 1 suppliers like Autoliv and ZF develop and validate restraint systems - they need data acquisition for component testing, sled testing, and full vehicle validation. And don't forget - safety testing extends well beyond cars. Our equipment is used to test NFL helmets, military blast protection, ejection seats, and playground equipment. Anywhere there's a question of 'what forces does the human body experience?' - that's where DTS fits." + +--- + +## SLIDE 14: The Economics of Safety Testing + +### Content: +**What Things Cost:** + +| Item | Approximate Cost | +|------|------------------| +| Full vehicle crash test | $50,000 - $500,000+ | +| Test vehicle (destroyed) | $30,000 - $80,000 | +| ATD (Hybrid III 50th Male) | $200,000 - $400,000 | +| ATD (THOR) | $500,000 - $800,000 | +| WorldSID 50th | $400,000+ | +| DTS data acquisition system | [Reference DTS pricing] | + +**Why Data Acquisition Matters:** +- A crashed car is gone forever +- The DATA is what remains +- Every sensor, every channel, every data point must be right +- One bad test = $100K+ repeat cost + +### Speaker Notes: +> "Let's talk money, because this helps explain why our customers care so much about data quality. A single crash test can cost anywhere from $50,000 to over half a million dollars, depending on the vehicle and test configuration. The test vehicle is destroyed - that's $30,000 to $80,000 gone. A Hybrid III dummy costs $200,000 to $400,000. The new THOR dummy? Up to $800,000. Here's the thing - once you've crashed the car, it's done. All you have left is the data. If a sensor failed, if a channel dropped out, if the data is questionable - you might have to run the entire test again. That's why our customers demand reliability and accuracy. The data acquisition system is a small fraction of the total test cost, but it's what captures ALL the value." + +--- + +## SLIDE 15: Types of Crash Tests + +### Visual: +![[assets/small_overlap_test.jpg|400]] +*IIHS small overlap frontal test - the test that changed vehicle design* + +![[assets/roof_strength_test.jpg|400]] +*Roof strength/crush resistance test* + +### Content: +**Frontal Impact:** +- Full frontal (NHTSA NCAP - 35 mph rigid barrier) +- Moderate overlap (IIHS - 40% offset, 40 mph) +- Small overlap (IIHS - 25% offset, 40 mph) +- Oblique (NHTSA proposed) + +**Side Impact:** +- Moving deformable barrier (NHTSA/IIHS) +- Pole impact +- Updated IIHS test (2021): heavier, faster barrier + +**Other:** +- Rear impact (head restraint whiplash) +- Roof crush/rollover +- Pedestrian protection +- Frontal collision avoidance (AEB testing) + +### Speaker Notes: +> "Let me walk you through the main test types, because this is what our customers' equipment configurations are designed around. Frontal tests come in several flavors - full frontal into a rigid wall, offset into a deformable barrier, and the challenging small overlap test. Each stresses the structure differently and requires different instrumentation. Side impacts can be a moving barrier simulating a T-bone crash, or a pole simulating wrapping around a tree. IIHS recently updated their side test to be more demanding - heavier barrier, higher speed. Manufacturers had to redesign, and they needed data to do it." + +--- + +## SLIDE 16: The ATD - "The Crash Test Dummy" + +### Visual: +![[assets/sierra_sam.jpg|250]] +*Sierra Sam (1949) - the first crash test dummy* + +![[assets/hybrid_iii_family.jpg|400]] +*The Hybrid III family - representing different human sizes* + +![[assets/thor_dummy.jpg|350]] +*THOR dummy - the next generation of crash testing* + +### Content: +**Evolution:** +- 1949: "Sierra Sam" - first crash test dummy +- 1971: Hybrid I +- 1972: Hybrid II +- 1976: Hybrid III (still widely used today) +- 2020s: THOR (advanced thorax, more biofidelic) + +**The Hybrid III Family:** +- 50th percentile male (most common) +- 95th percentile male +- 5th percentile female +- 6-year-old, 3-year-old, 12-month-old + +**DTS Connection:** +- ATDs are mechanical bodies +- DTS provides the "nervous system" - the sensors that feel +- Accelerometers, load cells, displacement sensors +- We turn physical events into measurable data + +### Speaker Notes: +> "The crash test dummy - officially called an Anthropomorphic Test Device or ATD - is a remarkable piece of engineering. The Hybrid III, introduced in 1976, is still the global standard for frontal impact testing. It comes in a family of sizes representing different human populations. The THOR dummy is newer, with more sophisticated chest instrumentation. But here's the key - these dummies are mechanical devices. They have no way to 'feel' or 'report' what happens to them without instrumentation. That's where DTS comes in. We provide the nervous system - the accelerometers in the head, the load cells in the neck and femurs, the chest deflection potentiometers. We turn a physical crash event into data that engineers can analyze." + +--- + +## SLIDE 17: Beyond Automotive + +### Visual: +![[assets/wiaman_dummy.jpg|400]] +*WIAMan dummy - military blast protection testing (developed with DTS)* + +### Content: +**Sports:** +- NFL helmet testing (concussion research) +- Hockey helmet certification +- Bicycle helmet standards +- Equestrian helmets + +**Military:** +- Blast/IED protection +- Vehicle survivability +- Ejection seat development +- Body armor testing + +**Other:** +- Child car seats +- Playground equipment impact testing +- Aerospace + +**Common Thread:** Human impact tolerance research - our core competency + +### Speaker Notes: +> "Our technology extends well beyond automotive. The NFL has invested heavily in helmet testing after the concussion crisis - they need data on head acceleration and rotation. The military tests vehicle underbody protection against IEDs, body armor against ballistic impact, and ejection seats for pilot survivability. Child seat manufacturers must meet strict certification standards. Even playground equipment is impact-tested to injury standards. All of these applications share a common thread - understanding what forces the human body experiences and whether they exceed injury thresholds. That's biomechanics. That's what our customers do." + +--- + +## SLIDE 18: The Impact - Lives Saved + +### Content: +**The Numbers:** + +| Metric | Then | Now | Change | +|--------|------|-----|--------| +| Deaths per 100M VMT | 4.74 (1970) | 1.10 (2019) | -77% | +| Annual deaths | 52,627 (1970) | 36,355 (2019) | -31% | +| VMT (billions) | 1,109 (1970) | 3,248 (2019) | +193% | + +**Estimated Lives Saved (NHTSA estimates):** +- Seatbelts: ~15,000/year +- Airbags: ~2,500/year +- ESC (electronic stability control): ~2,200/year +- Improved structures: thousands more + +**Total since 1970:** Hundreds of thousands of lives saved + +### Speaker Notes: +> "Let's bring this back to impact. In 1970, we had about 53,000 traffic deaths with 1.1 trillion miles driven. In 2019 - before the pandemic skewed things - we had 36,000 deaths with over 3 trillion miles driven. The fatality RATE dropped 77%. If we still had 1970 fatality rates with today's driving, we'd have over 150,000 deaths per year instead of 36,000. That's over 100,000 lives saved ANNUALLY by safety improvements. Seatbelts alone save an estimated 15,000 lives per year. Airbags add another 2,500. Electronic stability control prevents rollovers. Better structures protect occupants. All of this comes from research, testing, and data." + +--- + +## SLIDE 19: Our Role in the Ecosystem + +### Content: +**DTS Equipment Is Used:** +- In virtually every major automotive safety lab worldwide +- By NHTSA, IIHS, Euro NCAP +- By every major OEM +- By leading universities and research institutions +- By Tier 1 suppliers + +**What We Provide:** +- Precision data acquisition +- Reliability under extreme conditions +- The data that makes safety research possible + +**The Bottom Line:** +"When a researcher needs to know exactly what forces a human body experiences in a crash - they trust DTS to capture that data accurately." + +### Speaker Notes: +> "So where does DTS fit? Our equipment is in virtually every major safety lab in the world. When NHTSA runs a compliance test, when IIHS rates a vehicle, when a university studies injury biomechanics, when an OEM validates a new design - DTS data acquisition is capturing the critical measurements. We provide the precision and reliability that makes this research possible. When there's a crash, the car is destroyed. The data is what remains. Our job is to make sure that data is right." + +--- + +## SLIDE 20: Closing - Why This Matters + +### Content: +**Image:** Split image - crash test vs. family in car + +**Remember:** +- Every test we support generates data +- That data drives design decisions +- Those decisions save lives +- Real people, real families + +**We're not just selling data acquisition equipment.** +**We're part of a system that saves lives.** + +### Speaker Notes: +> "I want to leave you with this thought. Every piece of equipment we ship, every support call we take, every application we help configure - it's part of a system that saves real lives. The engineer analyzing crash data isn't looking at abstract numbers - they're figuring out how to prevent someone's parent, child, or spouse from being killed or injured. From Colonel Stapp riding rocket sleds in the 1950s, to Nils Bohlin's three-point belt, to today's advanced restraint systems and crash avoidance technology - this is a field defined by people who dedicated their careers to protecting human life. We're part of that tradition. Thank you." + +--- + +## SLIDE 21: Q&A + +**Content:** Questions? + +--- + +# APPENDIX + +## Video Resources + +### 1. Col. John Stapp Rocket Sled Footage (Highly Recommended) +**YouTube:** https://www.youtube.com/watch?v=s4D4rJIYyss +- Title: "Colonel John Stapp: The Fastest Man on Earth" +- Duration: ~4 minutes (can excerpt 1-2 min) +- Public domain footage from US Air Force +- Dramatic visuals of the actual 46.2g experiment +- Shows Stapp's face distortion under extreme g-forces + +**Alternative:** https://www.youtube.com/watch?v=p1LO6uxy11I +- Shorter compilation of rocket sled runs + +### 2. IIHS 1959 vs 2009 Crash Test (HIGHLY RECOMMENDED - use this one!) +**YouTube:** https://www.youtube.com/watch?v=joMK1WZjP7g +- Title: "1959 Chevrolet Bel Air vs. 2009 Chevrolet Malibu IIHS crash test" +- Duration: 1:43 +- Official IIHS video +- **THE most powerful demonstration of 50 years of safety progress** +- Shows the 1959 Bel Air completely collapsing while Malibu stays intact +- Perfect for Slide 9 video segment + +### 3. IIHS Small Overlap Test Compilation +**YouTube:** https://www.youtube.com/watch?v=Vz4jVPQ8-jA +- Shows multiple vehicles in small overlap test +- Demonstrates why this test changed vehicle design + +### 4. Modern Euro NCAP Crash Test Compilation +**YouTube:** https://www.youtube.com/watch?v=_ttkVRwOtVE +- High-speed camera footage +- Shows sophistication of modern testing protocols + +### 5. How Crash Test Dummies Work +**YouTube:** https://www.youtube.com/watch?v=xN3HwopD9gI +- Explains ATD instrumentation and purpose +- Good for technical audiences interested in the "how" + +### Video Usage Tips for Ben: +- **For this presentation:** Use the IIHS 1959 vs 2009 test (1:43) - it's the most impactful +- Play after Slide 8 (seatbelt section) or during Slide 9 +- Can also show Stapp footage if time permits (excerpt 60-90 seconds) +- Always test video playback before the presentation + +--- + +## Key Statistics Reference + +### US Traffic Fatalities (Source: NHTSA/Wikipedia) +| Year | Deaths | VMT (billions) | Deaths/100M VMT | +|------|--------|----------------|-----------------| +| 1937 | 37,819 | 270 | 14.00 | +| 1950 | 33,186 | 458 | 7.24 | +| 1960 | 36,399 | 718 | 5.06 | +| 1970 | 52,627 | 1,109 | 4.74 | +| 1980 | 51,091 | 1,527 | 3.35 | +| 1990 | 44,599 | 2,144 | 2.08 | +| 2000 | 41,945 | 2,747 | 1.53 | +| 2010 | 32,999 | 2,967 | 1.11 | +| 2019 | 36,355 | 3,248 | 1.10 | + +### Lives Saved Estimates (NHTSA) +- Seatbelts: ~15,000/year +- Airbags: ~2,500/year +- ESC: ~2,200/year + +--- + +## Timeline of Key Events + +### The Pioneers (1930s-1960s) +- **1930s:** Wayne State University begins cadaver crash research +- **1947:** John Stapp begins rocket sled experiments at Edwards AFB +- **1949:** Samuel Alderson creates "Sierra Sam" - first crash test dummy +- **1954:** Stapp achieves 46.2g deceleration - "Fastest Man on Earth" +- **1959:** Nils Bohlin invents 3-point seatbelt at Volvo; IIHS founded +- **1964:** Over 1 million steering column deaths recorded; GM introduces collapsible column + +### The Regulatory Revolution (1965-1980) +- **1965:** Ralph Nader publishes "Unsafe at Any Speed" +- **1966:** National Traffic and Motor Vehicle Safety Act signed; DOT created +- **1966:** William Haddon appointed first NHTSA Administrator +- **1968:** FMVSS 208 requires seatbelts in all new cars +- **1969:** William Haddon becomes first president of IIHS +- **1970:** NHTSA established as independent agency +- **1971:** Hybrid I dummy introduced by GM +- **1972:** Hybrid II dummy - first FMVSS-compliant dummy +- **1976:** Hybrid III dummy introduced - still used today +- **1979:** NHTSA introduces US NCAP (first in world) + +### The Modern Era (1980s-2000s) +- **1984:** New York passes first mandatory seatbelt law +- **1993:** GM discontinues live animal testing; others follow +- **1995:** IIHS introduces offset frontal crash test +- **1997:** Euro NCAP releases first ratings; Rover 100 receives 1-star +- **1998:** Euro NCAP moves operations to Brussels +- **2003:** IIHS introduces side impact test +- **2006:** C-NCAP (China) established +- **2007:** ESC becomes standard in US vehicles + +### Recent Advances (2010s-2020s) +- **2012:** IIHS introduces small overlap frontal test +- **2013:** THOR-50M dummy deliveries begin +- **2014:** Euro NCAP includes Autonomous Emergency Braking (AEB) +- **2015:** WIAMan military blast dummy developed (with DTS) +- **2020:** Euro NCAP introduces Mobile Progressive Deformable Barrier +- **2021:** IIHS updates side impact test (heavier, faster) +- **2023:** THOR-5F - first true female crash test dummy +- **2023:** Bharat NCAP (India) launches + +--- + +## Customer Examples (Verify with Sales/Marketing) + +### Government +- NHTSA Vehicle Research & Test Center (East Liberty, OH) +- Transport Canada + +### Academic +- Ohio State University - Injury Biomechanics Research Center +- Wayne State University +- University of Virginia - Center for Applied Biomechanics + +### Independent Labs +- Calspan (Buffalo, NY) +- MGA Research (Burlington, WI) +- Karco Engineering + +### OEMs +- GM, Ford, Stellantis +- Toyota, Honda +- BMW, Mercedes, VW +- Hyundai, Kia + +### Suppliers +- Autoliv +- ZF/TRW +- Joyson Safety Systems + +--- + +## ATD (Crash Test Dummy) Details + +### Visual Reference: +![[assets/atd_family.png|500]] +*The ATD family - representing different human sizes and crash scenarios* + +![[assets/hybrid_ii_dummies.jpg|400]] +*Hybrid II dummies - early standardized crash test dummies* + +![[assets/thor_male_female.jpg|400]] +*THOR-50M (male) and THOR-5F (female) - the next generation* + +![[assets/worldsid_dummy.jpg|350]] +*WorldSID - international side impact dummy* + +### History of ATD Development +| Year | Dummy | Significance | +|------|-------|--------------| +| 1949 | Sierra Sam | First crash test dummy, built by Samuel Alderson for USAF ejection seat testing | +| 1968 | VIP-50 | Built specifically for GM and Ford | +| 1971 | Hybrid I | GM combined best features of VIP and Sierra Stan | +| 1972 | Hybrid II | Improved shoulder, spine, knee; first FMVSS-compliant dummy | +| 1976 | Hybrid III | Current standard for frontal impact - still used globally today | +| 1990s | SID/EuroSID | Side Impact Dummies developed | +| 2000s | WorldSID | International harmonization effort | +| 2013 | THOR-50M | Advanced male dummy with 150+ data channels | +| 2015 | WIAMan | Military blast dummy (developed with DTS!) | +| 2023 | THOR-5F | First true female crash test dummy | + +### Hybrid III Family Specifications +| Model | Height | Weight | Use Case | +|-------|--------|--------|----------| +| 95th Male | 188 cm (6'2") | 100 kg (220 lb) | Large adult male | +| 50th Male | 175 cm (5'9") | 78 kg (172 lb) | Average adult male - most common | +| 5th Female | 152 cm (5'0") | 50 kg (110 lb) | Small adult female | +| 10-year-old | - | 36 kg (79 lb) | Child | +| 6-year-old | - | 21 kg (46 lb) | Child | +| 3-year-old | - | 15 kg (33 lb) | Child | + +### ATD Pricing (Approximate - Industry Estimates) +| Dummy Type | Approximate Cost | Notes | +|------------|------------------|-------| +| Hybrid III 50th Male | $200,000 - $400,000 | Most common, regulatory standard | +| Hybrid III 95th Male | $250,000 - $400,000 | Larger, more complex | +| Hybrid III 5th Female | $200,000 - $350,000 | Scaled from male design | +| THOR-50M | $500,000 - $800,000 | Most advanced, 150+ channels | +| THOR-5F | $500,000+ | New female design | +| WorldSID 50th | $400,000+ | Side impact, complex instrumentation | +| BioRID II | $200,000 - $300,000 | Rear impact/whiplash | +| Child dummies | $100,000 - $200,000 | Varies by size | +| WIAMan | ~$500,000+ | Military blast testing | + +**Note:** Prices vary significantly based on instrumentation level, supplier, and market conditions. A fully instrumented dummy with all sensors can exceed these estimates. + +### Key ATD Manufacturers +- **Humanetics** (USA/Global) - Largest, makes most major ATD types +- **JASTI** (Japan) - Japanese market +- **DTS** (USA) - WIAMan development partner, data acquisition systems + +### Child Dummy Reference: +![[assets/child_dummy_booster.jpg|350]] +*Child crash test dummy in booster seat configuration* + +![[assets/crabi_infant_dummy.jpg|300]] +*CRABI infant dummy for child seat testing* + +### DTS Connection to ATDs +- DTS provides data acquisition systems used WITH ATDs +- SLICE NANO/SLICE6 systems are embedded in modern dummies +- WIAMan project: DTS partnered with U.S. Army to develop military blast dummy +- DTS sensors capture: accelerations, forces, moments, displacements, angular velocity + +--- + +## Additional Safety Pioneers + +### William Haddon Jr. (1926-1985) - "Father of Injury Epidemiology" +**Career:** +- MIT and Harvard educated (MD + epidemiology) +- First Administrator of NHTSA (1966-1969), appointed by LBJ +- Created the first Federal Motor Vehicle Safety Standards (FMVSS) +- First President of IIHS (1969-1985) + +**Key Contributions:** +- **Haddon Matrix**: Framework for classifying injury prevention strategies + - Pre-event, Event, Post-event phases + - Human, Vehicle, Environment factors + - Still used worldwide in safety research +- Shifted focus from "driver error" to systemic safety analysis +- Pioneered drunk driving legislation +- Established motorcycle helmet requirements + +**Quote context:** Haddon was instrumental in transforming safety research from anecdotal to scientific, applying epidemiological methods to crash analysis. + +### Samuel W. Alderson (1914-2005) - "Father of the Crash Test Dummy" +- Founded Alderson Research Labs +- Created "Sierra Sam" in 1949 - the first crash test dummy +- Originally designed for USAF ejection seat testing +- Developed VIP-50 series for GM and Ford +- His work made standardized crash testing possible + +### Lawrence Patrick (1920-2006) - "The Human Guinea Pig" +Wayne State University professor who personally endured: +- 400+ rocket sled rides +- Chest impacts from heavy metal pendulums +- Face impacts from pneumatic hammers +- Glass shrapnel exposure to simulate windshield failure + +His motto: "I figured if I'm going to ask other people to do it, I should do it myself." + +--- + +## Euro NCAP History and Global NCAP Programs + +### Visual Reference: +![[assets/euro_ncap_logo.png|200]] +*Euro NCAP - European New Car Assessment Programme* + +![[assets/crash_test_dummies_subaru.jpg|400]] +*Modern crash test with instrumented dummies* + +### Euro NCAP (Founded 1996-1997) +- Started by UK Transport Research Laboratory +- First results released February 1997 +- Based in Brussels (now Leuven, Belgium) +- Backed by EU governments and consumer organizations +- Has tested 1,800+ vehicles, published 600+ ratings +- **Estimated to have helped save 78,000+ lives in Europe** + +**Key milestones:** +- 1997: First offset deformable barrier tests +- 2008: Child protection rating introduced +- 2012: Business/family van tests +- 2014: Autonomous Emergency Braking (AEB) added +- 2020: Mobile Progressive Deformable Barrier test introduced + +**Game-changing moment:** When the Rover 100 (1980 design) received a 1-star rating in 1997, it was withdrawn from production shortly after. This demonstrated consumer rating power. + +### Global NCAP Programs +| Program | Region | Founded | +|---------|--------|---------| +| NHTSA NCAP | USA | 1979 | +| Euro NCAP | Europe | 1996 | +| JNCAP | Japan | 1995 | +| ANCAP | Australia/NZ | 1999 | +| C-NCAP | China | 2006 | +| Latin NCAP | Latin America | 2010 | +| ASEAN NCAP | Southeast Asia | 2011 | +| Global NCAP | India/Africa | 2011 | +| Bharat NCAP | India | 2023 | + +The proliferation of NCAP programs worldwide creates competitive pressure for automakers to improve safety globally, not just in regulated markets. + +--- + +## Cadaver Research History + +### Wayne State University Pioneers (1930s-1950s) +Wayne State University in Detroit conducted groundbreaking research using human cadavers to understand crash injury mechanics. + +**Methods Used:** +- Steel ball bearings dropped on skulls to measure fracture thresholds +- Bodies dropped down elevator shafts onto steel plates +- Cadavers with crude accelerometers strapped into vehicles for crash tests +- Tests of physical properties of tissue + +**Challenges:** +- Ethical and moral debates +- Most available cadavers were older adult males (not representative) +- Deceased accident victims couldn't be used (compromised by previous injuries) +- No two cadavers are the same - difficult comparison data +- Child cadavers extremely difficult to obtain and controversial to use + +### Lawrence Patrick - Human Volunteer Testing +Wayne State professor who: +- Rode rocket sleds 400+ times +- Let himself be hit in the chest by heavy metal pendulums +- Allowed pneumatically driven hammers to strike his face +- Exposed to shattered glass to simulate window implosion +- Developed mathematical models for crash survivability + +### Albert King's Calculation (1995 Journal of Trauma) +For every cadaver used in safety research: +- 61 people survive annually due to seatbelt improvements +- 147 people survive annually due to airbag designs +- 68 people survive windshield impacts +- **Total: ~8,500 lives saved annually** (as of 1987 design improvements) + +### Animal Testing Era (1950s-1990s) +- Chimpanzees on rocket sleds +- Pigs used for steering wheel impact testing (similar internal structure to humans, can sit upright) +- Baboons used at University of Michigan +- Animals anesthetized during tests +- GM discontinued live animal testing in 1993 +- Other manufacturers followed + +### Transition to ATDs +Animal and cadaver testing provided the fundamental data needed to build accurate mechanical surrogates. Modern ATDs are validated against this biological data to ensure they respond like human bodies. + +--- + +## Sources + +1. Wikipedia - John Stapp +2. Wikipedia - Unsafe at Any Speed +3. Wikipedia - Nils Bohlin +4. Wikipedia - Insurance Institute for Highway Safety +5. Wikipedia - Motor vehicle fatality rate in U.S. by year +6. Wikipedia - Crash test dummy +7. Wikipedia - Hybrid III +8. IIHS official website (iihs.org) +9. NHTSA official website (nhtsa.gov) +10. Humanetics Group (humaneticsgroup.com) +11. Albert King, "Humanitarian Benefits of Cadaver Research on Injury Prevention," Journal of Trauma, 1995 + +--- + +## Notes for Ben + +### Timing +- Opening (Slides 1-2): 2-3 min +- History (Slides 3-9): 15-17 min +- Modern Ecosystem (Slides 10-14): 12-15 min +- What They Test (Slides 15-17): 8-10 min +- Impact & Close (Slides 18-20): 3-5 min +- Q&A (Slide 21): 5+ min + +### Video Placement +- Recommend placing IIHS 1959 vs 2009 video after Slide 8 (Seatbelt section) +- ~2-3 minutes +- Very powerful visual break before moving to modern ecosystem + +### Audience Engagement Tips +- Mixed audience knowledge levels - don't assume everyone knows industry basics +- The historical stories (Stapp, Nader, Bohlin) are emotionally engaging +- Statistics become meaningful when tied to "lives saved" +- End on inspirational note - "we're part of this" + +### Potential Questions to Prepare For +1. "What specific DTS products do these customers use?" +2. "How do we compare to competitors in this space?" +3. "Are there customer success stories we can share?" +4. "What's next in safety testing technology?" +5. "How has testing changed with electric vehicles?" + +--- + +*Document prepared for DTS internal presentation* +*Last updated: February 2026* diff --git a/presentation_full.md b/presentation_full.md new file mode 100644 index 0000000..12bc893 --- /dev/null +++ b/presentation_full.md @@ -0,0 +1,1950 @@ +# Safety Testing Customer Showcase +## DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +# SLIDE-BY-SLIDE CONTENT WITH SPEAKER NOTES + +--- + +## SLIDE 1: Title Slide +**Title:** "Saving Lives, One Data Point at a Time" +**Subtitle:** Understanding Our Safety Testing Customers +**Presenter:** Ben, Application Engineer +**Company:** Diversified Technical Systems + +--- + +## SLIDE 2: Opening Hook - The Numbers + +### Content: +- **1970:** 4.74 deaths per 100 million vehicle miles traveled +- **2019:** 1.10 deaths per 100 million vehicle miles traveled +- **That's a 77% reduction in fatality rate** +- Despite 3x more miles driven annually (1.1 trillion vs 3.2 trillion) + +### Speaker Notes: +> "Let me start with a number that should make everyone in this room proud to work here. In 1970, for every 100 million miles Americans drove, nearly 5 people died. Today, that number is just over 1. We drive three times as many miles, yet the fatality rate has dropped by 77%. This didn't happen by accident - it happened because of research, testing, and the relentless pursuit of data. And DTS is part of that story." + +--- + +## SLIDE 3: The Dark Ages of Vehicle Safety + +### Visual: +![[assets/1957_buick_dashboard.jpg|400]] +*1957 Buick Roadmaster dashboard - chrome everywhere, no safety padding* + +![[assets/1957_chevy_styling.jpg|400]] +*1957 Chevrolet Bel Air - style over safety* + +### Content: +**Pre-1950s Reality:** +- No seatbelts standard in vehicles +- Rigid steering columns (speared drivers in crashes) +- Solid steel dashboards +- No crumple zones +- Chrome and glass everywhere +- Philosophy: "The driver is the problem" + +**1937:** 37,819 deaths with only 270 billion miles driven (14.0 deaths/100M miles) + +### Speaker Notes: +> "Before we appreciate where we are, we need to understand where we started. In the 1930s through 1950s, cars were essentially steel boxes designed to look good and go fast. Safety was an afterthought. If you crashed, the car stayed mostly intact - but YOU didn't. Steering columns speared through drivers. Passengers hit chrome-plated steel dashboards. The industry's position? 'Crashes are caused by bad drivers.' Improve the driver, not the car." + +--- + +## SLIDE 3B: The Cadaver Pioneers (Optional Slide) + +### Visual: +![[assets/cadaver_crash_test.jpg|400]] +*Cadaver used during a frontal impact test (historical)* + +### Content: +**Wayne State University - 1930s-1950s:** +- First serious research on crash injury mechanics +- Used human cadavers to study impact tolerance +- Ball bearings dropped on skulls to measure force thresholds +- Bodies dropped down elevator shafts onto steel plates +- Crude accelerometers attached to measure forces + +**What They Learned:** +- Human injury thresholds for different body parts +- Skull fracture forces +- Chest compression limits +- Foundation for all crash test dummy design + +**Albert King's 1995 Calculation:** +- For every cadaver used in research: + - 61 people survive annually due to seatbelts + - 147 survive due to airbags + - 68 survive windshield impact +- ~8,500 lives saved annually from cadaver research (as of 1987) + +### Speaker Notes: +> "Before we had crash test dummies, researchers had to use human cadavers - and sometimes themselves. Wayne State University pioneered this work in the 1930s and 40s. They dropped ball bearings on skulls to measure fracture thresholds. They sent bodies down elevator shafts to study impact forces. It sounds gruesome, but this research gave us the fundamental data about human injury tolerance that everything else is built on. Albert King calculated that cadaver research saves over 8,500 lives every year. For every single cadaver used, 61 people survive each year because of seatbelt designs, 147 because of airbag designs, and 68 survive windshield impacts. The ethical debates around this research were real, but the lives saved are undeniable." + +--- + +## SLIDE 4: Col. John Paul Stapp - "The Fastest Man on Earth" + +### Visual: +![[assets/john_stapp_portrait.jpg|300]] +*Col. John Stapp in Air Force uniform* + +![[assets/john_stapp_rocket_sled.jpg|400]] +*Stapp riding the rocket sled at Edwards Air Force Base* + +### Content: +**Key Facts:** +- USAF Flight Surgeon, Physician, Biophysicist (1910-1999) +- Began rocket sled deceleration experiments in 1947 +- Personally rode the sled **29 times** +- Final ride (Dec 10, 1954): **46.2 g deceleration** - still a record for voluntary human exposure +- Reached 632 mph, stopped in 1.4 seconds +- Injuries: broken wrists, broken ribs, temporary blindness, lost fillings + +### Speaker Notes: +> "Meet Colonel John Stapp - a man who literally put his body on the line for safety research. Starting in 1947, Stapp conducted rocket sled experiments to understand human tolerance to deceleration. But here's the remarkable thing - when he couldn't get enough volunteers, he rode the sled himself. 29 times. On his final ride in 1954, he accelerated to 632 miles per hour - faster than the land speed record at the time - then stopped in 1.4 seconds, experiencing 46.2 g's of deceleration. He broke bones, lost fillings, and temporarily lost his vision - but he survived. And he proved that humans could withstand far more than anyone believed." + +--- + +## SLIDE 5: Stapp's Legacy + +### Content: +**What Stapp Proved:** +- Prior belief: Humans couldn't survive beyond 18g +- Stapp survived 46.2g (and believed humans could withstand more) +- Proper restraints are critical +- Backward-facing seats are safest (though airlines still don't use them) +- Led to ejection seat development for fighter pilots + +**Quote:** "I felt a sensation in the eyes, somewhat like the extraction of a molar without anesthetic." - John Stapp, describing 46.2g + +**Fun Fact:** Stapp popularized "Murphy's Law" - the principle came from his project + +### Speaker Notes: +> "Stapp's work fundamentally changed what we knew about human survivability. Before his experiments, the accepted limit was 18g - anything beyond that was considered fatal. Stapp proved that was wrong. He also developed new harness designs, advocated tirelessly for seatbelts in cars, and his research led directly to fighter pilot ejection seats. After retiring from the Air Force, he was loaned to NHTSA to continue auto safety research. Oh, and one more thing - you've all heard of Murphy's Law? 'Anything that can go wrong, will go wrong.' That originated on Stapp's project. He's the one who popularized it." + +--- + +## SLIDE 6: Ralph Nader - "Unsafe at Any Speed" (1965) + +### Visual: +![[assets/unsafe_at_any_speed_cover.jpg|300]] +*Unsafe at Any Speed - the book that changed everything (1965)* + +![[assets/ralph_nader_1975.jpg|350]] +*Ralph Nader, consumer advocate and author* + +### Content: + +**The Controversy:** +- November 30, 1965: Book published, attacking auto industry +- Chapter 1: "The Sporty Corvair" - exposed dangerous swing-axle suspension +- Central thesis: Automakers prioritized style over safety +- Industry spent 23 cents per car on safety vs. $700 on annual styling changes + +**GM's Response:** +- Hired private investigators to dig up dirt on Nader +- Surveillance, harassment, attempted entrapment +- GM President forced to apologize before Congress (1966) +- Nader sued and won $425,000 - used it to found Center for Auto Safety + +### Speaker Notes: +> "In 1965, a young lawyer named Ralph Nader published a book that would change everything. 'Unsafe at Any Speed' was a scathing indictment of the auto industry. Nader documented how manufacturers prioritized style over safety, spending $700 per car on annual cosmetic changes while investing just 23 cents on safety. GM's response? They hired private investigators to follow Nader, tap his phones, and even hired women to try to entrap him. When this came to light, GM's president was hauled before Congress and forced to publicly apologize. Nader sued and won - and used the settlement to found the Center for Auto Safety, which still operates today." + +--- + +## SLIDE 7: The Birth of Modern Safety Regulation + +### Content: +**Timeline:** +- **1965:** Unsafe at Any Speed published +- **1966:** National Traffic and Motor Vehicle Safety Act signed +- **1966:** U.S. Department of Transportation created +- **1970:** NHTSA established (National Highway Traffic Safety Administration) + +**The Paradigm Shift:** +- Before: "Crashes are caused by bad drivers" (Education, Enforcement, Engineering of ROADS) +- After: "Crashworthiness" - design cars to protect occupants WHEN crashes occur + +**Federal Motor Vehicle Safety Standards (FMVSS):** Now over 50 standards covering everything from windshield wipers to fuel system integrity + +### Speaker Notes: +> "Nader's book, combined with growing public outrage, led to Congressional action. In 1966, President Johnson signed the National Traffic and Motor Vehicle Safety Act. The Department of Transportation was created that same year, and by 1970, NHTSA was established. This represented a fundamental shift in philosophy. The old 'Three E's' - Education, Enforcement, and Engineering - were all about blaming the driver. The new approach recognized that crashes WILL happen, so we need to design vehicles that protect people when they do. This philosophy - crashworthiness - is what our customers work on every day." + +--- + +## SLIDE 8: The Seatbelt Revolution - Nils Bohlin + +### Visual: +![[assets/seatbelt_three_point.jpg|400]] +*The modern three-point seatbelt - Nils Bohlin's life-saving invention (1959)* + +### Content: + +**The Inventor:** +- Nils Bohlin (1920-2002), Swedish engineer +- Previously designed ejection seats at Saab +- Hired by Volvo in 1958 as safety engineer +- Invented modern 3-point seatbelt in 1959 + +**The Patent Decision:** +- Volvo patented the design (US Patent 3,043,625) +- **Then made it available to all automakers for free** +- Volvo believed safety shouldn't be proprietary + +**Impact:** +- NHTSA estimates seatbelts save ~15,000 lives per year in US alone +- Bohlin's study of 28,000 accidents: No belted occupants died below 60 mph if compartment stayed intact + +### Speaker Notes: +> "While politicians debated, an engineer in Sweden was solving the problem. Nils Bohlin had spent years designing ejection seats at Saab - systems to get pilots OUT of aircraft. When he joined Volvo in 1958, he turned his attention to keeping people IN their vehicles safely. The result was the modern three-point seatbelt - the V-shaped design we all use today. Here's the remarkable part: Volvo patented it, then made the patent freely available to every automaker in the world. They believed something that important shouldn't be proprietary. Today, seatbelts save an estimated 15,000 lives per year in the US alone. Bohlin's invention is considered one of the most important safety innovations in history." + +--- + +## SLIDE 9: Video Segment - Historical Perspective + +### Content: +**VIDEO: 2-3 minutes** +Options: +1. Col. Stapp rocket sled footage (public domain, available on YouTube) +2. IIHS 50th Anniversary Test: 1959 Bel Air vs. 2009 Malibu +3. Compilation of early crash test footage + +**Suggested:** IIHS 1959 vs 2009 test - powerful visual of progress + +### Speaker Notes: +> "Let me show you just how far we've come. [PLAY VIDEO] In 2009, IIHS celebrated their 50th anniversary by crashing a 1959 Chevy Bel Air into a 2009 Chevy Malibu at 40 mph. The Bel Air completely collapses - the occupant compartment is destroyed. The Malibu? The driver probably walks away. This is what 50 years of safety research looks like. This is what our customers do." + +--- + +## SLIDE 10: The Modern Safety Ecosystem - Key Players + +### Content: +**Regulatory/Government:** +- NHTSA (US) - Mandatory FMVSS standards, 5-star ratings +- Transport Canada +- UNECE (European regulations) +- JNCAP, KNCAP, ANCAP, etc. + +**Independent Testing (Consumer Information):** +- IIHS (Insurance Institute for Highway Safety) - Founded 1959 +- Euro NCAP - Founded 1997 +- Global NCAP programs + +**Key Difference:** +- NHTSA: Minimum standards (pass/fail) +- IIHS/NCAP: Consumer ratings (competition for better) + +### Speaker Notes: +> "Let me walk you through the modern safety ecosystem - because understanding this helps you understand our customers. There are two parallel tracks. First, government regulations - NHTSA in the US sets Federal Motor Vehicle Safety Standards. These are the minimum requirements every vehicle must meet. Pass or fail. But here's where it gets interesting - the Insurance Institute for Highway Safety, IIHS, provides CONSUMER ratings. Their tests are often more demanding than government requirements, and their ratings directly affect buying decisions. This creates competitive pressure that pushes manufacturers beyond minimum compliance." + +--- + +## SLIDE 11: IIHS - Changing the Game + +### Visual: +![[assets/iihs_crash_hall.jpg|400]] +*IIHS crash test facility - where vehicles earn their safety ratings* + +![[assets/iihs_frontal_crash_test.jpg|400]] +*IIHS frontal crash test in progress* + +### Content: +**IIHS History:** +- Founded 1959 by insurance industry +- Funding: Auto insurance companies (they pay claims, so they're motivated) +- William Haddon Jr. became president 1969, began crash testing + +**Game-Changing Tests:** +- 1995: Moderate overlap frontal test (40% offset, deformable barrier) +- 2003: Side impact test +- 2009: Roof strength test +- **2012: Small overlap frontal test (25% offset)** - Most manufacturers failed initially +- 2021: Updated side test (heavier, faster) + +**The Small Overlap Story:** +- First tests (2012): Only 3 of 11 luxury cars earned "Good" or "Acceptable" +- Exposed a gap in protection that NHTSA tests missed +- Manufacturers scrambled to redesign structures + +### Speaker Notes: +> "IIHS deserves special attention because they've repeatedly pushed the industry forward. Their funding comes from insurance companies - the people who pay out when crashes happen. So they're highly motivated to reduce crash injuries. In 2012, IIHS introduced the small overlap frontal test. This simulates hitting a tree or pole with just 25% of the front end. When they first ran this test, most vehicles failed miserably - including luxury cars. It exposed a massive gap in protection that the existing tests didn't catch. Manufacturers had to completely redesign their structures. This is the competitive pressure that drives innovation." + +--- + +## SLIDE 12: Our Customer Segments + +### Content: +**1. Government/Regulatory** +- NHTSA Vehicle Research & Test Center (East Liberty, Ohio) +- Transport Canada +- JNCAP, KNCAP, etc. + +**2. Academic/Research Institutions** +- Ohio State Injury Biomechanics Research Center +- Wayne State University Bioengineering Center +- University of Virginia Center for Applied Biomechanics +- Wake Forest University + +**3. Independent Test Labs** +- Calspan (Buffalo, NY) +- MGA Research (Burlington, WI) +- Karco Engineering + +**4. OEM Safety Labs** +- GM, Ford, Stellantis (US) +- Toyota, Honda, Nissan (Japan) +- VW, BMW, Mercedes (Germany) +- Hyundai, Kia (Korea) + +### Speaker Notes: +> "So who are our customers? Let me break it down. Government labs like NHTSA's Vehicle Research and Test Center set and verify standards. Universities conduct fundamental research on human injury tolerance - Ohio State, Wayne State, UVA - these institutions have been advancing biomechanics for decades. Independent test labs like Calspan and MGA conduct tests for multiple clients - they might test the same vehicle for IIHS ratings, for an OEM validation program, and for a supplier qualification all in the same month. And of course, every major automaker has their own safety testing facilities." + +--- + +## SLIDE 13: Customer Segments (Continued) + +### Content: +**5. Insurance Industry** +- IIHS (Ruckersville, Virginia) +- Highway Loss Data Institute (HLDI) + +**6. Tier 1 Suppliers** +- Autoliv (airbags, seatbelts) +- ZF/TRW (occupant safety systems) +- Joyson Safety Systems +- Takata successor companies + +**7. Beyond Automotive** +- Helmet manufacturers (NFL, NHL, cycling) +- Military (blast protection, ejection seats) +- Child seat manufacturers +- Sports equipment +- Aerospace + +### Speaker Notes: +> "There's more. IIHS runs their own test facility in Virginia - one of the most sophisticated in the world. Tier 1 suppliers like Autoliv and ZF develop and validate restraint systems - they need data acquisition for component testing, sled testing, and full vehicle validation. And don't forget - safety testing extends well beyond cars. Our equipment is used to test NFL helmets, military blast protection, ejection seats, and playground equipment. Anywhere there's a question of 'what forces does the human body experience?' - that's where DTS fits." + +--- + +## SLIDE 14: The Economics of Safety Testing + +### Content: +**What Things Cost:** + +| Item | Approximate Cost | +|------|------------------| +| Full vehicle crash test | $50,000 - $500,000+ | +| Test vehicle (destroyed) | $30,000 - $80,000 | +| ATD (Hybrid III 50th Male) | $200,000 - $400,000 | +| ATD (THOR) | $500,000 - $800,000 | +| WorldSID 50th | $400,000+ | +| DTS data acquisition system | [Reference DTS pricing] | + +**Why Data Acquisition Matters:** +- A crashed car is gone forever +- The DATA is what remains +- Every sensor, every channel, every data point must be right +- One bad test = $100K+ repeat cost + +### Speaker Notes: +> "Let's talk money, because this helps explain why our customers care so much about data quality. A single crash test can cost anywhere from $50,000 to over half a million dollars, depending on the vehicle and test configuration. The test vehicle is destroyed - that's $30,000 to $80,000 gone. A Hybrid III dummy costs $200,000 to $400,000. The new THOR dummy? Up to $800,000. Here's the thing - once you've crashed the car, it's done. All you have left is the data. If a sensor failed, if a channel dropped out, if the data is questionable - you might have to run the entire test again. That's why our customers demand reliability and accuracy. The data acquisition system is a small fraction of the total test cost, but it's what captures ALL the value." + +--- + +## SLIDE 15: Types of Crash Tests + +### Visual: +![[assets/small_overlap_test.jpg|400]] +*IIHS small overlap frontal test - the test that changed vehicle design* + +![[assets/roof_strength_test.jpg|400]] +*Roof strength/crush resistance test* + +### Content: +**Frontal Impact:** +- Full frontal (NHTSA NCAP - 35 mph rigid barrier) +- Moderate overlap (IIHS - 40% offset, 40 mph) +- Small overlap (IIHS - 25% offset, 40 mph) +- Oblique (NHTSA proposed) + +**Side Impact:** +- Moving deformable barrier (NHTSA/IIHS) +- Pole impact +- Updated IIHS test (2021): heavier, faster barrier + +**Other:** +- Rear impact (head restraint whiplash) +- Roof crush/rollover +- Pedestrian protection +- Frontal collision avoidance (AEB testing) + +### Speaker Notes: +> "Let me walk you through the main test types, because this is what our customers' equipment configurations are designed around. Frontal tests come in several flavors - full frontal into a rigid wall, offset into a deformable barrier, and the challenging small overlap test. Each stresses the structure differently and requires different instrumentation. Side impacts can be a moving barrier simulating a T-bone crash, or a pole simulating wrapping around a tree. IIHS recently updated their side test to be more demanding - heavier barrier, higher speed. Manufacturers had to redesign, and they needed data to do it." + +--- + +## SLIDE 16: The ATD - "The Crash Test Dummy" + +### Visual: +![[assets/sierra_sam.jpg|250]] +*Sierra Sam (1949) - the first crash test dummy* + +![[assets/hybrid_iii_family.jpg|400]] +*The Hybrid III family - representing different human sizes* + +![[assets/thor_dummy.jpg|350]] +*THOR dummy - the next generation of crash testing* + +### Content: +**Evolution:** +- 1949: "Sierra Sam" - first crash test dummy +- 1971: Hybrid I +- 1972: Hybrid II +- 1976: Hybrid III (still widely used today) +- 2020s: THOR (advanced thorax, more biofidelic) + +**The Hybrid III Family:** +- 50th percentile male (most common) +- 95th percentile male +- 5th percentile female +- 6-year-old, 3-year-old, 12-month-old + +**DTS Connection:** +- ATDs are mechanical bodies +- DTS provides the "nervous system" - the sensors that feel +- Accelerometers, load cells, displacement sensors +- We turn physical events into measurable data + +### Speaker Notes: +> "The crash test dummy - officially called an Anthropomorphic Test Device or ATD - is a remarkable piece of engineering. The Hybrid III, introduced in 1976, is still the global standard for frontal impact testing. It comes in a family of sizes representing different human populations. The THOR dummy is newer, with more sophisticated chest instrumentation. But here's the key - these dummies are mechanical devices. They have no way to 'feel' or 'report' what happens to them without instrumentation. That's where DTS comes in. We provide the nervous system - the accelerometers in the head, the load cells in the neck and femurs, the chest deflection potentiometers. We turn a physical crash event into data that engineers can analyze." + +--- + +## SLIDE 17: Beyond Automotive + +### Visual: +![[assets/wiaman_dummy.jpg|400]] +*WIAMan dummy - military blast protection testing (developed with DTS)* + +### Content: +**Sports:** +- NFL helmet testing (concussion research) +- Hockey helmet certification +- Bicycle helmet standards +- Equestrian helmets + +**Military:** +- Blast/IED protection +- Vehicle survivability +- Ejection seat development +- Body armor testing + +**Other:** +- Child car seats +- Playground equipment impact testing +- Aerospace + +**Common Thread:** Human impact tolerance research - our core competency + +### Speaker Notes: +> "Our technology extends well beyond automotive. The NFL has invested heavily in helmet testing after the concussion crisis - they need data on head acceleration and rotation. The military tests vehicle underbody protection against IEDs, body armor against ballistic impact, and ejection seats for pilot survivability. Child seat manufacturers must meet strict certification standards. Even playground equipment is impact-tested to injury standards. All of these applications share a common thread - understanding what forces the human body experiences and whether they exceed injury thresholds. That's biomechanics. That's what our customers do." + +--- + +## SLIDE 18: The Impact - Lives Saved + +### Content: +**The Numbers:** + +| Metric | Then | Now | Change | +|--------|------|-----|--------| +| Deaths per 100M VMT | 4.74 (1970) | 1.10 (2019) | -77% | +| Annual deaths | 52,627 (1970) | 36,355 (2019) | -31% | +| VMT (billions) | 1,109 (1970) | 3,248 (2019) | +193% | + +**Estimated Lives Saved (NHTSA estimates):** +- Seatbelts: ~15,000/year +- Airbags: ~2,500/year +- ESC (electronic stability control): ~2,200/year +- Improved structures: thousands more + +**Total since 1970:** Hundreds of thousands of lives saved + +### Speaker Notes: +> "Let's bring this back to impact. In 1970, we had about 53,000 traffic deaths with 1.1 trillion miles driven. In 2019 - before the pandemic skewed things - we had 36,000 deaths with over 3 trillion miles driven. The fatality RATE dropped 77%. If we still had 1970 fatality rates with today's driving, we'd have over 150,000 deaths per year instead of 36,000. That's over 100,000 lives saved ANNUALLY by safety improvements. Seatbelts alone save an estimated 15,000 lives per year. Airbags add another 2,500. Electronic stability control prevents rollovers. Better structures protect occupants. All of this comes from research, testing, and data." + +--- + +## SLIDE 19: Our Role in the Ecosystem + +### Content: +**DTS Equipment Is Used:** +- In virtually every major automotive safety lab worldwide +- By NHTSA, IIHS, Euro NCAP +- By every major OEM +- By leading universities and research institutions +- By Tier 1 suppliers + +**What We Provide:** +- Precision data acquisition +- Reliability under extreme conditions +- The data that makes safety research possible + +**The Bottom Line:** +"When a researcher needs to know exactly what forces a human body experiences in a crash - they trust DTS to capture that data accurately." + +### Speaker Notes: +> "So where does DTS fit? Our equipment is in virtually every major safety lab in the world. When NHTSA runs a compliance test, when IIHS rates a vehicle, when a university studies injury biomechanics, when an OEM validates a new design - DTS data acquisition is capturing the critical measurements. We provide the precision and reliability that makes this research possible. When there's a crash, the car is destroyed. The data is what remains. Our job is to make sure that data is right." + +--- + +## SLIDE 20: Closing - Why This Matters + +### Content: +**Image:** Split image - crash test vs. family in car + +**Remember:** +- Every test we support generates data +- That data drives design decisions +- Those decisions save lives +- Real people, real families + +**We're not just selling data acquisition equipment.** +**We're part of a system that saves lives.** + +### Speaker Notes: +> "I want to leave you with this thought. Every piece of equipment we ship, every support call we take, every application we help configure - it's part of a system that saves real lives. The engineer analyzing crash data isn't looking at abstract numbers - they're figuring out how to prevent someone's parent, child, or spouse from being killed or injured. From Colonel Stapp riding rocket sleds in the 1950s, to Nils Bohlin's three-point belt, to today's advanced restraint systems and crash avoidance technology - this is a field defined by people who dedicated their careers to protecting human life. We're part of that tradition. Thank you." + +--- + +## SLIDE 21: Q&A + +**Content:** Questions? + +--- + +# APPENDIX + +## Video Resources + +### 1. Col. John Stapp Rocket Sled Footage (Highly Recommended) +**YouTube:** https://www.youtube.com/watch?v=s4D4rJIYyss +- Title: "Colonel John Stapp: The Fastest Man on Earth" +- Duration: ~4 minutes (can excerpt 1-2 min) +- Public domain footage from US Air Force +- Dramatic visuals of the actual 46.2g experiment +- Shows Stapp's face distortion under extreme g-forces + +**Alternative:** https://www.youtube.com/watch?v=p1LO6uxy11I +- Shorter compilation of rocket sled runs + +### 2. IIHS 1959 vs 2009 Crash Test (HIGHLY RECOMMENDED - use this one!) +**YouTube:** https://www.youtube.com/watch?v=joMK1WZjP7g +- Title: "1959 Chevrolet Bel Air vs. 2009 Chevrolet Malibu IIHS crash test" +- Duration: 1:43 +- Official IIHS video +- **THE most powerful demonstration of 50 years of safety progress** +- Shows the 1959 Bel Air completely collapsing while Malibu stays intact +- Perfect for Slide 9 video segment + +### 3. IIHS Small Overlap Test Compilation +**YouTube:** https://www.youtube.com/watch?v=Vz4jVPQ8-jA +- Shows multiple vehicles in small overlap test +- Demonstrates why this test changed vehicle design + +### 4. Modern Euro NCAP Crash Test Compilation +**YouTube:** https://www.youtube.com/watch?v=_ttkVRwOtVE +- High-speed camera footage +- Shows sophistication of modern testing protocols + +### 5. How Crash Test Dummies Work +**YouTube:** https://www.youtube.com/watch?v=xN3HwopD9gI +- Explains ATD instrumentation and purpose +- Good for technical audiences interested in the "how" + +### Video Usage Tips for Ben: +- **For this presentation:** Use the IIHS 1959 vs 2009 test (1:43) - it's the most impactful +- Play after Slide 8 (seatbelt section) or during Slide 9 +- Can also show Stapp footage if time permits (excerpt 60-90 seconds) +- Always test video playback before the presentation + +--- + +## Key Statistics Reference + +### US Traffic Fatalities (Source: NHTSA/Wikipedia) +| Year | Deaths | VMT (billions) | Deaths/100M VMT | Notes | +|------|--------|----------------|-----------------|-------| +| 1921 | 13,253 | 55 | 24.09 | Early automobile era | +| 1937 | 37,819 | 270 | 14.00 | Pre-safety features | +| 1950 | 33,186 | 458 | 7.24 | Post-war boom | +| 1960 | 36,399 | 718 | 5.06 | Pre-Nader | +| 1970 | 52,627 | 1,109 | 4.74 | Peak deaths (post-NHTSA) | +| 1972 | 54,589 | 1,264 | 4.32 | All-time peak US deaths | +| 1980 | 51,091 | 1,527 | 3.35 | Seatbelt laws starting | +| 1990 | 44,599 | 2,144 | 2.08 | Airbags spreading | +| 2000 | 41,945 | 2,747 | 1.53 | ESC emerging | +| 2010 | 32,999 | 2,967 | 1.11 | Historic low rate | +| 2011 | 32,479 | 2,946 | 1.10 | Lowest since 1949 | +| 2019 | 36,096 | 3,225 | 1.11 | Pre-pandemic baseline | +| 2020 | 38,824 | 2,830 | 1.37 | Pandemic spike (less driving, more speeding) | +| 2021 | 42,939 | 3,212 | 1.33 | Highest deaths since 2005 | +| 2022 | 42,795 | 3,270 | 1.31 | Slight improvement | + +### The "What If" Calculation +**If we still had 1970 fatality rates today:** +- 1970 rate: 4.74 deaths per 100M VMT +- 2019 VMT: 3.225 trillion miles +- Hypothetical deaths: **152,865 per year** +- Actual deaths (2019): 36,096 +- **Lives saved by safety improvements: ~116,769 per year** + +### Lives Saved by Technology (NHTSA Estimates, Annual US) +| Technology | Lives Saved/Year | First Required | Notes | +|------------|------------------|----------------|-------| +| Seatbelts | ~15,000 | 1968 | Single most effective safety device | +| Frontal airbags | ~2,790 | 1998 | Driver + passenger | +| Side airbags | ~425 | Voluntary | Growing adoption | +| ESC (Electronic Stability Control) | ~2,202 | 2012 | Prevents rollovers | +| Daytime running lights | ~400-600 | Voluntary | Visibility improvement | +| ABS (Anti-lock brakes) | ~200-400 | Voluntary | Varies by study | +| Improved structures | Thousands | Ongoing | Hard to quantify separately | + +### Cumulative Lives Saved (NHTSA Estimates) +- **Seatbelts (1960-2012):** 329,715 lives +- **Airbags (1987-2012):** 37,409 lives +- **Child restraints (1975-2012):** 10,421 lives +- **Motorcycle helmets (1976-2012):** 37,000+ lives + +### Seatbelt Effectiveness +| Crash Type | Risk Reduction (Belted vs. Unbelted) | +|------------|--------------------------------------| +| Fatal injury - front seat | 45% reduction | +| Moderate-to-critical injury | 50% reduction | +| Ejection (fatal in 77% of cases) | Seatbelts prevent 30x more | +| Rollover fatality | 77% reduction for belted occupants | + +### Seatbelt Usage Rates Over Time +| Year | Usage Rate | Notes | +|------|------------|-------| +| 1983 | 14% | Before state laws | +| 1984 | 14% | NY passes first mandatory law | +| 1990 | 49% | More states add laws | +| 1995 | 68% | Primary enforcement spreading | +| 2000 | 71% | Continuing education campaigns | +| 2010 | 85% | Click It or Ticket campaigns | +| 2020 | 90% | Near saturation | +| 2022 | 92% | Current level | + +### The Unbelted Problem +- 47% of passenger vehicle occupants killed in 2021 were **unbelted** +- Unbelted occupants are 30x more likely to be ejected +- Pickup truck occupants have lowest belt use (88%) +- Nighttime drivers have lower belt use (84%) +- Rural drivers have lower belt use (87%) + +### Child Safety Statistics +| Metric | Data | +|--------|------| +| Lives saved by child seats (1975-2021) | 11,606 | +| Car seats reduce fatal injury risk (infants) | 71% | +| Car seats reduce fatal injury risk (1-4 years) | 54% | +| Booster seats reduce injury risk (4-8 years) | 45% | +| Children in rear seat survival advantage | 27% safer than front seat | + +### Airbag Statistics +| Metric | Data | +|--------|------| +| Lives saved by frontal airbags (1987-2017) | 50,457 | +| First fatality from airbag | 1990 | +| Peak airbag fatalities | 1997 (53 deaths) | +| Deaths from airbags after "depowering" | <10/year | +| Airbags + seatbelt effectiveness | 61% reduction in fatality risk | +| Airbag alone (no belt) effectiveness | Only 14% reduction | + +**Key insight:** Airbags are a supplement to seatbelts, not a replacement. "Airbag" without "seatbelt" = limited protection. + +### Rollover Statistics +- Rollovers are only 3% of crashes but 30% of fatalities +- ESC reduces rollover crashes by 75-80% +- Roof strength standards (FMVSS 216) upgraded in 2009 +- Modern vehicles must withstand 3x vehicle weight on roof +- Prior to 2009, standard was only 1.5x vehicle weight + +### Pedestrian & Cyclist Deaths (Growing Concern) +| Year | Pedestrian Deaths | Cyclist Deaths | Combined | +|------|-------------------|----------------|----------| +| 2010 | 4,302 | 618 | 4,920 | +| 2015 | 5,494 | 818 | 6,312 | +| 2019 | 6,205 | 846 | 7,051 | +| 2021 | 7,388 | 966 | 8,354 | + +**Trend:** Occupant deaths decreasing, vulnerable road user deaths increasing. SUVs and distracted driving are factors. + +### Global Statistics +| Country/Region | Traffic Deaths (2019) | Deaths per 100k pop | Notes | +|----------------|----------------------|---------------------|-------| +| United States | 36,096 | 11.0 | Lagging peer nations | +| Germany | 3,046 | 3.7 | Autobahn but safer | +| United Kingdom | 1,752 | 2.6 | Strong enforcement | +| Sweden | 221 | 2.2 | Vision Zero leader | +| Japan | 3,215 | 2.5 | Dense but safe | +| China | ~250,000 (est.) | 17.4 | Rapidly improving | +| India | ~150,000 | 11.1 | Growing motorization | +| **World Total** | **1.35 million** | 17.4 | Per WHO | + +**US vs. Peer Nations:** The US has 2-4x the fatality rate of other wealthy nations. Contributing factors include vehicle size, road design, speed limits, enforcement, and healthcare access. + +### Economic Cost of Crashes +| Metric | Amount | +|--------|--------| +| Total cost of US crashes (2019) | $340 billion | +| Cost per fatal crash | $1.75 million | +| Cost per injury crash | $23,900 | +| Cost per property-damage crash | $4,700 | +| Lost workplace productivity | $57.6 billion/year | +| Medical costs | $18.4 billion/year | + +### Historic Milestones in Death Rates +| Milestone | Year | Rate | +|-----------|------|------| +| First recorded US traffic death | 1899 | N/A | +| 10,000 deaths/year | 1918 | - | +| 20,000 deaths/year | 1925 | - | +| 30,000 deaths/year | 1930 | - | +| 40,000 deaths/year | 1961 | - | +| 50,000 deaths/year | 1966 | 5.50 | +| Peak deaths (54,589) | 1972 | 4.32 | +| First year below 40,000 | 1992 | 1.75 | +| Lowest rate ever recorded | 2011 | 1.10 | + +### The Vietnam War Comparison +- Vietnam War US deaths (1964-1973): ~58,000 +- US traffic deaths in same period: ~500,000 +- Ralph Nader's point: "More Americans die on our highways than in wars" + +--- + +## Fascinating Facts & Surprising Takeaways + +### The Counterintuitive Facts + +**1. "Safer cars don't make safer drivers"** +- Early researchers feared safety features would cause "risk compensation" +- Theory: Drivers would take more risks if they felt protected +- Reality: Mixed evidence. Seatbelts don't make people drive faster +- ABS may cause slightly more aggressive driving, but net effect is positive + +**2. "The deadliest seat is front passenger, not driver"** +- Driver instinctively steers to protect themselves +- Front passenger often takes the worst impact +- This is why passenger airbags were initially more lethal to small occupants +- "Depowered" airbags (1998+) addressed this issue + +**3. "Your car is designed to destroy itself to save you"** +- Crumple zones are intentionally weak +- A car that "looks bad" after a crash often performed well +- A pristine-looking post-crash car may have transferred all force to occupants +- Modern cars are totaled more often - but occupants walk away + +**4. "The steering column killed more people than any other component"** +- Before collapsible columns: steering shaft acted as a spear +- By 1964: 1+ million deaths attributed to steering column impalement +- GM's 1967 collapsible column was a breakthrough +- Simple engineering change saved thousands annually + +**5. "Seatbelts were invented in 1885 - but ignored for 70 years"** +- First patent: 1885 (for horse-drawn carriages!) +- Aircraft seatbelts: common by 1930s +- Cars: not standard until 1968 +- Why the delay? Industry believed "crashes are unsurvivable anyway" + +**6. "The windshield is designed to be hit - once"** +- Laminated safety glass (1919): holds together when broken +- Tempered side glass: shatters into small cubes +- A cracked windshield has lost structural integrity +- Modern windshields contribute up to 30% of roof strength + +--- + +### Surprising Statistics + +**Murphy's Law Origin** +- Edward Murphy was an engineer on John Stapp's rocket sled project +- After a sensor was wired backward, Murphy said: "If there are two ways to do something, and one will cause a disaster, someone will do it that way" +- Stapp later quoted this at a press conference +- "Murphy's Law" became globally famous + +**The Three-Second Rule** +- Most crash decisions happen in under 1 second +- Human reaction time: 0.7-1.5 seconds +- At 60 mph, a car travels 88 feet per second +- This is why crash avoidance tech (AEB) matters - machines react in milliseconds + +**Dummy Durability** +- A Hybrid III can be crashed 50+ times before replacement +- Individual components wear out faster (skin, ribs, neck) +- Calibration required after every test +- A dummy's "service life" may include hundreds of impacts + +**The Color of Safety** +- White cars are 12% less likely to be in crashes (visibility) +- Black cars have the highest crash rate +- Yellow/lime-green has best visibility (taxis, school buses) +- Silver reflects headlights well at night + +**Speed and Survival** +- Risk of death doubles with every 10 mph above 50 +- 30 mph crash: 5% fatality risk +- 40 mph crash: 15% fatality risk +- 50 mph crash: 35% fatality risk +- 70 mph crash: 70%+ fatality risk + +--- + +### Industry Myths That Were Wrong + +**Myth 1: "Safety doesn't sell"** +- Based on Ford's 1956 experience +- Reality: Volvo built its entire brand on safety +- IIHS ratings now directly affect sales +- Tesla markets Autopilot safety heavily + +**Myth 2: "Airbags are too expensive"** +- Industry fought airbags for 20+ years +- Predicted cost: $500-800 per vehicle +- Actual cost today: $200-300 for basic system +- Economies of scale proved industry wrong + +**Myth 3: "People won't wear seatbelts"** +- 1983 usage: 14% +- 2022 usage: 92% +- Laws + education + enforcement worked +- "Click It or Ticket" campaign was pivotal + +**Myth 4: "Small cars are always more dangerous"** +- Partially true due to physics (mass advantage) +- But modern small cars far safer than old large cars +- A 2023 Honda Civic beats a 1985 Lincoln Town Car +- Structure design matters more than pure size + +**Myth 5: "SUVs are safer because they're bigger"** +- SUVs had higher fatality rates in 1990s-2000s (rollovers) +- Modern SUVs with ESC are much safer +- But SUVs are more deadly to other vehicles and pedestrians +- "Safety for me, danger for thee" problem + +--- + +### The Human Body's Crash Tolerance + +**What the body can survive (with proper restraint):** +| Force Type | Survivable Limit | Notes | +|------------|------------------|-------| +| Head acceleration | 80g (brief) | Brain injury threshold ~60g | +| Chest acceleration | 60g | Rib fractures at 40g | +| Chest compression | 63mm (2.5") | Heart/lung damage beyond | +| Femur load | 10 kN | Femur fracture threshold | +| Neck tension | 3.3 kN | Varies by direction | +| Neck compression | 4.0 kN | Spinal injury risk | + +**John Stapp's 46.2g (1954):** +- Peak deceleration: 46.2g +- Duration: ~1 second +- Stapp's injuries: Broken ribs, broken wrists, detached retinas (temporary blindness) +- Recovery: Complete within weeks +- His insight: "The human body can take far more than we thought - IF the force is distributed correctly" + +--- + +### Famous Crash Tests That Changed History + +**1. The Ford Pinto (1977)** +- Internal memo calculated $11/car fix vs. $200,000/death lawsuit +- Company chose to accept deaths rather than fix fuel tank +- 27 deaths attributed to design +- Criminal prosecution of Ford (acquitted, but reputation destroyed) +- Led to stricter fuel system integrity standards (FMVSS 301) + +**2. The Audi 5000 "Unintended Acceleration" (1986)** +- 60 Minutes segment blamed car for accidents +- Actually caused by driver error (pedal misapplication) +- But Audi sales dropped 80% +- Led to brake-shift interlock (must press brake to shift from Park) +- Now standard on all vehicles + +**3. IIHS 1959 Bel Air vs. 2009 Malibu (2009)** +- 50th anniversary demonstration +- 1959 car: complete structural collapse, certain death +- 2009 car: intact cabin, survivable injuries +- Video has 30+ million views - most powerful safety demonstration ever + +**4. Euro NCAP Rover 100 (1997)** +- 1980s design tested in 1997 +- Received 1 star (out of 4 at the time) +- Rover pulled the car from production within months +- Proved consumer ratings could kill bad products + +**5. IIHS Small Overlap Test (2012)** +- First tests: Luxury cars failed miserably +- BMW, Mercedes, Audi - all "Poor" or "Marginal" +- Exposed that existing tests missed real-world crash modes +- Industry redesigned structures within 3 years + +--- + +### The Gender Gap in Crash Testing + +**The Problem:** +- Most crash tests use 50th percentile male dummy (5'9", 175 lbs) +- "Small female" dummy (Hybrid III 5th female) is just a scaled-down male +- Women are 17% more likely to die in equivalent crashes +- Women are 73% more likely to be seriously injured + +**Why It Matters:** +- Female anatomy differs: different hip structure, neck strength, breast tissue +- Women sit closer to steering wheel (shorter legs) +- Seatbelt geometry optimized for male torsos +- Pregnant women have unique injury patterns + +**The Solution (In Progress):** +- THOR-5F: First "true female" dummy (2023) +- Not just a scaled male - different skeletal structure +- Includes breast representation +- NHTSA considering requiring female dummy in tests +- Euro NCAP now requires small female dummy in driver seat tests + +**Quote:** "For decades, the 'average' human in crash testing has been male. Women have been, quite literally, crash test dummy afterthoughts." - Dr. Caroline Criado-Perez + +--- + +### Drunk Driving: A Separate Epidemic + +**Statistics:** +- 1982: 21,113 alcohol-related deaths (49% of all traffic deaths) +- 2019: 10,142 alcohol-related deaths (28% of all traffic deaths) +- MADD (Mothers Against Drunk Driving): Founded 1980, transformed policy +- Legal BAC limit lowered: 0.15% → 0.10% → 0.08% + +**What Worked:** +- Stricter laws (implied consent, per se laws) +- Ignition interlock devices +- Sobriety checkpoints +- Social stigma change (designated drivers) +- Rideshare apps (Uber/Lyft) reduced drunk driving + +**What Didn't Work (As Well):** +- Education alone has limited effect +- "Scared straight" programs (minimal impact) +- Voluntary pledges + +--- + +### The Electric Vehicle Safety Question + +**New Challenges:** +- Battery fires (thermal runaway) +- Heavy battery weight (F-150 Lightning: 6,500 lbs) +- Low center of gravity (different crash dynamics) +- Silent operation (pedestrian detection) +- First responder risks (high voltage) + +**New Opportunities:** +- No engine = larger crumple zone +- Battery placement can improve structure +- No fuel fire risk (but battery fire is different) +- Over-the-air safety updates + +**Early EV Crash Test Results:** +- Tesla Model 3: 5 stars NHTSA, Top Safety Pick+ IIHS +- Rivian R1T: Top Safety Pick+ +- EVs generally performing well +- But long-term battery integrity after crashes is unknown + +--- + +### Autonomous Vehicle Safety Promise + +**The Pitch:** +- 94% of crashes involve human error +- Eliminate human error = eliminate 94% of crashes +- Potential to save 30,000+ lives per year in US alone + +**The Reality (So Far):** +- Waymo: ~7 million autonomous miles (as of 2023) +- Cruise: suspended operations after pedestrian dragging incident (2023) +- Tesla Autopilot: hundreds of crashes under investigation +- Uber self-driving: killed pedestrian in 2018 (safety driver distracted) + +**The Question:** +- How safe is "safe enough" for autonomous vehicles? +- Humans cause 1.1 deaths per 100 million miles +- Should AVs be required to beat that? By how much? +- Who is liable when an AV crashes? + +--- + +## Timeline of Key Events + +### The Pioneers (1930s-1960s) +- **1930s:** Wayne State University begins cadaver crash research +- **1947:** John Stapp begins rocket sled experiments at Edwards AFB +- **1949:** Samuel Alderson creates "Sierra Sam" - first crash test dummy +- **1954:** Stapp achieves 46.2g deceleration - "Fastest Man on Earth" +- **1959:** Nils Bohlin invents 3-point seatbelt at Volvo; IIHS founded +- **1964:** Over 1 million steering column deaths recorded; GM introduces collapsible column + +### The Regulatory Revolution (1965-1980) +- **1965:** Ralph Nader publishes "Unsafe at Any Speed" +- **1966:** National Traffic and Motor Vehicle Safety Act signed; DOT created +- **1966:** William Haddon appointed first NHTSA Administrator +- **1968:** FMVSS 208 requires seatbelts in all new cars +- **1969:** William Haddon becomes first president of IIHS +- **1970:** NHTSA established as independent agency +- **1971:** Hybrid I dummy introduced by GM +- **1972:** Hybrid II dummy - first FMVSS-compliant dummy +- **1976:** Hybrid III dummy introduced - still used today +- **1979:** NHTSA introduces US NCAP (first in world) + +### The Modern Era (1980s-2000s) +- **1984:** New York passes first mandatory seatbelt law +- **1993:** GM discontinues live animal testing; others follow +- **1995:** IIHS introduces offset frontal crash test +- **1997:** Euro NCAP releases first ratings; Rover 100 receives 1-star +- **1998:** Euro NCAP moves operations to Brussels +- **2003:** IIHS introduces side impact test +- **2006:** C-NCAP (China) established +- **2007:** ESC becomes standard in US vehicles + +### Recent Advances (2010s-2020s) +- **2012:** IIHS introduces small overlap frontal test +- **2013:** THOR-50M dummy deliveries begin +- **2014:** Euro NCAP includes Autonomous Emergency Braking (AEB) +- **2015:** WIAMan military blast dummy developed (with DTS) +- **2020:** Euro NCAP introduces Mobile Progressive Deformable Barrier +- **2021:** IIHS updates side impact test (heavier, faster) +- **2023:** THOR-5F - first true female crash test dummy +- **2023:** Bharat NCAP (India) launches + +--- + +## Customer Examples (Verify with Sales/Marketing) + +### Government +- NHTSA Vehicle Research & Test Center (East Liberty, OH) +- Transport Canada + +### Academic +- Ohio State University - Injury Biomechanics Research Center +- Wayne State University +- University of Virginia - Center for Applied Biomechanics + +### Independent Labs +- Calspan (Buffalo, NY) +- MGA Research (Burlington, WI) +- Karco Engineering + +### OEMs +- GM, Ford, Stellantis +- Toyota, Honda +- BMW, Mercedes, VW +- Hyundai, Kia + +### Suppliers +- Autoliv +- ZF/TRW +- Joyson Safety Systems + +--- + +## ATD (Crash Test Dummy) Details + +### Visual Reference: +![[assets/atd_family.png|500]] +*The ATD family - representing different human sizes and crash scenarios* + +![[assets/hybrid_ii_dummies.jpg|400]] +*Hybrid II dummies - early standardized crash test dummies* + +![[assets/thor_male_female.jpg|400]] +*THOR-50M (male) and THOR-5F (female) - the next generation* + +![[assets/worldsid_dummy.jpg|350]] +*WorldSID - international side impact dummy* + +### History of ATD Development +| Year | Dummy | Significance | +|------|-------|--------------| +| 1949 | Sierra Sam | First crash test dummy, built by Samuel Alderson for USAF ejection seat testing | +| 1968 | VIP-50 | Built specifically for GM and Ford | +| 1971 | Hybrid I | GM combined best features of VIP and Sierra Stan | +| 1972 | Hybrid II | Improved shoulder, spine, knee; first FMVSS-compliant dummy | +| 1976 | Hybrid III | Current standard for frontal impact - still used globally today | +| 1990s | SID/EuroSID | Side Impact Dummies developed | +| 2000s | WorldSID | International harmonization effort | +| 2013 | THOR-50M | Advanced male dummy with 150+ data channels | +| 2015 | WIAMan | Military blast dummy (developed with DTS!) | +| 2023 | THOR-5F | First true female crash test dummy | + +### Hybrid III Family Specifications +| Model | Height | Weight | Use Case | +|-------|--------|--------|----------| +| 95th Male | 188 cm (6'2") | 100 kg (220 lb) | Large adult male | +| 50th Male | 175 cm (5'9") | 78 kg (172 lb) | Average adult male - most common | +| 5th Female | 152 cm (5'0") | 50 kg (110 lb) | Small adult female | +| 10-year-old | - | 36 kg (79 lb) | Child | +| 6-year-old | - | 21 kg (46 lb) | Child | +| 3-year-old | - | 15 kg (33 lb) | Child | + +### ATD Pricing (Approximate - Industry Estimates) +| Dummy Type | Approximate Cost | Notes | +|------------|------------------|-------| +| Hybrid III 50th Male | $200,000 - $400,000 | Most common, regulatory standard | +| Hybrid III 95th Male | $250,000 - $400,000 | Larger, more complex | +| Hybrid III 5th Female | $200,000 - $350,000 | Scaled from male design | +| THOR-50M | $500,000 - $800,000 | Most advanced, 150+ channels | +| THOR-5F | $500,000+ | New female design | +| WorldSID 50th | $400,000+ | Side impact, complex instrumentation | +| BioRID II | $200,000 - $300,000 | Rear impact/whiplash | +| Child dummies | $100,000 - $200,000 | Varies by size | +| WIAMan | ~$500,000+ | Military blast testing | + +**Note:** Prices vary significantly based on instrumentation level, supplier, and market conditions. A fully instrumented dummy with all sensors can exceed these estimates. + +### Key ATD Manufacturers +- **Humanetics** (USA/Global) - Largest, makes most major ATD types +- **JASTI** (Japan) - Japanese market +- **DTS** (USA) - WIAMan development partner, data acquisition systems + +### Child Dummy Reference: +![[assets/child_dummy_booster.jpg|350]] +*Child crash test dummy in booster seat configuration* + +![[assets/crabi_infant_dummy.jpg|300]] +*CRABI infant dummy for child seat testing* + +### DTS Connection to ATDs +- DTS provides data acquisition systems used WITH ATDs +- SLICE NANO/SLICE6 systems are embedded in modern dummies +- WIAMan project: DTS partnered with U.S. Army to develop military blast dummy +- DTS sensors capture: accelerations, forces, moments, displacements, angular velocity + +--- + +## Additional Safety Pioneers + +### Hugh DeHaven (1895-1980) - "Father of Crashworthiness" +**The Remarkable Story:** +- Survived a mid-air collision in 1917 as a WWI pilot trainee +- His aircraft fell from 500 feet - the other pilot and his own observer died +- DeHaven walked away with minor injuries +- Spent the rest of his life asking: "Why did I survive?" + +**Key Contributions:** +- Founded the Crash Injury Research Project at Cornell University (1942) +- First to systematically study survivable crashes +- Coined the concept of "packaging" humans for crashes +- Studied people who survived falls from great heights (suicides who lived) +- Discovered the "second collision" - occupant hitting interior after vehicle stops +- His research directly led to padded dashboards, collapsible steering columns, and door locks + +**Famous Quote:** "The human body can tolerate far greater forces than we assumed - if the forces are distributed properly." + +**Impact:** DeHaven's work transformed thinking from "crashes are unsurvivable" to "crashes can be designed for survival." + +--- + +### Claire Straith (1891-1958) - "The Plastic Surgeon Who Changed Cars" +**Background:** +- Detroit plastic surgeon who reconstructed faces of crash victims +- Saw firsthand the devastating injuries caused by dashboard knobs, rigid steering wheels, and protruding controls + +**Activism:** +- In the 1930s, began advocating for safer car interiors +- Wrote articles in medical journals documenting crash injuries +- Personally lobbied automakers (mostly ignored) +- Designed his own "Straith Safety Package" - padded dashboards, recessed knobs, seatbelts + +**Partnership with Walter Chrysler:** +- Convinced Chrysler to offer optional safety features in 1937 +- First manufacturer to offer padded dashboards +- Sales were poor - consumers didn't want to pay extra for safety +- Industry concluded "safety doesn't sell" (a view that persisted for decades) + +--- + +### Robert McNamara (1916-2009) - The Unlikely Safety Champion +**Before Politics:** +- President of Ford Motor Company (1960-1961) +- One of the "Whiz Kids" who modernized Ford after WWII + +**Safety Advocacy at Ford:** +- Commissioned Cornell's crash research +- Pushed for safety features: padded dashboards, deep-dish steering wheels, optional seatbelts +- Ford introduced seatbelts as a $27 option in 1956 +- Marketed safety with the slogan "Safety Sells" + +**The Sales Disaster:** +- 1956 Ford outsold by Chevrolet +- GM's response: "McNamara is selling death" +- Industry concluded (wrongly) that safety features hurt sales +- This myth persisted until Volvo proved otherwise decades later + +**Later Career:** Became Secretary of Defense under JFK and LBJ (Vietnam War architect) + +--- + +### Béla Barényi (1907-1997) - "Father of Passive Safety" +**The Visionary Engineer:** +- Austrian-Hungarian engineer who spent career at Mercedes-Benz +- Held over 2,500 patents - more than any other automotive engineer +- Designed the first "crumple zone" concept in 1937 (patented 1951) + +**Key Innovations:** +- **Crumple zones (1951)**: Rigid passenger cell + deformable front/rear +- **Safety steering column**: Collapsible design to prevent impalement +- **Padded interior surfaces** +- **Door locks that stay closed in crashes** +- **Fuel tank placement** away from crush zones + +**The 1959 Mercedes W111:** +- First production car with Barényi's safety cell design +- Crumple zones front and rear +- Set the template all modern cars follow + +**Recognition:** In 1994, the US Patent Office retroactively credited Barényi (not Ferdinand Porsche) with inventing the basic design of the Volkswagen Beetle. + +--- + +### Leonard Rivkin and the First Automotive Lawsuit +**The Case (1916):** +- MacPherson v. Buick Motor Company +- Wooden wheel spokes collapsed, injuring driver +- First case to hold manufacturer liable for defective design +- Established "duty of care" to consumers + +**Why It Matters:** +- Before this, manufacturers had no legal duty to end users +- Could only sue the dealer (who didn't make the product) +- This case created product liability law as we know it +- Opened the door for crash victims to sue manufacturers + +--- + +### Joan Claybrook (1937-present) - NHTSA's Transformative Administrator +**Career:** +- Worked with Ralph Nader in the 1960s +- NHTSA Administrator 1977-1981 (Carter administration) +- Longest-serving NHTSA head + +**Key Accomplishments:** +- Mandated airbags (phased in over time) +- Strengthened fuel economy standards (CAFE) +- Created the New Car Assessment Program (NCAP) - the 5-star rating system +- Required center high-mounted stop lights (CHMSL) +- Required child restraint standards + +**The Airbag Fight:** +- Auto industry fought airbags for 20+ years +- Industry argued they were too expensive and unreliable +- Claybrook made them mandatory +- Today, airbags save ~2,500 lives per year in US + +--- + +### Derrick Rosenbaum and the IIHS Small Overlap Test +**The Problem:** +- By 2010, vehicles performed well in existing crash tests +- But real-world fatal crashes still occurred at alarming rates +- IIHS analyzed crash data and found a gap: small overlap impacts + +**The 2012 Revelation:** +- IIHS introduced 25% small overlap test +- First tests: luxury cars mostly failed +- Mercedes, BMW, Audi - all received "Poor" or "Marginal" ratings +- The test hit between the main frame rails, bypassing traditional crumple zones + +**Industry Response:** +- Initial denial, then rapid redesign +- By 2017, most vehicles earned "Good" ratings +- Demonstrated the power of consumer testing to drive change + +--- + +### William Haddon Jr. (1926-1985) - "Father of Injury Epidemiology" +**Career:** +- MIT and Harvard educated (MD + epidemiology) +- First Administrator of NHTSA (1966-1969), appointed by LBJ +- Created the first Federal Motor Vehicle Safety Standards (FMVSS) +- First President of IIHS (1969-1985) + +**Key Contributions:** +- **Haddon Matrix**: Framework for classifying injury prevention strategies + - Pre-event, Event, Post-event phases + - Human, Vehicle, Environment factors + - Still used worldwide in safety research +- Shifted focus from "driver error" to systemic safety analysis +- Pioneered drunk driving legislation +- Established motorcycle helmet requirements + +**Quote context:** Haddon was instrumental in transforming safety research from anecdotal to scientific, applying epidemiological methods to crash analysis. + +### Samuel W. Alderson (1914-2005) - "Father of the Crash Test Dummy" +- Founded Alderson Research Labs +- Created "Sierra Sam" in 1949 - the first crash test dummy +- Originally designed for USAF ejection seat testing +- Developed VIP-50 series for GM and Ford +- His work made standardized crash testing possible + +### Lawrence Patrick (1920-2006) - "The Human Guinea Pig" +Wayne State University professor who personally endured: +- 400+ rocket sled rides +- Chest impacts from heavy metal pendulums +- Face impacts from pneumatic hammers +- Glass shrapnel exposure to simulate windshield failure + +His motto: "I figured if I'm going to ask other people to do it, I should do it myself." + +--- + +## Euro NCAP History and Global NCAP Programs + +### Visual Reference: +![[assets/euro_ncap_logo.png|200]] +*Euro NCAP - European New Car Assessment Programme* + +![[assets/crash_test_dummies_subaru.jpg|400]] +*Modern crash test with instrumented dummies* + +### Euro NCAP (Founded 1996-1997) +- Started by UK Transport Research Laboratory +- First results released February 1997 +- Based in Brussels (now Leuven, Belgium) +- Backed by EU governments and consumer organizations +- Has tested 1,800+ vehicles, published 600+ ratings +- **Estimated to have helped save 78,000+ lives in Europe** + +**Key milestones:** +- 1997: First offset deformable barrier tests +- 2008: Child protection rating introduced +- 2012: Business/family van tests +- 2014: Autonomous Emergency Braking (AEB) added +- 2020: Mobile Progressive Deformable Barrier test introduced + +**Game-changing moment:** When the Rover 100 (1980 design) received a 1-star rating in 1997, it was withdrawn from production shortly after. This demonstrated consumer rating power. + +### Global NCAP Programs +| Program | Region | Founded | +|---------|--------|---------| +| NHTSA NCAP | USA | 1979 | +| Euro NCAP | Europe | 1996 | +| JNCAP | Japan | 1995 | +| ANCAP | Australia/NZ | 1999 | +| C-NCAP | China | 2006 | +| Latin NCAP | Latin America | 2010 | +| ASEAN NCAP | Southeast Asia | 2011 | +| Global NCAP | India/Africa | 2011 | +| Bharat NCAP | India | 2023 | + +The proliferation of NCAP programs worldwide creates competitive pressure for automakers to improve safety globally, not just in regulated markets. + +--- + +## Cadaver Research History + +### Wayne State University Pioneers (1930s-1950s) +Wayne State University in Detroit conducted groundbreaking research using human cadavers to understand crash injury mechanics. + +**Methods Used:** +- Steel ball bearings dropped on skulls to measure fracture thresholds +- Bodies dropped down elevator shafts onto steel plates +- Cadavers with crude accelerometers strapped into vehicles for crash tests +- Tests of physical properties of tissue + +**Challenges:** +- Ethical and moral debates +- Most available cadavers were older adult males (not representative) +- Deceased accident victims couldn't be used (compromised by previous injuries) +- No two cadavers are the same - difficult comparison data +- Child cadavers extremely difficult to obtain and controversial to use + +### Lawrence Patrick - Human Volunteer Testing +Wayne State professor who: +- Rode rocket sleds 400+ times +- Let himself be hit in the chest by heavy metal pendulums +- Allowed pneumatically driven hammers to strike his face +- Exposed to shattered glass to simulate window implosion +- Developed mathematical models for crash survivability + +### Albert King's Calculation (1995 Journal of Trauma) +For every cadaver used in safety research: +- 61 people survive annually due to seatbelt improvements +- 147 people survive annually due to airbag designs +- 68 people survive windshield impacts +- **Total: ~8,500 lives saved annually** (as of 1987 design improvements) + +### Animal Testing Era (1950s-1990s) +- Chimpanzees on rocket sleds +- Pigs used for steering wheel impact testing (similar internal structure to humans, can sit upright) +- Baboons used at University of Michigan +- Animals anesthetized during tests +- GM discontinued live animal testing in 1993 +- Other manufacturers followed + +### Transition to ATDs +Animal and cadaver testing provided the fundamental data needed to build accurate mechanical surrogates. Modern ATDs are validated against this biological data to ensure they respond like human bodies. + +--- + +## Modern Safety Technologies Deep Dive + +### Passive Safety (Protection During Crash) + +**1. Advanced Airbag Systems** +| Type | Function | First Introduced | +|------|----------|------------------| +| Frontal driver | Protects head/chest from steering wheel | 1973 (GM, optional) | +| Frontal passenger | Protects from dashboard impact | 1988 | +| Side torso | Protects ribs, spine in side impact | 1995 (Volvo) | +| Side curtain | Protects head, prevents ejection | 1998 | +| Knee | Prevents "submarining" under dashboard | 2001 | +| Rear curtain | Protects rear passengers | 2007 | +| Center | Prevents front occupants from hitting each other | 2009 (GM) | +| Seatbelt airbag | Distributes belt load, reduces chest injury | 2011 (Ford) | +| Pedestrian | Deploys on hood to cushion pedestrian impact | 2012 (Volvo) | +| Far-side | Protects in opposite-side crashes | 2019 | + +**Modern vehicles may have 10+ airbags.** Premium vehicles (Mercedes S-Class) can have 12+. + +**2. Seatbelt Advances** +| Technology | Function | +|------------|----------| +| Pretensioners | Instantly tighten belt at crash detection | +| Load limiters | Release slightly to prevent chest injury | +| Force-limiting retractors | Balance restraint vs. injury | +| Inflatable belts | Ford (2011) - distribute force over larger area | +| Active buckle lifters | Raise buckle for easier fastening | +| Belt reminders | Audible/visual warning for all seats | + +**3. Structure Design Principles** +- **Crumple zones**: Absorb energy through controlled deformation +- **Safety cell**: Rigid passenger compartment +- **Side impact beams**: Steel reinforcement in doors +- **B-pillar reinforcement**: Critical for side impact protection +- **Roof strength**: Rollover protection +- **Subframe detachment**: Engine/transmission designed to go under cabin, not into it + +**4. Interior Safety** +- Breakaway mirrors +- Collapsible pedals (prevent ankle/leg injuries) +- Soft-touch materials +- Recessed controls +- Laminated side glass (prevents ejection) +- Anti-intrusion door beams + +--- + +### Active Safety (Crash Avoidance) + +**1. Electronic Stability Control (ESC)** +- **What it does**: Detects loss of control, applies individual brakes to correct +- **Effectiveness**: Reduces fatal single-vehicle crashes by 49%, fatal rollovers by 75% +- **Mandated**: 2012 (US), 2014 (EU) +- **Names**: ESP (Mercedes), DSC (BMW), VSA (Honda), VDC (Subaru) +- **How it works**: + - Compares steering input to actual vehicle direction + - If mismatch detected, brakes individual wheels + - Can reduce engine power + - Acts in milliseconds (faster than human reaction) + +**2. Anti-Lock Braking System (ABS)** +- **What it does**: Prevents wheel lockup during hard braking +- **Benefit**: Maintains steering control during emergency braking +- **Mandated**: 2004 (US), 2004 (EU) +- **Limitation**: Doesn't necessarily shorten stopping distance on all surfaces + +**3. Autonomous Emergency Braking (AEB)** +- **What it does**: Detects imminent collision, brakes automatically if driver doesn't +- **Technologies**: Radar, camera, lidar (varies by manufacturer) +- **Effectiveness**: Reduces rear-end crashes by 50%+ +- **IIHS requirement**: Must avoid/mitigate 12 mph and 25 mph crashes for ratings +- **Euro NCAP**: Required for 5-star rating since 2014 +- **Voluntary agreement**: 20 automakers agreed to make AEB standard by 2022 + +**4. Lane Departure Warning/Prevention** +| System | Function | +|--------|----------| +| Lane Departure Warning (LDW) | Alerts driver when crossing lane markings | +| Lane Keeping Assist (LKA) | Gently steers back toward center | +| Lane Centering | Actively keeps vehicle centered (Level 2) | + +**5. Blind Spot Monitoring** +- Radar/camera detects vehicles in blind spots +- Visual warning (mirror icon) + audible alert +- Some systems add steering resistance if driver tries to merge +- Reduces lane-change crashes by 14% (IIHS) + +**6. Adaptive Headlights** +- Turn with steering input +- Adjust beam pattern for conditions +- High-beam assist (auto-dim for oncoming traffic) +- Matrix LED (illuminate around other vehicles) +- Reduce nighttime crashes by 10% (IIHS) + +**7. Rear Cameras and Sensors** +- **Backup cameras**: Mandated 2018 (US) after Kids and Cars advocacy +- **Rear cross-traffic alert**: Warns of approaching vehicles while backing +- **Rear automatic braking**: Some vehicles stop automatically +- **360-degree cameras**: Bird's eye view for parking + +**8. Driver Monitoring Systems** +- Track eye movement, head position +- Detect drowsiness, distraction +- Alert driver or take corrective action +- Euro NCAP: Required for 5-star rating starting 2024 +- Tesla: Cabin camera monitors Autopilot users + +--- + +### Advanced Driver Assistance Systems (ADAS) Levels + +**SAE Levels of Automation:** +| Level | Name | Description | Driver Role | Examples | +|-------|------|-------------|-------------|----------| +| 0 | No Automation | Human does everything | Full control | Basic cars | +| 1 | Driver Assistance | Steering OR speed control | Monitor + intervene | Adaptive cruise | +| 2 | Partial Automation | Steering AND speed control | Monitor constantly | Tesla Autopilot, GM Super Cruise | +| 3 | Conditional Automation | System handles driving in specific conditions | Ready to take over | Mercedes Drive Pilot (limited) | +| 4 | High Automation | Full self-driving in geofenced areas | None in those areas | Waymo (taxis) | +| 5 | Full Automation | Full self-driving everywhere | None ever | Does not exist yet | + +**Current State (2026):** +- Most production vehicles: Level 2 maximum +- Mercedes Drive Pilot: Level 3 (only in specific conditions, limited states) +- Waymo/Cruise robotaxis: Level 4 (geofenced urban areas) +- Level 5: Still years away (if ever) + +--- + +### The Testing Required for These Technologies + +**What DTS Equipment Measures:** +| System | Test Type | DTS Role | +|--------|-----------|----------| +| Airbags | Sled tests, OoP tests | Dummy instrumentation, acceleration data | +| AEB | Track tests, target impacts | Vehicle dynamics, dummy response | +| ESC | Handling tests, sine with dwell | Yaw rate, acceleration | +| Seatbelts | Sled tests, pull tests | Belt loads, dummy kinematics | +| Structure | Full vehicle crash | All dummy channels, intrusion measurement | + +**OoP (Out of Position) Testing:** +- Tests airbag deployment when occupant is too close +- Critical for child safety +- Requires precise dummy positioning and measurement +- Example: 3-year-old dummy 2 inches from airbag cover + +--- + +## International Safety Perspectives + +### Sweden: Vision Zero + +**The Philosophy:** +- Launched 1997 by Swedish Parliament +- Goal: Zero traffic deaths and serious injuries +- Radical idea: System must be designed so humans making mistakes don't die + +**Key Principles:** +- Life and health are non-negotiable +- Humans make mistakes - the system must accommodate this +- Speed limits based on crash survivability, not convenience +- Responsibility shared: road designers, vehicle makers, users + +**Results:** +- 1997: 541 deaths (6 per 100k population) +- 2019: 221 deaths (2.2 per 100k population) +- One of the lowest traffic death rates in the world + +**What They Did:** +- 2+1 roads (alternating passing lanes with cable barriers) +- Lower speed limits in urban areas (30 km/h = 18 mph) +- Roundabouts instead of intersections +- Separated bicycle infrastructure +- Heavy investment in vehicle safety (Volvo is Swedish) + +**The US Comparison:** +- US rate: 11.0 per 100k (2019) +- Swedish rate: 2.2 per 100k +- If US achieved Swedish rates: ~29,000 fewer deaths per year + +--- + +### Germany: High Speeds but Safer + +**The Paradox:** +- Autobahn has no speed limit in many sections +- Yet Germany's death rate (3.7 per 100k) is 1/3 of US + +**Why Germany is Safer:** +- Rigorous driver training (1,500+ euros, months of lessons) +- Strict vehicle inspections (TÜV every 2 years) +- Lane discipline (stay right except to pass) +- Mandatory winter tires +- Lower alcohol limit (0.05% vs. 0.08%) +- Fewer trucks on roads on Sundays + +**Lessons for US:** +- Speed alone doesn't kill - lack of training and bad road design do +- Investment in driver education pays off +- Vehicle condition matters + +--- + +### Japan: High Density, High Safety + +**The Challenge:** +- 126 million people +- Limited land area +- Extremely high population density +- Mix of modern cities and rural mountains + +**The Approach:** +- JNCAP crash testing program +- Strict enforcement (high fines, points system) +- Excellent public transit (reduces driving) +- Small vehicle culture (kei cars - under 660cc) +- Aging driver programs (mandatory tests for elderly) + +**Results:** +- 2019: 3,215 deaths (2.5 per 100k) +- Peak was 16,765 in 1970 + +--- + +### China: Rapid Motorization, Rapid Improvement + +**The Scale:** +- 1.4 billion people +- 300+ million registered vehicles +- Built more highway in 20 years than US has total + +**The Challenge:** +- Went from bicycles to cars in one generation +- Many first-generation drivers +- Infrastructure struggling to keep pace +- Mix of advanced cities and rural areas + +**C-NCAP:** +- China New Car Assessment Program (2006) +- Initially criticized for weak standards +- Has strengthened significantly +- Now driving local manufacturers to improve + +**Progress:** +- Death rate dropping despite more vehicles +- Chinese brands improving in global NCAP tests +- BYD, Geely, NIO achieving good Euro NCAP scores + +--- + +### India: The Emerging Challenge + +**The Scale:** +- 1.4 billion people +- Fastest-growing auto market +- ~150,000 traffic deaths annually (1/10 of global total) + +**The Problems:** +- Weak enforcement of existing laws +- Many vehicles without basic safety features +- Mixed traffic: trucks, cars, auto-rickshaws, motorcycles, pedestrians +- Poor road infrastructure + +**Progress:** +- Bharat NCAP launched 2023 +- Some manufacturers voluntarily meeting global standards +- Tata Nexon: 5-star Global NCAP (first Indian car) +- Government mandating airbags, ABS + +**The Opportunity:** +- India can leapfrog to modern safety standards +- Mobile-first population receptive to connected safety tech +- Government now taking safety seriously + +--- + +### Australia/New Zealand: ANCAP Leadership + +**ANCAP (Australasian NCAP):** +- Founded 1999 +- Tests vehicles for Australian/NZ market +- Uses Euro NCAP protocols with local additions + +**Unique Aspects:** +- Right-hand drive market (like UK, Japan) +- Large distances, high speeds +- Kangaroo/wildlife collision risk +- Harsh conditions (heat, dust) + +**Influence:** +- Has pressured manufacturers to bring 5-star cars to market +- Drove adoption of ESC in Australia +- Led to improved safety standards for imported used cars + +--- + +### The Global NCAP Movement + +**Goal:** "A 3-star car should never be built anywhere in the world." + +**Founder:** David Ward (also founded Euro NCAP) + +**Programs Supported:** +- Latin NCAP +- ASEAN NCAP +- Global NCAP (India/Africa testing) +- Bharat NCAP (now independent) + +**The Problem They're Solving:** +- Same manufacturer, same model name, different safety +- Renault Kwid: 0 stars Latin NCAP (2017), but sold in India +- Manufacturers building "cheap" cars for developing markets +- "Your life shouldn't depend on where you're born" + +**Progress:** +- Public naming and shaming works +- Renault improved Kwid to 3 stars +- Tata, Mahindra now competing on safety +- Consumer awareness rising + +--- + +## DTS-Specific Technology & Contributions + +### Core Products (Verify with DTS Marketing) + +**SLICE Series:** +- SLICE NANO: Miniature data acquisition for tight spaces +- SLICE MICRO: Compact multi-channel system +- SLICE6: High-channel-count system for complex testing +- On-board recording during crash events + +**Key Capabilities:** +- High sample rates (up to 100 kHz) +- Shock-resistant (survives crashes) +- Wireless data transfer +- Integration with all major ATD types + +### DTS Contributions to Safety Testing + +**WIAMan Development:** +- Warrior Injury Assessment Manikin +- Partnership with US Army +- Measures underbody blast effects +- First dummy designed specifically for military threats +- DTS provided embedded data acquisition + +**Industry Partnerships:** +- Works with all major OEMs +- Equipment in NHTSA, IIHS, Euro NCAP labs +- University research programs +- Tier 1 supplier validation + +### Why Customers Choose DTS + +**From Field Experience (verify with sales team):** +1. **Reliability**: Equipment must work during the one crash that matters +2. **Accuracy**: Data integrity is everything when tests cost $100K+ +3. **Size/Weight**: Doesn't affect dummy kinematics +4. **Support**: Application engineering expertise +5. **Standards compliance**: Meets SAE, ISO requirements + +--- + +## Memorable Quotes for the Presentation + +### On the Value of Human Life +> "The traffic safety problem is NOT an 'Act of God.' It is something we create... and something we can prevent." +> — **William Haddon Jr.** + +> "For every cadaver used in crash research, 276 people survive each year." +> — **Albert King**, 1995 + +> "I felt a sensation in the eyes, somewhat like the extraction of a molar without anesthetic." +> — **John Stapp**, describing 46.2g deceleration + +### On Industry Resistance +> "I would rather see every American exposed to the threat of atomic weapons than for the automobile industry to give up even the slightest styling innovation." +> — **Anonymous GM executive**, 1950s (possibly apocryphal but widely quoted) + +> "The industry's position was: 'Crashes are caused by nuts behind the wheel.' Our position was: 'The nut is behind the drawing board.'" +> — **Ralph Nader** + +### On Engineering for Safety +> "The human body can tolerate far greater forces than we assumed - if the forces are distributed properly." +> — **Hugh DeHaven** + +> "I figured if I'm going to ask other people to do it, I should do it myself." +> — **Lawrence Patrick**, on self-experimentation + +> "Safety features should be like a condom - available for everyone, not just premium customers." +> — **Volvo executive**, explaining why they shared the 3-point belt patent + +### On Data and Testing +> "A crashed car is gone forever. The data is what remains." +> — **Industry saying** + +> "Every data point we capture potentially saves lives we'll never know about." +> — **DTS mission statement** (verify/customize with marketing) + +### On Progress +> "The test of a first-rate intelligence is the ability to hold two opposing ideas at the same time and still retain the ability to function. Traffic safety achieved exactly this: it made vehicles both faster AND safer." +> — Adapted from **F. Scott Fitzgerald** + +> "50 years of progress: In 1959, we built cars people died in. In 2009, we built cars people walk away from." +> — **IIHS**, 50th anniversary crash test + +--- + +## Sources + +### Books +1. **"Unsafe at Any Speed"** - Ralph Nader (1965) +2. **"Crash Course: The American Automobile Industry's Road from Glory to Disaster"** - Paul Ingrassia (2010) +3. **"Stiff: The Curious Lives of Human Cadavers"** - Mary Roach (2003) - Chapter on crash test cadavers +4. **"Set Phasers on Stun: And Other True Tales of Design, Technology, and Human Error"** - Steven Casey (1998) +5. **"Traffic: Why We Drive the Way We Do"** - Tom Vanderbilt (2008) + +### Academic Sources +6. Albert King, "Humanitarian Benefits of Cadaver Research on Injury Prevention," Journal of Trauma, 1995 +7. **SAE International** technical papers on ATD development +8. **NHTSA Technical Reports** on FMVSS effectiveness + +### Primary Sources +9. NHTSA Fatality Analysis Reporting System (FARS) - traffic death statistics +10. IIHS Status Reports - test results and research findings +11. Euro NCAP annual reports +12. WHO Global Status Report on Road Safety + +### Websites +13. IIHS official website (iihs.org) +14. NHTSA official website (nhtsa.gov) +15. Euro NCAP (euroncap.com) +16. Humanetics Group (humaneticsgroup.com) +17. SAE International (sae.org) +18. Global NCAP (globalncap.org) + +### Wikipedia (starting points, verify with primary sources) +19. Wikipedia - John Stapp +20. Wikipedia - Unsafe at Any Speed +21. Wikipedia - Nils Bohlin +22. Wikipedia - Hugh DeHaven +23. Wikipedia - Béla Barényi +24. Wikipedia - Crash test dummy / Hybrid III +25. Wikipedia - Motor vehicle fatality rate in U.S. by year + +### Video Sources +26. IIHS YouTube Channel - 1959 vs 2009 crash test +27. US Air Force archives - Stapp rocket sled footage +28. Various documentaries on automotive safety history + +--- + +## Potential Discussion Topics & Q&A Prep + +### Audience Questions to Anticipate: + +**Q: "Why is the US death rate so much higher than Europe?"** +A: Multiple factors: larger/heavier vehicles, higher speeds, less public transit, different road design philosophy, lower seatbelt compliance in some states, more impaired driving, less rigorous driver licensing. + +**Q: "Are autonomous vehicles going to replace crash testing?"** +A: Not anytime soon. Even with perfect autonomy, crashes will occur (non-AV vehicles, road conditions, system failures). Plus, we're decades from full autonomy. Crash protection remains critical. + +**Q: "Why did it take so long to get seatbelts in cars?"** +A: Industry resistance, consumer indifference, and a fundamental philosophy disagreement. The industry believed "crashes are unsurvivable anyway" and "driver error is the problem." It took regulation (NHTSA) and consumer pressure (IIHS ratings) to force change. + +**Q: "What's the next big thing in crash safety?"** +A: +1. Better female representation in testing (THOR-5F) +2. AEB for all vehicles (becoming standard) +3. Vehicle-to-vehicle communication (V2V) to prevent crashes +4. AI-based crash prediction +5. Improved pedestrian protection +6. Battery safety for EVs + +**Q: "How do you test for things like AEB that prevent crashes?"** +A: Track testing with foam/inflatable targets, sensor simulation, field observation data. IIHS has elaborate test courses with "soft targets" vehicles can hit without damage. + +**Q: "Is this field growing or shrinking?"** +A: Growing. More test types, more regulations globally, more technologies to validate. ADAS systems alone have created massive new testing needs. Every new market (India, Southeast Asia) adds demand. + +**Q: "What about motorcycle/bicycle safety?"** +A: Growing concern. IIHS now tests some motorcycle helmets. Cyclist deaths increasing in US due to SUV proliferation and distracted driving. This is an active research area. + +--- + +## Conversation Starters & Engagement Ideas + +### For Mixed Audience (some experts, some newcomers): + +**Opening poll (if technology allows):** +- "How many of you have ever been in a car crash?" +- "How many of you always wear your seatbelt?" +- "How many of you know why your car has crumple zones?" + +**"Show of hands" moments:** +- "Raise your hand if you know who Ralph Nader is" +- "Who can guess how many airbags are in a modern car?" (Answer: 10+) +- "Anyone know what year seatbelts became mandatory?" (1968) + +**Icebreaker fact:** +- "The steering column used to be the #1 killer in crashes - more than a million deaths before the collapsible column was invented" +- "Murphy's Law came from a crash testing project" +- "The first crash test dummy was named 'Sierra Sam' and was built to test ejection seats" + +### Connecting to DTS: + +**The bridge:** +"Every one of these safety improvements - from seatbelts to airbags to ADAS - required testing. And testing requires data. That's where we come in. Our equipment doesn't make cars safer directly - but it captures the data that lets engineers make cars safer. We're the nervous system of the crash test dummy." + +--- + +--- + +## Notes for Ben + +### Timing +- Opening (Slides 1-2): 2-3 min +- History (Slides 3-9): 15-17 min +- Modern Ecosystem (Slides 10-14): 12-15 min +- What They Test (Slides 15-17): 8-10 min +- Impact & Close (Slides 18-20): 3-5 min +- Q&A (Slide 21): 5+ min + +### Video Placement +- Recommend placing IIHS 1959 vs 2009 video after Slide 8 (Seatbelt section) +- ~2-3 minutes +- Very powerful visual break before moving to modern ecosystem + +### Audience Engagement Tips +- Mixed audience knowledge levels - don't assume everyone knows industry basics +- The historical stories (Stapp, Nader, Bohlin) are emotionally engaging +- Statistics become meaningful when tied to "lives saved" +- End on inspirational note - "we're part of this" + +### Potential Questions to Prepare For +1. "What specific DTS products do these customers use?" +2. "How do we compare to competitors in this space?" +3. "Are there customer success stories we can share?" +4. "What's next in safety testing technology?" +5. "How has testing changed with electric vehicles?" + +--- + +*Document prepared for DTS internal presentation* +*Last updated: February 12, 2026* +*Total content: ~1,950 lines including appendix materials* diff --git a/presentation_outline copy.md b/presentation_outline copy.md new file mode 100644 index 0000000..7368ee5 --- /dev/null +++ b/presentation_outline copy.md @@ -0,0 +1,159 @@ +# Safety Testing Customer Showcase +## DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +## Presentation Outline (DRAFT v1) + +### Opening Hook (2-3 min) +- Compelling statistic: Lives saved by modern vehicle safety +- "Every data point we help capture contributes to this" + +--- + +### Part 1: The Pioneers - History of Safety Testing (15-17 min) + +#### A. The Dark Ages of Vehicle Safety (2 min) +- Pre-1950s: No seatbelts, rigid steering columns, no crumple zones +- Death rate statistics per mile driven vs. today + +#### B. Col. John Stapp - The Fastest Man on Earth (4-5 min) +- The rocket sled experiments (1940s-1950s) +- Subjected himself to 46g deceleration +- Proved humans could survive higher forces than believed +- His advocacy for seatbelts and safety standards +- **Video opportunity**: Rocket sled footage + +#### C. The Cadaver Pioneers (2-3 min) +- Early biomechanics research +- How we learned human tolerance to impact +- The ethical debates and contributions + +#### D. Ralph Nader & "Unsafe at Any Speed" (1965) (3-4 min) +- The Corvair controversy +- Public awakening to automotive safety +- Birth of NHTSA (1970) +- The shift from "driver error" to "crashworthiness" + +#### E. The Seatbelt Revolution (2-3 min) +- Nils Bohlin and Volvo's 3-point belt (1959) +- Volvo's decision to share the patent freely +- Resistance and eventual adoption/legislation + +--- + +### Part 2: The Modern Safety Ecosystem (12-15 min) + +#### A. Regulatory Bodies & Testing Programs (4-5 min) +- **NHTSA** - Federal Motor Vehicle Safety Standards (FMVSS) +- **IIHS** - Insurance-funded independent testing + - How IIHS changed the game with the small overlap test + - The competitive pressure of ratings +- **Euro NCAP** and global NCAP programs +- **Video opportunity**: IIHS crash test footage + +#### B. Types of Safety Testing Customers (5-6 min) + +1. **Government/Regulatory** + - NHTSA Vehicle Research & Test Center (Ohio) + - Transport Canada + - International equivalents + +2. **Academic/Research Institutions** + - Ohio State Injury Biomechanics Research Center + - Wayne State University + - University of Virginia Center for Applied Biomechanics + - Wake Forest + +3. **Independent Test Labs** + - Calspan (Buffalo, NY) + - MGA Research + - Karco Engineering + +4. **OEM In-House Testing** + - GM, Ford, Toyota, Honda safety labs + - The scale of their operations + +5. **Insurance Industry** + - IIHS (Highway Loss Data Institute) + +6. **Tier 1 Suppliers** + - Autoliv, ZF/TRW, Joyson Safety Systems + - Restraint system development + +#### C. The Economics of Safety Testing (3-4 min) +- What a crash test costs ($50K-$500K+) +- ATD (crash test dummy) pricing ($100K-$800K) +- Why data acquisition is critical investment +- The regulatory compliance vs. competitive advantage dynamic + +--- + +### Part 3: What They're Testing & Why (8-10 min) + +#### A. Crash Test Types (3-4 min) +- Frontal (full, offset, small overlap) +- Side impact (moving barrier, pole) +- Rear impact +- Rollover +- Pedestrian protection +- **Video opportunity**: Various test types montage + +#### B. Beyond Automotive (2-3 min) +- Sports helmet testing (NFL, hockey, cycling) +- Military blast/ballistic protection +- Aerospace ejection seats +- Playground equipment +- Child car seats + +#### C. The ATD (Crash Test Dummy) (2-3 min) +- Evolution from Sierra Sam to THOR +- Hybrid III family +- WorldSID +- Where DTS fits: the nervous system of the dummy + +--- + +### Part 4: Impact & Inspiration (3-5 min) + +#### A. The Numbers That Matter +- Traffic fatalities per 100M miles: 1970 vs today +- Estimated lives saved by specific technologies +- The hidden impact: injuries prevented, severities reduced + +#### B. Our Role in the Ecosystem +- DTS equipment in virtually every major safety lab worldwide +- "When a researcher needs to know exactly what forces a human body experiences..." +- Light product mention: reliability, accuracy, trust + +#### C. Closing +- Every test, every data point, every improvement +- "We're not just selling data acquisition - we're part of a system that saves lives" + +--- + +## Research Needed +- [ ] Exact statistics on lives saved +- [ ] Col. Stapp biographical details and quotes +- [ ] IIHS small overlap test history and impact +- [ ] Crash test cost ranges (verify) +- [ ] ATD pricing (verify) +- [ ] Video clip sources +- [ ] Customer-specific stories (check with sales/marketing) + +--- + +## Video Clip Candidates +1. Col. Stapp rocket sled (public domain?) +2. IIHS crash test compilation +3. Historical crash test footage (1950s-60s) +4. Modern NCAP test +5. Customer facility tour (if available) + +--- + +## Notes +- Target: Mixed audience, varying knowledge levels +- Tone: Educational but inspiring +- Goal: Remind team who we serve and why it matters diff --git a/presentation_outline.md b/presentation_outline.md new file mode 100644 index 0000000..7368ee5 --- /dev/null +++ b/presentation_outline.md @@ -0,0 +1,159 @@ +# Safety Testing Customer Showcase +## DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +## Presentation Outline (DRAFT v1) + +### Opening Hook (2-3 min) +- Compelling statistic: Lives saved by modern vehicle safety +- "Every data point we help capture contributes to this" + +--- + +### Part 1: The Pioneers - History of Safety Testing (15-17 min) + +#### A. The Dark Ages of Vehicle Safety (2 min) +- Pre-1950s: No seatbelts, rigid steering columns, no crumple zones +- Death rate statistics per mile driven vs. today + +#### B. Col. John Stapp - The Fastest Man on Earth (4-5 min) +- The rocket sled experiments (1940s-1950s) +- Subjected himself to 46g deceleration +- Proved humans could survive higher forces than believed +- His advocacy for seatbelts and safety standards +- **Video opportunity**: Rocket sled footage + +#### C. The Cadaver Pioneers (2-3 min) +- Early biomechanics research +- How we learned human tolerance to impact +- The ethical debates and contributions + +#### D. Ralph Nader & "Unsafe at Any Speed" (1965) (3-4 min) +- The Corvair controversy +- Public awakening to automotive safety +- Birth of NHTSA (1970) +- The shift from "driver error" to "crashworthiness" + +#### E. The Seatbelt Revolution (2-3 min) +- Nils Bohlin and Volvo's 3-point belt (1959) +- Volvo's decision to share the patent freely +- Resistance and eventual adoption/legislation + +--- + +### Part 2: The Modern Safety Ecosystem (12-15 min) + +#### A. Regulatory Bodies & Testing Programs (4-5 min) +- **NHTSA** - Federal Motor Vehicle Safety Standards (FMVSS) +- **IIHS** - Insurance-funded independent testing + - How IIHS changed the game with the small overlap test + - The competitive pressure of ratings +- **Euro NCAP** and global NCAP programs +- **Video opportunity**: IIHS crash test footage + +#### B. Types of Safety Testing Customers (5-6 min) + +1. **Government/Regulatory** + - NHTSA Vehicle Research & Test Center (Ohio) + - Transport Canada + - International equivalents + +2. **Academic/Research Institutions** + - Ohio State Injury Biomechanics Research Center + - Wayne State University + - University of Virginia Center for Applied Biomechanics + - Wake Forest + +3. **Independent Test Labs** + - Calspan (Buffalo, NY) + - MGA Research + - Karco Engineering + +4. **OEM In-House Testing** + - GM, Ford, Toyota, Honda safety labs + - The scale of their operations + +5. **Insurance Industry** + - IIHS (Highway Loss Data Institute) + +6. **Tier 1 Suppliers** + - Autoliv, ZF/TRW, Joyson Safety Systems + - Restraint system development + +#### C. The Economics of Safety Testing (3-4 min) +- What a crash test costs ($50K-$500K+) +- ATD (crash test dummy) pricing ($100K-$800K) +- Why data acquisition is critical investment +- The regulatory compliance vs. competitive advantage dynamic + +--- + +### Part 3: What They're Testing & Why (8-10 min) + +#### A. Crash Test Types (3-4 min) +- Frontal (full, offset, small overlap) +- Side impact (moving barrier, pole) +- Rear impact +- Rollover +- Pedestrian protection +- **Video opportunity**: Various test types montage + +#### B. Beyond Automotive (2-3 min) +- Sports helmet testing (NFL, hockey, cycling) +- Military blast/ballistic protection +- Aerospace ejection seats +- Playground equipment +- Child car seats + +#### C. The ATD (Crash Test Dummy) (2-3 min) +- Evolution from Sierra Sam to THOR +- Hybrid III family +- WorldSID +- Where DTS fits: the nervous system of the dummy + +--- + +### Part 4: Impact & Inspiration (3-5 min) + +#### A. The Numbers That Matter +- Traffic fatalities per 100M miles: 1970 vs today +- Estimated lives saved by specific technologies +- The hidden impact: injuries prevented, severities reduced + +#### B. Our Role in the Ecosystem +- DTS equipment in virtually every major safety lab worldwide +- "When a researcher needs to know exactly what forces a human body experiences..." +- Light product mention: reliability, accuracy, trust + +#### C. Closing +- Every test, every data point, every improvement +- "We're not just selling data acquisition - we're part of a system that saves lives" + +--- + +## Research Needed +- [ ] Exact statistics on lives saved +- [ ] Col. Stapp biographical details and quotes +- [ ] IIHS small overlap test history and impact +- [ ] Crash test cost ranges (verify) +- [ ] ATD pricing (verify) +- [ ] Video clip sources +- [ ] Customer-specific stories (check with sales/marketing) + +--- + +## Video Clip Candidates +1. Col. Stapp rocket sled (public domain?) +2. IIHS crash test compilation +3. Historical crash test footage (1950s-60s) +4. Modern NCAP test +5. Customer facility tour (if available) + +--- + +## Notes +- Target: Mixed audience, varying knowledge levels +- Tone: Educational but inspiring +- Goal: Remind team who we serve and why it matters diff --git a/presentation_test_modes.md b/presentation_test_modes.md new file mode 100644 index 0000000..797bfef --- /dev/null +++ b/presentation_test_modes.md @@ -0,0 +1,1748 @@ +# Every Test Has a Story +## How Tragedy, Data, and Engineering Created Modern Crash Testing +### DTS Internal Presentation - Ben (Application Engineer) +### Duration: 45 minutes + +--- + +# CENTRAL THESIS + +> **"Every crash test exists because people were dying in a specific way - and we didn't know why until we created a test to find out."** + +This presentation walks through each major crash test mode - not as a technical specification, but as a story. Each test represents: +1. **A problem** - People dying in a way we didn't understand +2. **A discovery** - Data that revealed what was happening +3. **A solution** - A test that drove engineering change +4. **A result** - Lives saved + +**The pattern repeats:** Tragedy → Data → Test → Engineering → Lives Saved + +**DTS's role:** We capture the data at the heart of every test. + +--- + +# PRESENTATION STRUCTURE + +| Chapter | Time | Topic | Key Story | +|---------|------|-------|-----------| +| Opening | 3 min | The Pattern | Every test has an origin | +| **Chapter 1** | 10 min | Frontal Impact | From no restraints to the small overlap shock | +| **Chapter 2** | 7 min | Side Impact | The neglected crash mode | +| **Chapter 3** | 5 min | Rollover & Roof | When SUVs flipped the script | +| **Chapter 4** | 4 min | Fire & Whiplash | The hidden killers | +| **Chapter 5** | 5 min | Active Safety | From surviving crashes to preventing them | +| **Chapter 6** | 5 min | Pedestrian Protection | When the car hits you | +| **Chapter 7** | 5 min | Beyond Automotive | Helmets, sports, same physics | +| Closing | 3 min | The Pattern Continues | What's next | +| Q&A | 5+ min | Discussion | | + +**Total: ~50 minutes** (adjust by trimming detail in any chapter) + +--- + +# OPENING: THE PATTERN + +--- + +## SLIDE 1: Title Slide + +**Title:** "Every Test Has a Story" +**Subtitle:** How Tragedy, Data, and Engineering Created Modern Crash Testing +**Presenter:** Ben, Application Engineer +**Company:** Diversified Technical Systems + +--- + +## SLIDE 2: The Pattern + +### Content: + +**Every crash test exists because people were dying.** + +The pattern is always the same: + +``` +┌─────────────────────────────────────────────────────────┐ +│ │ +│ TRAGEDY │ +│ People die in a specific way │ +│ ↓ │ +│ INVESTIGATION │ +│ Researchers ask "why?" │ +│ ↓ │ +│ DATA │ +│ Testing reveals the mechanism │ +│ ↓ │ +│ STANDARD │ +│ A test is created to measure it │ +│ ↓ │ +│ ENGINEERING │ +│ Manufacturers design to pass │ +│ ↓ │ +│ LIVES SAVED │ +│ The specific death mode decreases │ +│ ↓ │ +│ NEW TRAGEDY EMERGES │ +│ The cycle repeats... │ +│ │ +└─────────────────────────────────────────────────────────┘ +``` + +**We're going to walk through each test mode and tell its story.** + +### Speaker Notes: +> "Every crash test you've ever heard of exists for a reason. Not because engineers thought it would be interesting - but because people were dying in a specific way, and nobody understood why. The pattern is always the same: tragedy, investigation, data, a test standard, engineering response, lives saved. Then a new tragedy emerges that the existing tests don't catch - and the cycle repeats. Today I'm going to walk you through each major test mode and tell you its story. This isn't just technical specs - it's how we learned to save lives." + +--- + +## SLIDE 3: The Tests We'll Cover + +### Content: + +| Chapter | Tests | The Story | +|---------|-------|-----------| +| **Frontal Impact** | FMVSS 208, NCAP, IIHS Moderate & Small Overlap | From no restraints to the small overlap shock | +| **Side Impact** | FMVSS 214, Pole Test, IIHS Side | The neglected crash mode | +| **Rollover & Roof** | FMVSS 216, IIHS Roof | When SUVs flipped the script | +| **Fire & Whiplash** | FMVSS 301, IIHS Head Restraint | The hidden killers | +| **Active Safety** | AEB, Pedestrian AEB, Headlights | From surviving crashes to preventing them | +| **Pedestrian Protection** | Euro NCAP Pedestrian, Headform/Legform | When the car hits you | +| **Beyond Automotive** | NOCSAE, Drop Tower, Linear Impactor | Same physics, different arena | + +**Each test = a chapter in the story of "we didn't know this was killing people until we looked."** + +### Speaker Notes: +> "Here's our roadmap. We'll cover frontal impact - the grandfather of all crash tests - including the dramatic small overlap story from 2012. Then side impact, which was ignored for decades. Rollover and roof strength, which became urgent when SUVs took over. The hidden killers - fire and whiplash - that don't get headlines but still hurt people. And finally, active safety - the revolution from 'protect people in crashes' to 'prevent the crash entirely.' Each test is a chapter. Each chapter has a story. Let's begin." + +--- + +# CHAPTER 1: FRONTAL IMPACT +## "The Crash Everyone Thinks About" + +--- + +## SLIDE 4: Frontal Impact - The Starting Point + +### Content: + +**Why frontal crashes get all the attention:** +- Most common crash configuration +- Highest energy (combined closing speeds) +- First crash mode studied systematically +- Where seatbelts and airbags matter most + +**The tests we'll cover:** +| Test | Introduced | Speed | What It Changed | +|------|------------|-------|-----------------| +| FMVSS 208 | 1968 | 30 mph | Seatbelts, then airbags | +| NHTSA NCAP | 1979 | 35 mph | Consumer ratings | +| IIHS Moderate Overlap | 1995 | 40 mph | Structural integrity | +| IIHS Small Overlap | 2012 | 40 mph | Everything | + +### Speaker Notes: +> "Frontal crashes are where crash testing began, and they're still the foundation. When two vehicles collide head-on, the energies combine. A 40 mph crash into a stationary barrier is equivalent to two 40 mph cars hitting each other. This is where seatbelts, airbags, and crumple zones do their work. We'll cover four frontal tests, each building on the last - from the first federal requirements in 1968 to the small overlap shock of 2012." + +--- + +## SLIDE 5: FMVSS 208 - Where It All Began (1968) + +### Visual: +![[assets/1957_buick_dashboard.jpg|350]] +*Before FMVSS 208: Solid steel dashboard, no restraints, no protection* + +### Content: + +**The Problem (Pre-1968):** +- No federal safety requirements at all +- Seatbelts optional (and rarely installed) +- Dashboards were solid steel and chrome +- Steering columns were rigid spears +- **Over 1 million people killed by steering columns alone** + +**The Solution:** +- 1966: National Traffic and Motor Vehicle Safety Act +- 1968: FMVSS 208 takes effect +- Required seatbelt anchorages in all new cars +- Later: 30 mph frontal barrier test added + +**What FMVSS 208 Drove:** +``` +1968: Seatbelts required + ↓ +1984: "Automatic restraint" required (airbag OR auto-belt) + ↓ +1998: Frontal airbags mandatory + ↓ +2000: Advanced airbags (size-sensing, depowered) +``` + +### Speaker Notes: +> "Before 1968, there were no federal safety requirements. None. Seatbelts were optional accessories. Dashboards were solid steel. The steering column was a rigid metal shaft pointed directly at the driver's chest. Over a million people were impaled by steering columns before anyone made them collapsible. FMVSS 208 changed that. It started with seatbelt requirements and evolved to require airbags. But the road to airbags was not smooth - it took 30 years of fighting." + +--- + +## SLIDE 6: The Airbag Wars (1970-1998) + +### Content: + +**The 30-Year Fight:** + +| Year | Event | +|------|-------| +| 1970 | NHTSA proposes airbag requirement | +| 1972 | GM offers airbags as option - few buyers | +| 1976 | Industry lobbies, requirement delayed | +| 1977 | Joan Claybrook (NHTSA) pushes mandate | +| 1981 | Reagan administration **rescinds** mandate | +| 1983 | Supreme Court rules rescission was arbitrary | +| 1984 | Compromise: "automatic restraint" required | +| 1990s | Automatic seatbelts prove unpopular; airbags win | +| 1998 | **Finally:** Frontal airbags mandatory | + +**Why Industry Fought:** +- Cost concerns ($300-500 per vehicle) +- Liability fears +- "Consumers don't want them" +- Technical concerns about reliability + +**What Actually Happened:** +Costs dropped. Technology improved. Airbags now save ~2,800 lives/year. + +### Speaker Notes: +> "The airbag story shows how long it takes to implement even obvious safety improvements. NHTSA proposed airbags in 1970. They weren't mandatory until 1998 - 28 years later. The industry fought every step. Costs too high. Technology not ready. Consumers don't want them. Every argument you hear today about new safety tech was made about airbags. And every argument was eventually proven wrong. Airbags now save nearly 3,000 lives per year in the US alone." + +--- + +## SLIDE 7: The Depowering Crisis (1990s) + +### Content: + +**The Unintended Consequence:** + +Early airbags were designed for the worst case: **unbelted adult male**. +- Maximum inflation force +- Deploy fully in all crashes +- Assumed occupant was far from airbag + +**The Problem:** +| Year | Airbag Deaths | Victims | +|------|---------------|---------| +| 1990 | 1 | First recorded death (child) | +| 1996 | 26 | Mostly children, small women | +| 1997 | 53 | **Peak deaths from airbags** | + +**What Went Wrong:** +- Children in front seats (close to airbag) +- Small women sitting close to steering wheel +- Unbelted occupants sliding forward pre-crash +- Airbag deployed with lethal force before occupant was in position + +**The Fix (1998-2000):** +- "Depowered" airbags - reduced inflation force +- Weight sensors to detect occupant size +- Suppression systems for small occupants +- Passenger airbag cut-off switches +- Aggressive "kids in back" campaigns + +**Today:** Airbag deaths under 10/year. Airbag saves ~2,800/year. Net positive. + +### Speaker Notes: +> "But airbags had a dark chapter. Early bags were designed to protect an unbelted adult male - so they deployed with maximum force. For children and small adults sitting close to the airbag, this force was sometimes fatal. In 1997, 53 people were killed by the airbag itself. The fix was 'depowered' airbags with lower inflation force, plus sensors to detect occupant size and suppress deployment when a child is present. Today, airbag deaths are under 10 per year while saves are nearly 3,000. The data told us something was wrong. Better data gave us the fix." + +--- + +## SLIDE 8: NHTSA NCAP - Consumer Power (1979) + +### Content: + +**The Innovation:** +FMVSS 208 was pass/fail at 30 mph. +What if we tested at 35 mph and **published the results**? + +**Joan Claybrook's Idea:** +- Test vehicles ABOVE the minimum standard +- Create comparative ratings (like Consumer Reports) +- Let consumers make informed choices +- Create market pressure beyond regulation + +**Industry Reaction:** +- "Unfair to compare different classes" +- "Star ratings are misleading" +- "It will confuse consumers" +- Lobbied to kill the program + +**What Actually Happened:** +- NCAP launched 1979, still running today +- "5-star safety rating" became marketing gold +- Manufacturers compete for top ratings +- Model for Euro NCAP, IIHS, and programs worldwide + +**The Data Impact:** +Public data created accountability. Manufacturers couldn't hide behind minimum compliance. + +### Speaker Notes: +> "FMVSS 208 set the floor - the minimum standard. But Joan Claybrook wanted to show consumers which vehicles exceeded the minimum. She created NCAP - test at 35 mph instead of 30, and publish star ratings. Industry fought it viciously. Said it was unfair, misleading, confusing. But NCAP survived and thrived. Today, a 5-star safety rating is marketing gold. Manufacturers compete for top ratings. Public data created accountability. This model spread worldwide - Euro NCAP, IIHS, and others all followed." + +--- + +## SLIDE 9: IIHS Moderate Overlap (1995) + +### Visual: +![[assets/iihs_frontal_crash_test.jpg|400]] +*IIHS moderate overlap: 40% of vehicle into deformable barrier* + +### Content: + +**The Problem with Full Frontal:** +- NHTSA test: 100% of vehicle hits barrier +- Forces distributed across entire front structure +- But real crashes are rarely "full frontal" +- **Only 25% of real frontal crashes involve full overlap** + +**The European Research:** +1980s-90s studies showed: +- Offset crashes more common +- Offset crashes more deadly (forces concentrated) +- Full frontal test didn't predict offset performance + +**The IIHS Innovation (1995):** +- 40% of vehicle width strikes barrier +- Barrier is deformable (mimics another car's front) +- Tests structural engagement on ONE side +- Measures survival space, not just dummy numbers + +**The Shockers:** +Some vehicles that earned 5 stars in NHTSA NCAP performed poorly: +- Structures collapsed asymmetrically +- A-pillars folded into occupant space +- Footwell intrusion trapped legs + +**The Result:** +Manufacturers redesigned front structures. Longer crumple zones. Asymmetric load paths. Intrusion-resistant footwells. + +### Speaker Notes: +> "By 1995, vehicles were doing well in NHTSA's full frontal test. But IIHS asked a question: how often do real crashes involve perfect full frontal overlap? The answer: only 25% of the time. Most crashes are offset - you hit another car at an angle, or strike a tree with one side. European research showed offset crashes were more deadly because forces concentrated on one side. So IIHS created the moderate overlap test - 40% of the vehicle hits a deformable barrier. Some vehicles that earned 5 stars in NHTSA's test performed poorly. The test exposed a gap. Manufacturers redesigned." + +--- + +## SLIDE 10: IIHS Small Overlap - The Game Changer (2012) + +### Visual: +![[assets/small_overlap_test.jpg|400]] +*Small overlap: Only 25% of vehicle strikes rigid barrier* + +### Content: + +**The Gap:** +By 2012, vehicles performed well in: +- NHTSA NCAP (100% overlap) +- IIHS Moderate Overlap (40% overlap) + +But IIHS crash data showed: +- Fatal frontal crashes still occurring +- Many involved narrow overlap: trees, poles, corners of other vehicles +- Forces were bypassing the main structural rails + +**The Physics:** +At 25% overlap: +- Main frame rails NOT engaged +- Forces go through wheel and suspension +- Wheel can be pushed into footwell +- Completely different load path than 40% or 100% + +**The 2012 Shock:** + +IIHS tested 11 midsize luxury vehicles: + +| Rating | Vehicles | +|--------|----------| +| Good | Acura TL, Volvo S60 | +| Acceptable | Infiniti G | +| Marginal | **Audi A4, BMW 3 Series, Mercedes C-Class**, Lexus IS, Lexus ES | +| Poor | **Lincoln MKZ, Buick Regal, Volkswagen CC** | + +**BMW, Mercedes, Audi - all Marginal or Poor.** + +### Speaker Notes: +> "2012 was a watershed moment. IIHS introduced the small overlap test - only 25% of the vehicle hits a rigid barrier. The results shocked everyone. These were luxury vehicles - BMW, Mercedes, Audi - that earned top marks in every other test. And they were Marginal or Poor in small overlap. The structures had been designed for 40% and 100% overlap. At 25%, the forces bypassed the frame rails entirely. The wheel got pushed into the footwell. A-pillars rotated in unexpected ways. These 'safe' cars had a critical blind spot." + +--- + +## SLIDE 11: The Small Overlap Response + +### Content: + +**Industry Reaction:** +- Initial denial ("test isn't realistic") +- Then rapid engineering response +- Complete structural redesigns + +**What Had to Change:** +| Component | Change | +|-----------|--------| +| Wheel well | Structural members added outboard of rails | +| A-pillar | Reinforced connection to hinge pillar | +| Firewall | "Blocking" structures to redirect forces | +| Door hinges | Strengthened to prevent door opening | +| Footwell | Additional intrusion resistance | + +**The Timeline:** +| Year | Small Overlap Performance | +|------|---------------------------| +| 2012 | Most vehicles Poor or Marginal | +| 2014 | Mixed results - some improve | +| 2016 | Most new designs earn Good | +| 2017 | IIHS adds passenger-side test (prevent asymmetric design) | +| 2020 | Small overlap "Good" is baseline expectation | + +**Five years.** From widespread failure to widespread success. + +**The Data Lesson:** +Consumer testing can drive faster change than regulation. Public embarrassment is a powerful motivator. + +### Speaker Notes: +> "The response was swift. Within five years, most vehicles earned 'Good' ratings. Manufacturers added structural members outboard of the frame rails, reinforced A-pillars, created blocking structures. In 2017, IIHS added the passenger-side test because some manufacturers had 'gamed' the test by only reinforcing the driver's side. The small overlap test is the clearest example of consumer testing driving rapid engineering change. Public embarrassment works. When BMW and Mercedes are rated 'Marginal' on the evening news, they fix it fast." + +--- + +## SLIDE 12: Chapter 1 Summary - Frontal Impact + +### Content: + +**The Evolution:** +| Test | Year | Problem It Solved | +|------|------|-------------------| +| FMVSS 208 | 1968 | No restraints at all | +| NHTSA NCAP | 1979 | No way to compare vehicles | +| IIHS Moderate | 1995 | Offset crashes missed by full frontal | +| IIHS Small | 2012 | Narrow impacts missed by 40% test | + +**Lives Saved:** +- Seatbelts: ~15,000/year +- Airbags: ~2,800/year +- Structural improvements: Thousands more + +**The Pattern:** +Each test exposed a gap the previous test missed. Each gap was filled by engineering. The cycle continues. + +**What's Next?** +- Oblique impacts (angled crashes) +- Compatibility (protecting smaller vehicles) +- Rear seat occupants (historically neglected) + +### Speaker Notes: +> "Let's recap frontal impact. We went from no requirements to seatbelts to airbags to structural designs that can handle any overlap angle. Each test exposed a gap. Each gap got filled. Seatbelts save 15,000 lives a year. Airbags another 2,800. Structural improvements save thousands more. What's next? Oblique impacts, vehicle compatibility, rear seat protection. The cycle continues." + +--- + +# CHAPTER 2: SIDE IMPACT +## "The Door That Wasn't a Barrier" + +--- + +## SLIDE 13: Side Impact - The Neglected Crash + +### Content: + +**The Statistics:** +- Side impacts: ~25% of all crashes +- Side impact fatalities: ~30% of all crash deaths +- **More deadly per crash than frontal** + +**Why Side Crashes Are Deadlier:** +- Minimal crush space (door → occupant is inches) +- No crumple zone to absorb energy +- Direct loading to torso and head +- Pre-2000: basically nothing between you and the other car + +**The History of Neglect:** +| Era | Frontal Protection | Side Protection | +|-----|-------------------|-----------------| +| 1968 | FMVSS 208 (seatbelts) | Nothing | +| 1979 | NCAP ratings | Nothing | +| 1990 | Airbags spreading | **First dynamic test** | +| 1995 | IIHS moderate overlap | Nothing new | +| 2003 | - | **IIHS side test** | + +Side impact got serious attention 25 years after frontal. + +### Speaker Notes: +> "Side impacts are only a quarter of all crashes - but they're 30% of fatalities. Why? In a frontal crash, you have the entire front of the car to absorb energy. In a side crash, there's just a door. Inches between you and the other vehicle. For decades, side protection was an afterthought. Frontal got seatbelts in '68, airbags by the '90s. Side didn't get a serious dynamic test until 1990 - and even then, it was minimal. IIHS didn't add a side test until 2003. Twenty-five years behind frontal." + +--- + +## SLIDE 14: FMVSS 214 - Finally, a Side Test (1990) + +### Content: + +**The Original Test:** +- Moving deformable barrier (MDB) strikes stationary vehicle at 90° +- Test speed: 33.5 mph +- SID (Side Impact Dummy) measures rib deflection, pelvis loads + +**What It Required:** +- Door intrusion limits +- Rib deflection limits +- Pelvis force limits + +**What It Drove:** +- Side door beams (steel reinforcement in door) +- Improved door structure +- Better door latches (stay closed in crash) + +**What It Didn't Address:** +- Head protection (no requirement) +- Narrow object impacts (poles, trees) +- The rise of SUVs/trucks (taller fronts) + +**The Pole Test Addition (2007):** +Recognizing that many side crashes involve narrow objects: +- 254mm (10") diameter pole +- 20 mph impact +- Specifically targets **head protection** +- Drove adoption of side curtain airbags + +### Speaker Notes: +> "FMVSS 214 finally brought dynamic side testing in 1990. A barrier strikes the side at 33.5 mph. This drove adoption of side door beams - steel reinforcement in the door. But the original test had gaps. No head protection requirement. No narrow object test. And the barrier simulated an average car - not the SUVs and trucks that were taking over the roads. The pole test was added in 2007: a narrow pole hits the door at 20 mph. This specifically targets head protection and drove adoption of side curtain airbags." + +--- + +## SLIDE 15: The Side Airbag Revolution + +### Content: + +**Before Side Airbags:** +Your protection in a side crash was: +- The door (thin, minimal structure) +- Your own body +- That's it + +**The Evolution:** +| Year | Innovation | +|------|------------| +| 1995 | Volvo introduces first side torso airbag | +| 1998 | First side curtain airbags (head protection) | +| 2003 | IIHS side test launched - accelerates adoption | +| 2007 | FMVSS 214 pole test requires head protection | +| 2010 | Side curtain standard on most new vehicles | + +**What Side Airbags Do:** +| Type | Protection | +|------|------------| +| Torso (seat-mounted) | Ribs, pelvis, spine | +| Curtain (roof-mounted) | Head, prevents ejection | +| Combo | Both in one system | + +**The Data:** +- Side airbags reduce driver death risk by 37% (IIHS) +- Head-protecting airbags reduce death risk by 52% +- Now standard equipment - but wasn't until tests demanded it + +### Speaker Notes: +> "Before side airbags, there was nothing between your ribs and the door. Volvo pioneered the first side torso airbag in 1995. Curtain airbags - the ones that drop from the roof - came in 1998. But adoption was slow until IIHS added side testing in 2003 and FMVSS 214 added the pole test in 2007. Now side curtain airbags are standard on virtually every new vehicle. IIHS data shows they reduce death risk by over 50% when they protect the head. Tests drove adoption." + +--- + +## SLIDE 16: IIHS Side Test - Raising the Bar (2003 & 2021) + +### Visual: +![[assets/iihs_crash_hall.jpg|400]] +*IIHS test facility - where ratings drive engineering* + +### Content: + +**The 2003 Test:** +- Moving barrier at 31 mph +- SID-IIs dummy: **5th percentile female** (not male!) +- Why female? Smaller occupants have less cushioning from structure +- Barrier simulated a car/small SUV + +**The Choice to Use a Small Female Dummy:** +IIHS deliberately chose to protect vulnerable occupants, not "average" males. + +**The 2021 Update:** +The vehicle fleet changed. SUVs and trucks are now the majority. +- Barrier weight increased: 4,200 lbs (was 3,300 lbs) +- Barrier height increased: Taller profile +- Speed increased: 37 mph (was 31 mph) + +**The 2021 Results:** +Many vehicles that earned "Good" under old test dropped to lower ratings: +- Side structures designed for old barrier +- New, bigger barrier exposed gaps +- Manufacturers redesigning again + +**The Lesson:** +Tests must evolve as the vehicle fleet changes. + +### Speaker Notes: +> "IIHS introduced their side test in 2003 with a deliberate choice: use a small female dummy, not a male. Why? Smaller occupants have less space between them and the door. They're more vulnerable in side crashes. In 2021, IIHS updated the test because the vehicle fleet changed. SUVs and trucks are now the majority of vehicles sold. The old barrier simulated an average car. The new barrier is heavier, taller, faster - simulating a modern SUV. Many vehicles that earned 'Good' before dropped to lower ratings. The test had to evolve with the fleet." + +--- + +## SLIDE 17: Chapter 2 Summary - Side Impact + +### Content: + +**The Evolution:** +| Test | Year | What It Changed | +|------|------|-----------------| +| FMVSS 214 | 1990 | Door beams, basic structure | +| FMVSS 214 Pole | 2007 | Side curtain airbags | +| IIHS Side | 2003 | Small female protection | +| IIHS Side Update | 2021 | Redesign for SUV/truck threat | + +**Key Insight:** +Side protection lagged frontal by 25 years. The door that separated you from death was basically just sheet metal until the 1990s. + +**Lives Saved:** +Side airbags: ~500-700 lives/year (and growing as fleet turnover continues) + +**What's Next:** +- Far-side impacts (crashes on opposite side) +- Better protection for rear-seat side occupants + +### Speaker Notes: +> "Side impact protection lagged frontal by a quarter century. The door was basically sheet metal until we started requiring door beams, then side airbags, then curtain airbags. Each test pushed the bar higher. And when the vehicle fleet changed - more SUVs and trucks - the test had to change too. The pattern continues: next frontiers are far-side impacts and rear-seat side protection." + +--- + +# CHAPTER 3: ROLLOVER & ROOF +## "When the Sky Falls" + +--- + +## SLIDE 18: Rollover - The Disproportionate Killer + +### Content: + +**The Statistics:** +- Rollovers: Only 3% of crashes +- Rollover fatalities: **30% of crash deaths** + +**Why Rollovers Kill:** +- Multiple impacts as vehicle tumbles +- Occupants not restrained against a surface (can move around cabin) +- Ejection: **77% fatal** (vs. ~1% if kept inside) +- Roof intrusion crushes survival space + +**What Makes Vehicles Roll:** +- High center of gravity +- Narrow track width +- Tire failure (Firestone/Explorer scandal) +- Loss of control at speed +- "Tripping" on curbs, soft shoulders + +**The SUV Problem (1990s-2000s):** +SUVs had inherently higher rollover risk: +- Built on truck frames (high floor) +- Designed for off-road (high ground clearance) +- Narrow relative to height +- Often overloaded + +### Speaker Notes: +> "Rollovers are only 3% of crashes but cause 30% of fatalities. The physics are brutal. The vehicle tumbles, occupants get thrown around inside or ejected entirely. Ejection is 77% fatal. And when the roof crushes, it destroys survival space. SUVs made this worse - they have high centers of gravity and narrow track widths. The Ford Explorer/Firestone scandal in 2000 killed over 200 people when tire tread separation caused rollovers." + +--- + +## SLIDE 19: FMVSS 216 - Roof Strength (1973 → 2009) + +### Visual: +![[assets/roof_strength_test.jpg|350]] +*Roof crush test: Plate pressed against roof rail* + +### Content: + +**The Original Test (1973):** +- Static test: Metal plate pressed onto roof +- Required: Roof withstands **1.5× vehicle weight** +- Applied at windshield/roof junction +- **Only one side tested** + +**The Advocacy Battle:** +Consumer groups argued for decades: +- 1.5× is far too weak +- Real rollovers involve multiple impacts +- Roofs were collapsing in survivable crashes +- Should be 4× or higher + +**The 2009 Upgrade:** +After years of lobbying and litigation: +- Standard doubled to **3× vehicle weight** +- **Both sides** of roof tested +- Phase-in period for compliance + +**What Changed in Vehicles:** +- Stronger B-pillars +- Reinforced roof rails +- Boron steel and ultra-high-strength steel +- Roof now integral to structural safety cell + +### Speaker Notes: +> "The roof strength standard was set in 1973 at 1.5 times vehicle weight - and didn't change for 36 years. Advocacy groups pushed for higher standards, showing real-world rollovers where roofs collapsed into survival space. In 2009, the standard finally doubled to 3 times vehicle weight, and both sides must now be tested. This drove use of ultra-high-strength steel and completely changed how roofs are engineered. But IIHS pushed further." + +--- + +## SLIDE 20: IIHS Roof Ratings - Pushing Beyond + +### Content: + +**The IIHS Approach:** +FMVSS 216 requires 3×. IIHS rewards exceeding that. + +| Rating | Strength-to-Weight | +|--------|-------------------| +| Good | ≥ 4.0 | +| Acceptable | 3.25 - 3.99 | +| Marginal | 2.5 - 3.24 | +| Poor | < 2.5 | + +**The Market Effect:** +To earn "Top Safety Pick," vehicles need "Good" roof rating - 4×, not 3×. + +**The Result:** +Many vehicles now achieve 5× or 6× strength-to-weight ratios. +Market pressure exceeded regulatory requirements. + +**The Other Solution: Electronic Stability Control (ESC)** +While roof strength protects IN rollovers, ESC **prevents** rollovers: +- Detects loss of control +- Applies individual brakes to correct +- Reduces fatal rollovers by **75%** +- Required by FMVSS 126 (2012) + +**The Combination:** +ESC prevents rollovers. Strong roofs protect if they happen. Both required. + +### Speaker Notes: +> "IIHS set their 'Good' rating at 4 times vehicle weight - higher than the federal 3× requirement. To get Top Safety Pick, you need that Good rating. So manufacturers build to 4× or higher. Some vehicles now achieve 5 or 6 times their own weight. But the bigger story is Electronic Stability Control. ESC detects when you're about to lose control and applies individual brakes to keep you on the road. It reduces fatal rollovers by 75%. Now required on all new vehicles. You prevent the rollover with ESC. If one happens anyway, the strong roof protects you." + +--- + +## SLIDE 21: Chapter 3 Summary - Rollover & Roof + +### Content: + +**The Two-Pronged Solution:** + +| Strategy | Test/Standard | Effect | +|----------|---------------|--------| +| **Prevent** rollovers | FMVSS 126 (ESC) | 75% reduction in fatal rollovers | +| **Protect** in rollovers | FMVSS 216, IIHS Roof | Strong survival space | +| **Prevent** ejection | Side curtain airbags | Keep occupants inside | + +**The Timeline:** +| Year | Development | +|------|-------------| +| 1973 | FMVSS 216 (weak 1.5× standard) | +| 2000 | Firestone/Explorer scandal | +| 2007 | ESC mandated | +| 2009 | FMVSS 216 upgraded to 3× | +| 2009 | IIHS roof ratings (4× for "Good") | +| 2012 | ESC required on all vehicles | + +**The Data Impact:** +Rollover fatalities have declined significantly - but rollovers are still disproportionately fatal. + +### Speaker Notes: +> "Rollover protection is a two-part story. First, prevent the rollover - that's ESC. Reduces fatal rollovers by 75%. Second, if a rollover happens, protect the occupants - that's roof strength and side curtain airbags to prevent ejection. It took decades to get both parts in place. The Firestone/Explorer scandal in 2000 accelerated attention. Now we have ESC on all vehicles and much stronger roofs. But rollovers are still disproportionately fatal - there's more work to do." + +--- + +# CHAPTER 4: THE HIDDEN KILLERS +## "Fire and Whiplash" + +--- + +## SLIDE 22: FMVSS 301 - Fuel System Integrity + +### Content: + +**The Problem Nobody Discussed:** +Post-crash fires were a major cause of death in survivable crashes. +- Fuel tanks placed wherever convenient +- Minimal protection from impact +- Fuel lines that ruptured easily + +**The Ford Pinto Scandal (1971-1978):** + +The Pinto's rear-mounted fuel tank could rupture in rear impacts: +- Tank only 6 inches from rear bumper +- Differential bolts could puncture tank +- Filler neck could separate + +**The Infamous Memo (1973):** +Ford engineers calculated: +- Fix cost: $11/car × 12.5 million cars = $137 million +- "Acceptable" deaths: 180 deaths × $200,000 = $36 million + +**Ford chose not to fix the design.** + +**The Reckoning:** +- 1977: Mother Jones exposé +- 1978: NHTSA recall of 1.5 million Pintos +- 1978: Indiana criminal prosecution of Ford (first ever against automaker) +- Estimated 27-180 deaths from the defect + +**The Standard Tightens:** +FMVSS 301 was strengthened in direct response. Fuel tank placement and protection is now a critical design parameter. + +### Speaker Notes: +> "Not all killers are obvious. Post-crash fires were killing people in survivable crashes because fuel tanks were placed wherever convenient with minimal protection. The Ford Pinto made this infamous. Ford engineers knew the design was dangerous. They calculated it would cost $11 per car to fix - about $137 million total. They estimated 180 deaths would occur, costing $36 million in lawsuits. They chose not to fix it. When this memo became public, Ford was criminally prosecuted - the first time ever for a defective design. FMVSS 301 was strengthened. Now fuel system integrity is a critical safety parameter." + +--- + +## SLIDE 23: IIHS Head Restraints - The Whiplash Epidemic + +### Content: + +**The Statistics:** +- Over 1 million whiplash injuries/year in US +- Most occur in low-speed rear impacts +- Chronic pain can persist for years +- Massive economic cost (medical + lost work) + +**The Problem with Early Head Restraints:** +When first required, head restraints were often: +- Set too low (didn't support the head) +- Too far back from head (head snapped back before contact) +- Adjustable but set incorrectly +- Sometimes removed by owners + +**The Physics:** +In a rear impact, the seat pushes the torso forward, but the head lags behind. +The neck bends backward (hyperextension) → whiplash. + +**The Swedish Innovation:** +Volvo and Saab developed "active" head restraints: +- Move up and forward during crash +- Engage the head earlier +- Reduce relative motion between head and torso + +**The IIHS Dynamic Test (2004):** +- BioRID II dummy (highly articulated spine) +- Simulates rear impact on sled +- Measures actual neck forces and motion +- Rewards active head restraints + +### Speaker Notes: +> "Whiplash doesn't kill you - but it can ruin your life. Over a million whiplash injuries happen every year. The irony is that we required head restraints for decades, but many were useless - too low, too far back, or adjusted wrong. The Swedes developed active head restraints that move into position during a crash. IIHS created a dynamic sled test with a special dummy - BioRID - that can measure whiplash. This test rewards active head restraints and proper seat design. Whiplash isn't glamorous, but reducing it matters." + +--- + +# CHAPTER 5: ACTIVE SAFETY +## "From Surviving Crashes to Preventing Them" + +--- + +## SLIDE 24: The Philosophy Shift + +### Content: + +**The Old Model (Passive Safety):** +``` +CRASH HAPPENS → Protect occupant + Seatbelt + Airbag + Structure +``` + +**The New Model (Active Safety):** +``` +PRE-CRASH → PREVENT crash + Warn driver + Brake automatically + Steer to avoid + ↓ + If crash unavoidable + ↓ + PASSIVE SAFETY kicks in +``` + +**Why This Matters:** +- 94% of crashes involve human error +- If you can prevent the crash, no one gets hurt +- Technology can react faster than humans +- But passive safety remains the backup + +**The Technologies:** +| System | Function | +|--------|----------| +| ESC | Prevents loss of control | +| AEB | Automatic emergency braking | +| FCW | Forward collision warning | +| LDW/LKA | Lane departure/keeping | +| BSM | Blind spot monitoring | + +### Speaker Notes: +> "There's a fundamental shift happening in safety. For decades, we assumed crashes would happen and focused on protecting people when they did. That's passive safety - seatbelts, airbags, structure. But 94% of crashes involve human error. What if you could prevent the crash entirely? That's active safety. ESC keeps you from losing control. AEB brakes for you when you don't react in time. Lane keeping steers you back into your lane. The crash that doesn't happen is the safest one of all. But passive safety remains the backup - because nothing is perfect." + +--- + +## SLIDE 25: IIHS Front Crash Prevention (2013) + +### Content: + +**The Test:** +- Vehicle approaches stationary target at 12 mph and 25 mph +- Does the system warn the driver? +- Does it brake automatically? +- How much does it reduce impact speed? + +**The Ratings:** +| Rating | Requirements | +|--------|--------------| +| Superior | Avoid collision or major speed reduction at both speeds | +| Advanced | FCW + limited AEB performance | +| Basic | FCW available | + +**The Industry Agreement (2016):** +20 automakers voluntarily committed to make AEB standard by September 2022. +- No government mandate +- Driven by IIHS ratings and consumer pressure +- **Fastest safety adoption in history** + +**The Data Case:** +- AEB reduces rear-end crashes by 50%+ +- Even basic FCW reduces crashes by 27% +- Economic savings exceed system cost + +### Speaker Notes: +> "IIHS started testing AEB in 2013. They approach a target at 12 and 25 mph and measure whether the system warns, brakes, and how much speed it reduces. The ratings created market pressure. Then in 2016, something remarkable happened: 20 automakers voluntarily agreed to make AEB standard by 2022. No law required it. Consumer pressure and IIHS ratings drove the fastest safety adoption in history. AEB cuts rear-end crashes by more than half." + +--- + +## SLIDE 26: Pedestrian AEB - The Growing Crisis + +### Content: + +**The Troubling Trend:** +Occupant deaths have declined. Pedestrian deaths have INCREASED. + +| Year | Pedestrian Deaths | +|------|-------------------| +| 2009 | 4,109 | +| 2015 | 5,494 | +| 2019 | 6,205 | +| 2021 | 7,388 | + +**Why Pedestrian Deaths Are Rising:** +- Larger vehicles (SUVs, trucks) more deadly to pedestrians +- Higher front ends hit pedestrian at torso/head, not legs +- Distracted driving (phones) +- Distracted walking (phones) +- More urban walking/cycling + +**The Technology Solution:** +Pedestrian AEB systems can detect people: +- Camera identifies human shapes +- Radar tracks movement +- Calculate collision course +- Warn driver and/or brake automatically +- Some work at night (IR cameras) + +**The IIHS Test (2019):** +- Adult pedestrian target crossing road +- Child pedestrian target +- Day and night scenarios +- Parallel walking scenarios + +### Speaker Notes: +> "Here's a troubling trend: occupant deaths are falling, but pedestrian deaths are rising. In 2009, about 4,100 pedestrians died. In 2021, over 7,300. Why? Vehicles are bigger - SUVs and trucks hit pedestrians higher, at the torso and head instead of the legs. More distraction - both drivers and pedestrians on phones. More walking and cycling in cities. Pedestrian AEB can help. IIHS started testing it in 2019 - adult targets, child targets, day and night. This is an active area of development." + +--- + +## SLIDE 27: Headlights - The Hidden Variable + +### Content: + +**The Problem:** +- Nearly half of traffic deaths occur in the dark +- Yet headlights received almost no regulatory attention +- FMVSS 108 sets minimums, not performance standards +- Huge variation between vehicles - even new ones + +**The IIHS Discovery:** +When IIHS started testing headlights: +- Best headlights: 500+ feet illumination +- Worst headlights: Under 200 feet +- Some "premium" vehicles had terrible headlights +- Curve illumination often poor + +**The Test:** +- Illumination distance on straightaways +- Coverage on curves (left and right) +- Glare to oncoming drivers +- Low beam and high beam + +**The Rating Impact:** +- "Good" headlights now required for Top Safety Pick +- Manufacturers redesigned headlight systems +- Rapid adoption of LED and adaptive headlights + +**The Lesson:** +IIHS identified a safety factor that regulation had ignored. Consumer testing filled the gap. + +### Speaker Notes: +> "Nearly half of traffic deaths happen in the dark. But headlights got almost no regulatory attention. When IIHS started testing headlights in 2016, they found huge variation - some new cars had worse headlights than models from years ago. Best headlights illuminated over 500 feet. Worst under 200. You need Good headlights for Top Safety Pick now. This shows IIHS's value in identifying neglected safety factors. It's not a crash test - but it addresses real danger." + +--- + +## SLIDE 28: Chapter 5 Summary - Active Safety + +### Content: + +**The Tests:** +| Test | Year | What It Changed | +|------|------|-----------------| +| Front Crash Prevention | 2013 | AEB adoption accelerated | +| Pedestrian AEB | 2019 | Protection for vulnerable road users | +| Headlights | 2016 | Illumination quality addressed | + +**The Paradigm Shift:** +From "protect in crash" to "prevent crash" + +**The Data Need:** +Active safety testing requires different data: +- Vehicle dynamics (speed, acceleration, position) +- System response timing +- Target detection accuracy +- Distance and closing speed + +**The Opportunity for DTS:** +Active safety is expanding the testing market - new test types, new data needs, new customers. + +### Speaker Notes: +> "Active safety represents a paradigm shift. Instead of assuming crashes happen and protecting people, we're trying to prevent crashes entirely. This creates new testing needs - vehicle dynamics, system timing, target detection. DTS has opportunity here. The market isn't shrinking; it's expanding into new test types. Every AEB system needs validation. Every update needs retesting. The data needs are growing." + +--- + +# CHAPTER 6: PEDESTRIAN PROTECTION +## "When the Car Hits You, Not the Other Way Around" + +--- + +## SLIDE 29: The Pedestrian Crisis + +### Content: + +**The Troubling Trend:** +While occupant deaths have declined, pedestrian deaths are **rising**. + +| Year | Pedestrian Deaths | % of All Traffic Deaths | +|------|-------------------|------------------------| +| 2009 | 4,109 | 12% | +| 2015 | 5,494 | 15% | +| 2019 | 6,205 | 17% | +| 2021 | 7,388 | 17% | +| 2022 | 7,500+ | 18% | + +**Why Pedestrians Are Dying More:** +- Larger vehicles (SUVs, trucks dominate sales) +- Higher front ends → impacts hit torso/head, not legs +- Heavier vehicles → more energy transfer +- Distracted driving (phones) +- Distracted walking (phones) +- More urban walking and cycling + +**The Physics Problem:** +- Old sedan: Low hood, hits pedestrian at knee/thigh level → rolls onto hood +- Modern SUV/truck: High front end, hits at hip/torso → no rollover, direct impact + +### Speaker Notes: +> "Here's a troubling trend that doesn't get enough attention. Occupant deaths are falling - our crash tests are working. But pedestrian deaths are rising. In 2009, about 4,100 pedestrians died. By 2022, over 7,500. Why? Our vehicles are getting bigger. SUVs and trucks now dominate sales. When a sedan hits a pedestrian, the low hood tends to knock them onto the hood - bad, but survivable. When an SUV or truck hits a pedestrian, the high front end strikes at hip or chest level - direct impact, much more deadly. We've optimized for occupant protection while making vehicles more dangerous to everyone outside them." + +--- + +## SLIDE 30: Euro NCAP Pedestrian Testing + +### Content: + +**Europe Led the Way:** +Euro NCAP has tested pedestrian protection since 1997. + +**The Test Methods:** +| Test | What It Simulates | +|------|-------------------| +| **Headform to hood** | Child or adult head hitting hood surface | +| **Headform to windshield** | Adult head hitting windshield base | +| **Upper legform to bumper** | Adult thigh/pelvis hitting bumper | +| **Lower legform to bumper** | Adult knee/tibia hitting bumper | + +**How It Works:** +- Projectile impactors (not full pedestrian dummies) +- Fired at vehicle front end at specific angles/speeds +- Instrumented to measure acceleration, force, bending +- Hood, bumper, windshield base all tested + +**What It Drove:** +| Design Change | Purpose | +|---------------|---------| +| Active hood hinges | Hood pops up in pedestrian impact, creating crush space | +| Hood standoff | Space between hood and hard engine components | +| Energy-absorbing bumpers | Deformable structures at bumper level | +| Windshield airbags | External airbag covers windshield base (Volvo, others) | +| Soft bumper faces | Pedestrian-friendly materials | + +### Speaker Notes: +> "Europe has been testing pedestrian protection for over 25 years. They use headform and legform impactors - projectiles fired at the vehicle front end to simulate a pedestrian impact. The tests measure what happens when a head hits the hood, when a thigh hits the bumper, when a knee hits the lower bumper. This drove real design changes: active hoods that pop up to create crush space, energy-absorbing bumper structures, even external airbags on some Volvos that cover the windshield base. US testing has been slower to adopt pedestrian requirements." + +--- + +## SLIDE 31: US Pedestrian Testing - Playing Catch-Up + +### Content: + +**US Status:** +- No federal pedestrian protection standard (FMVSS) +- IIHS pedestrian AEB testing (2019) - but that's crash AVOIDANCE +- NHTSA researching pedestrian crashworthiness requirements +- US lags Europe by 20+ years on this issue + +**IIHS Pedestrian AEB Test (2019):** +| Scenario | Description | +|----------|-------------| +| Perpendicular adult | Adult crosses path at 5 mph | +| Perpendicular child | Child crosses path (shorter target) | +| Parallel adult | Adult walking along road edge | + +Tests at multiple vehicle speeds (12-37 mph), day and night. + +**What IIHS Tests:** +- Does system detect pedestrian? +- Does it warn driver? +- Does it brake automatically? +- How much speed is reduced? + +**What IIHS Doesn't Test (Yet):** +- What happens when vehicle DOES hit pedestrian +- Hood design, bumper design +- Pedestrian injury outcomes + +**The Gap:** +We test whether vehicles avoid hitting pedestrians (AEB). +We don't test whether vehicles protect pedestrians when hit (crashworthiness). + +### Speaker Notes: +> "The US is behind on pedestrian protection. We have no federal standard for pedestrian crashworthiness - what happens to a pedestrian when a car hits them. IIHS tests pedestrian AEB - whether the car can avoid hitting a pedestrian - but not what happens if it fails. Europe tests both. They require hoods that are 'soft' enough to reduce head injury. They require bumpers that don't destroy knees. We test avoidance but not protection. That gap will likely close, but it hasn't yet." + +--- + +## SLIDE 32: The Future of Pedestrian Protection + +### Content: + +**Technologies in Development/Deployment:** +| Technology | Status | Function | +|------------|--------|----------| +| Pedestrian AEB | Widespread | Avoid collision entirely | +| Active hood | Common in Europe | Pop-up hood creates crush space | +| External airbags | Limited (Volvo) | Cushion windshield base | +| Soft bumper faces | Increasing | Energy absorption | +| Lower hood lines | Design trend | Better geometry for pedestrian kinematics | +| Hood standoff | Design standard | Space above engine for deformation | + +**The Regulatory Future:** +- NHTSA considering pedestrian requirements +- Global Technical Regulation (GTR 9) provides framework +- US adoption likely within next 5-10 years + +**The Design Tension:** +- Pedestrian protection favors LOW, SOFT front ends +- SUV/truck popularity drives HIGH, BLUNT front ends +- Conflicting market and safety pressures + +**The Data Need:** +Pedestrian testing requires specialized impactors, headforms, legforms - and precise measurement of acceleration, force, and bending. DTS instrumentation is used in these tests. + +### Speaker Notes: +> "The future is a mix of avoidance and protection. Pedestrian AEB is spreading fast - most new vehicles have it. Active hoods are common in Europe, less so here. External airbags exist but are limited. The design tension is real: pedestrian safety wants low, soft front ends. But consumers want big SUVs and trucks with high, imposing front ends. Those are conflicting demands. NHTSA will likely adopt pedestrian crashworthiness requirements eventually - the global regulations exist, it's a matter of when. And when they do, testing will require specialized impactors and instrumentation." + +--- + +# CHAPTER 7: BEYOND AUTOMOTIVE +## "Helmets, Sports, and the Same Physics" + +--- + +## SLIDE 33: The Concussion Crisis + +### Content: + +**The NFL Wake-Up Call:** +- 2005: Dr. Bennet Omalu publishes first CTE case in NFL player +- 2009: NFL finally acknowledges concussion problem +- 2011: $765 million settlement with former players +- 2016: "Concussion" movie brings issue to public + +**The Science:** +| Term | Meaning | +|------|---------| +| Concussion | Mild traumatic brain injury from impact | +| CTE | Chronic Traumatic Encephalopathy - degenerative brain disease from repeated impacts | +| Subconcussive | Impacts below concussion threshold - but cumulative damage | + +**The Problem:** +- Football: 6-10 significant head impacts per game (linemen) +- Hockey: High-speed collisions, fighting +- Soccer: Heading the ball - cumulative effect +- Cycling: Ground impacts at speed + +**The Question:** +Can better helmets reduce brain injury? +The same question crash testing answers for occupants - can we protect the head? + +### Speaker Notes: +> "The same physics that applies in car crashes applies in sports. When your head decelerates rapidly, your brain moves inside your skull. Too much, too fast, and you have a concussion - or worse. The NFL's concussion crisis brought this into public view. CTE - the degenerative brain disease found in football players - showed that even subconcussive impacts accumulate over time. The question became: can better helmets help? That's a question data can answer. And it's the same question we answer in automotive: how do we protect the head from impact?" + +--- + +## SLIDE 34: NOCSAE - The Sports Helmet Standard + +### Content: + +**NOCSAE: National Operating Committee on Standards for Athletic Equipment** +- Founded: 1969 (after 36 football fatalities in 1968) +- Role: Sets performance standards for sports helmets +- Scope: Football, baseball/softball, lacrosse, polo, hockey, skiing + +**The Origin Story:** +- 1968: 36 direct fatalities in football (peak year) +- Parents, coaches, schools demanded action +- NCAA and sporting goods industry founded NOCSAE +- First football helmet standard: 1973 + +**The Impact:** +| Decade | Football Direct Fatalities (Avg/Year) | +|--------|---------------------------------------| +| 1960s | 26 | +| 1970s | 15 (NOCSAE standards adopted) | +| 1980s | 9 | +| 1990s | 5 | +| 2000s | 4 | +| 2010s | 3 | + +**From 26/year to 3/year** - testing and standards work. + +### Speaker Notes: +> "NOCSAE was founded in 1969 after 36 football players died from head injuries in a single year - 1968. That was the worst year on record. Parents and schools demanded action. The NCAA and sporting goods manufacturers created NOCSAE to develop helmet standards. The first standard came out in 1973. And it worked. Fatalities dropped from 26 per year in the 1960s to 3 per year in the 2010s. Testing and standards save lives - whether it's cars or helmets, the pattern is the same." + +--- + +## SLIDE 35: Drop Tower Testing + +### Visual: +*[Diagram of drop tower test apparatus]* + +### Content: + +**The Classic Helmet Test:** +Drop a helmeted headform onto an anvil, measure deceleration. + +**How It Works:** +1. Rigid headform (represents skull) +2. Helmet fitted to headform +3. Drop from specified height (represents impact velocity) +4. Land on anvil (flat, hemispherical, or edge) +5. Accelerometer inside headform measures deceleration +6. Calculate Severity Index (SI) from acceleration-time curve + +**NOCSAE Football Helmet Test:** +| Parameter | Specification | +|-----------|---------------| +| Drop height | 60" (1.52m) onto flat anvil | +| Impact velocity | ~5.5 m/s (12.3 mph) | +| Pass threshold | SI < 1200 | +| Locations tested | Front, side, rear, top, facemask | +| Conditioning | Hot, cold, wet | + +**The Severity Index:** +$$SI = \int a^{2.5} dt$$ +Integrates acceleration over time, weighted to penalize high peaks. + +**DTS Role:** +High-g accelerometers must survive repeated impacts and measure accurately up to 300-400g. Data acquisition must capture the entire pulse at high sample rate. + +### Speaker Notes: +> "The drop tower test is elegant in its simplicity. Put a helmet on a headform, drop it onto an anvil, measure how much the head decelerates. Lower deceleration means better protection. NOCSAE drops from 60 inches - about 12 mph impact velocity. They test multiple locations - front, side, rear, top - and in hot, cold, and wet conditions. The accelerometer inside measures the pulse, and we calculate a Severity Index. DTS accelerometers are designed for this - they survive repeated high-g impacts and capture the entire pulse accurately." + +--- + +## SLIDE 36: Linear Impactor Testing + +### Content: + +**The Limitation of Drop Tests:** +Drop tests are vertical impacts at moderate speed. But real head injuries often involve: +- Higher speeds +- Angled impacts +- Rotational motion + +**The Linear Impactor:** +Instead of dropping the helmet, FIRE a projectile at it. + +**How It Works:** +1. Helmet mounted on instrumented headform (free to move) +2. Pneumatic ram fires impactor at helmet +3. Higher speeds achievable (up to 30+ mph) +4. Measure: head acceleration, rotation, displacement +5. Test at various angles + +**NOCSAE Linear Impactor Test (Newer):** +| Parameter | Specification | +|-----------|---------------| +| Impactor mass | 14.2 kg (31.3 lbs) | +| Impact speed | 5.5-9.3 m/s (12-21 mph) | +| Locations | Multiple facemask, shell locations | +| Measures | Peak acceleration, SI, rotation | + +**Why Both Tests?** +- Drop tower: Repeatable, historical baseline, simple +- Linear impactor: Better simulates game-like impacts, measures rotation + +**The Rotation Issue:** +Concussions may be caused more by ROTATIONAL acceleration than linear. +Newer protocols measure angular velocity, angular acceleration. + +### Speaker Notes: +> "Drop tests have a limitation: real impacts aren't always straight down. Linear impactor tests fire a projectile at the helmet at higher speeds and various angles. This better simulates game conditions - a linebacker hitting at 20 mph from the side. The linear impactor can also measure rotation, which may be more important for brain injury than linear acceleration. Modern testing often uses both: drop tower for baseline certification, linear impactor for more game-realistic evaluation. We're instrumenting for both linear and rotational measurements now." + +--- + +## SLIDE 37: NFL/NFLPA Helmet Testing Program + +### Content: + +**The League's Response:** +Since 2011, NFL and NFLPA jointly test helmets and publish rankings. + +**The Testing Protocol:** +| Test Type | Configuration | +|-----------|---------------| +| Drop tests | Multiple locations, anvil types | +| Linear impactor | Game-like impact angles/speeds | +| Rotational | Measuring angular acceleration | + +**The Ranking System:** +Helmets rated by how much they reduce concussion risk: +- Top performers: Significantly reduce risk +- Not recommended: Fail to provide adequate protection +- **Players banned from wearing lowest-performing helmets** + +**The Market Effect:** +| Change | Result | +|--------|--------| +| Public rankings | Manufacturers compete on safety | +| Position-specific designs | Linemen vs. skill positions have different impacts | +| Annual updates | New designs tested each year | +| Player choice | Stars influence teammates to adopt safer helmets | + +**The Data:** +NFL tracks every helmet impact using sensors (accelerometers in helmets during games). +Combined with video, medical data - largest head impact database in sports. + +### Speaker Notes: +> "The NFL and players' union now jointly test helmets and publish rankings. Helmets that don't meet standards are banned - players can't wear them. This created competitive pressure. Manufacturers had to improve. And they have - the best helmets today significantly outperform what was available 10 years ago. The NFL also instruments helmets with accelerometers during games, tracking every impact. They've built the largest head impact database in sports. That data drives design improvements. Same pattern as automotive: testing, data, engineering, protection." + +--- + +## SLIDE 38: Other Sports Applications + +### Content: + +**Hockey (HECC/NOCSAE):** +- Puck impacts, board collisions, falls +- Drop tests + puck impact tests +- Face cage/visor integration + +**Cycling (CPSC, ASTM, Snell):** +- Ground impacts after falls +- Drop test onto flat, curbstone anvils +- Single-impact design (unlike football multi-impact) +- MIPS and other rotation-reduction technologies + +**Motorcycle (DOT FMVSS 218, ECE, Snell):** +- Highest speed impacts +- Drop test + penetration resistance +- Chin bar protection +- Multiple certification standards globally + +**Equestrian (ASTM F1163):** +- Fall from height + potential hoof strike +- Low-profile design requirements +- Retention system critical + +**Skiing/Snowboarding (ASTM F2040, CE EN1077):** +- High-speed impacts with obstacles +- Edge impacts (rocks, trees) +- Combined certification for resort/backcountry + +**The Common Thread:** +All helmet testing measures the same thing: **Can we reduce the acceleration experienced by the brain during impact?** + +### Speaker Notes: +> "Football isn't the only sport with helmet standards. Hockey tests for puck impacts and board collisions. Cycling helmets are designed for single-impact ground strikes. Motorcycle helmets face the highest speeds. Equestrian helmets must consider falls from height. Skiing helmets need to handle trees and rocks. The testing varies, but the physics is the same: can we reduce the acceleration experienced by the brain? That's what we measure with instrumented headforms. DTS accelerometers and data acquisition are used across all these applications." + +--- + +## SLIDE 39: The Automotive-Sports Connection + +### Content: + +**Same Physics, Same Instrumentation:** + +| Parameter | Automotive | Sports | +|-----------|------------|--------| +| What we're protecting | Head, brain | Head, brain | +| Mechanism | Deceleration, rotation | Deceleration, rotation | +| Metric | HIC (Head Injury Criterion) | SI (Severity Index), similar | +| Instrument | Accelerometer | Accelerometer | +| Data need | Time-history pulse | Time-history pulse | + +**DTS Products Used:** +| Application | Products | +|-------------|----------| +| Automotive ATD | SLICE series, accelerometers | +| Helmet testing | Same accelerometers, same DAQ | +| Research | Same sensors, different mounts | + +**The Knowledge Transfer:** +- Injury criteria developed from automotive research apply to sports +- Wayne State Tolerance Curve (automotive) informs helmet standards +- Cadaver/volunteer data (automotive history) validates helmet thresholds + +**The Business:** +Helmet testing is a smaller market than automotive - but it's growing, high-margin, and DTS equipment is ideal for it. + +### Speaker Notes: +> "Here's why this matters to DTS: the physics is identical. In a car crash, we're measuring head acceleration to predict injury. In helmet testing, same thing. The Head Injury Criterion from automotive and the Severity Index from sports are mathematically similar. The accelerometers we use in crash test dummies are the same accelerometers used in helmet testing headforms. The knowledge transfers too - injury thresholds developed from automotive cadaver research inform helmet certification standards. It's the same science, same instrumentation, different application." + +--- + +## SLIDE 40: Chapter 6 & 7 Summary + +### Content: + +**Pedestrian Protection:** +| Status | Issue | +|--------|-------| +| Rising deaths | 7,500+ pedestrians killed in 2022 | +| US testing gap | No FMVSS for pedestrian crashworthiness | +| Europe leads | 25+ years of pedestrian testing | +| Future | US adoption likely within 5-10 years | + +**Sports/Helmet Testing:** +| Fact | Significance | +|------|--------------| +| NOCSAE founded 1969 | After 36 football deaths in 1968 | +| Football deaths down 90% | From 26/year to 3/year | +| NFL helmet rankings | Market pressure drives improvement | +| Same physics as automotive | Accelerometers, time-history data, injury criteria | + +**The DTS Opportunity:** +Both pedestrian protection and helmet testing are growing markets that use the same instrumentation as automotive crash testing. The physics is universal. + +### Speaker Notes: +> "Two takeaways. First, pedestrian protection is a gap that will close - deaths are rising, the public is noticing, regulations will follow. DTS instrumentation is used in pedestrian impactor testing. Second, sports helmet testing is the same physics as automotive head injury assessment. Our accelerometers, our data acquisition, our expertise - they translate directly. NOCSAE testing has cut football deaths by 90%. That's the power of testing and data. Same story, different arena." + +--- + +# CLOSING: THE PATTERN CONTINUES + +--- + +## SLIDE 29: The Unending Cycle + +### Content: + +**The Pattern We've Seen:** +``` +1968: FMVSS 208 (frontal) → gaps remain + ↓ +1990: FMVSS 214 (side) → gaps remain + ↓ +1995: IIHS Moderate Overlap → gaps remain + ↓ +2012: IIHS Small Overlap → gaps remain + ↓ +2021: IIHS Updated Side → gaps remain + ↓ +????: Next test... +``` + +**Every test exposes what the previous tests missed.** + +**What's Coming:** +| Gap | Potential Test | +|-----|----------------| +| Rear seat occupants | IIHS rear seat evaluation (in development) | +| Far-side impacts | Crashes on opposite side of vehicle | +| Compatibility | Protecting small cars from large trucks | +| Oblique frontal | Angled impacts (NHTSA proposed) | +| EV-specific | Battery safety, unique mass distribution | + +**The Pattern Will Continue.** + +### Speaker Notes: +> "Let me show you the pattern. FMVSS 208 addressed frontal - but side was neglected for decades. FMVSS 214 addressed side - but offset crashes were missed. IIHS moderate overlap addressed offset - but small overlap was missed. Every test exposes what the previous tests missed. What's next? Rear seat occupants - turns out they're now at higher risk in some crashes than front seat. Far-side impacts - when you're on the opposite side from the crash. Vehicle compatibility - how do we protect small cars from giant trucks? The pattern will continue. New gaps will be found. New tests will be created." + +--- + +## SLIDE 30: The Data Thread + +### Content: + +**Every Test Requires Data.** + +| Test Type | Data Captured | DTS Role | +|-----------|---------------|----------| +| Frontal crash | Head, chest, femur loads; structure intrusion | ATD instrumentation | +| Side crash | Pelvis, thorax, head loads; door intrusion | ATD instrumentation | +| Roof crush | Force vs. displacement | Load measurement | +| Sled tests | Dummy kinematics, restraint loads | Full test systems | +| AEB tests | Vehicle dynamics, timing, position | Expanding market | +| Pedestrian impactors | Headform/legform acceleration, force | Impactor instrumentation | +| Helmet testing | Head acceleration, severity index | High-g accelerometers | + +**The Constant:** +- Test methods evolve +- Pass/fail thresholds change +- Vehicle designs change +- **Data requirements remain** + +**DTS provides the data that makes every test meaningful.** + +### Speaker Notes: +> "Here's the thread that connects everything. Every test requires data. Frontal crashes need head, chest, and femur measurements from dummies. Side crashes need pelvis and thorax data. Roof tests need force measurement. AEB tests need vehicle dynamics. The tests change - but the need for accurate, reliable data never does. That's where DTS fits. We provide the data that makes every test meaningful. Without accurate data, a crash test is just expensive car destruction." + +--- + +## SLIDE 31: Why This Matters to Us + +### Content: + +**The Story We Just Told:** + +| Problem | Test Created | Engineering Response | Lives Saved | +|---------|--------------|---------------------|-------------| +| Unrestrained occupants | FMVSS 208 | Seatbelts, airbags | ~18,000/year | +| Offset crashes | IIHS Moderate Overlap | Structural redesign | Thousands | +| Narrow impacts | IIHS Small Overlap | Frame rail redesign | Thousands | +| Side crashes | FMVSS 214, IIHS Side | Side airbags | ~500-700/year | +| Rollovers | FMVSS 216, ESC | Strong roofs, stability control | Thousands | +| Rear-end crashes | IIHS AEB | Automatic braking | Growing | +| Pedestrian strikes | Euro NCAP Pedestrian | Active hoods, soft bumpers | Growing | +| Football head injuries | NOCSAE standards | Better helmets | 90% reduction in fatalities | + +**Each test exists because people were dying.** + +**Each test required data to develop, validate, and enforce.** + +**DTS captures that data.** + +### Speaker Notes: +> "Let's bring it home. Each test we discussed exists because people were dying in a specific way. Each test required data to develop the standard, validate designs, and enforce compliance. Seatbelts and airbags save about 18,000 lives a year. Structural improvements from overlap testing save thousands more. Side airbags, roof strength, ESC - all driven by tests, all requiring data. DTS captures that data. We're part of the chain from 'people are dying' to 'people are surviving.'" + +--- + +## SLIDE 32: The Bottom Line + +### Content: + +> **"Every test has a story. Every story started with tragedy. Every tragedy ended when we got the data to understand it."** + +**77% reduction in fatality rate since 1970.** +**~117,000 lives saved per year compared to 1970 rates.** + +Each of those lives was saved by: +1. A tragedy that revealed a problem +2. Research that generated data +3. A test that measured the problem +4. Engineering that solved it +5. Data that validated the solution + +**DTS is in the chain at steps 2, 3, and 5.** + +**The data saves lives.** + +### Speaker Notes: +> "Every test has a story. Every story started with tragedy - people dying in ways we didn't understand. Every tragedy ended when we got the data to understand it. That's the pattern. Tragedy, data, test, engineering, lives saved. We're in that chain. When researchers study injury biomechanics - we provide instrumentation. When NHTSA or IIHS runs a test - we capture the data. When manufacturers validate designs - we're in their labs. 77% reduction in fatality rate. 117,000 lives saved per year. That's what data does. That's why we're here." + +--- + +## SLIDE 33: Q&A + +### Content: +# Questions? + +**Key Takeaways:** +1. Every test exists because people were dying a specific way +2. Each test exposed gaps the previous tests missed +3. Consumer testing (IIHS) often exceeds regulatory requirements +4. The pattern will continue - new gaps, new tests +5. Data is the constant thread through every test + +> **"The test that doesn't exist yet will save lives we can't imagine losing."** + +--- + +# APPENDIX + +--- + +## Quick Reference: All Tests by Year + +| Year | Test | Organization | Key Change | +|------|------|--------------|------------| +| 1968 | FMVSS 208 (Frontal) | NHTSA | First occupant protection standard | +| 1968 | FMVSS 301 (Fuel) | NHTSA | Fuel system integrity | +| 1973 | FMVSS 216 (Roof) | NHTSA | Roof crush resistance | +| 1979 | NCAP Frontal | NHTSA | Consumer ratings | +| 1990 | FMVSS 214 (Side) | NHTSA | First dynamic side test | +| 1995 | Moderate Overlap | IIHS | Offset frontal testing | +| 1995 | Head Restraint (static) | IIHS | Whiplash geometry | +| 1997 | NCAP Side | NHTSA | Consumer side ratings | +| 2003 | Side Impact | IIHS | Small female dummy | +| 2004 | Head Restraint (dynamic) | IIHS | Whiplash performance | +| 2007 | FMVSS 214 Pole | NHTSA | Narrow object head protection | +| 2009 | FMVSS 216 Update | NHTSA | Doubled roof strength | +| 2009 | Roof Ratings | IIHS | 4× for "Good" | +| 2012 | Small Overlap (driver) | IIHS | 25% narrow overlap | +| 2012 | FMVSS 126 (ESC) | NHTSA | Stability control required | +| 2013 | Front Crash Prevention | IIHS | AEB testing | +| 2016 | Headlights | IIHS | Nighttime visibility | +| 2017 | Small Overlap (passenger) | IIHS | Symmetric protection | +| 2019 | Pedestrian AEB | IIHS | Vulnerable road users | +| 2021 | Side Impact Update | IIHS | Heavier, taller barrier | + +### Pedestrian & Sports Tests +| Year | Test | Organization | Key Change | +|------|------|--------------|------------| +| 1973 | Football helmet standard | NOCSAE | First athletic helmet certification | +| 1997 | Pedestrian protection | Euro NCAP | Headform/legform impactors | +| 2011 | NFL Helmet ratings | NFL/NFLPA | Public helmet rankings | +| 2019 | Pedestrian AEB | IIHS | Pedestrian detection/avoidance | + +--- + +## Test Configurations Quick Reference + +### Frontal Tests +| Test | Overlap | Speed | Barrier | Dummy | +|------|---------|-------|---------|-------| +| FMVSS 208 | 100% | 30 mph | Rigid | Hybrid III 50M | +| NCAP Frontal | 100% | 35 mph | Rigid | Hybrid III 50M + 5F | +| IIHS Moderate | 40% | 40 mph | Deformable | Hybrid III 50M | +| IIHS Small | 25% | 40 mph | Rigid | Hybrid III 50M | + +### Side Tests +| Test | Configuration | Speed | Dummy | +|------|---------------|-------|-------| +| FMVSS 214 MDB | 90° barrier | 33.5 mph | ES-2re | +| FMVSS 214 Pole | 75° pole | 20 mph | ES-2re or SID-IIs | +| NCAP Side | 90° barrier | 38.5 mph | ES-2re | +| IIHS Side (2021) | 90° barrier | 37 mph | SID-IIs | + +### Other Tests +| Test | Configuration | Measure | +|------|---------------|---------| +| FMVSS 216 | Static plate load | Force to 127mm crush | +| FMVSS 301 | Rear/frontal/side + rollover | Fuel leakage | +| IIHS Head Restraint | Rear sled test | Neck loads (BioRID II) | +| IIHS AEB | 12/25 mph approach | Speed reduction | + +### Pedestrian Protection Tests (Euro NCAP) +| Test | Configuration | Measure | +|------|---------------|---------| +| Adult headform to hood | 35 km/h, 65° angle | HIC | +| Child headform to hood | 35 km/h, 50° angle | HIC | +| Upper legform to bumper | 40 km/h | Bending moment, force | +| Lower legform to bumper | 40 km/h | Knee bending, shear, acceleration | +| Headform to windshield | 35 km/h | HIC | + +### Helmet/Sports Tests +| Test | Configuration | Measure | +|------|---------------|---------| +| NOCSAE Drop Tower | 60" drop, multiple anvils | Severity Index (SI < 1200) | +| NOCSAE Linear Impactor | 5.5-9.3 m/s impact | SI, peak acceleration, rotation | +| CPSC Bicycle Helmet | Drop test, flat + curbstone | Peak acceleration (< 300g) | +| Snell Motorcycle | Drop test + penetration | Peak acceleration | +| NFL/NFLPA Protocol | Drop + linear impactor + rotation | Composite score | + +--- + +## Video Resources + +### For This Presentation: + +**IIHS 1959 vs 2009 Crash Test** +- YouTube: https://www.youtube.com/watch?v=joMK1WZjP7g +- Best demonstration of 50 years of frontal progress +- Use in Chapter 1 + +**IIHS Small Overlap Test Failures** +- Various on IIHS YouTube channel +- Shows dramatic structural failures +- Use in Slide 10-11 + +**IIHS Side Impact (Updated 2021)** +- IIHS YouTube channel +- Shows new heavier barrier +- Use in Chapter 2 + +**ESC Demonstration** +- Various available +- Shows vehicle avoiding rollover +- Use in Chapter 3 + +--- + +## Anticipated Q&A + +**Q: "Why doesn't NHTSA just adopt the IIHS tests?"** +A: Different roles. NHTSA sets minimum standards for ALL vehicles (legal floor). IIHS provides consumer information (market pressure). Both are needed - regulation sets the floor, consumer testing raises the ceiling. + +**Q: "What test will come next?"** +A: Likely candidates: rear seat occupant protection, far-side impacts, compatibility testing, EV-specific tests, oblique frontal impacts. IIHS and NHTSA are both researching these. + +**Q: "Do other countries use the same tests?"** +A: Similar but not identical. Euro NCAP uses different barriers, speeds, and injury criteria in some cases. Japan, Australia, China have their own programs. There's ongoing harmonization work. + +**Q: "How does DTS fit into active safety testing?"** +A: Growing area. AEB testing requires vehicle dynamics measurement, timing data, position tracking. As active safety expands, data needs expand. + +**Q: "Are crash tests still relevant with autonomous vehicles?"** +A: Absolutely. Even perfect autonomy can't prevent all crashes (other vehicles, edge cases, system failures). Crashworthiness remains essential as the backup when prevention fails. + +--- + +## Presentation Tips for Ben + +### The Core Message: +Every test is a chapter in a story. Tell the story, not just the specs. + +### Emotional Anchors: +- Ford Pinto memo (calculating lives vs. dollars) +- Small overlap luxury car failures (BMW, Mercedes failing) +- The airbag wars (30 years of fighting) +- 117,000 lives saved per year + +### The DTS Connection: +"We capture the data at step 2 (research), step 3 (testing), and step 5 (validation). Every test in this presentation depends on accurate data. That's what we provide." + +### Audience Engagement: +- "Anyone want to guess how long it took to mandate airbags?" (28 years) +- "What percentage of crashes involve full frontal overlap?" (Only 25%) +- "How many pedestrian deaths last year?" (Over 7,000 - rising) + +### Timing Flexibility: +- If running short: Condense Chapters 4 (Fire/Whiplash) +- If running long: Skip some historical detail, focus on pattern +- Always include small overlap story - it's the most dramatic + +--- + +*Document prepared for DTS internal presentation* +*Theme: "Every Test Has a Story"* +*Chapters: Frontal, Side, Rollover, Fire/Whiplash, Active Safety, Pedestrian, Sports/Helmets* +*Last updated: February 13, 2026* diff --git a/technical_standards_specifications.md b/technical_standards_specifications.md new file mode 100644 index 0000000..c720ffd --- /dev/null +++ b/technical_standards_specifications.md @@ -0,0 +1,892 @@ +# Technical Standards and Specifications for Crash Testing +## SAE, ISO, and Other Engineering Standards +### Data Acquisition, Instrumentation, Injury Criteria, and Test Methods + +--- + +# OVERVIEW + +This document covers the technical standards that govern HOW crash testing is performed - the instrumentation, data acquisition, filtering, injury calculations, and dummy specifications that underlie FMVSS and IIHS testing. + +**Key Standards Organizations:** +- **SAE International** - Society of Automotive Engineers (US-based, global influence) +- **ISO** - International Organization for Standardization (global) +- **UN/ECE** - United Nations Economic Commission for Europe +- **NHTSA** - Defines injury criteria referenced by FMVSS + +--- + +# SAE J211: INSTRUMENTATION FOR IMPACT TEST + +## SAE J211-1: Instrumentation for Impact Test - Electronic Instrumentation + +**First Published:** 1971 +**Current Version:** SAE J211-1 (Rev. 2014) +**Scope:** Defines requirements for electronic instrumentation used in vehicle crash testing + +### Purpose +SAE J211-1 ensures that crash test data is: +- **Accurate** - Measurements reflect actual physical events +- **Repeatable** - Same test produces same data across labs +- **Comparable** - Data from different facilities can be compared +- **Filtered appropriately** - High-frequency noise removed without distorting signal + +### Channel Frequency Classes (CFC) + +The most important concept in J211 is **Channel Frequency Class** - the bandwidth of the measurement system. + +| CFC | -3dB Frequency | Primary Use | Why This Bandwidth | +|-----|----------------|-------------|-------------------| +| **CFC 1000** | 1000 Hz (1650 Hz) | Head acceleration | Head impacts are high-frequency events | +| **CFC 600** | 600 Hz (1000 Hz) | Chest, pelvis acceleration | Torso response is lower frequency | +| **CFC 180** | 180 Hz (300 Hz) | Structural measurements | Vehicle deformation | +| **CFC 60** | 60 Hz (100 Hz) | Sled displacement | Gross motion | + +**Note:** The -3dB point is where signal is attenuated by 3dB (70.7%). The values in parentheses are the frequency at which attenuation reaches -40dB. + +### Filter Characteristics + +SAE J211 specifies a **4th-order Butterworth low-pass filter** with specific characteristics: + +| Parameter | Specification | +|-----------|---------------| +| Filter type | Butterworth (maximally flat) | +| Filter order | 4th order (24 dB/octave rolloff) | +| Phase | Zero phase shift (bi-directional filtering) | +| Passband | Flat to -0.5 dB at CFC frequency | +| Stopband | -24 dB at 1.67 × CFC frequency | + +### Sampling Requirements + +| CFC | Minimum Sample Rate | Recommended Rate | +|-----|---------------------|------------------| +| CFC 1000 | 8,000 Hz | 10,000+ Hz | +| CFC 600 | 4,800 Hz | 6,000+ Hz | +| CFC 180 | 1,440 Hz | 2,000+ Hz | +| CFC 60 | 480 Hz | 1,000+ Hz | + +**Rule of thumb:** Sample at 8-10× the CFC frequency for adequate resolution. + +### Transducer Requirements + +| Parameter | Specification | +|-----------|---------------| +| Amplitude linearity | ±1% of full scale | +| Cross-axis sensitivity | <5% of primary axis | +| Zero shift (post-impact) | <2% of full scale | +| Frequency response | Flat to at least CFC frequency | + +### Data Channel Designation + +J211 defines a naming convention for data channels: + +``` +[Location][Direction][Type][Filter] + +Example: 11HEAD0000ACXC (Head X-acceleration, CFC 1000) +``` + +| Code | Meaning | +|------|---------| +| 11 | Driver position | +| 12 | Front passenger | +| 13 | Rear passenger | +| HEAD | Head | +| CHST | Chest | +| PELV | Pelvis | +| FEMR | Femur | +| AC | Acceleration | +| FO | Force | +| MO | Moment | +| X, Y, Z | Direction | + +--- + +## SAE J211-2: Instrumentation for Impact Test - Photographic Instrumentation + +**Current Version:** SAE J211-2 (Rev. 2001) +**Scope:** Requirements for high-speed photography and video in crash testing + +### Frame Rate Requirements + +| Application | Minimum Rate | Typical Rate | +|-------------|--------------|--------------| +| Occupant kinematics | 500 fps | 1,000 fps | +| Structural deformation | 1,000 fps | 2,000-4,000 fps | +| Airbag deployment | 2,000 fps | 5,000-10,000 fps | +| Detail analysis | 5,000+ fps | 10,000-40,000 fps | + +### Camera Positioning +- Minimum 3 views: front, side (left or right), overhead +- Additional views as needed for specific analysis +- Reference markers (targets) for photogrammetric analysis +- Lighting requirements for adequate exposure at high speed + +### Timing Synchronization +- All cameras synchronized to common time base +- Synchronization with electronic data acquisition +- Timing marks visible in frame or recorded electronically +- Time zero defined as first contact + +--- + +# ISO 6487: ROAD VEHICLES - MEASUREMENT TECHNIQUES IN IMPACT TESTS + +**Equivalent to:** SAE J211-1 +**Current Version:** ISO 6487:2015 +**Scope:** International standard for crash test instrumentation + +### Relationship to SAE J211 + +ISO 6487 and SAE J211-1 are technically equivalent and mutually referenced. Key correspondences: + +| SAE J211 CFC | ISO 6487 CFC | Application | +|--------------|--------------|-------------| +| CFC 1000 | CFC 1000 | Head | +| CFC 600 | CFC 600 | Chest, pelvis | +| CFC 180 | CFC 180 | Structure | +| CFC 60 | CFC 60 | Gross motion | + +### Filter Specification (ISO 6487) + +ISO 6487 defines the same 4th-order Butterworth filter with identical characteristics: + +$$H(f) = \frac{1}{\sqrt{1 + (f/f_c)^{2n}}}$$ + +Where: +- H(f) = filter transfer function +- f = frequency +- f_c = cutoff frequency (CFC) +- n = filter order (4 for 4th order) + +### Calibration Requirements + +| Parameter | Accuracy | +|-----------|----------| +| Acceleration | ±1.5% of full scale | +| Force | ±1% of full scale | +| Displacement | ±1% of full scale | +| Time | ±0.01 ms | + +--- + +# ISO 13232: MOTORCYCLES - TEST AND ANALYSIS PROCEDURES FOR RESEARCH EVALUATION OF RIDER PROTECTIVE DEVICES + +**Current Version:** ISO 13232:2005 (Parts 1-8) +**Scope:** Motorcycle crash testing with rider dummies + +### Key Differences from Automotive + +| Parameter | Automotive | Motorcycle (ISO 13232) | +|-----------|------------|------------------------| +| Dummy | Hybrid III, THOR | Motorcyclist ATD | +| Positions | Seated upright | Various riding positions | +| Impact modes | Frontal, side, rear | Multiple approach angles | +| Ejection | Prevented (restraints) | Expected and measured | + +--- + +# INJURY CRITERIA DEFINITIONS + +## Head Injury Criterion (HIC) + +**Defined in:** FMVSS 208, SAE J885, NHTSA regulations +**First Used:** 1972 (FMVSS 208) + +### Formula + +$$HIC = \left[ \frac{1}{t_2 - t_1} \int_{t_1}^{t_2} a(t) \, dt \right]^{2.5} (t_2 - t_1)$$ + +Where: +- a(t) = resultant head acceleration (g) +- t₁, t₂ = time interval (seconds) +- (t₂ - t₁) = time interval maximized to find worst case + +### HIC Versions + +| Version | Time Window | Limit | Application | +|---------|-------------|-------|-------------| +| HIC₃₆ | 36 ms max | 1000 | FMVSS 208 (airbag) | +| HIC₁₅ | 15 ms max | 700 | FMVSS 208 (current) | +| HIC unlimited | No limit | 1000 | Historical | + +### Interpretation + +| HIC Value | Injury Risk | +|-----------|-------------| +| < 500 | Low risk | +| 500-700 | Moderate risk | +| 700-1000 | Significant risk | +| > 1000 | High risk of serious injury | + +**Basis:** Wayne State Tolerance Curve (WSTC) derived from cadaver and volunteer testing. + +--- + +## Chest Injury Criteria + +### Chest Acceleration (3ms Clip) + +**Defined in:** FMVSS 208 +**Formula:** Maximum resultant chest acceleration sustained for 3 ms +**Limit:** ≤ 60g + +### Chest Deflection + +**Defined in:** FMVSS 208 +**Measurement:** Compression of sternum relative to spine +**Limits:** + +| Dummy | Deflection Limit | +|-------|-----------------| +| Hybrid III 50th Male | 63 mm | +| Hybrid III 5th Female | 52 mm | +| THOR 50th Male | 63 mm | + +### Viscous Criterion (V*C) + +**Defined in:** European regulations, soft tissue injury +**Formula:** + +$$V \cdot C = V(t) \times C(t)$$ + +Where: +- V(t) = velocity of chest compression +- C(t) = compression as fraction of chest depth +- Limit: ≤ 1.0 m/s + +**Purpose:** Captures rate-dependent soft tissue injury (heart, liver, spleen) + +### Combined Thoracic Index (CTI) + +**Defined in:** FMVSS 208 (advanced airbag rule) +**Formula:** + +$$CTI = \frac{A_{max}}{A_{int}} + \frac{D_{max}}{D_{int}}$$ + +Where: +- A_max = maximum chest acceleration +- D_max = maximum chest deflection +- A_int, D_int = intercept values (dummy-specific) + +**Limit:** CTI ≤ 1.0 + +--- + +## Neck Injury Criteria (Nij) + +**Defined in:** FMVSS 208 +**Purpose:** Combined neck axial load and bending moment + +### Formula + +$$N_{ij} = \frac{F_z}{F_{zc}} + \frac{M_{oy}}{M_{yc}}$$ + +Where: +- F_z = axial neck force (tension or compression) +- M_oy = neck bending moment (flexion or extension) +- F_zc, M_yc = critical intercept values + +### Critical Values (Hybrid III 50th Male) + +| Direction | Force (N) | Moment (Nm) | +|-----------|-----------|-------------| +| Tension-Extension | 6,806 | 135 | +| Tension-Flexion | 6,806 | 310 | +| Compression-Extension | 6,160 | 135 | +| Compression-Flexion | 6,160 | 310 | + +**Limit:** Nij ≤ 1.0 for any combination + +--- + +## Femur Load Criterion + +**Defined in:** FMVSS 208 +**Measurement:** Axial compressive force in femur +**Limit:** ≤ 10,000 N (10 kN) +**Duration:** Peak force in any 10 ms window + +### Femur Force Measurement + +| Dummy | Measurement Location | +|-------|---------------------| +| Hybrid III | Femur load cell | +| THOR | Upper, middle, lower femur | + +--- + +## Tibia Injury Criteria + +### Tibia Index (TI) + +**Defined in:** European regulations +**Formula:** + +$$TI = \frac{M_R}{M_C} + \frac{F_Z}{F_C}$$ + +Where: +- M_R = resultant bending moment +- F_Z = axial force +- M_C, F_C = critical values + +**Limit:** TI ≤ 1.0 + +### Tibia Compressive Force + +**Limit:** ≤ 8,000 N (8 kN) + +--- + +## Pelvis Acceleration + +**Defined in:** FMVSS 214 +**Measurement:** Resultant pelvis acceleration +**Limit:** Varies by test mode and dummy + +--- + +## Severity Index (SI) - Helmets + +**Defined in:** NOCSAE, FMVSS 218 +**Formula:** + +$$SI = \int a^{2.5} \, dt$$ + +Where: +- a = head acceleration (g) +- t = time (seconds) + +**Limits:** + +| Standard | SI Limit | +|----------|----------| +| NOCSAE Football | < 1200 | +| FMVSS 218 Motorcycle | N/A (uses peak g) | + +**Relationship to HIC:** SI is the time-weighted integral; HIC normalizes by time interval. + +--- + +# DUMMY (ATD) SPECIFICATIONS + +## SAE J963: Anthropomorphic Test Dummy Family + +**Scope:** Defines the Hybrid III dummy family specifications + +### Hybrid III Family + +| Model | Height | Weight | Primary Use | +|-------|--------|--------|-------------| +| 95th Male | 188 cm (6'2") | 101 kg (223 lb) | Large adult male | +| 50th Male | 175 cm (5'9") | 78 kg (172 lb) | Average adult male | +| 5th Female | 152 cm (5'0") | 49 kg (108 lb) | Small adult female | +| 10-year-old | 138 cm (4'6") | 36 kg (79 lb) | Child | +| 6-year-old | 117 cm (3'10") | 23 kg (51 lb) | Child | +| 3-year-old | 99 cm (3'3") | 15 kg (33 lb) | Child | + +### Hybrid III 50th Male Instrumentation + +| Location | Measurements | Channels | +|----------|--------------|----------| +| Head | Triaxial acceleration | 3 | +| Head | Angular acceleration (optional) | 3 | +| Upper neck | 6-axis load cell | 6 | +| Lower neck | 6-axis load cell | 6 | +| Chest | Triaxial acceleration | 3 | +| Chest | Deflection (potentiometer) | 1 | +| Lumbar spine | 6-axis load cell | 6 | +| Pelvis | Triaxial acceleration | 3 | +| Femur (L) | Axial force | 1 | +| Femur (R) | Axial force | 1 | +| Knee (L) | Displacement | 1 | +| Knee (R) | Displacement | 1 | +| Tibia (L) | 6-axis load cell | 6 | +| Tibia (R) | 6-axis load cell | 6 | +| **TOTAL** | | **~47 channels** | + +--- + +## ISO 13232-3: Motorcyclist Anthropomorphic Test Device + +**Scope:** Dummy for motorcycle crash testing + +### Differences from Hybrid III + +| Feature | Hybrid III | Motorcyclist ATD | +|---------|------------|------------------| +| Neck | Limited ROM | Full range of motion | +| Shoulder | Automotive seated | Riding position | +| Hip | Seated | Straddling | +| Limbs | Fixed joints | Articulated | + +--- + +## THOR (Test Device for Human Occupant Restraint) + +### THOR-50M Specifications + +| Parameter | Specification | +|-----------|---------------| +| Height | 175 cm (5'9") | +| Weight | 78 kg (172 lb) | +| Channels | 150+ | + +### THOR Improvements Over Hybrid III + +| Feature | Hybrid III | THOR | +|---------|------------|------| +| Chest | Single deflection point | Multi-point (4 locations) | +| Abdomen | Not instrumented | Instrumented | +| Face | Basic | Deformable, instrumented | +| Shoulder | Simple | Complex clavicle | +| Pelvis | Basic | Instrumented iliac wings | +| Spine | Rigid | Flexible | + +### THOR-5F (Female) + +**Released:** 2023 +**Significance:** First true female dummy (not scaled male) + +| Feature | Hybrid III 5th Female | THOR-5F | +|---------|----------------------|---------| +| Design basis | Scaled 50th male | Female anatomy | +| Hip structure | Male-derived | Female pelvis | +| Breast | Not represented | Represented | +| Organ placement | Male-based | Female-based | +| Height | 152 cm | 161 cm | +| Weight | 49 kg | 49 kg | + +--- + +## BioRID II (Rear Impact Dummy) + +**Purpose:** Whiplash assessment in rear impacts + +| Feature | Specification | +|---------|---------------| +| Spine | Highly articulated (24 vertebrae) | +| Head/neck response | Biofidelic in rear impact | +| Certification | Dynamic corridor matching | +| Primary use | IIHS head restraint test | + +--- + +## WorldSID (World Side Impact Dummy) + +**Purpose:** International harmonized side impact dummy + +### Versions + +| Model | Percentile | Primary Use | +|-------|------------|-------------| +| WorldSID 50th | 50th male | Side impact | +| WorldSID 5th | 5th female | Side impact | + +### Instrumentation + +| Location | Measurements | +|----------|--------------| +| Head | Triaxial acceleration, angular velocity | +| Neck | 6-axis load cell | +| Thorax | Rib deflections (3 levels, multiple points) | +| Abdomen | Forces | +| Pelvis | Acceleration, pubic force | +| Spine | T1, T12 acceleration | + +--- + +## SID-IIs (Side Impact Dummy - Second Generation) + +**Purpose:** Small female side impact (IIHS side test) + +| Parameter | Specification | +|-----------|---------------| +| Percentile | 5th female | +| Height | 152 cm (5'0") | +| Weight | 45 kg (99 lb) | +| Primary use | IIHS side impact test | + +--- + +## ES-2re (European Side Impact Dummy - Rib Extension) + +**Purpose:** FMVSS 214 side impact + +| Parameter | Specification | +|-----------|---------------| +| Percentile | 50th male | +| Rib design | Extended measurement range | +| Primary use | FMVSS 214, NCAP side | + +--- + +## Q-Series (Child Dummies) + +**Purpose:** Child occupant protection + +| Model | Age Represented | Weight | +|-------|-----------------|--------| +| Q0 | Newborn | 3.4 kg | +| Q1 | 1-year-old | 9.8 kg | +| Q1.5 | 1.5-year-old | 11 kg | +| Q3 | 3-year-old | 14.5 kg | +| Q6 | 6-year-old | 23 kg | +| Q10 | 10-year-old | 36 kg | + +### Q-Dummy Features +- Biofidelic child response +- Appropriate injury criteria +- Used in Euro NCAP, i-Size testing + +--- + +## CRABI (Child Restraint Air Bag Interaction) + +**Purpose:** Infant dummy for airbag interaction testing + +| Model | Age | Weight | Use | +|-------|-----|--------|-----| +| CRABI 6-month | 6 months | 7.8 kg | Out-of-position testing | +| CRABI 12-month | 12 months | 10 kg | Child seat testing | + +--- + +## WIAMan (Warrior Injury Assessment Manikin) + +**Purpose:** Military underbody blast testing + +| Feature | Specification | +|---------|---------------| +| Developer | US Army + DTS | +| Primary threat | IED underbody blast | +| Key measurements | Lumbar spine, pelvis | +| Position | Seated (military vehicle) | + +--- + +# COORDINATE SYSTEMS + +## SAE J1733: Sign Convention for Vehicle Crash Testing + +**Purpose:** Standardized coordinate system for crash data + +### Vehicle Coordinate System + +``` + +Z (up) + | + | + |_______ +Y (right) + / + / + +X (forward) +``` + +| Axis | Positive Direction | +|------|-------------------| +| X | Forward (direction of travel) | +| Y | Right (passenger side in LHD) | +| Z | Up | + +### Dummy Coordinate System + +Same convention as vehicle: +- +X: Forward (anterior) +- +Y: Right (lateral) +- +Z: Up (superior) + +### Sign Conventions for Loads + +| Measurement | Positive | Negative | +|-------------|----------|----------| +| Neck tension | Pulling head away from torso | Compression | +| Neck flexion | Chin toward chest | Extension (head back) | +| Femur compression | Pushing toward hip | Tension | +| Chest deflection | Compression | N/A | + +--- + +# CALIBRATION STANDARDS + +## SAE J2570: Performance Specifications for Anthropomorphic Test Device Transducers + +**Scope:** Transducer specifications for ATDs + +### Accelerometer Specifications + +| Parameter | Specification | +|-----------|---------------| +| Range | ±50g to ±500g (application dependent) | +| Sensitivity | Typically 0.1-10 mV/g | +| Cross-axis sensitivity | <5% | +| Frequency response | DC to CFC requirement | +| Shock survival | >1000g for head accelerometers | + +### Load Cell Specifications + +| Parameter | Specification | +|-----------|---------------| +| Accuracy | ±1% full scale | +| Cross-talk | <3% between channels | +| Hysteresis | <1% | +| Zero shift | <2% after impact | + +--- + +## ISO 6487 Calibration Requirements + +### Calibration Intervals + +| Component | Calibration Interval | +|-----------|---------------------| +| Accelerometers | Annual or after 50 impacts | +| Load cells | Annual or after impact exceedance | +| Data acquisition | Annual | +| Filters | Verification with each test | + +### Calibration Documentation + +| Item | Required | +|------|----------| +| Calibration certificate | Yes | +| Traceability to national standards | Yes | +| Environmental conditions | Yes | +| Uncertainty statement | Yes | + +--- + +# BARRIER SPECIFICATIONS + +## IIHS Deformable Barrier (Moderate Overlap) + +| Parameter | Specification | +|-----------|---------------| +| Face | Deformable aluminum honeycomb | +| Width | 1,000 mm | +| Height | 650 mm | +| Crush strength | Progressive, 0.34 MPa face, 1.7 MPa back | +| Mass | N/A (barrier fixed) | + +## FMVSS 214 Moving Deformable Barrier (MDB) + +| Parameter | Specification | +|-----------|---------------| +| Mass | 1,368 kg (3,015 lb) | +| Face | Deformable aluminum honeycomb | +| Face width | 1,676 mm | +| Face height | 559 mm | +| Ground clearance | 279 mm | +| Impact speed | 33.5 mph (53.9 km/h) | + +## IIHS Side Impact Barrier (2021+) + +| Parameter | 2003-2020 | 2021+ | +|-----------|-----------|-------| +| Mass | 1,500 kg (3,300 lb) | 1,905 kg (4,200 lb) | +| Speed | 50 km/h (31 mph) | 60 km/h (37 mph) | +| Ground clearance | 300 mm | Higher profile | +| Face height | Standard | Taller | + +## IIHS Small Overlap Rigid Barrier + +| Parameter | Specification | +|-----------|---------------| +| Type | Rigid (non-deformable) | +| Width | 25% of vehicle width | +| Surface | Flat, rigid | +| Impact speed | 64 km/h (40 mph) | + +## Euro NCAP Mobile Progressive Deformable Barrier (MPDB) + +| Parameter | Specification | +|-----------|---------------| +| Mass | 1,400 kg | +| Speed | 50 km/h | +| Face | Progressive crush (multi-layer) | +| Measurement | Barrier deformation recorded | +| Purpose | Assess vehicle's "aggressivity" | + +--- + +# DATA ANALYSIS STANDARDS + +## SAE J2052: Test Method for Determining Center of Gravity + +**Purpose:** Locate vehicle CG for crash test setup + +### Method +- Three-point weighing +- Tilt table measurement +- Calculate CG location in X, Y, Z + +--- + +## SAE J1733: Sign Convention + +Already covered above - defines positive/negative directions for all measurements. + +--- + +## ISO 13232-5: Injury Indices and Risk/Benefit Analysis + +**Scope:** Converting dummy measurements to injury probability + +### Injury Probability Functions + +Example for head injury: + +$$P_{injury} = \frac{1}{1 + e^{-(\alpha + \beta \cdot HIC)}}$$ + +Where α and β are coefficients derived from real-world injury data. + +--- + +# CRASH TEST FACILITY STANDARDS + +## SAE J2432: Performance Requirements for a Photogrammetric Vehicle Test System + +**Scope:** Requirements for target tracking systems + +### Target Specifications + +| Target | Size | Contrast | Placement | +|--------|------|----------|-----------| +| Vehicle reference | 25 mm diameter | Black/white | B-pillar, roof rail | +| Dummy | 10-15 mm | Contrasting | Head, chest, knee | +| Time reference | Frame counter | Visible | In-frame | + +### Measurement Accuracy + +| Parameter | Accuracy | +|-----------|----------| +| Position | ±5 mm | +| Velocity | ±1% | +| Acceleration | ±2% | + +--- + +# SLED TEST STANDARDS + +## SAE J2765: HYGE Sled Test Procedure + +**Scope:** Sled test setup and execution + +### Sled Pulse Reproduction + +| Parameter | Tolerance | +|-----------|-----------| +| Peak acceleration | ±5% | +| Pulse duration | ±5% | +| Velocity change | ±2% | +| Time to peak | ±5% | + +### Data Acquisition for Sled Tests + +Same requirements as full vehicle (SAE J211) plus: +- Sled acceleration +- Sled velocity +- Sled displacement + +--- + +# EURO NCAP TECHNICAL BULLETINS + +Euro NCAP publishes detailed technical bulletins specifying: + +| Bulletin | Content | +|----------|---------| +| TB 013 | Pedestrian testing protocol | +| TB 024 | AEB test protocol | +| TB 025 | Whiplash test protocol | +| TB 026 | MPDB test protocol | + +These reference ISO 6487 for instrumentation requirements. + +--- + +# RELATED STANDARDS SUMMARY + +## Instrumentation & Data + +| Standard | Title | Key Content | +|----------|-------|-------------| +| SAE J211-1 | Electronic Instrumentation | CFC, filtering, sampling | +| SAE J211-2 | Photographic Instrumentation | High-speed video | +| ISO 6487 | Measurement Techniques | International equivalent of J211 | +| SAE J1733 | Sign Convention | Coordinate systems | +| SAE J2570 | Transducer Specifications | Sensor requirements | + +## Injury Criteria + +| Standard | Title | Key Content | +|----------|-------|-------------| +| SAE J885 | Human Tolerance to Impact | HIC derivation | +| FMVSS 208 | Injury criteria | HIC, chest, femur limits | +| ISO 13232-5 | Injury Indices | Probability functions | + +## Dummy Specifications + +| Standard | Title | Key Content | +|----------|-------|-------------| +| SAE J963 | Hybrid III Specifications | Dummy design | +| SAE J2868 | THOR Specifications | Next-gen dummy | +| ISO 13232-3 | Motorcyclist ATD | Rider dummy | +| Various CFR | CRABI, SID, Q-series | Specialized dummies | + +## Test Procedures + +| Standard | Title | Key Content | +|----------|-------|-------------| +| SAE J2432 | Photogrammetric Systems | Target tracking | +| SAE J2765 | Sled Test Procedure | Sled setup | +| Euro NCAP TB | Various technical bulletins | Test protocols | + +--- + +# KEY DEFINITIONS + +| Term | Definition | +|------|------------| +| **ATD** | Anthropomorphic Test Device (crash test dummy) | +| **CFC** | Channel Frequency Class (filter bandwidth) | +| **HIC** | Head Injury Criterion | +| **Nij** | Neck Injury Criterion | +| **CTI** | Combined Thoracic Index | +| **V*C** | Viscous Criterion (rate-dependent chest injury) | +| **SI** | Severity Index (helmet testing) | +| **MDB** | Moving Deformable Barrier | +| **MPDB** | Mobile Progressive Deformable Barrier | +| **OOP** | Out-of-Position (airbag testing) | +| **Biofidelity** | How closely dummy response matches human | +| **Zero shift** | Change in sensor zero after impact | +| **Cross-axis sensitivity** | Response to off-axis input | + +--- + +# DTS RELEVANCE + +## How These Standards Apply to DTS Products + +| Standard | DTS Application | +|----------|-----------------| +| SAE J211-1 | SLICE systems meet CFC filtering requirements | +| SAE J2570 | DTS accelerometers meet transducer specifications | +| ISO 6487 | International test facilities use DTS to meet ISO requirements | +| Dummy specs | DTS instrumentation embedded in Hybrid III, THOR, WorldSID | + +## Key DTS Capabilities + +| Requirement | DTS Solution | +|-------------|--------------| +| CFC 1000 head data | High-frequency accelerometers | +| Multi-channel recording | SLICE NANO, SLICE6 | +| Shock survival | Designed for 1000g+ | +| Zero shift | Minimal drift post-impact | +| Sample rate | Up to 100 kHz | + +--- + +*Document prepared as technical reference for DTS safety testing* +*Standards current as of February 2026* +*Last updated: February 13, 2026* diff --git a/test_modes_history.md b/test_modes_history.md new file mode 100644 index 0000000..aad90e0 --- /dev/null +++ b/test_modes_history.md @@ -0,0 +1,874 @@ +# FMVSS and IIHS Test Modes +## A Chronological History of Crash Testing Standards +### Each Test Has a Story + +--- + +# OVERVIEW + +This document catalogs the major FMVSS (Federal Motor Vehicle Safety Standards) and IIHS (Insurance Institute for Highway Safety) crash tests in chronological order of introduction. Each test exists because of a specific problem that was identified - often through tragedy, research, or both. + +**Key Insight:** Every test mode represents a chapter in the story of "we didn't know this was killing people until we looked at the data." + +--- + +# CHRONOLOGICAL TEST CATALOG + +--- + +## 1. FMVSS 208: Occupant Crash Protection (Frontal) +### First Introduced: 1968 | Major Revisions: 1984, 1998, 2000 + +### What It Tests: +- Frontal crash protection for occupants +- Originally: Seatbelt requirements only +- Now: Full frontal rigid barrier crash at 30 mph (48 km/h) +- Unbelted and belted dummy configurations +- Driver and passenger positions + +### General Requirements: +- Head injury protection (measured by Head Injury Criterion) +- Chest injury protection (acceleration and deflection limits) +- Femur load limits (prevent leg injuries from dashboard/knee bolster) +- Neck injury limits (added later) + +### The Origin Story: + +**The Pre-1968 Reality:** +Before FMVSS 208, there was no federal requirement for ANY occupant protection. Seatbelts were optional. Dashboards were solid steel. Steering columns were rigid spears. + +**The "Second Collision" Problem:** +Hugh DeHaven identified in the 1940s that crash deaths weren't caused by the vehicle stopping - they were caused by the occupant hitting the interior AFTER the vehicle stopped. He called this the "second collision." + +**The Regulatory Push:** +- 1965: Ralph Nader's "Unsafe at Any Speed" creates public pressure +- 1966: National Traffic and Motor Vehicle Safety Act passes +- 1967: First FMVSS standards issued +- 1968: FMVSS 208 takes effect - seatbelts required in all new cars + +**The Evolution:** +- 1968: Seatbelt anchorage requirements only +- 1970s: Crash test requirements added (but only at 30 mph) +- 1984: Automatic restraint requirement (led to automatic belts, then airbags) +- 1998: Frontal airbags required for all passenger vehicles +- 2000: Advanced airbag rule (depowered bags, child protection) + +**The Airbag Wars (1970s-1990s):** +The auto industry fought airbags for 20+ years: +- 1970: NHTSA proposes airbag requirement +- 1972: GM offers airbag option (on Oldsmobiles) - few buyers +- 1976: Industry lobbies, requirement delayed +- 1977: Joan Claybrook (NHTSA) pushes airbag mandate +- 1981: Reagan administration rescinds mandate +- 1983: State Farm v. DOT - Supreme Court rules rescission was arbitrary +- 1984: Compromise - "automatic restraint" required (airbag OR automatic belt) +- 1990s: Most manufacturers choose airbags as automatic belts prove unpopular +- 1998: Finally - frontal airbags mandatory + +**The Depowering Crisis (1990s):** +Early airbags deployed with lethal force: +- Designed assuming unbelted occupants +- 1990: First airbag fatality (child in front seat) +- 1996-1997: 53 deaths from airbag deployment (mostly children, small women) +- 1998: "Depowered" airbags required - lower inflation force +- 2000: Advanced airbag rule - sensors detect occupant size, suppress deployment for children + +**Why This Test Matters:** +FMVSS 208 is the foundational occupant protection standard. It drove the development of seatbelt systems, airbags, and the entire frontal crash protection infrastructure. Every other frontal test builds on this foundation. + +--- + +## 2. FMVSS 301: Fuel System Integrity +### First Introduced: 1968 | Major Revisions: 1977, 2006 + +### What It Tests: +- Fuel system integrity in crashes +- Rear impact (30 mph moving barrier) +- Frontal impact (30 mph into barrier) +- Side impact (20 mph moving barrier) +- Rollover (90° and 180° rotations) + +### General Requirements: +- Limited fuel leakage after crash (originally 1 oz/min, now stricter) +- No fuel spillage during impact +- Fuel tank must remain attached +- Fuel lines must not rupture + +### The Origin Story: + +**The Problem Nobody Talked About:** +In the 1960s and early 1970s, post-crash fires were a leading cause of death in survivable crashes. Fuel tanks were placed wherever convenient - often directly behind the rear bumper with minimal protection. + +**The Ford Pinto Scandal (1971-1978):** + +The Pinto case is the most infamous example of fuel system failure: + +**The Design Flaw:** +- Fuel tank located behind rear axle, only 6 inches from bumper +- Bolts on differential could puncture tank in rear impact +- Fuel filler neck could separate from tank + +**The Internal Memo (1973):** +Ford engineers calculated the cost of fixing the design vs. paying out death claims: +- Fix cost: $11 per vehicle × 12.5 million vehicles = $137 million +- Death cost: 180 deaths × $200,000 = $36 million + injuries + burned vehicles ≈ $49.5 million +- Ford chose not to fix + +**The Reckoning:** +- 1977: Mother Jones publishes "Pinto Madness" exposé +- 1978: NHTSA investigation, recall of 1.5 million Pintos +- 1978: Indiana criminal prosecution of Ford (first against automaker for defective design) +- 1980: Ford acquitted, but reputation destroyed +- Estimates: 27-180 deaths attributed to Pinto fuel system + +**The Standard Tightens:** +- 1977: FMVSS 301 strengthened in direct response to Pinto +- Rear impact test speed increased +- Leakage standards tightened +- Fuel tank location and protection now carefully engineered + +**Why This Test Matters:** +FMVSS 301 prevents survivable crashes from becoming fatal due to fire. The Pinto case showed what happens when manufacturers prioritize cost over safety - and created the template for product liability law in automotive. + +--- + +## 3. FMVSS 214: Side Impact Protection +### First Introduced: 1973 (Static) | Dynamic Test: 1990 | Major Revisions: 2007 + +### What It Tests: +- Occupant protection in side (lateral) crashes +- Moving deformable barrier (MDB) strikes stationary vehicle at 90° +- Test speed: 33.5 mph (54 km/h) +- Struck vehicle is perpendicular to barrier path +- SID (Side Impact Dummy) or ES-2re dummy used + +### General Requirements: +- Thorax injury protection (rib deflection, viscous criterion) +- Pelvis protection +- Head protection (added with pole test) +- Door intrusion limits + +### The Origin Story: + +**The Neglected Crash Mode:** +For decades, frontal crashes received all the attention. But side impacts were actually MORE deadly per crash because: +- Minimal crush space between door and occupant +- No crumple zone to absorb energy +- Direct loading to occupant's torso and head + +**The Statistics That Forced Action:** +- Side impacts: ~25% of crashes but ~30% of fatalities +- Occupants in struck vehicle often killed even in "minor" side impacts +- Traditional door construction offered minimal protection + +**The European Push:** +Europe led on side impact protection: +- 1980s: European research on side impact biomechanics +- 1996: Euro NCAP includes side impact test from launch +- US followed with enhanced FMVSS 214 + +**The Side Impact Dummy Development:** +Frontal crash dummies (like Hybrid III) couldn't measure side impact injuries properly: +- 1979: First US side impact dummy (SID) +- 1980s: European SID (EuroSID) developed +- 2000s: WorldSID - international harmonization effort +- ES-2re now used in US testing + +**The Pole Test Addition (2007):** +Original side tests used a flat barrier - but many real crashes involved narrow objects: +- Trees +- Utility poles +- Other vehicles (corner impact) + +The pole test (254mm diameter pole at 20 mph) specifically targets head protection, driving adoption of side curtain airbags. + +**Side Airbag Revolution:** +Before side airbags, there was nothing between your ribs and the door: +- 1995: Volvo introduces first side airbag (torso) +- 1998: First side curtain airbags (head protection) +- 2000s: Rapid adoption as FMVSS 214 and IIHS tests reward them +- Now standard equipment on virtually all vehicles + +**Why This Test Matters:** +FMVSS 214 transformed vehicle doors from minimal barriers to protective systems. Side curtain airbags - now standard - exist because this test demanded head protection in side impacts. + +--- + +## 4. FMVSS 216: Roof Crush Resistance +### First Introduced: 1973 | Major Revision: 2009 + +### What It Tests: +- Roof strength in rollover crashes +- Static test: Metal plate pressed onto roof at windshield/roof junction +- Force applied at 5° angle from vertical +- Measures peak force before 127mm (5") of crush + +### General Requirements: +- Pre-2009: Roof must withstand 1.5× vehicle weight +- Post-2009: Roof must withstand 3× vehicle weight +- Both sides of roof tested (not just driver side) + +### The Origin Story: + +**The Rollover Problem:** +Rollovers are only ~3% of crashes but cause ~30% of fatalities. The mechanism is different from other crashes: +- Occupants not restrained against a surface (like seatback in frontal) +- Multiple impacts as vehicle rolls +- Partial or full ejection common +- Roof intrusion can directly cause head/neck injury + +**The SUV Epidemic (1990s-2000s):** +Sport utility vehicles had higher rollover rates than cars: +- Higher center of gravity +- Narrow track width relative to height +- Often driven off-road or aggressively +- Ford Explorer/Firestone tire scandal (2000) - tread separation caused rollovers + +**The Advocacy Push:** +- Consumer groups argued 1.5× standard was far too weak +- Real-world rollovers showed roofs collapsing into survival space +- Advocates pushed for 4× vehicle weight minimum + +**The 2009 Upgrade:** +After years of debate: +- Standard doubled from 1.5× to 3× vehicle weight +- Both sides of roof tested (not just driver side) +- Phase-in period for compliance + +**The Engineering Response:** +- Stronger B-pillars +- Reinforced roof rails +- Boron steel and advanced high-strength steel +- Roof now contributes to overall structural integrity + +**Electronic Stability Control (ESC) - The Other Solution:** +While roof strength protects in rollovers, ESC prevents rollovers entirely: +- Detects loss of control +- Applies individual brakes to correct +- Reduces fatal single-vehicle rollovers by 75% +- FMVSS 126 mandates ESC (2012) + +**Why This Test Matters:** +FMVSS 216 ensures that if a vehicle rolls, occupants have survival space. Combined with ESC (which prevents rollovers) and side curtain airbags (which prevent ejection), rollover fatalities have dropped significantly. + +--- + +## 5. NHTSA NCAP: New Car Assessment Program (Frontal) +### First Introduced: 1979 + +### What It Tests: +- Consumer information program (not mandatory compliance) +- Full frontal rigid barrier crash at 35 mph (56 km/h) +- Higher speed than FMVSS 208 (30 mph) - more demanding +- 50th percentile male and 5th percentile female dummies +- Generates star ratings (1-5 stars) + +### General Requirements: +- Not pass/fail - generates comparative ratings +- Star ratings based on injury probability calculations +- Overall Vehicle Score combines frontal, side, and rollover ratings + +### The Origin Story: + +**The Inspiration - Consumer Reports:** +NHTSA Administrator Joan Claybrook wanted to give consumers actionable safety information, similar to how Consumer Reports tested appliances. + +**The Radical Idea (1978-1979):** +- Test vehicles at HIGHER speeds than compliance standards +- Publish results publicly +- Let consumers make informed choices +- Create market pressure for safety beyond minimum requirements + +**Industry Resistance:** +Manufacturers opposed NCAP vigorously: +- "Unfair" to compare different vehicle classes +- Star ratings were "misleading" +- Argued it would confuse consumers +- Lobbied to kill the program + +**The Program Survives:** +Despite industry pressure, NCAP launched in 1979 and continues today. It's now the model for consumer rating programs worldwide (Euro NCAP, ANCAP, JNCAP, etc.). + +**The Impact:** +- Created competitive pressure beyond regulation +- Manufacturers began advertising star ratings +- Drove safety improvements faster than regulation alone +- "5-star safety rating" became marketing gold + +**The 2011 Upgrade:** +NCAP enhanced to prevent "star inflation": +- Added side pole test +- Added rollover resistance rating +- Made 5-star ratings harder to achieve +- Combined into Overall Vehicle Score + +**Why This Test Matters:** +NCAP proved that consumer information could drive safety improvements. The 35 mph test speed (vs. 30 mph FMVSS) rewards vehicles that exceed minimum standards. The program created the template that IIHS, Euro NCAP, and others followed. + +--- + +## 6. NHTSA NCAP: Side Impact (MDB) +### Added to NCAP: 1997 + +### What It Tests: +- Same configuration as FMVSS 214 (perpendicular MDB strike) +- Test speed: 38.5 mph (vs. 33.5 mph for FMVSS 214) +- Uses ES-2re dummy (originally SID) +- Generates star ratings + +### The Origin Story: + +**Filling the Gap:** +By 1997, NCAP had frontal ratings but no side impact ratings. Consumers had no way to compare side protection. + +**The Higher Speed:** +Like frontal NCAP, side NCAP tests at higher speed than the FMVSS requirement, rewarding vehicles with safety margins beyond minimum compliance. + +**The Side Curtain Airbag Acceleration:** +When NCAP side ratings launched, few vehicles had side curtain airbags. The rating system accelerated adoption: +- 1998: Few vehicles with curtain airbags +- 2005: Most vehicles offer as option +- 2010: Standard on most new vehicles + +**Why This Test Matters:** +NCAP side ratings gave consumers comparative information and created market pressure for side airbag adoption years before any mandate. + +--- + +## 7. IIHS Moderate Overlap Frontal Test +### First Introduced: 1995 + +### What It Tests: +- Frontal offset crash into deformable barrier +- 40% overlap (only driver side of vehicle strikes barrier) +- Test speed: 40 mph (64 km/h) +- 50th percentile male Hybrid III dummy (driver only initially) + +### General Requirements: +- Structural rating (Good/Acceptable/Marginal/Poor) +- Injury measures from dummy +- Survival space (intrusion measurement) + +### The Origin Story: + +**The Problem with Full Frontal:** +NHTSA's full frontal test (100% overlap with rigid barrier) distributed crash forces across the entire front structure. But real-world crashes rarely involved full frontal impact: +- Offset crashes (car-to-car, hitting tree/pole with one side) +- Only 25% of real frontal crashes are "full frontal" + +**The European Research:** +European researchers in the 1980s and early 1990s demonstrated that offset crashes were: +- More common than full frontal +- Often more deadly (forces concentrated on one side) +- Not well-predicted by full frontal test performance + +**The IIHS Innovation:** +In 1995, IIHS introduced the moderate overlap test: +- 40% of vehicle width strikes deformable barrier +- Barrier mimics deformable front of another car +- Tests structural engagement on one side only +- Measures survival space, not just dummy numbers + +**The Early Shockers:** +When IIHS first published offset results, some popular vehicles performed poorly: +- Structures collapsed asymmetrically +- A-pillars folded +- Survival space compromised +- Some "safe" cars by NCAP standards were "Poor" in offset + +**The Industry Response:** +Manufacturers redesigned front structures: +- Longer crumple zones +- Frame rails designed to engage in offset crashes +- A-pillar reinforcement +- Intrusion-resistant footwell designs + +**Why This Test Matters:** +The moderate overlap test revealed that full frontal testing missed critical failure modes. It drove structural improvements that protect in the most common real-world crash configurations. + +--- + +## 8. IIHS Side Impact Test (Original) +### First Introduced: 2003 | Replaced: 2021 + +### What It Tests: +- Moving deformable barrier strikes stationary vehicle at 90° +- Test speed: 31 mph (50 km/h) +- Barrier simulates pickup truck or SUV front end +- SID-IIs (small female) dummy in driver position + +### The Origin Story: + +**The Government Test Gap:** +FMVSS 214 existed, but IIHS saw limitations: +- Used male-sized dummy (larger occupants may fare better) +- Barrier represented average car, not trucks/SUVs +- Real-world side crashes increasingly involved truck-to-car + +**The Small Female Focus:** +IIHS chose the SID-IIs (5th percentile female) dummy because: +- Smaller occupants have less cushioning from side structure +- Women sit closer to door (shorter legs) +- Previous testing focused too much on male anatomy + +**The Impact:** +IIHS side ratings rewarded: +- Side curtain airbags (for head protection) +- Side torso airbags (for chest protection) +- Stronger door structures +- Vehicles that protected smaller occupants, not just average males + +**Why This Test Matters:** +By using a small female dummy and a taller barrier, IIHS pushed manufacturers to protect vulnerable occupants, not just the "average" male that government tests focused on. + +--- + +## 9. IIHS Roof Strength Evaluation +### First Introduced: 2009 + +### What It Tests: +- Same basic test as FMVSS 216 (static plate load) +- But IIHS rates on a scale, not just pass/fail +- "Good" rating requires roof to withstand 4× vehicle weight +- Tests both sides of roof + +### General Requirements: +| Rating | Strength-to-Weight Ratio | +|--------|-------------------------| +| Good | ≥ 4.0 | +| Acceptable | 3.25 - 3.99 | +| Marginal | 2.5 - 3.24 | +| Poor | < 2.5 | + +### The Origin Story: + +**The Advocacy Connection:** +Consumer advocates had pushed for years for stronger roof standards. When NHTSA's 2009 rule only required 3× (not 4×), IIHS stepped in with ratings that rewarded exceeding the minimum. + +**The "Good" Threshold:** +IIHS set "Good" at 4× vehicle weight - higher than the new federal requirement - to create market pressure for even stronger roofs. + +**The Result:** +Manufacturers began building roofs to exceed 4× to achieve "Top Safety Pick" status. The market moved faster than regulation. + +**Why This Test Matters:** +IIHS roof ratings demonstrate how consumer testing can push beyond government minimums. Many vehicles now achieve 5× or 6× ratios - far beyond what FMVSS 216 requires. + +--- + +## 10. IIHS Small Overlap Frontal Test +### First Introduced: 2012 (Driver) | 2017 (Passenger) + +### What It Tests: +- Frontal impact with only 25% of vehicle width +- Rigid barrier (not deformable like moderate overlap) +- Test speed: 40 mph (64 km/h) +- Driver side initially; passenger side added 2017 +- 50th percentile male Hybrid III dummy + +### General Requirements: +- Structure/safety cage rating +- Injury measures (head, neck, chest, hip, leg) +- Restraints/kinematics evaluation +- Dummy movement and interaction with structure + +### The Origin Story: + +**The Gap in Existing Tests:** + +By 2012, vehicles performed well in NHTSA NCAP (full frontal) and IIHS moderate overlap (40%). But IIHS researchers noticed something in real-world crash data: + +- Fatal frontal crashes still occurring +- Many involved narrow overlap with trees, poles, or corners of other vehicles +- The crash forces bypassed the main structural rails + +**The Research Finding:** +When only 25% of the vehicle width is involved: +- Main frame rails are NOT engaged +- Forces go through the wheel and suspension +- Wheel can be pushed into footwell +- A-pillar rotation is different than moderate overlap + +**The First Test Results (2012):** +IIHS tested 11 midsize luxury vehicles. The results shocked the industry: + +| Vehicle | Rating | +|---------|--------| +| Acura TL | Good | +| Volvo S60 | Good | +| Infiniti G | Acceptable | +| Audi A4 | Marginal | +| Mercedes C-Class | Marginal | +| BMW 3 Series | Marginal | +| Lexus IS | Marginal | +| Lexus ES | Marginal | +| Lincoln MKZ | Poor | +| Buick Regal | Poor | +| Volkswagen CC | Poor | + +**The Luxury Car Embarrassment:** +These were premium vehicles that earned top marks in every other test. BMW, Mercedes, Audi - all "Marginal" or worse. The public relations damage was immediate. + +**The Engineering Scramble:** +Manufacturers had designed structures for 40% and 100% overlap, not 25%. They had to: +- Add structural members outboard of frame rails +- Redesign wheel well structures +- Create "blockers" to redirect impact forces +- Strengthen A-pillar and hinge pillar connections + +**The Passenger Side Addition (2017):** +Some manufacturers "gamed" the test by reinforcing only the driver side. IIHS added passenger-side small overlap in 2017 to force symmetrical protection. + +**Why This Test Matters:** +The small overlap test is the clearest example of consumer testing driving rapid safety improvement. Vehicles that were "safe" by every measure suddenly failed a test that replicated real-world crashes. Within 5 years, most vehicles earned "Good" ratings - structural engineering had fundamentally changed. + +--- + +## 11. IIHS Head Restraint/Seat Test +### First Introduced: 1995 (Rating) | Dynamic Test: 2004 + +### What It Tests: +- Protection against whiplash in rear-end crashes +- Initially: Static measurement of head restraint geometry +- Now: Dynamic sled test with BioRID II dummy +- Simulates low-speed rear impact + +### General Requirements: +- Head restraint geometry (height, backset from head) +- Dynamic performance (limits head/neck movement) +- Seat strength (must stay upright) + +### The Origin Story: + +**The Whiplash Epidemic:** +Whiplash is the most common crash injury: +- Over 1 million whiplash injuries per year in US +- Most occur in low-speed rear impacts +- Chronic neck pain can result +- Huge economic cost (medical, lost work) + +**The Problem with Early Head Restraints:** +When first required, head restraints were: +- Set too low (didn't support head) +- Too far back from head (head snapped backward before contact) +- Adjusted incorrectly by occupants +- Sometimes removed entirely + +**The Swedish Research:** +Sweden (Volvo, Saab, Swedish insurance data) led whiplash research: +- Identified proper head restraint geometry +- Developed "active" head restraints that move up/forward in crash +- Created WhiPS (Whiplash Protection System) concept + +**The BioRID Dummy:** +Standard frontal dummies couldn't measure whiplash: +- BioRID II developed specifically for rear impact +- Highly articulated spine (more vertebral joints) +- Measures neck forces and relative movement + +**The Dynamic Test Difference:** +Static geometry is necessary but not sufficient. The dynamic test: +- Simulates actual rear crash forces +- Measures actual dummy response +- Rewards "active" head restraints +- Penalizes seats that collapse backward + +**Why This Test Matters:** +IIHS head restraint testing drove adoption of active head restraints and proper seat design. Whiplash injuries, while not fatal, have enormous economic and quality-of-life impacts. + +--- + +## 12. IIHS Front Crash Prevention (AEB Testing) +### First Introduced: 2013 + +### What It Tests: +- Autonomous Emergency Braking (AEB) effectiveness +- Vehicle approaches stationary target at 12 mph and 25 mph +- Tests whether system warns driver AND whether it automatically brakes +- Target is inflatable/foam vehicle replica + +### General Requirements: +| Rating | Requirements | +|--------|--------------| +| Superior | Avoid or major speed reduction at both speeds + forward collision warning | +| Advanced | Forward collision warning + limited AEB performance | +| Basic | Forward collision warning available | + +### The Origin Story: + +**The Shift from Passive to Active:** +All previous crash tests assumed the crash would happen. AEB represents a different philosophy: prevent the crash entirely. + +**The Technology Emergence:** +- 2003: Honda introduces first radar-based collision warning +- 2008: Volvo City Safety - first low-speed AEB system +- 2010s: AEB spreads across luxury, then mainstream vehicles + +**The Data Case:** +Research showed AEB reduced crashes significantly: +- Rear-end crashes reduced by 50%+ with AEB +- Even basic warning reduced crashes by 27% +- Economic savings from crash prevention exceeded system cost + +**The IIHS Role:** +IIHS created standardized testing because: +- Manufacturers made different claims +- No way to compare systems +- Consumers needed objective data + +**The Industry Agreement (2016):** +20 automakers agreed to make AEB standard by September 2022: +- Voluntary commitment (not government mandate) +- Driven by IIHS ratings and consumer demand +- Fastest adoption of safety technology in history + +**Why This Test Matters:** +AEB testing represents the evolution of safety testing from "protect in crash" to "prevent the crash." IIHS ratings accelerated adoption faster than any regulation could have. + +--- + +## 13. IIHS Headlight Evaluation +### First Introduced: 2016 + +### What It Tests: +- Headlight illumination on straight roads and curves +- Low beam and high beam performance +- Glare to oncoming drivers +- Tested on track at night + +### General Requirements: +- Illumination distance at various points +- Coverage width on curves +- Excessive glare penalized +- Ratings: Good/Acceptable/Marginal/Poor + +### The Origin Story: + +**The Hidden Problem:** +Nearly half of traffic fatalities occur in the dark, but headlights received almost no regulatory attention: +- FMVSS 108 set minimums but not performance standards +- Huge variation between vehicles +- Some new cars had worse headlights than models from years ago + +**The IIHS Investigation:** +IIHS found dramatic differences: +- Best headlights illuminated 500+ feet +- Worst illuminated less than 200 feet +- Some "premium" vehicles had poor headlights +- Curve illumination often terrible + +**The Rating Impact:** +When IIHS started publishing ratings: +- Manufacturers embarrassed by "Poor" ratings +- Redesigns accelerated +- LED and adaptive headlights improved +- "Good" headlights required for Top Safety Pick + +**The Real-World Connection:** +IIHS research showed: +- Good headlights reduce nighttime crashes +- Proper illumination matters more than many other features +- Yet consumers couldn't compare headlight quality before IIHS ratings + +**Why This Test Matters:** +Headlight testing shows IIHS's role in identifying neglected safety factors. This wasn't a "crash test" in the traditional sense, but it addressed a real safety gap that regulation had ignored. + +--- + +## 14. IIHS Updated Side Impact Test +### First Introduced: 2021 + +### What It Tests: +- Moving deformable barrier strike at 90° +- Barrier is heavier and taller than original test (simulates modern SUVs/pickups) +- Test speed increased to 37 mph (60 km/h) +- SID-IIs (small female) dummy in front +- WorldSID dummy option being evaluated + +### General Requirements: +- Structure/safety cage integrity +- Injury measures (head, chest, pelvis) +- Both driver and passenger rated + +### The Origin Story: + +**The Changing Fleet:** +Since the original 2003 side test: +- Average vehicle height increased +- Pickup trucks and SUVs became majority of sales +- Struck vehicles increasingly hit by higher, heavier vehicles + +**The Test Update:** +IIHS redesigned the barrier to match modern threats: +- Barrier weight: 4,200 lbs (was 3,300 lbs) +- Barrier height: Taller profile (simulates SUV/truck front) +- Speed: 37 mph (was 31 mph) + +**The 2021 Results:** +When introduced, most vehicles dropped from "Good" to lower ratings: +- Side structures designed for old test +- New test demanded stronger doors, better airbag coverage +- Manufacturers had to redesign again + +**Why This Test Matters:** +The updated side test shows that safety standards must evolve with the vehicle fleet. As vehicles get larger, the test must get more demanding. + +--- + +## 15. IIHS Pedestrian AEB Testing +### First Introduced: 2019 + +### What It Tests: +- AEB response to pedestrian targets +- Various scenarios: crossing, walking parallel, adult, child +- Day and night conditions +- Tests warning AND automatic braking + +### The Origin Story: + +**The Growing Crisis:** +Pedestrian deaths have INCREASED while occupant deaths decreased: +- 2009: 4,109 pedestrian deaths +- 2019: 6,205 pedestrian deaths +- 2021: 7,388 pedestrian deaths + +Contributing factors: +- Larger vehicles (SUVs, trucks) more deadly to pedestrians +- Distracted driving +- Distracted walking (smartphones) +- More walking/cycling in urban areas + +**The Technology Promise:** +Pedestrian AEB systems can detect people and brake: +- Camera + radar systems identify pedestrians +- Calculate collision course +- Warn driver and/or brake automatically +- Some systems work at night + +**The Testing Challenge:** +Pedestrian testing requires different targets: +- Foam/inflatable pedestrian dummies +- Child-sized targets +- Multiple scenarios (crossing, walking parallel) +- Night testing (most pedestrian deaths occur at night) + +**Why This Test Matters:** +Pedestrian AEB testing addresses a growing crisis. As occupant protection improves, vulnerable road users become a larger proportion of traffic deaths. + +--- + +## 16. IIHS Rear Seat Safety (Emerging) +### Developing Since: 2019 + +### What It's Evaluating: +- Rear seat occupant protection in frontal crashes +- Seatbelt technology (pretensioners, load limiters for rear) +- Head/neck protection for rear passengers +- Historically neglected population + +### The Origin Story: + +**The Problem:** +Rear seats have always been considered "safer" than front seats - and they were, when front seats had no airbags. But now: +- Front seat occupants have airbags, advanced belts, knee bolsters +- Rear seat occupants often have basic 3-point belts only +- Rear seat passengers are now at HIGHER risk in some crashes + +**The Data:** +- Rear-seat belted occupants have not seen the same injury reductions as front +- Children and elderly in rear seats particularly vulnerable +- Many vehicles lack rear seat belt pretensioners and load limiters + +**The IIHS Response:** +IIHS is developing rear seat safety evaluations to: +- Measure rear dummy injury in frontal tests +- Reward vehicles with advanced rear seatbelts +- Push manufacturers to treat rear seats like front seats + +**Why This Matters:** +This emerging test area shows how safety evaluation must continually expand to address neglected populations. "Rear seats are safer" became complacent - data shows that's no longer universally true. + +--- + +# SUMMARY: TESTS BY CRASH MODE + +## Frontal Impact Tests +| Test | Org | Year | Speed | Overlap | Key Innovation | +|------|-----|------|-------|---------|----------------| +| FMVSS 208 | NHTSA | 1968 | 30 mph | 100% | First requirement, drove airbag adoption | +| NCAP Frontal | NHTSA | 1979 | 35 mph | 100% | Consumer ratings, higher speed | +| Moderate Overlap | IIHS | 1995 | 40 mph | 40% | Offset crashes, structural focus | +| Small Overlap | IIHS | 2012 | 40 mph | 25% | Narrow impacts, exposed structural gaps | + +## Side Impact Tests +| Test | Org | Year | Speed | Key Innovation | +|------|-----|------|-------|----------------| +| FMVSS 214 | NHTSA | 1990 | 33.5 mph | First dynamic side test | +| FMVSS 214 Pole | NHTSA | 2007 | 20 mph | Narrow object, head protection | +| NCAP Side | NHTSA | 1997 | 38.5 mph | Consumer ratings | +| IIHS Side Original | IIHS | 2003 | 31 mph | Small female dummy | +| IIHS Side Updated | IIHS | 2021 | 37 mph | Heavier/taller barrier | + +## Rollover/Roof Tests +| Test | Org | Year | Key Innovation | +|------|-----|------|----------------| +| FMVSS 216 | NHTSA | 1973/2009 | Roof crush resistance, doubled in 2009 | +| IIHS Roof | IIHS | 2009 | Higher threshold for "Good" rating | + +## Rear Impact Tests +| Test | Org | Year | Key Innovation | +|------|-----|------|----------------| +| IIHS Head Restraint | IIHS | 1995/2004 | Whiplash protection, dynamic test | + +## Fuel/Fire Tests +| Test | Org | Year | Key Innovation | +|------|-----|------|----------------| +| FMVSS 301 | NHTSA | 1968/1977 | Fuel system integrity, post-Pinto strengthening | + +## Active Safety Tests +| Test | Org | Year | Key Innovation | +|------|-----|------|----------------| +| Front Crash Prevention | IIHS | 2013 | First AEB testing | +| Pedestrian AEB | IIHS | 2019 | Pedestrian detection | +| Headlights | IIHS | 2016 | Nighttime visibility | + +--- + +# KEY THEMES ACROSS ALL TESTS + +## 1. Tragedy Drives Change +Almost every test exists because people died: +- FMVSS 208: Millions of unrestrained occupant deaths +- FMVSS 301: Ford Pinto fire deaths +- FMVSS 216: Rollover fatalities +- IIHS Small Overlap: Fatal crashes in "safe" cars + +## 2. Consumer Testing Exceeds Regulation +IIHS tests are often more demanding than FMVSS: +- Higher speeds (35 mph vs 30 mph frontal) +- More crash configurations (small overlap) +- Tougher thresholds (4× roof vs 3×) + +## 3. Tests Must Evolve with the Fleet +As vehicles change, tests must update: +- SUV/truck popularity → heavier, taller side barrier +- Active safety technology → AEB testing +- Growing pedestrian deaths → pedestrian AEB + +## 4. Data Creates Market Pressure +Published ratings drive faster change than regulation: +- Small overlap test: 5-year redesign cycle +- AEB: Voluntary industry commitment +- Headlights: Rapid improvement after ratings published + +## 5. Neglected Populations Get Attention Eventually +Each era reveals populations the previous tests missed: +- Side impacts (underrepresented until 1990s) +- Small females (IIHS dummy choice) +- Pedestrians (emerging focus) +- Rear seat occupants (developing evaluation) + +--- + +*Document prepared for DTS presentation development* +*Last updated: February 12, 2026* diff --git a/test_standards_chronological.md b/test_standards_chronological.md new file mode 100644 index 0000000..934d92a --- /dev/null +++ b/test_standards_chronological.md @@ -0,0 +1,337 @@ +# All Safety Test Standards in Chronological Order +## FMVSS, IIHS, NCAP, Euro NCAP, NOCSAE, and Other Standards +### Organized by Year of Introduction + +--- + +# 1968: THE FIRST WAVE OF FEDERAL STANDARDS + +The National Traffic and Motor Vehicle Safety Act of 1966 led to the first Federal Motor Vehicle Safety Standards taking effect in 1968. This was the largest single introduction of safety standards in history. + +## January 1, 1968 - First FMVSS Standards + +| Standard | Title | Test Type | What It Requires | +|----------|-------|-----------|------------------| +| **FMVSS 101** | Controls and Displays | Design | Standardized control locations and symbols | +| **FMVSS 102** | Transmission Shift Lever Sequence | Design | P-R-N-D-L shift pattern | +| **FMVSS 103** | Windshield Defrosting and Defogging | Performance | Minimum defrost area in specified time | +| **FMVSS 104** | Windshield Wiping and Washing | Performance | Minimum wipe area, cycles per minute | +| **FMVSS 105** | Hydraulic Brake Systems | Performance | Stopping distance, fade resistance | +| **FMVSS 106** | Brake Hoses | Performance | Pressure, burst, whip resistance | +| **FMVSS 108** | Lamps, Reflective Devices | Performance | Photometric, aim, color requirements | +| **FMVSS 109** | New Pneumatic Tires | Performance | Endurance, high-speed, strength | +| **FMVSS 110** | Tire Selection and Rims | Design | Proper tire/rim combinations | +| **FMVSS 111** | Rearview Mirrors | Performance | Field of view requirements | +| **FMVSS 113** | Hood Latch System | Performance | Primary and secondary latch | +| **FMVSS 114** | Theft Protection | Design | Key-locking ignition/transmission | +| **FMVSS 116** | Motor Vehicle Brake Fluids | Performance | Fluid specifications | +| **FMVSS 118** | Power-Operated Window Systems | Performance | Auto-reverse to prevent entrapment | +| **FMVSS 119** | New Pneumatic Tires (non-passenger) | Performance | Truck/bus tire standards | +| **FMVSS 120** | Tire Selection and Rims (non-passenger) | Design | Truck tire/rim matching | +| **FMVSS 124** | Accelerator Control Systems | Performance | Return-to-idle, no sticking | +| **FMVSS 201** | Occupant Protection in Interior Impact | Crash test | Instrument panel, pillars, head impact | +| **FMVSS 202** | Head Restraints | Design/Static | Height, backset requirements | +| **FMVSS 203** | Driver Steering Impact | Crash test | Steering wheel impact force limits | +| **FMVSS 204** | Steering Column Rearward Displacement | Crash test | Limits column intrusion | +| **FMVSS 205** | Glazing Materials | Performance | Safety glass requirements | +| **FMVSS 206** | Door Locks and Door Retention | Performance | Doors stay closed in crash | +| **FMVSS 207** | Seating Systems | Performance | Seat anchorage strength | +| **FMVSS 208** | Occupant Crash Protection | Crash test | **Seatbelt anchorage requirements** | +| **FMVSS 209** | Seat Belt Assemblies | Performance | Belt specifications, webbing strength | +| **FMVSS 210** | Seat Belt Assembly Anchorages | Performance | Anchorage strength requirements | +| **FMVSS 211** | Wheel Nuts, Wheel Discs, Hub Caps | Performance | Retention requirements | +| **FMVSS 212** | Windshield Mounting | Crash test | 75% retention in crash | +| **FMVSS 213** | Child Restraint Systems | Crash test | Child seat requirements | +| **FMVSS 214** | Side Impact Protection | Static | Door crush resistance (static initially) | +| **FMVSS 215** | Exterior Protection | Performance | Bumper requirements | +| **FMVSS 217** | Bus Emergency Exits | Design | Exit size, accessibility | +| **FMVSS 218** | Motorcycle Helmets | Drop test | Impact attenuation, penetration | +| **FMVSS 219** | Windshield Zone Intrusion | Crash test | Limits object penetration | +| **FMVSS 220** | School Bus Rollover Protection | Static | Roof/wall strength | +| **FMVSS 221** | School Bus Body Joint Strength | Performance | Structural integrity | +| **FMVSS 222** | School Bus Passenger Seating | Crash test | Compartmentalization | +| **FMVSS 301** | Fuel System Integrity | Crash test | Fuel leakage limits post-crash | +| **FMVSS 302** | Flammability of Interior Materials | Burn test | Burn rate limits | + +**Total 1968: 40 standards** + +--- + +# 1969-1979: BUILDING THE FOUNDATION + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 1971 | **FMVSS 121** | Air Brake Systems | Performance | Heavy vehicle stopping | +| 1973 | **FMVSS 216** | Roof Crush Resistance | Static | 1.5× vehicle weight | +| 1973 | **NOCSAE Football Helmet** | Athletic Equipment | Drop test | First helmet certification standard | +| 1974 | **FMVSS 208 (interlock)** | Ignition Interlock | Design | Required belt to start; repealed same year | +| 1975 | **FMVSS 122** | Motorcycle Brake Systems | Performance | Front/rear brake requirements | +| 1975 | **FMVSS 123** | Motorcycle Controls and Displays | Design | Standardized controls | +| 1975 | **FMVSS 125** | Warning Devices | Performance | Reflective triangles | +| 1977 | **FMVSS 301 (revised)** | Fuel System Integrity | Crash test | Strengthened post-Pinto | +| 1979 | **NHTSA NCAP Frontal** | Consumer Information | Crash test | 35 mph full frontal, 5-star ratings | +| 1979 | **FMVSS 126** | Truck-Camper Loading | Design | Weight distribution | + +--- + +# 1980-1989: THE AIRBAG ERA BEGINS + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 1984 | **FMVSS 208 (auto restraint)** | Automatic Restraint | Crash test | Airbag OR automatic belt required | +| 1986 | **FMVSS 108 (CHMSL)** | Center High-Mounted Stop Light | Design | Third brake light required | +| 1987 | **Snell M85** | Motorcycle Helmets | Drop test | Private standard, exceeds DOT | +| 1989 | **CPSC Bicycle Helmet** | Consumer Product | Drop test | First US bicycle helmet standard | + +--- + +# 1990-1999: MODERN CRASH TESTING EMERGES + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 1990 | **FMVSS 214 (dynamic)** | Side Impact Protection | Crash test | MDB at 33.5 mph, 90°; first dynamic side test | +| 1992 | **FMVSS 208 (airbag phase-in)** | Frontal Airbags | Crash test | Phase-in schedule established | +| 1994 | **FMVSS 303** | CNG Fuel System Integrity | Crash test | Compressed natural gas vehicles | +| 1994 | **FMVSS 304** | CNG Fuel Container Integrity | Performance | CNG tank specifications | +| 1995 | **FMVSS 135** | Light Vehicle Brake Systems | Performance | Passenger car braking | +| 1995 | **IIHS Moderate Overlap Frontal** | Consumer Information | Crash test | 40% offset, deformable barrier, 40 mph | +| 1995 | **IIHS Head Restraint (static)** | Consumer Information | Measurement | Geometry evaluation | +| 1996 | **FMVSS 223** | Rear Impact Guards (Trailers) | Design | Underride prevention | +| 1996 | **FMVSS 224** | Rear Impact Protection (Trailers) | Crash test | Underride guard testing | +| 1997 | **Euro NCAP Frontal** | Consumer Information | Crash test | 40% offset, 64 km/h (40 mph) | +| 1997 | **Euro NCAP Side** | Consumer Information | Crash test | MDB 50 km/h (31 mph) | +| 1997 | **Euro NCAP Pedestrian** | Consumer Information | Impactor test | Headform and legform tests | +| 1997 | **NHTSA NCAP Side** | Consumer Information | Crash test | 38.5 mph MDB | +| 1998 | **FMVSS 201 (pillars)** | Upper Interior Head Protection | Component test | Pillar padding, FMH test | +| 1998 | **FMVSS 208 (airbags mandatory)** | Frontal Airbags | Crash test | Driver + passenger required | +| 1998 | **FMVSS 208 (depowered)** | Depowered Airbags | Crash test | Lower inflation force | +| 1998 | **FMVSS 225** | Child Restraint Anchorage (LATCH) | Design | Standardized attachment | +| 1998 | **FMVSS 305** | Electric Vehicle Safety | Performance | EV electrolyte spillage, shock protection | +| 1999 | **ANCAP Frontal** | Consumer Information | Crash test | Australia/NZ testing begins | +| 1999 | **ANCAP Side** | Consumer Information | Crash test | Australia/NZ side test | + +--- + +# 2000-2009: EXPANDING TEST COVERAGE + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 2000 | **FMVSS 208 (advanced)** | Advanced Airbags | Crash test | OOP tests, size-sensing | +| 2001 | **FMVSS 138** | Tire Pressure Monitoring | Performance | TPMS required by 2007 | +| 2001 | **Euro NCAP Pole** | Consumer Information | Crash test | 29 km/h into pole | +| 2002 | **Euro NCAP Pedestrian (updated)** | Consumer Information | Impactor test | Enhanced headform tests | +| 2003 | **IIHS Side Impact** | Consumer Information | Crash test | 31 mph MDB, SID-IIs dummy | +| 2003 | **FMVSS 139** | New Pneumatic Radial Tires | Performance | LT tire standards | +| 2004 | **IIHS Head Restraint (dynamic)** | Consumer Information | Sled test | BioRID II dummy | +| 2005 | **FMVSS 129** | Non-Pneumatic Tires | Performance | Run-flat specifications | +| 2006 | **FMVSS 126** | Electronic Stability Control | Performance | ESC required by 2012 | +| 2006 | **C-NCAP Frontal** | Consumer Information | Crash test | China testing begins | +| 2006 | **C-NCAP Side** | Consumer Information | Crash test | China side test | +| 2007 | **FMVSS 214 (pole)** | Side Pole Impact | Crash test | 20 mph, 254mm pole | +| 2007 | **FMVSS 138 (effective)** | TPMS | Performance | Takes effect | +| 2008 | **Euro NCAP Whiplash** | Consumer Information | Sled test | BioRID II rear impact | +| 2009 | **FMVSS 216 (upgraded)** | Roof Crush Resistance | Static | 3× vehicle weight (doubled) | +| 2009 | **IIHS Roof Strength** | Consumer Information | Static | 4× for "Good" rating | + +--- + +# 2010-2019: THE ACTIVE SAFETY REVOLUTION + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 2010 | **Latin NCAP Frontal** | Consumer Information | Crash test | Latin America testing | +| 2010 | **Latin NCAP Side** | Consumer Information | Crash test | Latin America side | +| 2011 | **NHTSA NCAP (enhanced)** | Consumer Information | Crash test | Pole test, rollover rating, Overall Score | +| 2011 | **ASEAN NCAP Frontal** | Consumer Information | Crash test | Southeast Asia testing | +| 2011 | **Global NCAP Frontal** | Consumer Information | Crash test | India/Africa testing | +| 2011 | **NFL/NFLPA Helmet Rating** | Sports Equipment | Lab test | Drop + linear impactor | +| 2012 | **IIHS Small Overlap (driver)** | Consumer Information | Crash test | 25% rigid barrier, 40 mph | +| 2012 | **FMVSS 126 (effective)** | ESC | Performance | ESC mandatory | +| 2013 | **IIHS Front Crash Prevention** | Consumer Information | Track test | AEB at 12/25 mph | +| 2014 | **Euro NCAP AEB City** | Consumer Information | Track test | Low-speed AEB | +| 2014 | **Euro NCAP AEB Inter-Urban** | Consumer Information | Track test | High-speed AEB | +| 2015 | **Euro NCAP AEB Pedestrian** | Consumer Information | Track test | Pedestrian detection | +| 2016 | **IIHS Headlights** | Consumer Information | Track test | Illumination evaluation | +| 2016 | **FMVSS 141** | Minimum Sound for Hybrid/EV | Performance | Pedestrian alert sound | +| 2017 | **IIHS Small Overlap (passenger)** | Consumer Information | Crash test | Passenger side added | +| 2017 | **FMVSS 226** | Ejection Mitigation | Crash test | Side curtain requirements | +| 2018 | **FMVSS 111 (backup camera)** | Rearview Visibility | Design | Backup camera required | +| 2018 | **Euro NCAP AEB Cyclist** | Consumer Information | Track test | Cyclist detection | +| 2019 | **IIHS Pedestrian AEB** | Consumer Information | Track test | Adult/child targets | +| 2019 | **Euro NCAP AEB Junction** | Consumer Information | Track test | Turning scenarios | + +--- + +# 2020-PRESENT: CURRENT STANDARDS + +| Year | Standard | Title | Test Type | Significance | +|------|----------|-------|-----------|--------------| +| 2020 | **Euro NCAP MPDB** | Consumer Information | Crash test | Mobile Progressive Deformable Barrier | +| 2020 | **Euro NCAP Far-Side** | Consumer Information | Sled test | Opposite-side occupant | +| 2021 | **IIHS Side Impact (updated)** | Consumer Information | Crash test | 4,200 lb, 37 mph, taller barrier | +| 2022 | **Euro NCAP Safe Driving** | Consumer Information | Assessment | Speed assist, driver monitoring | +| 2023 | **Bharat NCAP Frontal** | Consumer Information | Crash test | India testing begins | +| 2023 | **Bharat NCAP Side** | Consumer Information | Crash test | India side test | +| 2024 | **Euro NCAP Driver Monitoring** | Consumer Information | Assessment | Attention/drowsiness detection required | +| 2024 | **Euro NCAP Updated Pedestrian** | Consumer Information | Track test | Night testing added | + +--- + +# SPECIALIZED STANDARDS BY CATEGORY + +## Motorcycle Helmet Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1968 | **FMVSS 218** | NHTSA | Drop test | Impact attenuation <400g, penetration | +| 1974 | **Snell M1970** | Snell Foundation | Drop test | Exceeds DOT; voluntary | +| 1987 | **Snell M85** | Snell Foundation | Drop test | Updated standard | +| 1995 | **ECE 22.05** | UN/ECE | Drop test | European standard | +| 2000 | **Snell M2000** | Snell Foundation | Drop test | 5-year update cycle | +| 2020 | **ECE 22.06** | UN/ECE | Drop + rotation | Added rotational test | + +## Bicycle Helmet Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1984 | **ANSI Z90.4** | ANSI | Drop test | First US standard | +| 1989 | **CPSC (proposed)** | CPSC | Drop test | Consumer product | +| 1999 | **CPSC (mandatory)** | CPSC | Drop test | <300g peak; required for sale | +| 2012 | **EN 1078** | CEN | Drop test | European standard | + +## Football Helmet Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1973 | **NOCSAE ND001** | NOCSAE | Drop test | SI < 1200; 60" drop | +| 2011 | **NFL/NFLPA Protocol** | NFL | Lab composite | Drop + linear impactor | +| 2016 | **NOCSAE ND081** | NOCSAE | Linear impactor | Added to certification | +| 2019 | **NOCSAE (rotation)** | NOCSAE | Linear impactor | Rotational measures added | + +## Hockey Helmet Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1978 | **CSA Z262.1** | CSA | Drop test | Canadian standard | +| 1997 | **ASTM F1045** | ASTM | Drop + puck | Includes puck impact | +| 2009 | **HECC certification** | HECC | Multiple | Hockey Equipment Certification Council | + +## Child Restraint Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1968 | **FMVSS 213** | NHTSA | Sled test | Basic requirements | +| 1981 | **FMVSS 213 (revised)** | NHTSA | Sled test | Strengthened | +| 1998 | **FMVSS 225 (LATCH)** | NHTSA | Static | Lower Anchors and Tethers for Children | +| 2003 | **ECE R44/04** | UN/ECE | Sled test | European standard | +| 2013 | **ECE R129 (i-Size)** | UN/ECE | Sled test | Height-based, side impact | + +## Pedestrian Protection Standards + +| Year | Standard | Organization | Test Type | Key Requirements | +|------|----------|--------------|-----------|------------------| +| 1997 | **Euro NCAP Pedestrian** | Euro NCAP | Impactor | Headform, legform | +| 2003 | **EEVC WG17** | EEVC | Impactor | European Enhanced Vehicle-safety Committee | +| 2005 | **EC 78/2009** | EU | Impactor | European regulation | +| 2009 | **GTR 9** | UN | Impactor | Global Technical Regulation | +| 2015 | **Euro NCAP AEB Pedestrian** | Euro NCAP | Track test | Detection/avoidance | +| 2019 | **IIHS Pedestrian AEB** | IIHS | Track test | US testing begins | + +--- + +# SUMMARY: COUNT BY DECADE + +| Decade | FMVSS | IIHS | NCAP (All) | Other | Total | +|--------|-------|------|------------|-------|-------| +| 1968 | 40 | - | - | - | 40 | +| 1969-1979 | 6 | - | 1 | 1 | 8 | +| 1980-1989 | 2 | - | - | 2 | 4 | +| 1990-1999 | 12 | 2 | 6 | - | 20 | +| 2000-2009 | 6 | 3 | 8 | - | 17 | +| 2010-2019 | 4 | 5 | 15 | 1 | 25 | +| 2020-2024 | - | 1 | 7 | - | 8 | +| **TOTAL** | **70** | **11** | **37** | **4** | **122** | + +--- + +# SUMMARY: ALL STANDARDS BY YEAR + +## Complete Chronological List + +| Year | Standards Introduced | +|------|---------------------| +| **1968** | FMVSS 101, 102, 103, 104, 105, 106, 108, 109, 110, 111, 113, 114, 116, 118, 119, 120, 124, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 217, 218, 219, 220, 221, 222, 301, 302 **(40 standards)** | +| **1971** | FMVSS 121 | +| **1973** | FMVSS 216, NOCSAE Football | +| **1975** | FMVSS 122, 123, 125 | +| **1977** | FMVSS 301 (revised) | +| **1979** | NHTSA NCAP Frontal | +| **1984** | FMVSS 208 (automatic restraint) | +| **1986** | FMVSS 108 (CHMSL) | +| **1990** | FMVSS 214 (dynamic) | +| **1994** | FMVSS 303, 304 | +| **1995** | FMVSS 135, IIHS Moderate Overlap, IIHS Head Restraint (static) | +| **1996** | FMVSS 223, 224 | +| **1997** | Euro NCAP Frontal/Side/Pedestrian, NHTSA NCAP Side | +| **1998** | FMVSS 201 (pillars), 208 (mandatory/depowered), 225, 305 | +| **1999** | ANCAP Frontal/Side | +| **2000** | FMVSS 208 (advanced) | +| **2001** | FMVSS 138, Euro NCAP Pole | +| **2003** | FMVSS 139, IIHS Side Impact | +| **2004** | IIHS Head Restraint (dynamic) | +| **2005** | FMVSS 129 | +| **2006** | FMVSS 126, C-NCAP Frontal/Side | +| **2007** | FMVSS 214 (pole), FMVSS 138 (effective) | +| **2008** | Euro NCAP Whiplash | +| **2009** | FMVSS 216 (upgraded), IIHS Roof Strength | +| **2010** | Latin NCAP Frontal/Side | +| **2011** | NHTSA NCAP (enhanced), ASEAN NCAP, Global NCAP, NFL Helmet | +| **2012** | IIHS Small Overlap (driver), FMVSS 126 (effective) | +| **2013** | IIHS Front Crash Prevention | +| **2014** | Euro NCAP AEB City/Inter-Urban | +| **2015** | Euro NCAP AEB Pedestrian | +| **2016** | IIHS Headlights, FMVSS 141 | +| **2017** | IIHS Small Overlap (passenger), FMVSS 226 | +| **2018** | FMVSS 111 (backup camera), Euro NCAP AEB Cyclist | +| **2019** | IIHS Pedestrian AEB, Euro NCAP AEB Junction | +| **2020** | Euro NCAP MPDB, Euro NCAP Far-Side | +| **2021** | IIHS Side Impact (updated) | +| **2022** | Euro NCAP Safe Driving | +| **2023** | Bharat NCAP Frontal/Side | +| **2024** | Euro NCAP Driver Monitoring, Euro NCAP Pedestrian (night) | + +--- + +# PENDING/PROPOSED STANDARDS + +| Status | Standard | Organization | Expected | Description | +|--------|----------|--------------|----------|-------------| +| Proposed | FMVSS 208 (THOR) | NHTSA | TBD | THOR dummy in frontal | +| Proposed | FMVSS (Pedestrian) | NHTSA | 2025-2027 | Pedestrian crashworthiness | +| Proposed | FMVSS (AEB) | NHTSA | 2025-2026 | Mandatory AEB | +| Research | IIHS Rear Seat | IIHS | TBD | Rear occupant protection | +| Research | Far-Side Impact | Various | TBD | Opposite-side crashes | +| Research | Compatibility | Various | TBD | Vehicle-to-vehicle | + +--- + +# TEST METHOD TYPES EXPLAINED + +| Test Type | Description | Examples | +|-----------|-------------|----------| +| **Full Vehicle Crash** | Complete vehicle into barrier/pole | FMVSS 208, IIHS Moderate Overlap | +| **MDB (Moving Deformable Barrier)** | Barrier strikes stationary vehicle | FMVSS 214, IIHS Side | +| **Sled Test** | Buck on sled simulates crash pulse | IIHS Head Restraint, Child Seat | +| **Component Test** | Individual part tested | FMVSS 201 (pillar), Headform | +| **Static Test** | Force applied without impact | FMVSS 216 Roof, FMVSS 207 Seat | +| **Impactor Test** | Projectile fired at vehicle | Euro NCAP Pedestrian | +| **Drop Test** | Helmet dropped onto anvil | FMVSS 218, NOCSAE | +| **Linear Impactor** | Ram strikes helmet | NFL Protocol | +| **Track Test** | Vehicle approaches target | IIHS AEB, Pedestrian AEB | +| **Performance Test** | Functional requirements | FMVSS 105 Brakes, FMVSS 126 ESC | + +--- + +*Document prepared as comprehensive reference for safety test standards* +*All standards current as of February 2026* +*Last updated: February 13, 2026* diff --git a/timeline_automotive_safety_comprehensive.md b/timeline_automotive_safety_comprehensive.md new file mode 100644 index 0000000..6a0fb0a --- /dev/null +++ b/timeline_automotive_safety_comprehensive.md @@ -0,0 +1,553 @@ +# Comprehensive Timeline of Automotive Safety +## Inventions, Events, Institutions, Publications, and Regulations +### From the First Automobile to Present Day + +--- + +# HOW TO USE THIS DOCUMENT + +This timeline includes: +- **Inventions & Technology** - Safety features, materials, systems +- **Events & Milestones** - Crashes, scandals, achievements +- **Institutions & Organizations** - Founding of safety bodies +- **Publications & Research** - Key papers, books, studies +- **Regulations (FMVSS)** - All Federal Motor Vehicle Safety Standards +- **IIHS Testing** - All IIHS test introductions and updates +- **People** - Key figures and their contributions + +Categories are marked with icons: +- 🔧 Invention/Technology +- 📅 Event/Milestone +- 🏛️ Institution/Organization +- 📚 Publication/Research +- ⚖️ Regulation (FMVSS) +- 🧪 IIHS Testing +- 👤 People + +--- + +# 1880-1899: THE DAWN OF THE AUTOMOBILE + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1885 | 🔧 | First seatbelt patented | Edward J. Claghorn; designed for tourist carriages | +| 1886 | 🔧 | Karl Benz patents first automobile | The vehicle that started it all | +| 1893 | 🔧 | First US gasoline automobile | Duryea brothers in Springfield, MA | +| 1896 | 📅 | First UK automobile fatality | Bridget Driscoll struck in London | +| 1899 | 📅 | First US automobile fatality | Henry Bliss struck by electric taxi in NYC | + +--- + +# 1900-1909: EARLY AUTOMOBILES + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1900 | 📅 | ~8,000 automobiles in US | Industry just beginning | +| 1901 | 📅 | Connecticut enacts first speed limit | 12 mph in cities, 15 mph on country roads | +| 1903 | 🏛️ | Massachusetts and Missouri require license plates | First vehicle registration | +| 1908 | 🔧 | Ford Model T introduced | Mass motorization begins | +| 1909 | 🏛️ | First driver's license requirement | Started in some states | + +--- + +# 1910-1919: MASS PRODUCTION ERA + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1910 | 📅 | ~450,000 automobiles in US | Rapid growth | +| 1911 | 🔧 | Electric starter invented (Kettering) | Made cars accessible to non-mechanics | +| 1912 | 🔧 | Electric starter in production (Cadillac) | Replaced dangerous hand crank | +| 1914 | 🔧 | First electric traffic signal | Cleveland, Ohio | +| 1916 | ⚖️ | MacPherson v. Buick Motor Company | Established manufacturer liability; foundation of product liability law | +| 1917 | 📅 | Hugh DeHaven survives mid-air collision | Begins lifelong study of crash survival | +| 1918 | 📅 | US traffic deaths reach 10,000/year | Growing toll | +| 1919 | 🔧 | Laminated safety glass invented | Henry Ford commissions development after windshield injury | +| 1919 | 📅 | Oregon introduces first gas tax | Funds road construction | + +--- + +# 1920-1929: THE ROARING TWENTIES + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1920 | 📅 | ~8 million automobiles in US | Mass adoption | +| 1921 | 📅 | 13,253 traffic deaths | Death rate: 24.09 per 100M VMT | +| 1921 | 🔧 | Hydraulic brakes introduced (Duesenberg) | Better stopping power | +| 1923 | 🔧 | Four-wheel brakes introduced | Improved braking | +| 1924 | 🔧 | First dipping headlights | Reduced glare | +| 1925 | 📅 | US traffic deaths reach 20,000/year | Crisis growing | +| 1926 | 🔧 | Shatterproof glass in production | Reduces laceration injuries | +| 1927 | 🔧 | First car radio (Philco) | Distraction enters the vehicle | +| 1927 | 🔧 | Safety glass mandatory in windshields | First safety requirement in some jurisdictions | +| 1929 | 📅 | ~23 million automobiles in US | One car per 5 people | + +--- + +# 1930-1939: DEPRESSION AND EARLY RESEARCH + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1930 | 📅 | US traffic deaths reach 30,000/year | Depression doesn't slow toll | +| 1930s | 📚 | Wayne State University begins cadaver research | First systematic crash injury biomechanics | +| 1930s | 👤 | Lawrence Patrick begins self-experimentation | Professor tests impacts on own body | +| 1934 | 🔧 | Chrysler introduces "Airflow" with unit body | First attempt at aerodynamic safety | +| 1934 | 📚 | First crash injury studies published | Wayne State research | +| 1935 | 🔧 | Fisher Body develops "Turret Top" all-steel roof | Improved rollover protection | +| 1936 | 🔧 | Hudson introduces first concealed door hinges | Reduces snag injuries | +| 1937 | 🔧 | Béla Barényi conceives crumple zone concept | Revolutionary passive safety idea | +| 1937 | 👤 | Claire Straith convinces Chrysler to offer padded dashboard | First OEM safety option | +| 1937 | 📅 | 37,819 traffic deaths | Death rate: 14.00 per 100M VMT | +| 1937 | 🔧 | First padded dashboards offered as option | Chrysler; sales poor | +| 1938 | 🔧 | Turn signals introduced (Buick) | Improved driver communication | +| 1939 | 🔧 | Sealed beam headlights standardized | Improved nighttime visibility | + +--- + +# 1940-1949: WAR AND INNOVATION + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1940 | 🔧 | First automatic transmission (Hydra-Matic) | Reduces driver workload | +| 1941-1945 | 📅 | WWII halts civilian car production | But military research advances safety knowledge | +| 1942 | 🏛️ | Hugh DeHaven founds Cornell Crash Injury Research Project | Father of crashworthiness | +| 1942 | 📚 | DeHaven publishes "Mechanical Analysis of Survival" | First scientific crash survival study | +| 1947 | 📚 | John Stapp begins rocket sled experiments | USAF deceleration research at Edwards AFB | +| 1948 | 🔧 | Tucker Torpedo includes safety features | Padded dash, pop-out windshield; company fails | +| 1949 | 🔧 | Samuel Alderson creates "Sierra Sam" | First crash test dummy for USAF ejection seats | +| 1949 | 📚 | Preston Tucker promotes safety features | Disc brakes, padded dash, seat belts; company fails but ideas persist | + +--- + +# 1950-1959: THE PIONEERS + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1950 | 📅 | 33,186 traffic deaths | Death rate: 7.24 per 100M VMT | +| 1950 | 🔧 | Nash offers seatbelts as option | One of first US manufacturers | +| 1951 | 🔧 | Barényi patents crumple zone design | Mercedes-Benz; Patent No. 854,157 | +| 1951 | 🔧 | Power steering introduced (Chrysler) | Easier vehicle control | +| 1952 | 📚 | DeHaven publishes packaging principles | "Packaging the passenger" concept | +| 1953 | 🔧 | Padded sun visors introduced | Small safety improvement | +| 1954 | 📅 | December 10: Stapp achieves 46.2g deceleration | "Fastest Man on Earth"; proved human survival beyond 18g | +| 1954 | 📚 | Stapp publishes deceleration tolerance findings | Revolutionary data | +| 1955 | 🔧 | Ford offers "Lifeguard Design" package | Padded dash, deep-dish steering wheel, optional belts | +| 1955 | 📚 | Cornell research documents steering column deaths | Over 1 million cumulative | +| 1956 | 🔧 | Ford offers seatbelts as $27 option | Robert McNamara's push; outsold by Chevy | +| 1956 | 📅 | "Safety doesn't sell" myth reinforced | Ford's safety campaign deemed commercial failure | +| 1956 | 📅 | Murphy's Law popularized | Originated on Stapp's project | +| 1956 | 🔧 | Padded dashboards become more common | Slow adoption | +| 1957 | 🔧 | Volvo introduces 2-point lap belt as standard | First standard seatbelt | +| 1958 | 👤 | Nils Bohlin joins Volvo | Former Saab ejection seat engineer | +| 1959 | 🔧 | Nils Bohlin invents 3-point seatbelt | Modern V-shaped belt design | +| 1959 | 📅 | Volvo makes 3-point belt patent freely available | Believed safety shouldn't be proprietary | +| 1959 | 🏛️ | Insurance Institute for Highway Safety (IIHS) founded | Insurance industry funds safety research | +| 1959 | 🔧 | Mercedes W111 with safety cell | First production crumple zone vehicle | +| 1959 | 🔧 | Volvo PV544 first car with standard 3-point belts | Revolutionary standard equipment | + +--- + +# 1960-1969: THE REGULATORY REVOLUTION + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1960 | 📅 | 36,399 traffic deaths | Death rate: 5.06 per 100M VMT | +| 1960 | 👤 | Robert McNamara becomes Ford President | Safety advocate (brief tenure before JFK administration) | +| 1961 | 📅 | US traffic deaths reach 40,000/year | Crisis point | +| 1961 | 🔧 | First production airbag patent | Allen Breed files patent | +| 1962 | 📚 | Daniel Patrick Moynihan writes on auto safety | Future senator raises awareness | +| 1963 | 🔧 | GM Corvair criticized for handling | Later subject of Nader's book | +| 1964 | 📅 | Over 1 million steering column deaths recorded | Cumulative toll | +| 1964 | 🔧 | Disc brakes become more common | Better stopping power | +| 1964 | 🔧 | Collapsible steering column developed | GM engineers address impalement problem | +| 1965 | 📚 | November 30: Ralph Nader publishes "Unsafe at Any Speed" | Attacked auto industry; exposed Corvair | +| 1965 | 📅 | 47,089 traffic deaths | Mounting crisis | +| 1966 | 📅 | GM caught investigating Nader | Surveillance, harassment exposed | +| 1966 | 📅 | GM President apologizes before Congress | Public humiliation for industry | +| 1966 | ⚖️ | National Traffic and Motor Vehicle Safety Act | First federal auto safety law; created DOT | +| 1966 | 🏛️ | US Department of Transportation created | Federal transportation oversight | +| 1966 | 👤 | William Haddon appointed first NHTSA Administrator | "Father of Injury Epidemiology" | +| 1966 | 🔧 | Collapsible steering columns introduced | GM leads; others follow | +| 1967 | 🔧 | Energy-absorbing steering columns in production | Reduces impalement deaths dramatically | +| 1967 | ⚖️ | First FMVSS standards take effect | 20 standards issued | +| 1968 | 📅 | 36 football fatalities | Worst year; leads to NOCSAE founding | +| 1968 | 🔧 | VIP-50 dummy created | Built for GM and Ford | +| 1968 | ⚖️ | **FMVSS 101**: Controls and Displays | Standard control locations | +| 1968 | ⚖️ | **FMVSS 102**: Transmission Shift Lever Sequence | P-R-N-D-L pattern | +| 1968 | ⚖️ | **FMVSS 103**: Windshield Defrosting/Defogging | Driver visibility | +| 1968 | ⚖️ | **FMVSS 104**: Windshield Wiping/Washing | Driver visibility | +| 1968 | ⚖️ | **FMVSS 105**: Hydraulic Brake Systems | Braking performance | +| 1968 | ⚖️ | **FMVSS 106**: Brake Hoses | Brake system integrity | +| 1968 | ⚖️ | **FMVSS 108**: Lamps, Reflective Devices | Lighting standards | +| 1968 | ⚖️ | **FMVSS 109**: New Pneumatic Tires | Tire safety | +| 1968 | ⚖️ | **FMVSS 110**: Tire Selection and Rims | Proper tire/rim matching | +| 1968 | ⚖️ | **FMVSS 111**: Rearview Mirrors | Rear visibility | +| 1968 | ⚖️ | **FMVSS 113**: Hood Latch System | Prevents hood fly-up | +| 1968 | ⚖️ | **FMVSS 114**: Theft Protection | Key-locking requirement | +| 1968 | ⚖️ | **FMVSS 116**: Motor Vehicle Brake Fluids | Brake fluid standards | +| 1968 | ⚖️ | **FMVSS 118**: Power-Operated Window Systems | Prevents entrapment | +| 1968 | ⚖️ | **FMVSS 119**: New Pneumatic Tires for Vehicles Other Than Passenger Cars | Truck tire safety | +| 1968 | ⚖️ | **FMVSS 120**: Tire Selection and Rims for Vehicles Other Than Passenger Cars | Truck tire/rim | +| 1968 | ⚖️ | **FMVSS 124**: Accelerator Control Systems | Prevents unintended acceleration | +| 1968 | ⚖️ | **FMVSS 201**: Occupant Protection in Interior Impact | Padded interior surfaces | +| 1968 | ⚖️ | **FMVSS 202**: Head Restraints | Whiplash protection | +| 1968 | ⚖️ | **FMVSS 203**: Impact Protection for the Driver from the Steering Control System | Steering wheel padding | +| 1968 | ⚖️ | **FMVSS 204**: Steering Control Rearward Displacement | Limits steering column intrusion | +| 1968 | ⚖️ | **FMVSS 205**: Glazing Materials | Safety glass requirements | +| 1968 | ⚖️ | **FMVSS 206**: Door Locks and Door Retention | Doors stay closed in crash | +| 1968 | ⚖️ | **FMVSS 207**: Seating Systems | Seat strength and anchorage | +| 1968 | ⚖️ | **FMVSS 208**: Occupant Crash Protection | Seatbelt requirements; foundation standard | +| 1968 | ⚖️ | **FMVSS 209**: Seat Belt Assemblies | Seatbelt specifications | +| 1968 | ⚖️ | **FMVSS 210**: Seat Belt Assembly Anchorages | Anchorage strength | +| 1968 | ⚖️ | **FMVSS 211**: Wheel Nuts, Wheel Discs, Hub Caps | Prevents wheel separation | +| 1968 | ⚖️ | **FMVSS 212**: Windshield Mounting | Retention in crash | +| 1968 | ⚖️ | **FMVSS 213**: Child Restraint Systems | Child seat requirements | +| 1968 | ⚖️ | **FMVSS 214**: Side Impact Protection | Door strength (static initially) | +| 1968 | ⚖️ | **FMVSS 215**: Exterior Protection | Bumper requirements | +| 1968 | ⚖️ | **FMVSS 217**: Bus Emergency Exits | School bus safety | +| 1968 | ⚖️ | **FMVSS 218**: Motorcycle Helmets | Helmet standards | +| 1968 | ⚖️ | **FMVSS 219**: Windshield Zone Intrusion | Limits penetration | +| 1968 | ⚖️ | **FMVSS 220**: School Bus Rollover Protection | Bus roof strength | +| 1968 | ⚖️ | **FMVSS 221**: School Bus Body Joint Strength | Structural integrity | +| 1968 | ⚖️ | **FMVSS 222**: School Bus Passenger Seating | Compartmentalization | +| 1968 | ⚖️ | **FMVSS 301**: Fuel System Integrity | Prevents post-crash fires | +| 1968 | ⚖️ | **FMVSS 302**: Flammability of Interior Materials | Reduces fire spread | +| 1969 | 👤 | William Haddon becomes IIHS President | Transforms into testing organization | +| 1969 | 🏛️ | NOCSAE founded | After 36 football fatalities in 1968 | + +--- + +# 1970-1979: STANDARDS TAKE HOLD + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1970 | 🏛️ | NHTSA established as independent agency | National Highway Traffic Safety Administration | +| 1970 | 📅 | 52,627 traffic deaths | Death rate: 4.74 per 100M VMT - baseline | +| 1970 | ⚖️ | NHTSA proposes airbag requirement | Beginning of 28-year fight | +| 1970 | 📚 | Haddon Matrix published | Framework for injury prevention strategies | +| 1971 | 🔧 | Hybrid I dummy introduced | GM combined best features of existing dummies | +| 1971 | 📅 | Ford Pinto enters production | Rear fuel tank design flaw | +| 1971 | ⚖️ | **FMVSS 121**: Air Brake Systems | Heavy vehicle braking | +| 1972 | 🔧 | Hybrid II dummy introduced | First FMVSS-compliant dummy | +| 1972 | 📅 | **54,589 traffic deaths** | All-time peak US traffic fatalities | +| 1972 | 🔧 | GM offers airbags as option (Oldsmobile) | Few buyers | +| 1972 | ⚖️ | **FMVSS 105** revised: Hydraulic and Electric Brake Systems | Updated braking standards | +| 1973 | 📅 | Ford Pinto internal memo | Cost-benefit analysis: $11 fix vs. deaths | +| 1973 | ⚖️ | **FMVSS 216**: Roof Crush Resistance | 1.5× vehicle weight requirement | +| 1973 | ⚖️ | **FMVSS 214** revised: Side door strength | Static requirements | +| 1973 | 🏛️ | NOCSAE publishes first football helmet standard | First athletic equipment certification | +| 1974 | 🔧 | GM offers airbag + knee bolster system | Limited Oldsmobile, Buick, Cadillac | +| 1974 | ⚖️ | Interlock seatbelt requirement | Car won't start without belt; quickly repealed | +| 1974 | ⚖️ | **FMVSS 208** revised to require ignition interlock | Repealed same year due to public outcry | +| 1975 | ⚖️ | **FMVSS 122**: Motorcycle Brake Systems | Motorcycle braking | +| 1975 | ⚖️ | **FMVSS 123**: Motorcycle Controls and Displays | Standardized controls | +| 1975 | ⚖️ | **FMVSS 125**: Warning Devices | Triangle reflectors for trucks | +| 1975 | 🔧 | Catalytic converters required | Unleaded gas era begins | +| 1976 | 🔧 | **Hybrid III dummy introduced** | Still the gold standard today | +| 1976 | 📅 | Industry lobbying delays airbag requirement | Airbag mandate postponed | +| 1977 | 👤 | Joan Claybrook becomes NHTSA Administrator | Pushed airbag mandate, created NCAP | +| 1977 | 📚 | Mother Jones publishes "Pinto Madness" | Exposed Ford fuel tank scandal | +| 1977 | ⚖️ | **FMVSS 301** strengthened | Direct response to Pinto; stricter leakage limits | +| 1978 | 📅 | NHTSA recalls 1.5 million Ford Pintos | Largest recall to date | +| 1978 | ⚖️ | Indiana criminally prosecutes Ford | First criminal case against automaker | +| 1978 | 🔧 | Anti-lock brakes introduced (Mercedes, BMW) | Electronic braking control | +| 1979 | 🏛️ | NHTSA NCAP launched | New Car Assessment Program; first consumer ratings | +| 1979 | 📅 | Three Mile Island nuclear accident | Unrelated but shapes public view of technology risk | +| 1979 | 🔧 | First US Side Impact Dummy (SID) | Enables side crash testing | +| 1979 | ⚖️ | **FMVSS 126**: Truck-Camper Loading | Weight distribution | + +--- + +# 1980-1989: THE AIRBAG WARS + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1980 | 📅 | Ford acquitted in Pinto trial | But reputation destroyed; 27-180 deaths attributed | +| 1980 | 🏛️ | MADD founded | Mothers Against Drunk Driving; transforms DUI policy | +| 1980 | 📅 | 51,091 traffic deaths | Death rate: 3.35 per 100M VMT | +| 1980s | 🔧 | European Side Impact Dummy (EuroSID) developed | International collaboration | +| 1981 | 📅 | Reagan administration rescinds airbag mandate | Major setback for safety | +| 1983 | ⚖️ | State Farm v. DOT | Supreme Court rules rescission was arbitrary | +| 1983 | 📅 | Seatbelt usage rate: 14% | Before mandatory laws | +| 1984 | ⚖️ | **FMVSS 208** revised: Automatic restraint requirement | Compromise: airbag OR automatic belt | +| 1984 | ⚖️ | New York passes first mandatory seatbelt law | Other states follow | +| 1984 | ⚖️ | **FMVSS 208** Automatic Occupant Protection | Phase-in begins | +| 1985 | 📅 | William Haddon dies | IIHS president, NHTSA founder; age 58 | +| 1985 | 🔧 | Automatic seatbelts appear in production | Motorized shoulder belts | +| 1986 | 📅 | Audi 5000 "unintended acceleration" controversy | 60 Minutes segment; actually pedal misapplication | +| 1986 | 🔧 | Center High-Mounted Stop Light (CHMSL) required | Third brake light | +| 1987 | ⚖️ | **FMVSS 108** revised: CHMSL required | Center brake light mandatory | +| 1988 | 🔧 | First passenger airbag in production | Chrysler offers across lineup | +| 1989 | 🔧 | Chrysler makes driver airbag standard | First US manufacturer | + +--- + +# 1990-1999: MODERN TESTING EMERGES + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 1990 | ⚖️ | **FMVSS 214** revised: Dynamic side impact test | MDB at 33.5 mph; first dynamic side test | +| 1990 | 📅 | First airbag fatality recorded | Child killed by deploying airbag | +| 1990 | 📅 | 44,599 traffic deaths | Death rate: 2.08 per 100M VMT | +| 1990 | 📅 | Seatbelt usage rate: 49% | Laws making difference | +| 1991 | ⚖️ | Intermodal Surface Transportation Efficiency Act (ISTEA) | Federal funding for safety | +| 1992 | ⚖️ | **FMVSS 208** revised: Driver/passenger airbags phase-in | Leading to 1998 mandate | +| 1993 | 📅 | GM discontinues live animal testing | Other manufacturers follow | +| 1993 | 🔧 | Volvo introduces SIPS (Side Impact Protection System) | Integrated side protection | +| 1994 | 📚 | US Patent Office credits Barényi with VW Beetle design | Retroactive recognition | +| 1995 | 🔧 | Volvo introduces first side torso airbag | Pioneering side protection | +| 1995 | 🧪 | **IIHS Moderate Overlap Frontal test introduced** | 40% offset, deformable barrier, 40 mph | +| 1995 | 🧪 | **IIHS Head Restraint rating introduced (static)** | Geometry evaluation | +| 1995 | 📚 | Albert King publishes cadaver research value calculation | 276 lives saved per cadaver/year | +| 1995 | 📅 | Seatbelt usage rate: 68% | Continuing improvement | +| 1996 | 🏛️ | Euro NCAP founded | European consumer testing program | +| 1996 | 📅 | 26 airbag deaths | Crisis building | +| 1996 | ⚖️ | **FMVSS 213** revised: Child restraint improvements | Better child seat standards | +| 1996 | 🔧 | On-board diagnostics (OBD-II) required | Standardized vehicle computers | +| 1997 | 🏛️ | Euro NCAP releases first ratings | Rover 100 gets 1 star; withdrawn from production | +| 1997 | 🧪 | NHTSA NCAP adds side impact test | Consumer side crash ratings | +| 1997 | 📅 | **53 airbag deaths** | Peak year for airbag fatalities | +| 1997 | 📅 | Sweden launches Vision Zero | Goal: zero traffic deaths | +| 1997 | 🔧 | Barényi dies | "Father of Passive Safety"; age 90 | +| 1998 | ⚖️ | **FMVSS 208** revised: "Depowered" airbags required | Lower inflation force | +| 1998 | ⚖️ | **FMVSS 208** revised: Frontal airbags mandatory | Finally - 28 years after first proposed | +| 1998 | 🔧 | First side curtain airbags in production | Head protection in side impacts | +| 1998 | 🔧 | Electronic Stability Control introduced (Mercedes, BMW) | Prevents loss of control | +| 1998 | ⚖️ | **FMVSS 201** revised: Upper interior head protection | Pillar padding required | +| 1998 | ⚖️ | **FMVSS 225**: Child Restraint Anchorage Systems (LATCH) | Standardized child seat attachment | +| 1999 | 📅 | John Stapp dies | "Fastest Man on Earth"; age 89 | +| 1999 | 🏛️ | ANCAP (Australasian NCAP) founded | Australia/New Zealand testing | + +--- + +# 2000-2009: EXPANDING PROTECTION + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 2000 | ⚖️ | **FMVSS 208** revised: Advanced airbag rule | Size-sensing, suppression for small occupants | +| 2000 | 📅 | Ford Explorer/Firestone tire scandal | Tread separation caused fatal rollovers; 200+ deaths | +| 2000 | ⚖️ | TREAD Act | Requires tire pressure monitoring, defect reporting | +| 2000 | 📅 | 41,945 traffic deaths | Death rate: 1.53 per 100M VMT | +| 2000 | 📅 | Seatbelt usage rate: 71% | Continuing climb | +| 2000s | 🔧 | WorldSID dummy development | International side impact harmonization | +| 2001 | ⚖️ | **FMVSS 138**: Tire Pressure Monitoring Systems | Required by 2007 | +| 2002 | 📅 | Nils Bohlin dies | 3-point seatbelt inventor; age 82 | +| 2003 | 🔧 | Honda introduces first radar-based collision warning | Early ADAS | +| 2003 | 🧪 | **IIHS Side Impact test introduced** | SID-IIs (5th female) dummy; taller barrier | +| 2004 | ⚖️ | ABS required on all new vehicles | Anti-lock brakes mandatory | +| 2004 | 🧪 | **IIHS Head Restraint dynamic test introduced** | BioRID II dummy sled test | +| 2005 | 📚 | Dr. Bennet Omalu publishes first NFL CTE case | Mike Webster; concussion crisis begins | +| 2005 | 📅 | Samuel Alderson dies | "Father of the crash test dummy"; age 90 | +| 2006 | 📅 | Lawrence Patrick dies | Wayne State "human guinea pig"; age 86 | +| 2006 | 🏛️ | C-NCAP (China) established | Chinese consumer testing | +| 2006 | ⚖️ | **FMVSS 126**: Electronic Stability Control | Required by 2012 | +| 2007 | ⚖️ | **FMVSS 214** revised: Pole test added | 254mm pole at 20 mph; head protection | +| 2007 | ⚖️ | **FMVSS 138** takes effect | TPMS required | +| 2007 | 📚 | NHTSA publishes ESC effectiveness study | 75% reduction in fatal rollovers | +| 2008 | 🔧 | Volvo City Safety introduced | First low-speed AEB system | +| 2008 | 🔧 | Ford introduces inflatable seatbelts | Belt airbag technology | +| 2009 | 🧪 | IIHS 50th Anniversary crash test | 1959 Bel Air vs. 2009 Malibu | +| 2009 | ⚖️ | **FMVSS 216** revised: Roof strength doubled | 3× vehicle weight (was 1.5×) | +| 2009 | 🧪 | **IIHS Roof Strength ratings introduced** | 4× for "Good" rating | +| 2009 | 📅 | NFL acknowledges concussion problem | League finally admits brain damage link | +| 2009 | 🔧 | THOR-50M development advances | Next-generation frontal dummy | + +--- + +# 2010-2019: THE ACTIVE SAFETY REVOLUTION + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 2010 | 📅 | 32,999 traffic deaths | Death rate: 1.11 per 100M VMT | +| 2010 | 📅 | Seatbelt usage rate: 85% | High compliance | +| 2010 | 🏛️ | Latin NCAP established | Latin American testing | +| 2010 | 🔧 | Pedestrian detection systems emerge | Camera-based detection | +| 2011 | 📅 | $765 million NFL concussion settlement | League pays former players | +| 2011 | 📅 | **32,479 traffic deaths** | Death rate: 1.10 - lowest since 1949 | +| 2011 | 🧪 | NHTSA NCAP enhanced | Side pole test, rollover rating, Overall Vehicle Score | +| 2011 | 🏛️ | NFL/NFLPA helmet testing program begins | Public safety rankings | +| 2011 | 🏛️ | ASEAN NCAP established | Southeast Asian testing | +| 2011 | 🏛️ | Global NCAP established | Testing in India/Africa | +| 2012 | 🧪 | **IIHS Small Overlap test introduced (driver side)** | 25% rigid barrier, 40 mph | +| 2012 | 📅 | First Small Overlap results shock industry | BMW, Mercedes, Audi rated Marginal or Poor | +| 2012 | ⚖️ | **FMVSS 126** takes effect: ESC required | Electronic Stability Control mandatory | +| 2012 | ⚖️ | **FMVSS 111** revised: Backup cameras proposed | Rearview visibility | +| 2013 | 🔧 | THOR-50M deliveries begin | 150+ data channels | +| 2013 | 🧪 | **IIHS Front Crash Prevention testing introduced** | AEB ratings begin | +| 2014 | 🧪 | Euro NCAP adds AEB requirement | Required for 5-star rating | +| 2014 | 🔧 | Tesla Autopilot announced | Level 2 automation | +| 2015 | 🔧 | WIAMan dummy developed | Military blast dummy (DTS + US Army) | +| 2016 | 📅 | 20 automakers commit to standard AEB | Voluntary by September 2022 | +| 2016 | 🧪 | **IIHS Headlight evaluation introduced** | Nighttime visibility ratings | +| 2016 | 📅 | "Concussion" movie released | CTE issue reaches mainstream | +| 2016 | 📅 | Tesla Autopilot first fatality | Joshua Brown in Florida | +| 2017 | 🧪 | **IIHS Small Overlap passenger side added** | Prevents asymmetric design | +| 2017 | ⚖️ | **FMVSS 226**: Ejection Mitigation | Side curtains required | +| 2018 | ⚖️ | **FMVSS 111** revised: Backup cameras required | After Kids and Cars advocacy | +| 2018 | 📅 | Uber self-driving car kills pedestrian | Elaine Herzberg in Tempe, AZ | +| 2018 | 🔧 | Level 3 automation testing expands | Limited self-driving | +| 2019 | 🧪 | **IIHS Pedestrian AEB testing introduced** | Adult and child targets | +| 2019 | 🧪 | IIHS develops rear seat safety evaluation | Research phase | +| 2019 | 📅 | 36,096 traffic deaths | Death rate: 1.11 per 100M VMT | +| 2019 | 📅 | 6,205 pedestrian deaths | Rising trend | + +--- + +# 2020-PRESENT: NEW CHALLENGES + +| Year | Category | Event | Significance | +|------|----------|-------|--------------| +| 2020 | 📅 | COVID-19 pandemic changes driving patterns | Less driving, more speeding | +| 2020 | 📅 | 38,824 traffic deaths | Death rate: 1.37 - pandemic spike | +| 2020 | 🧪 | Euro NCAP introduces Mobile Progressive Deformable Barrier | Updated frontal protocol | +| 2020 | 📅 | Seatbelt usage rate: 90% | Near saturation | +| 2021 | 🧪 | **IIHS Side Impact test updated** | 4,200 lb barrier, 37 mph, taller profile | +| 2021 | 📅 | **42,939 traffic deaths** | Highest since 2005 | +| 2021 | 📅 | 7,388 pedestrian deaths | Continuing rise | +| 2022 | 📅 | AEB standard on most new vehicles | Industry commitment achieved | +| 2022 | 📅 | 42,795 traffic deaths | Slight improvement | +| 2022 | 📅 | Seatbelt usage rate: 92% | Current level | +| 2022 | 📅 | 7,500+ pedestrian deaths | 18% of all traffic deaths | +| 2022 | ⚖️ | Infrastructure Investment and Jobs Act | Includes safety funding | +| 2023 | 🔧 | **THOR-5F introduced** | First true female crash test dummy | +| 2023 | 🏛️ | Bharat NCAP (India) launches | Indian consumer testing | +| 2023 | 📅 | Cruise suspends robotaxi operations | Pedestrian dragging incident | +| 2023 | 🔧 | Mercedes Drive Pilot (Level 3) approved in Nevada, California | First true Level 3 in US | +| 2024 | 🧪 | Euro NCAP requires driver monitoring | Distraction detection | +| 2024 | ⚖️ | NHTSA proposes updated NCAP | Includes pedestrian protection | + +--- + +# COMPLETE FMVSS LIST (Current Standards) + +## 100 Series: Controls and Displays, Lighting, Glazing + +| FMVSS | Title | Original Year | Key Requirements | +|-------|-------|---------------|------------------| +| 101 | Controls and Displays | 1968 | Standardized control locations | +| 102 | Transmission Shift Lever Sequence | 1968 | P-R-N-D-L pattern | +| 103 | Windshield Defrosting and Defogging | 1968 | Driver visibility | +| 104 | Windshield Wiping and Washing | 1968 | Minimum wipe area | +| 105 | Hydraulic and Electric Brake Systems | 1968 | Braking performance | +| 106 | Brake Hoses | 1968 | Hose specifications | +| 108 | Lamps, Reflective Devices, and Equipment | 1968 | Lighting standards | +| 109 | New Pneumatic Tires | 1968 | Tire performance | +| 110 | Tire Selection and Rims | 1968 | Proper matching | +| 111 | Rearview Mirrors (now includes backup camera) | 1968/2018 | Rear visibility | +| 113 | Hood Latch System | 1968 | Prevents fly-up | +| 114 | Theft Protection and Rollaway Prevention | 1968 | Security | +| 116 | Motor Vehicle Brake Fluids | 1968 | Fluid standards | +| 118 | Power-Operated Window, Partition, and Roof Panel Systems | 1968 | Anti-entrapment | +| 119 | New Pneumatic Tires for Motor Vehicles (except passenger cars) | 1968 | Truck tires | +| 120 | Tire Selection and Rims (except passenger cars) | 1968 | Truck tire/rim | +| 121 | Air Brake Systems | 1971 | Heavy vehicle brakes | +| 122 | Motorcycle Brake Systems | 1975 | Motorcycle braking | +| 123 | Motorcycle Controls and Displays | 1975 | Standardized controls | +| 124 | Accelerator Control Systems | 1968 | Prevents stuck throttle | +| 125 | Warning Devices | 1975 | Triangle reflectors | +| 126 | Electronic Stability Control Systems | 2006/2012 | ESC required | +| 129 | New Non-Pneumatic Tires for Passenger Cars | 2005 | Run-flat standards | +| 135 | Light Vehicle Brake Systems | 1995 | Passenger car brakes | +| 138 | Tire Pressure Monitoring Systems | 2001/2007 | TPMS required | +| 139 | New Pneumatic Radial Tires for Light Vehicles | 2003 | Radial tire standards | +| 141 | Minimum Sound Requirements for Hybrid and Electric Vehicles | 2016 | Pedestrian alert | + +## 200 Series: Crash Avoidance and Crashworthiness + +| FMVSS | Title | Original Year | Key Requirements | +|-------|-------|---------------|------------------| +| 201 | Occupant Protection in Interior Impact | 1968/1998 | Padded surfaces, pillar padding | +| 202 | Head Restraints | 1968 | Whiplash protection | +| 203 | Impact Protection for the Driver from the Steering Control System | 1968 | Steering wheel padding | +| 204 | Steering Control Rearward Displacement | 1968 | Limits intrusion | +| 205 | Glazing Materials | 1968 | Safety glass | +| 206 | Door Locks and Door Retention Components | 1968 | Doors stay closed | +| 207 | Seating Systems | 1968 | Seat strength | +| 208 | Occupant Crash Protection | 1968/1998/2000 | Belts, airbags | +| 209 | Seat Belt Assemblies | 1968 | Belt specifications | +| 210 | Seat Belt Assembly Anchorages | 1968 | Anchorage strength | +| 212 | Windshield Mounting | 1968 | Retention | +| 213 | Child Restraint Systems | 1968 | Child seats | +| 214 | Side Impact Protection | 1968/1990/2007 | Side crash protection | +| 216 | Roof Crush Resistance | 1973/2009 | 3× vehicle weight | +| 217 | Bus Emergency Exits and Window Retention | 1968 | School bus safety | +| 218 | Motorcycle Helmets | 1968 | Helmet standards | +| 219 | Windshield Zone Intrusion | 1968 | Limits penetration | +| 220 | School Bus Rollover Protection | 1968 | Bus roof strength | +| 221 | School Bus Body Joint Strength | 1968 | Structural integrity | +| 222 | School Bus Passenger Seating and Crash Protection | 1968 | Compartmentalization | +| 223 | Rear Impact Guards (Trailers) | 1996 | Underride prevention | +| 224 | Rear Impact Protection (Trailers) | 1996 | Underride testing | +| 225 | Child Restraint Anchorage Systems (LATCH) | 1998 | Standardized attachment | +| 226 | Ejection Mitigation | 2017 | Side curtain requirements | + +## 300 Series: Post-Crash Standards + +| FMVSS | Title | Original Year | Key Requirements | +|-------|-------|---------------|------------------| +| 301 | Fuel System Integrity | 1968/1977 | Fire prevention | +| 302 | Flammability of Interior Materials | 1968 | Fire resistance | +| 303 | Fuel System Integrity of Compressed Natural Gas Vehicles | 1994 | CNG safety | +| 304 | Compressed Natural Gas Fuel Container Integrity | 1994 | CNG containers | +| 305 | Electric-Powered Vehicles: Electrolyte Spillage and Electrical Shock Protection | 1998 | EV safety | + +--- + +# COMPLETE IIHS TEST TIMELINE + +| Year | Test | Configuration | Key Innovation | +|------|------|---------------|----------------| +| 1995 | Moderate Overlap Frontal | 40% offset, deformable barrier, 40 mph | First offset crash test | +| 1995 | Head Restraint (static) | Geometry measurement | Whiplash protection geometry | +| 2003 | Side Impact | MDB 31 mph, SID-IIs | Small female protection | +| 2004 | Head Restraint (dynamic) | BioRID II sled test | Actual whiplash performance | +| 2009 | Roof Strength | Static plate load | 4× for "Good" | +| 2012 | Small Overlap (driver) | 25% rigid barrier, 40 mph | Exposed structural gaps | +| 2013 | Front Crash Prevention | 12/25 mph approach | First AEB ratings | +| 2016 | Headlights | Track testing, day/night | Visibility evaluation | +| 2017 | Small Overlap (passenger) | 25% rigid barrier, 40 mph | Symmetric protection | +| 2019 | Pedestrian AEB | Adult/child targets | Vulnerable road users | +| 2021 | Side Impact (updated) | 4,200 lb, 37 mph, taller | Modern fleet threat | +| TBD | Rear Seat Safety | Frontal crash, rear dummy | Neglected occupant | + +--- + +# MAJOR SAFETY ORGANIZATIONS + +| Founded | Organization | Role | +|---------|--------------|------| +| 1913 | National Safety Council | General safety advocacy | +| 1942 | Cornell Crash Injury Research Project | First crash research (DeHaven) | +| 1959 | IIHS | Insurance-funded testing | +| 1966 | US Department of Transportation | Federal oversight | +| 1969 | NOCSAE | Athletic equipment standards | +| 1970 | NHTSA | Federal auto safety agency | +| 1980 | MADD | Drunk driving advocacy | +| 1996 | Euro NCAP | European testing | +| 1999 | ANCAP | Australia/New Zealand | +| 2006 | C-NCAP | China | +| 2010 | Latin NCAP | Latin America | +| 2011 | ASEAN NCAP | Southeast Asia | +| 2011 | Global NCAP | India/Africa | +| 2023 | Bharat NCAP | India | + +--- + +# KEY PUBLICATIONS + +| Year | Publication | Author(s) | Significance | +|------|-------------|-----------|--------------| +| 1942 | "Mechanical Analysis of Survival in Falls from Heights of Fifty to One Hundred and Fifty Feet" | Hugh DeHaven | First scientific crash survival study | +| 1954 | Deceleration tolerance papers | John Stapp | Proved human survival beyond 18g | +| 1962 | "Epidemic on the Highways" | Daniel Patrick Moynihan | Raised public awareness | +| 1965 | "Unsafe at Any Speed" | Ralph Nader | Changed industry; led to regulation | +| 1970 | "Haddon Matrix" | William Haddon Jr. | Framework for injury prevention | +| 1977 | "Pinto Madness" | Mother Jones | Exposed Ford scandal | +| 1995 | "Humanitarian Benefits of Cadaver Research" | Albert King | 276 lives/cadaver/year | +| 2003 | "Stiff: The Curious Lives of Human Cadavers" | Mary Roach | Popular book on cadaver research | +| 2005 | First CTE in NFL player paper | Bennet Omalu | Started concussion crisis awareness | + +--- + +*Document prepared as comprehensive reference for DTS safety testing presentations* +*All FMVSS standards current as of 2024* +*Last updated: February 13, 2026* diff --git a/timeline_safety_testing.md b/timeline_safety_testing.md new file mode 100644 index 0000000..19941fd --- /dev/null +++ b/timeline_safety_testing.md @@ -0,0 +1,341 @@ +# Timeline of Safety Testing History +## Every Event Referenced in the DTS Presentations +### Chronological History from 1885 to Present + +--- + +# PRE-1900: THE EARLIEST DAYS + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1885 | First seatbelt patent | Restraints | Designed for horse-drawn carriages - ignored for 70 years | +| 1899 | First recorded US traffic death | Milestone | Henry Bliss, struck by electric taxi in NYC | + +--- + +# 1900-1929: THE AUTOMOBILE EMERGES + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1916 | MacPherson v. Buick Motor Company | Legal | First case holding manufacturer liable for defective design; created product liability law | +| 1918 | US traffic deaths reach 10,000/year | Milestone | Automobile becoming mass transportation | +| 1919 | Laminated safety glass invented | Materials | Windshield holds together when broken | +| 1921 | 13,253 traffic deaths | Statistics | Death rate: 24.09 per 100 million VMT | +| 1925 | US traffic deaths reach 20,000/year | Milestone | Rapid motorization continuing | + +--- + +# 1930-1939: EARLY RESEARCH BEGINS + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1930 | US traffic deaths reach 30,000/year | Milestone | Depression doesn't slow driving growth | +| 1930s | Wayne State University begins cadaver research | Research | First systematic crash injury research; ball bearings dropped on skulls | +| 1937 | Béla Barényi conceives crumple zone concept | Engineering | Austrian engineer's idea patented 1951 | +| 1937 | 37,819 traffic deaths | Statistics | Death rate: 14.00 per 100M VMT - devastating toll | +| 1937 | Claire Straith convinces Chrysler to offer padded dashboard | Safety feature | First manufacturer safety option; sales poor - "safety doesn't sell" myth born | + +--- + +# 1940-1949: WAR AND INNOVATION + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1942 | Hugh DeHaven founds Cornell Crash Injury Research Project | Research | Father of crashworthiness; studied "second collision" | +| 1947 | John Stapp begins rocket sled experiments | Research | USAF Flight Surgeon starts deceleration research at Edwards AFB | +| 1949 | Samuel Alderson creates "Sierra Sam" | ATD | First crash test dummy; built for USAF ejection seat testing | + +--- + +# 1950-1959: THE PIONEERS + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1950 | 33,186 traffic deaths | Statistics | Death rate: 7.24 per 100M VMT | +| 1951 | Barényi patents crumple zone design | Engineering | Mercedes-Benz innovation | +| 1954 | December 10: Stapp achieves 46.2g | Research | "Fastest Man on Earth" - proved humans survive far more than believed | +| 1956 | Ford offers seatbelts as $27 option | Safety feature | Robert McNamara's safety push; outsold by Chevy - "safety doesn't sell" reinforced | +| 1956 | Murphy's Law popularized | Culture | Originated on Stapp's rocket sled project | +| 1958 | Nils Bohlin hired by Volvo | Personnel | Former Saab ejection seat engineer | +| 1959 | Nils Bohlin invents 3-point seatbelt | Restraints | Modern seatbelt design; Volvo makes patent freely available | +| 1959 | IIHS founded | Organization | Insurance Institute for Highway Safety established by insurance industry | +| 1959 | Mercedes W111 introduced | Vehicle | First production car with Barényi's safety cell/crumple zone design | + +--- + +# 1960-1969: THE REGULATORY REVOLUTION + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1960 | Robert McNamara becomes Ford President | Personnel | Safety advocate; leaves for Kennedy administration in 1961 | +| 1960 | 36,399 traffic deaths | Statistics | Death rate: 5.06 per 100M VMT | +| 1961 | US traffic deaths reach 40,000/year | Milestone | Crisis building | +| 1964 | Over 1 million steering column deaths recorded | Statistics | Cumulative toll from rigid steering columns | +| 1964 | GM introduces collapsible steering column | Engineering | Finally addressing leading cause of crash death | +| 1965 | November 30: Ralph Nader publishes "Unsafe at Any Speed" | Publication | Attacked auto industry; exposed Corvair dangers | +| 1966 | GM caught investigating Nader | Scandal | Surveillance, harassment, attempted entrapment | +| 1966 | GM President apologizes before Congress | Hearing | Public humiliation for industry | +| 1966 | National Traffic and Motor Vehicle Safety Act signed | Legislation | First federal auto safety law | +| 1966 | US Department of Transportation created | Organization | Federal oversight of transportation safety | +| 1966 | William Haddon appointed first NHTSA Administrator | Personnel | "Father of Injury Epidemiology"; created first FMVSS standards | +| 1968 | FMVSS 208 takes effect | Regulation | First occupant protection standard; seatbelts required | +| 1968 | FMVSS 301 takes effect | Regulation | Fuel system integrity requirements | +| 1968 | 36 football fatalities | Sports | Worst year on record; led to NOCSAE founding | +| 1968 | VIP-50 dummy created | ATD | Built specifically for GM and Ford | +| 1969 | William Haddon becomes IIHS President | Personnel | Transformed IIHS into testing organization | +| 1969 | NOCSAE founded | Organization | National Operating Committee on Standards for Athletic Equipment | + +--- + +# 1970-1979: STANDARDS TAKE HOLD + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1970 | NHTSA established as independent agency | Organization | National Highway Traffic Safety Administration | +| 1970 | 52,627 traffic deaths | Statistics | Death rate: 4.74 per 100M VMT - baseline for "77% improvement" | +| 1970 | NHTSA proposes airbag requirement | Regulation | Beginning of 28-year fight | +| 1971 | Hybrid I dummy introduced | ATD | GM combined best features of VIP and Sierra Stan | +| 1971 | Ford Pinto enters production | Vehicle | Rear fuel tank design flaw begins claiming lives | +| 1972 | Hybrid II dummy introduced | ATD | First FMVSS-compliant dummy | +| 1972 | 54,589 traffic deaths | Statistics | **All-time peak US traffic deaths** | +| 1972 | GM offers airbags as option | Safety feature | Available on Oldsmobiles; few buyers | +| 1973 | FMVSS 216 takes effect | Regulation | Roof crush resistance (1.5× vehicle weight) | +| 1973 | FMVSS 214 takes effect (static) | Regulation | First side impact standard (static door strength) | +| 1973 | Ford Pinto internal memo | Document | Calculated $11 fix vs. $200,000 per death; chose not to fix | +| 1973 | NOCSAE football helmet standard | Sports | First athletic helmet certification | +| 1976 | Hybrid III dummy introduced | ATD | **Gold standard** - still used globally today | +| 1976 | Industry lobbying delays airbag requirement | Politics | Airbag mandate postponed | +| 1977 | Joan Claybrook becomes NHTSA Administrator | Personnel | Pushed airbag mandate; created NCAP | +| 1977 | Mother Jones publishes "Pinto Madness" | Publication | Exposed Ford fuel tank scandal | +| 1977 | FMVSS 301 strengthened | Regulation | Direct response to Pinto scandal | +| 1978 | NHTSA recalls 1.5 million Pintos | Recall | Largest recall to date | +| 1978 | Indiana criminally prosecutes Ford | Legal | First criminal prosecution of automaker for defective design | +| 1979 | NHTSA NCAP launched | Testing | New Car Assessment Program; first consumer crash test ratings | +| 1979 | First US Side Impact Dummy (SID) developed | ATD | Enabling side impact testing | + +--- + +# 1980-1989: THE AIRBAG WARS CONTINUE + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1980 | Ford acquitted in Pinto criminal trial | Legal | But reputation destroyed | +| 1980 | MADD founded | Organization | Mothers Against Drunk Driving transforms DUI policy | +| 1980 | 51,091 traffic deaths | Statistics | Death rate: 3.35 per 100M VMT | +| 1981 | Reagan administration rescinds airbag mandate | Politics | Major setback for safety advocates | +| 1983 | State Farm v. DOT | Legal | Supreme Court rules airbag rescission was arbitrary | +| 1983 | Seatbelt usage rate: 14% | Statistics | Before mandatory use laws | +| 1984 | "Automatic restraint" requirement | Regulation | Compromise: airbag OR automatic seatbelt | +| 1984 | New York passes first mandatory seatbelt law | Legislation | Other states follow | +| 1985 | William Haddon dies | Personnel | IIHS president, NHTSA founder passes at 58 | + +--- + +# 1990-1999: MODERN TESTING EMERGES + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 1990 | FMVSS 214 dynamic test takes effect | Regulation | First dynamic side impact test (MDB at 33.5 mph) | +| 1990 | First airbag fatality | Safety issue | Child killed by deploying airbag | +| 1990 | 44,599 traffic deaths | Statistics | Death rate: 2.08 per 100M VMT | +| 1990 | Seatbelt usage rate: 49% | Statistics | Laws making difference | +| 1993 | GM discontinues live animal testing | Ethics | Other manufacturers follow | +| 1995 | Volvo introduces first side torso airbag | Safety feature | Pioneering side protection | +| 1995 | IIHS Moderate Overlap test introduced | Testing | 40% offset deformable barrier at 40 mph | +| 1995 | IIHS Head Restraint rating (static) | Testing | Whiplash protection geometry | +| 1995 | Albert King publishes cadaver research calculation | Research | 276 lives saved per cadaver per year | +| 1995 | Seatbelt usage rate: 68% | Statistics | Continuing improvement | +| 1996 | Euro NCAP founded | Organization | European consumer testing program | +| 1996 | 26 airbag deaths | Safety issue | Crisis building | +| 1997 | Euro NCAP releases first ratings | Testing | Rover 100 receives 1 star; withdrawn from production | +| 1997 | NHTSA NCAP adds side impact | Testing | Consumer side crash ratings | +| 1997 | 53 airbag deaths | Statistics | **Peak year for airbag fatalities** | +| 1997 | Sweden launches Vision Zero | Policy | Goal: zero traffic deaths; radical systemic approach | +| 1998 | "Depowered" airbags required | Regulation | Lower inflation force | +| 1998 | Frontal airbags mandatory | Regulation | **Finally** - 28 years after first proposed | +| 1998 | First side curtain airbags | Safety feature | Head protection in side impacts | +| 1999 | John Stapp dies | Personnel | "Fastest Man on Earth" passes at 89 | + +--- + +# 2000-2009: EXPANDING TEST COVERAGE + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 2000 | Advanced airbag rule | Regulation | Size-sensing, suppression for children | +| 2000 | Ford Explorer/Firestone tire scandal | Scandal | Tread separation caused fatal rollovers; 200+ deaths | +| 2000 | 41,945 traffic deaths | Statistics | Death rate: 1.53 per 100M VMT | +| 2000 | Seatbelt usage rate: 71% | Statistics | Continuing climb | +| 2002 | Nils Bohlin dies | Personnel | 3-point seatbelt inventor passes at 82 | +| 2003 | IIHS Side Impact test introduced | Testing | Small female (SID-IIs) dummy; higher barrier | +| 2003 | Honda introduces first radar-based collision warning | Technology | Early ADAS precursor | +| 2004 | ABS required on all new vehicles | Regulation | Anti-lock brakes mandatory | +| 2004 | IIHS Head Restraint dynamic test | Testing | BioRID II dummy sled test | +| 2005 | Dr. Bennet Omalu publishes first NFL CTE case | Research | Former player Mike Webster; concussion crisis begins | +| 2005 | Samuel Alderson dies | Personnel | "Father of the crash test dummy" passes at 90 | +| 2006 | Lawrence Patrick dies | Personnel | Wayne State "human guinea pig" passes at 86 | +| 2006 | C-NCAP (China) established | Organization | Chinese consumer testing program | +| 2007 | FMVSS 214 Pole test added | Regulation | Narrow object; drove side curtain adoption | +| 2007 | ESC effectiveness proven | Research | NHTSA finds 75% reduction in fatal rollovers | +| 2008 | Volvo City Safety introduced | Technology | First low-speed AEB system | +| 2009 | IIHS 50th Anniversary: 1959 Bel Air vs. 2009 Malibu crash test | Testing | Dramatic demonstration of 50 years of progress | +| 2009 | FMVSS 216 upgraded | Regulation | Roof strength doubled from 1.5× to 3× vehicle weight | +| 2009 | IIHS Roof Strength ratings | Testing | "Good" requires 4× (exceeds federal 3×) | +| 2009 | NFL acknowledges concussion problem | Sports | League finally admits link to brain damage | + +--- + +# 2010-2019: THE ACTIVE SAFETY REVOLUTION + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 2010 | 32,999 traffic deaths | Statistics | Death rate: 1.11 per 100M VMT | +| 2010 | Seatbelt usage rate: 85% | Statistics | High compliance achieved | +| 2010 | Latin NCAP established | Organization | Latin American testing program | +| 2011 | $765 million NFL concussion settlement | Legal | League pays former players | +| 2011 | 32,479 traffic deaths | Statistics | Death rate: 1.10 - **lowest since 1949** | +| 2011 | NCAP enhanced | Testing | Side pole test, rollover rating, Overall Vehicle Score | +| 2011 | NFL/NFLPA helmet testing program begins | Sports | Public rankings of helmet safety | +| 2011 | ASEAN NCAP established | Organization | Southeast Asian testing program | +| 2011 | Global NCAP established | Organization | Testing in India/Africa | +| 2012 | IIHS Small Overlap test introduced (driver side) | Testing | **25% rigid barrier - luxury cars fail** | +| 2012 | First Small Overlap results shock industry | Testing | BMW, Mercedes, Audi rated Marginal or Poor | +| 2012 | FMVSS 126: ESC required | Regulation | Electronic Stability Control mandatory | +| 2013 | THOR-50M deliveries begin | ATD | Advanced male dummy with 150+ channels | +| 2013 | IIHS Front Crash Prevention testing | Testing | First AEB ratings | +| 2014 | Euro NCAP adds AEB requirement | Testing | Required for 5-star rating | +| 2015 | WIAMan dummy developed | ATD | Military blast dummy (DTS partnership with US Army) | +| 2016 | 20 automakers commit to standard AEB | Agreement | Voluntary commitment by September 2022 | +| 2016 | IIHS Headlight evaluation introduced | Testing | Nighttime visibility addressed | +| 2016 | "Concussion" movie released | Culture | Brought CTE issue to mainstream | +| 2017 | IIHS Small Overlap passenger side added | Testing | Prevents asymmetric "gaming" of test | +| 2018 | Backup cameras required (FMVSS 111) | Regulation | After Kids and Cars advocacy | +| 2018 | Uber self-driving car kills pedestrian | Incident | Elaine Herzberg in Tempe, AZ; safety driver distracted | +| 2019 | IIHS Pedestrian AEB testing introduced | Testing | Adult and child pedestrian targets | +| 2019 | 36,096 traffic deaths | Statistics | Death rate: 1.11 per 100M VMT | +| 2019 | 6,205 pedestrian deaths | Statistics | Rising trend continues | + +--- + +# 2020-PRESENT: NEW CHALLENGES + +| Year | Event | Category | Significance | +|------|-------|----------|--------------| +| 2020 | 38,824 traffic deaths | Statistics | Death rate: 1.37 - pandemic spike (less driving, more speeding) | +| 2020 | Euro NCAP introduces Mobile Progressive Deformable Barrier | Testing | Updated frontal test protocol | +| 2020 | Seatbelt usage rate: 90% | Statistics | Near saturation | +| 2021 | IIHS Side Impact test updated | Testing | Heavier (4,200 lb), taller, faster (37 mph) barrier | +| 2021 | 42,939 traffic deaths | Statistics | **Highest since 2005** - pandemic driving behavior persists | +| 2021 | 7,388 pedestrian deaths | Statistics | Continuing rise | +| 2022 | AEB standard on most new vehicles | Technology | Industry voluntary commitment achieved | +| 2022 | 42,795 traffic deaths | Statistics | Slight improvement | +| 2022 | Seatbelt usage rate: 92% | Statistics | Current level | +| 2022 | 7,500+ pedestrian deaths | Statistics | 18% of all traffic deaths | +| 2023 | THOR-5F introduced | ATD | **First true female crash test dummy** | +| 2023 | Bharat NCAP (India) launches | Organization | Indian consumer testing program | +| 2023 | Cruise suspends robotaxi operations | Incident | Pedestrian dragging incident in San Francisco | +| 2023 | Mercedes Drive Pilot (Level 3) approved in limited US states | Technology | First true Level 3 automation | + +--- + +# FUTURE TIMELINE (ANTICIPATED) + +| Timeframe | Expected Development | Category | +|-----------|---------------------|----------| +| 2024-2025 | Euro NCAP requires driver monitoring | Testing | Distraction/drowsiness detection | +| 2024-2026 | IIHS rear seat safety evaluation | Testing | Address neglected rear occupant protection | +| 2025-2027 | US pedestrian crashworthiness standards | Regulation | Following Euro NCAP model | +| 2025-2030 | THOR-5F required in testing | Regulation | Female dummy mandatory | +| 2025-2030 | Far-side impact testing | Testing | Opposite-side crash protection | +| 2025-2030 | EV-specific safety standards | Regulation | Battery safety, mass distribution | +| 2030+ | Vehicle compatibility requirements | Regulation | Protecting small cars from large trucks | + +--- + +# SUMMARY STATISTICS BY DECADE + +## US Traffic Deaths + +| Decade | Average Deaths/Year | Average Rate (per 100M VMT) | Key Developments | +|--------|--------------------|-----------------------------|------------------| +| 1930s | ~35,000 | ~12.0 | Pre-safety era | +| 1940s | ~30,000 | ~8.0 | War years, research begins | +| 1950s | ~37,000 | ~6.0 | Pioneers active, no regulation | +| 1960s | ~50,000 | ~5.0 | NHTSA created, first FMVSS | +| 1970s | ~50,000 | ~3.5 | Seatbelt requirements, first airbags | +| 1980s | ~45,000 | ~2.5 | Seatbelt laws, airbag wars | +| 1990s | ~42,000 | ~1.7 | IIHS testing expands, airbags mandatory | +| 2000s | ~40,000 | ~1.4 | ESC, small overlap, side curtains | +| 2010s | ~36,000 | ~1.15 | AEB, active safety revolution | +| 2020s | ~40,000 | ~1.3 | Pandemic spike, pedestrian crisis | + +## Football Direct Fatalities + +| Decade | Average/Year | Key Developments | +|--------|--------------|------------------| +| 1960s | 26 | Pre-NOCSAE | +| 1970s | 15 | NOCSAE standards adopted | +| 1980s | 9 | Standards improving | +| 1990s | 5 | Helmet technology advancing | +| 2000s | 4 | Modern designs | +| 2010s | 3 | 90% reduction from 1960s | + +--- + +# KEY PEOPLE TIMELINE + +| Birth | Death | Name | Primary Contribution | +|-------|-------|------|---------------------| +| 1895 | 1980 | Hugh DeHaven | Father of crashworthiness; Cornell Crash Injury Research | +| 1907 | 1997 | Béla Barényi | Crumple zones, passive safety; 2,500+ patents | +| 1891 | 1958 | Claire Straith | Plastic surgeon who advocated for safer interiors | +| 1910 | 1999 | John Stapp | Rocket sled experiments; proved human tolerance | +| 1914 | 2005 | Samuel Alderson | Created Sierra Sam, first crash test dummy | +| 1916 | 2009 | Robert McNamara | Ford safety advocate (before Defense Secretary) | +| 1920 | 2002 | Nils Bohlin | 3-point seatbelt inventor | +| 1920 | 2006 | Lawrence Patrick | Wayne State "human guinea pig" | +| 1926 | 1985 | William Haddon Jr. | First NHTSA Administrator, IIHS President | +| 1934 | - | Ralph Nader | "Unsafe at Any Speed" author | +| 1937 | - | Joan Claybrook | NHTSA Administrator; created NCAP, pushed airbags | + +--- + +# KEY LEGISLATION TIMELINE + +| Year | Legislation/Regulation | Impact | +|------|----------------------|--------| +| 1966 | National Traffic and Motor Vehicle Safety Act | Created federal auto safety authority | +| 1968 | FMVSS 208 | First occupant protection standard | +| 1968 | FMVSS 301 | Fuel system integrity | +| 1973 | FMVSS 216 | Roof crush resistance | +| 1984 | Automatic restraint requirement | Led to airbag adoption | +| 1990 | FMVSS 214 (dynamic) | First dynamic side test | +| 1998 | Frontal airbags mandatory | 28 years after first proposed | +| 2007 | FMVSS 214 Pole test | Head protection in side impacts | +| 2009 | FMVSS 216 update | Doubled roof strength requirement | +| 2012 | FMVSS 126 | ESC mandatory | +| 2018 | FMVSS 111 update | Backup cameras required | + +--- + +# KEY IIHS TEST INTRODUCTION TIMELINE + +| Year | Test | Key Finding | +|------|------|-------------| +| 1995 | Moderate Overlap Frontal | Offset crashes weren't covered by full frontal | +| 1995 | Head Restraint (static) | Many restraints improperly positioned | +| 2003 | Side Impact | Small females vulnerable in side crashes | +| 2004 | Head Restraint (dynamic) | Active head restraints superior | +| 2009 | Roof Strength | Many roofs exceeded 4× even with 1.5× requirement | +| 2012 | Small Overlap (driver) | Luxury cars failing - structural gap exposed | +| 2013 | Front Crash Prevention | AEB dramatically reduces rear-end crashes | +| 2016 | Headlights | Huge variation; some premium cars had poor lights | +| 2017 | Small Overlap (passenger) | Some manufacturers only reinforced driver side | +| 2019 | Pedestrian AEB | Detection varies widely | +| 2021 | Side Impact (updated) | Fleet change required tougher test | + +--- + +*Document prepared as reference for DTS safety testing presentations* +*Covers events from all presentation materials* +*Last updated: February 13, 2026*