# Milk Cooling Load Calculator AI Agent Connect

> Calculate milk cooling loads, refrigeration sizing, and energy costs.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_1gGIoBgp1krlPmjKom8ltDgtecGm3JLeBfC50faH/ai-agent-connect
- **Tags:** dairy, cooling, refrigeration, energy, agriculture-tech

## Description

This MCP server provides technical tools for dairy farm management. It allows AI agents to determine the thermal requirements for cooling milk production. Use `calculate_cooling_load` to find the heat energy removal needed, `size_refrigeration_system` to determine appropriate equipment capacity, `estimate_energy_consumption` to project electrical usage, and `calculate_operating_costs` to estimate financial impact based on electricity rates.

## Tools

### calculate_cooling_load
Determines the total heat energy that must be removed from the milk

### calculate_operating_costs
Translates energy usage into financial expenditure

### estimate_energy_consumption
Calculates the total electrical energy required to perform the cooling

### size_refrigeration_system
Estimates the necessary capacity of the refrigeration unit

## Prompt Examples

**Prompt:** 
```
What is the cooling load for 5000kg of milk at 35°C that needs to reach 4°C in 4 hours, with 30% pre-cooling efficiency?
```

**Response:** 
```
The total cooling load required is 145.2 kW.
```

**Prompt:** 
```
I have a cooling load of 50 kW. What size refrigeration system do I need if I use a 1.2 safety factor?
```

**Response:** 
```
The recommended system capacity is 60 kW, with a peak load of 60 kW.
```

**Prompt:** 
```
Calculate the monthly energy cost for a system consuming 120 kWh per day at a rate of $0.15 per kWh.
```

**Response:** 
```
The daily cost is $18.00 and the monthly cost is $540.00.
```

## Frequently Asked Questions

**How do I calculate the required refrigeration capacity?**
First, use `calculate_cooling_load` with your production volume and temperature delta. Then, pass that result into `size_refrigeration_system` to get the recommended capacity.

**Can I account for pre-cooling efficiency?**
Yes, the `calculate_cooling_load` tool includes an optional parameter for pre-cooling efficiency to account for heat removed by plate coolers.

**How are operating costs calculated?**
You can use `calculate_operating_costs` by providing the daily energy consumption and your local electricity rate per kWh.
