# Slab Thickness Design AI Agent Connect

> Calculates required slab thickness, reinforcement, and deflection compliance.

## Overview
- **Category:** construction
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_u3H3BfOViPkMJYpWSES04MLfT3kxGss3ioPY2VW5/ai-agent-connect
- **Tags:** concrete, slab, structural-engineering, deflection, reinforcement

## Description

This MCP server provides structural engineering tools to determine concrete slab requirements. It calculates minimum thickness using span-to-depth ratios, determines steel reinforcement needs based on bending moments, and validates deflection compliance. Engineers can also use `simulate_edge_condition_impact` to see how fixed or free edges affect the design.

## Tools

### analyze_reinforcement_needs
Determines the amount of steel reinforcement required to support the bending moments generated by the loads

### calculate_minimum_thickness
Determines the baseline thickness required to satisfy span-to-depth ratio requirements and deflection limits

### simulate_edge_condition_impact
Evaluates how different edge constraints (like fixed vs. free edges) change the required thickness or reinforcement

### verify_deflection_compliance
Validates whether a specific slab design (thickness and span) will stay within the user's allowed deflection limits

## Prompt Examples

**Prompt:** 
```
What is the minimum thickness for a 5m simply supported slab with a 10mm deflection limit?
```

**Response:** 
```
The minimum thickness required for a 5m simply supported slab to meet a 10mm deflection limit is 250mm.
```

**Prompt:** 
```
Calculate reinforcement for a 200mm thick slab, 4m span, 5kN/m² live load, and 30MPa concrete.
```

**Response:** 
```
The required steel area is 450 mm²/m with a moment capacity of 12.5 kNm.
```

**Prompt:** 
```
Will a 150mm thick slab with a 3m span and 4kN/m² load comply with a 15mm deflection limit?
```

**Response:** 
```
Yes, the design is compliant. The actual deflection is 12.4mm, leaving a margin of 2.6mm.
```

## Frequently Asked Questions

**How do I calculate the minimum thickness?**
Use the `calculate_minimum_thickness` tool by providing the span, support type, and your desired deflection limit.

**Can I check if my slab design is safe for deflection?**
Yes, use `verify_deflection_compliance` to compare your slab's actual deflection against your specified limit.

**How does edge condition affect my design?**
You can use `simulate_edge_condition_impact` to evaluate how constraints like fixed or free edges change thickness and moment distribution.
