# Hydrofoil Risk Assessment Engine AI Agent Connect

> Predict and mitigate ventilation and cavitation risks for hydrofoil vessels.

## Overview
- **Category:** hydrodynamics
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_G1pZzLzLunZ3KLpR9RhiuRl1rZu37oeAUkfYemDW/ai-agent-connect
- **Tags:** hydrofoil, ventilation, cavitation, marine-safety, vessel-stability

## Description

This MCP server provides high-fidelity risk assessment for hydrofoil operations. It allows AI agents to monitor and predict critical stability issues like ventilation and cavitation. Using tools like `calculate_ventilation_risk` and `check_cavitation_limits`, agents can determine safe speed thresholds, assess stability during maneuvers with `analyze_maneuver_stability`, and retrieve performance data via `get_design_performance_envelope`. This ensures safe vessel operation by providing actionable recovery instructions based on real-time environmental and design data.

## Tools

### analyze_maneuver_stability
Assesses how a planned change in direction (turn) will affect the current stability envelope

### calculate_ventilation_risk
Determines the immediate risk level of air being sucked into the hydrofoil

### check_cavitation_limits
Evaluates if the foil is operating in a regime where vapor bubbles will form on the foil surface

### get_design_performance_envelope
Retrieves the theoretical safety limits for a specific wing geometry

## Prompt Examples

**Prompt:** 
```
What is the ventilation risk for a foil traveling at 15 m/s with 40% mast immersion and a 50m turn radius?
```

**Response:** 
```
The ventilation risk score is 7. Your maximum safe speed is 12 m/s. Recommended action: Reduce speed immediately.
```

**Prompt:** 
```
Is my wing design 'Alpha-V1' safe at 20 m/s with 80% immersion?
```

**Response:** 
```
The cavitation risk score for 'Alpha-V1' at 20 m/s is 2. The safe operating limit is 25 m/s. You are operating safely.
```

**Prompt:** 
```
How will a turn with a 20m radius affect my stability at 10 m/s and 50% immersion?
```

**Response:** 
```
The stability impact is Critical. The recommended maximum radius to maintain stability at this speed is 45m.
```

## Frequently Asked Questions

**How does the engine calculate ventilation risk?**
The engine uses `calculate_ventilation_risk` to evaluate foil speed, mast immersion, turn radius, surface chop, and mast angle to produce a risk score and safe speed threshold.

**Can I check if my specific wing design is safe at high speeds?**
Yes, you can use `get_design_performance_envelope` to find the max design speed and `check_cavitation_limits` to evaluate cavitation risk for a specific wing design.

**What happens if the risk score is high?**
The tool provides a specific `recoveryAction`, such as reducing speed or increasing immersion, to return the vessel to a safe operating envelope.
