Math & Numbers
Conversão pressão-temperatura de saturação de refrigerantes comuns via ln(P)=A−B/(T+C): R-22 (HCFC-22), R-134a (HFC-134a), R-410A (mistura R-32/R-125 quase-azeotrópica). Coeficientes ajustados às tabelas ASHRAE/NIST REFPROP. Dois modos: P desde T ou T desde P. Pressão absoluta ou manométrica (atm. 1,01325 bar), unidades bar/MPa/kPa/PSI; temperatura °C/K/°F. Apenas estimativa de engenharia.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/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}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/refrigerant-pressure-temperature| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| refrigerant | select | Não | Refrigerant. Coefficients fitted against ASHRAE/NIST saturation tables. |
| mode | select | Não | Solve saturation pressure from temperature, or saturation temperature from pressure. |
| temperature | number | Não | Saturation temperature, in the selected Temperature Unit. Used when Input Type = pressure from temperature. |
| tempUnit | select | Não | — |
| pressure | number |
Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-refrigerant-pressure-temperature": {
"name": "refrigerant-pressure-temperature",
"description": "Conversão pressão-temperatura de saturação de refrigerantes comuns via ln(P)=A−B/(T+C): R-22 (HCFC-22), R-134a (HFC-134a), R-410A (mistura R-32/R-125 quase-azeotrópica). Coeficientes ajustados às tabelas ASHRAE/NIST REFPROP. Dois modos: P desde T ou T desde P. Pressão absoluta ou manométrica (atm. 1,01325 bar), unidades bar/MPa/kPa/PSI; temperatura °C/K/°F. Apenas estimativa de engenharia.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=refrigerant-pressure-temperature",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"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 | Não | — |
| pressureUnit | select | Não | — |
| atm | number | Não | Local atmospheric pressure in bar (0.5–1.5). Used to convert gauge ↔ absolute. Default 1.01325 bar (sea level). |
| decimalPlaces | number | Não | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Dúvidas ou problemas? Contate [email protected]