# Surface Area Measurement AI Agent Connect

> Calculate specific surface area and monolayer capacity using BET isotherm analysis.

## Overview
- **Category:** science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_r3vkx6zLRsR0DMT1IJ5vYA1xZSb4PMOMtIFCYjaR/ai-agent-connect
- **Tags:** bet-theory, surface-area, isotherm, adsorption, material-science

## Description

This MCP server provides specialized tools for analyzing adsorption isotherms using Brunauer-Emmett-Teller (BET) theory. It allows AI agents to determine the specific surface area of materials by processing gas adsorption data. Key capabilities include using `get_bet_constants` to retrieve physical properties for gases like nitrogen, `calculate_linear_bet_region` to identify valid pressure ranges, `compute_bet_parameters` to find the C constant and monolayer capacity, and `calculate_specific_surface_area` to produce the final surface area measurement in m²/g.

## Tools

### get_bet_constants
g., "nitrogen", to get its molecular cross-sectional area and saturation vapor pressure.

Retrieve physical constants for specific gases used in adsorption experiments

### calculate_linear_bet_region
Identify the optimal range of relative pressure (P/P0) for the BET equation

### calculate_specific_surface_area
Convert monolayer capacity into specific surface area

### compute_bet_parameters
Calculate fundamental BET parameters (C constant and Monolayer Capacity)

## Prompt Examples

**Prompt:** 
```
What are the physical constants for nitrogen?
```

**Response:** 
```
For nitrogen, the molecular cross-sectional area is 0.162 nm² and the saturation vapor pressure is 101325 Pa.
```

**Prompt:** 
```
Calculate the specific surface area for a 0.5g sample with a monolayer capacity of 0.002 moles and a molecular area of 0.162e-18 m².
```

**Response:** 
```
The calculated specific surface area is 243.6 m²/g.
```

**Prompt:** 
```
Find the linear BET region for these relative pressures: [0.05, 0.1, 0.15, 0.2, 0.25] and adsorption amounts: [0.01, 0.02, 0.03, 0.04, 0.05].
```

**Response:** 
```
The valid linear range is between 0.05 and 0.25 with an R-squared value of 0.999.
```

## Frequently Asked Questions

**What is BET theory?**
BET (Brunauer-Emmett-Teller) theory is a physical model used to determine the specific surface area of particulate solids by measuring how gas molecules adsorb onto the surface at various pressures.

**Which gases are supported?**
The server supports standard gases used in adsorption experiments, such as nitrogen, argon, and carbon dioxide, via the `get_bet_constants` tool.

**How do I calculate the final surface area?**
You can use the `calculate_specific_surface_area` tool by providing the monolayer capacity, the molecular cross-sectional area, and the sample mass.
