# Rider Impact Velocity Engine AI Agent Connect

> High-precision kinematic engine for calculating water impact profiles.

## Overview
- **Category:** simulation
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_9UrAhBEfK5yMk0Xnep6wU7JYxDnhhgeXTZM0JHSm/ai-agent-connect
- **Tags:** physics, kinematics, aerodynamics, impact, simulation

## Description

This MCP server provides high-precision kinematic calculations for riders falling toward water. It accounts for aerodynamic drag, gravity, and body orientation to determine the exact physical conditions at the moment of contact. Use `calculate_impact_profile` to find impact velocity, angle, and energy dissipation, or `get_drag_coefficient_for_position` to understand how different body orientations affect air resistance. It is an essential tool for analyzing descent physics and impact intensity.

## Tools

### calculate_energy_dissipation_by_mass
Calculate the kinetic energy dissipated upon impact based on rider mass

### calculate_impact_profile
Calculate the exact physical conditions at the moment of water impact

### get_drag_coefficient_for_position
Determine the aerodynamic properties of a specific body position

### predict_velocity_at_height
Predict the rider speed and angle at a specific intermediate height

## Prompt Examples

**Prompt:** 
```
What will be the impact velocity for a 50m fall starting at 5m/s with a tucked position?
```

**Response:** 
```
The impact velocity for a 50m fall in a tucked position is 28.4 m/s.
```

**Prompt:** 
```
How much energy is dissipated if a 75kg rider hits the water at 30m/s?
```

**Response:** 
```
The energy dissipation for a 75kg rider at 30m/s is 33,750 Joules.
```

**Prompt:** 
```
What is the drag coefficient for an extended body position?
```

**Response:** 
```
The drag coefficient for an extended position is 1.2 with a cross-sectional area of 0.7 m².
```

## Frequently Asked Questions

**How does body position affect the results?**
Body position changes the drag coefficient and cross-sectional area. A 'tucked' position reduces drag, while an 'extended' position increases it, directly impacting the final `impactVelocity`.

**Can I calculate energy dissipation if I know the rider's mass?**
Yes, you can use the `calculate_energy_dissipation_by_mass` tool to determine the total kinetic energy in Joules transferred to the water based on the impact velocity and mass.

**What information is needed for a full impact profile?**
To use `calculate_impact_profile`, you need the fall height, initial velocity, initial angle of descent, and the rider's body position.
