# Reservoir Saturation Height Calculator AI Agent Connect

> Calculates water saturation profiles and transition zone thickness using capillary pressure data.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_IUDh20hzMGbfHwB5nJLxTbPfBmU7SZpqIdKUMsm0/ai-agent-connect
- **Tags:** reservoir, saturation, capillary-pressure, petroleum, geology

## Description

This MCP server provides specialized tools for reservoir engineering to model fluid distribution. It connects AI agents to physical reservoir properties, allowing for the calculation of water saturation at specific elevations, determining the thickness of the transition zone, and generating continuous saturation profiles. Use `get_saturation_at_height` for single points, `get_transition_zone_depth` to find the saturation change interval, `get_saturation_profile` for vertical profiles, and `get_hydrocarbon_distribution` to calculate hydrocarbon volumes based on pore volume and saturation.

## Tools

### get_saturation_at_height
Determines the specific water saturation at a single defined elevation

### get_saturation_profile
Generates a continuous list of saturation values across multiple elevations

### get_transition_zone_depth
Identifies the thickness of the zone where fluid saturation is actively changing

### get_hydrocarbon_distribution
Calculates the vertical distribution of oil or gas volume based on saturation

## Prompt Examples

**Prompt:** 
```
What is the water saturation at 5 meters above the FWL given a density difference of 0.05 and this capillary pressure data: {"0": 0.1, "0.5": 0.3, "1.0": 0.5}?
```

**Response:** 
```
The water saturation at 5 meters above the FWL is 0.5.
```

**Prompt:** 
```
Calculate the hydrocarbon volume at 10 meters if the pore volume per unit height is 0.2, density difference is 0.06, and saturation data is {"0.6": 0.2, "1.2": 0.4}?
```

**Response:** 
```
The hydrocarbon volume at 10 meters is 0.12.
```

**Prompt:** 
```
Find the thickness of the transition zone for a reservoir with irreducible water saturation of 0.2, density difference of 0.04, and data {"0.1": 0.8, "0.4": 0.2}?
```

**Response:** 
```
The transition zone thickness is 0.4 meters.
```

## Frequently Asked Questions

**What is the purpose of this MCP?**
It calculates water saturation profiles and hydrocarbon distributions relative to the Free Water Level (FWL) using capillary pressure data.

**How do I calculate the transition zone thickness?**
You can use the `get_transition_zone_depth` tool by providing the capillary pressure data, density difference, and the irreducible water saturation value.

**Can I generate a full vertical profile?**
Yes, the `get_saturation_profile` tool allows you to pass an array of heights to generate a continuous list of saturation values.
