Skip to main content

The Crash Parameters Object

Crash Parameters contain computed crash analysis data for a vehicle, including delta-v (change in velocity) values calculated from damage photos or EDR data.

Object Structure

{
"delta_v_min": 8.5,
"delta_v_max": 12.3,
"delta_v_method": "ml",
"pdof_degrees": 180,
"crash_pulse_min_ms": 12,
"crash_pulse_max_ms": 100,
"calculated_at": "2024-01-15T12:00:00Z"
}

Attributes

AttributeTypeDescription
delta_v_minnumberDelta-V at peak acceleration in mph
delta_v_maxnumberFinal maximum delta-V in mph
delta_v_methodstringMethod used for calculation (see below)
pdof_degreesnumberPrincipal Direction of Force in degrees
crash_pulse_min_msnumberTime at peak acceleration in milliseconds
crash_pulse_max_msnumberTime at final maximum in milliseconds
calculated_atstringISO 8601 timestamp when values were calculated

Understanding Delta-V

Delta-V (ΔV) is the change in velocity experienced by a vehicle during a collision. It's a key metric for:

  • Crash severity assessment: Higher delta-v indicates a more severe crash
  • Biomechanics analysis: Used to calculate forces on occupants
  • Expert reports: Standard metric in accident reconstruction

Delta-V Min vs Max

  • delta_v_min: The delta-v at the moment of peak acceleration
  • delta_v_max: The final maximum delta-v at the end of the crash pulse

In most crashes, delta_v_max is slightly higher than delta_v_min.

Calculation Methods

MethodDescription
mlMachine learning analysis of vehicle damage photos
edrEvent Data Recorder (EDR) data from vehicle black box
vectorVector sum calculation combining multiple sources
hybridCombined ML and EDR analysis

Principal Direction of Force (PDOF)

The PDOF indicates the direction from which the primary crash force came, measured in degrees:

DegreesDirection
Front
90°Right side
180°Rear
270°Left side

Null State

crash_parameters is null until delta-v calculation completes:

{
"vehicles": [
{
"id": "veh_abc123",
"role": "plaintiff",
"crash_parameters": null // Not yet calculated
}
]
}

Calculation Triggers

Delta-v calculation is automatically triggered when:

  1. Vehicle images uploaded: When damage photos are linked to a vehicle
  2. Report creation: When creating a report with POST /api/reports
  3. Manual analysis: Via the web UI

Example: Checking Crash Parameters

curl -X GET "https://api.silentwitness.ai/api/cases/case_abc123" \
-H "X-API-Key: $API_KEY" \
| jq '.data.case.vehicles[0].crash_parameters'

Response when calculated:

{
"delta_v_min": 8.5,
"delta_v_max": 12.3,
"delta_v_method": "ml",
"pdof_degrees": 180,
"crash_pulse_min_ms": 12,
"crash_pulse_max_ms": 100,
"calculated_at": "2024-01-15T12:00:00Z"
}
  • Vehicle - Parent object containing crash parameters
  • Case - Root object containing vehicles