Math & Numbers
Saturated pressure ↔ temperature lookup for common HVAC refrigerants via the Antoine fit ln(P) = A − B/(T_C + C): R-22 (HCFC-22), R-134a (HFC-134a), and R-410A (R-32/R-125 near-azeotropic blend). Coefficients fitted against the ASHRAE Handbook / NIST REFPROP saturation tables. Two modes: solve saturation pressure from temperature, or solve saturation temperature from pressure. Pressure may be absolute or gauge (atmospheric default 1.01325 bar) in bar/MPa/kPa/PSI; temperature in °C/K/°F. Engineering estimate only — does not replace the manufacturer's P-T chart.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/refrigerant-pressure-temperature' \
-H 'Content-Type: application/json' \
-d '{"refrigerant":"R410A","mode":"pFromT","temperature":7,"tempUnit":"°C","pressure":0,"pressureForm":"absolute","pressureUnit":"bar","atm":1.01325,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/refrigerant-pressure-temperature| Name | Type | Required | Description |
|---|---|---|---|
| refrigerant | select | No | Refrigerant. Coefficients fitted against ASHRAE/NIST saturation tables. |
| mode | select | No | Solve saturation pressure from temperature, or saturation temperature from pressure. |
| temperature | number | No | Saturation temperature, in the selected Temperature Unit. Used when Input Type = pressure from temperature. |
| tempUnit | select | No | — |
| pressure | number |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-refrigerant-pressure-temperature": {
"name": "refrigerant-pressure-temperature",
"description": "Saturated pressure ↔ temperature lookup for common HVAC refrigerants via the Antoine fit ln(P) = A − B/(T_C + C): R-22 (HCFC-22), R-134a (HFC-134a), and R-410A (R-32/R-125 near-azeotropic blend). Coefficients fitted against the ASHRAE Handbook / NIST REFPROP saturation tables. Two modes: solve saturation pressure from temperature, or solve saturation temperature from pressure. Pressure may be absolute or gauge (atmospheric default 1.01325 bar) in bar/MPa/kPa/PSI; temperature in °C/K/°F. Engineering estimate only — does not replace the manufacturer's P-T chart.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=refrigerant-pressure-temperature",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "refrigerant-pressure-temperature",
"arguments": {
"refrigerant": "R410A",
"mode": "pFromT",
"temperature": 7,
"tempUnit": "°C",
"pressure": 0,
"pressureForm": "absolute",
"pressureUnit": "bar",
"atm": 1.01325,
"decimalPlaces": 4
}
}
}| Saturation pressure, in the selected Pressure Unit. Used when Input Type = temperature from pressure. |
| pressureForm | select | No | — |
| pressureUnit | select | No | — |
| atm | number | No | Local atmospheric pressure in bar (0.5–1.5). Used to convert gauge ↔ absolute. Default 1.01325 bar (sea level). |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]