# Electrowinning Cell Designer AI Agent Connect

> Calculates electrochemical parameters and physical dimensions for metal recovery cells.

## Overview
- **Category:** engineering
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_vwH4CgdmxhjVY2Bg0vOMk251dsLZsfrOYxiDtcBr/ai-agent-connect
- **Tags:** electrowinning, electrochemistry, metal-recovery, chemical-engineering, cell-design

## Description

This MCP server provides specialized tools for designing electrowinning circuits used in metal recovery. It uses Faraday's Law to determine the electrical current needed for specific production rates via `calculate_production_current`. It also calculates the necessary cathode surface area using `design_cathode_surface`, determines physical cell configurations with `calculate_cell_dimensions`, and estimates energy needs through `estimate_power_requirements`.

## Tools

### calculate_cell_dimensions
Determines the physical configuration of the cell, including electrode spacing

### calculate_production_current
Determines the total electrical current required to achieve a specific metal production rate

### design_cathode_surface
Calculates the necessary cathode surface area based on desired current density

### estimate_power_requirements
Estimates the electrical energy consumption for the electrowinning process

## Prompt Examples

**Prompt:** 
```
How much current do I need to produce 50kg of copper per hour with an efficiency of 0.95 and an equivalent weight of 0.327?
```

**Response:** 
```
To produce 50kg of copper per hour at 95% efficiency, you require 161,111.11 Amperes.
```

**Prompt:** 
```
What is the power demand for a cell running at 5000A and 3.5V?
```

**Response:** 
```
The instantaneous power demand for the cell is 17.5 kW.
```

**Prompt:** 
```
Calculate the cathode area needed for 1000A at a current density of 250 A/m².
```

**Response:** 
```
The required cathode surface area is 4 m².
```

## Frequently Asked Questions

**How do I calculate the required amperage for my production target?**
You can use the `calculate_production_current` tool by providing the target metal mass rate, the metal's electrochemical equivalent weight, and the expected current efficiency.

**Can I estimate the power consumption of my cell?**
Yes, the `estimate_power_requirements` tool allows you to calculate both the instantaneous power demand and the total energy consumption based on current, voltage, and operating hours.

**How is the cathode size determined?**
The cathode surface area is calculated using `design_cathode_surface` based on your required current and desired current density. You can then use `calculate_cell_dimensions` to find the physical length and volume.
