# Subsidence Prediction Model AI Agent Connect

> Predict surface subsidence and movement caused by underground mining activities.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_99r0zzAtg855Mg3cxa4KLdPyh4MkZLwRvOsSZdaW/ai-agent-connect
- **Tags:** subsidence, mining-impact, geology, geotechnical, surface-deformation

## Description

This MCP server provides technical tools for estimating surface deformation resulting from underground extraction. It allows users to calculate the peak vertical displacement using `calculate_max_subsidence`, visualize the subsidence trough with `generate_subsidence_profile`, estimate the total surface footprint via `estimate_affected_area`, and verify stability using `check_critical_width_threshold`. It is designed for geotechnical analysis and mining impact assessment.

## Tools

### calculate_max_subsidence
Determines the peak vertical displacement at the center of a mining panel

### check_critical_width_threshold
Determines if the current mining width is sufficient to cause surface movement

### estimate_affected_area
Calculates the total surface area impacted by mining-induced movement

### generate_subsidence_profile
Provides a set of displacement values across a distance from the center of the mine

## Prompt Examples

**Prompt:** 
```
What is the maximum subsidence for a Longwall mine with 3m thickness at 500m depth and rock stiffness of 50?
```

**Response:** 
```
The maximum subsidence for this mining configuration is 1.2 meters.
```

**Prompt:** 
```
Will a mining width of 40m cause surface movement at 300m depth with these rock properties?
```

**Response:** 
```
No, the current mining width is below the critical threshold, so the surface is expected to remain stable.
```

**Prompt:** 
```
Calculate the total area impacted by a mine with 100m width, 400m depth, and an angle of draw of 35 degrees.
```

**Response:** 
```
The total affected surface area is 15,420 square meters.
```

## Frequently Asked Questions

**How do I calculate the maximum surface sinking?**
Use the `calculate_max_subsidence` tool by providing the mining method, extraction thickness, depth, and rock stiffness.

**Can I see the shape of the subsidence trough?**
Yes, the `generate_subsidence_profile` tool provides a set of displacement values across distances to visualize the trough.

**How is the affected area determined?**
The `estimate_affected_area` tool calculates the total surface footprint based on the mining width, depth, and angle of draw.
