# Wettability & Contact Angle Analyzer AI Agent Connect

> Calculate surface energy, work of adhesion, and spreading coefficients using contact angle data.

## Overview
- **Category:** science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_AIvo8FqSuVEuU3ZkYuDtRE1P1x8c8xsjbPFUaakN/ai-agent-connect
- **Tags:** surface-science, wettability, contact-angle, surface-energy, physics

## Description

This MCP server provides specialized computational tools for surface science. It uses the Owens-Wendt and Fowkes models to determine the total surface energy and its dispersive and polar components from contact angle measurements. Users can calculate the work of adhesion and the spreading coefficient for specific liquid-solid pairs, and categorize the resulting wettability regime. Key tools include `calculate_surface_energy` for component breakdown, `calculate_adhesion_metrics` for adhesion strength, and `analyze_wettability_regime` for behavior classification.

## Tools

### analyze_wettability_regime
Categorizes the wettability behavior of a liquid-solid pair

### calculate_surface_energy
Determines the total surface energy and its component breakdown using the OWRK/Fowkes models

### calculate_adhesion_metrics
Calculates the work of adhesion and the spreading coefficient for a specific liquid on a known surface

### validate_measurement_consistency
Checks if the provided contact angle measurements and surface tension components are physically consistent with the OWRK model

## Prompt Examples

**Prompt:** 
```
Calculate the surface energy using two liquids: Water (total 72.8, dispersive 21.8, polar 51.0) and Diiodomethane (total 50.8, dispersive 50.8, polar 0.0) with contact angles of 45 and 10 degrees.
```

**Response:** 
```
The calculated total surface energy is 42.5 mN/m, with a dispersive component of 28.2 mN/m and a polar component of 14.3 mN/m.
```

**Prompt:** 
```
What is the spreading coefficient for a liquid with total surface tension 30, dispersive 25, and polar 5 on a solid with surface energy 50, dispersive 40, and polar 10, given a contact angle of 20 degrees?
```

**Response:** 
```
The spreading coefficient is 15.0 and the work of adhesion is 42.4 mN/m.
```

**Prompt:** 
```
Determine the wettability regime for a contact angle of 110 degrees and a spreading coefficient of -15.
```

**Response:** 
```
The wettability regime is Non-wetting.
```

## Frequently Asked Questions

**What models are used for surface energy calculation?**
The server implements the Owens-Wendt-Rabel-Kaelble (OWRK) and Fowkes models to solve for dispersive and polar components.

**How many liquids are required for surface energy determination?**
At least two liquids with known surface tension components are required to solve the OWRK equations via `calculate_surface_energy`.

**Can I check if my measurements are physically consistent?**
Yes, the `validate_measurement_consistency` tool checks if your contact angles and surface tension components align with the OWRK model.
