Math & Numbers
Calcula o ponto de orvalho do ar pela equação de Magnus: P_ws(T)=0,6108·exp(17,27·T/(T+237,3)), P_w=φ·P_ws, T_orvalho=237,3·ln(P_w/0,6108)/(17,27−ln(P_w/0,6108)). Retorna também P_ws, P_w e umidade absoluta ρ_v. Três entradas: UR φ (natural), bulbo úmido natural T_w (August) ou aspirado T_wa (Assmann). Temp. em °C/K/°F; saída em °C.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/dew-point-calculator-hvac' \
-H 'Content-Type: application/json' \
-d '{"dryBulb":25,"tempUnit":"°C","humidityMode":"rh","humidityValue":50,"pressure":101.325,"pressureUnit":"kPa","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/dew-point-calculator-hvac| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| dryBulb | number | Sim | Dry-bulb (ambient air) temperature, in the selected Temperature Unit. |
| tempUnit | select | Não | — |
| humidityMode | select | Não | What the Humidity Value represents: relative humidity (φ), August natural-ventilated wet-bulb (T_w), or aspirated/Assmann wet-bulb (T_wa). |
| humidityValue | number | Sim | Value of the selected Humidity Input Mode. RH in % (0–100); wet-bulb temperatures in the selected Temperature Unit. |
| pressure |
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-dew-point-calculator-hvac": {
"name": "dew-point-calculator-hvac",
"description": "Calcula o ponto de orvalho do ar pela equação de Magnus: P_ws(T)=0,6108·exp(17,27·T/(T+237,3)), P_w=φ·P_ws, T_orvalho=237,3·ln(P_w/0,6108)/(17,27−ln(P_w/0,6108)). Retorna também P_ws, P_w e umidade absoluta ρ_v. Três entradas: UR φ (natural), bulbo úmido natural T_w (August) ou aspirado T_wa (Assmann). Temp. em °C/K/°F; saída em °C.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=dew-point-calculator-hvac",
"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": "dew-point-calculator-hvac",
"arguments": {
"dryBulb": 25,
"tempUnit": "°C",
"humidityMode": "rh",
"humidityValue": 50,
"pressure": 101.325,
"pressureUnit": "kPa",
"decimalPlaces": 4
}
}
}| number |
| Não |
| Total atmospheric pressure P, in the selected Pressure Unit. Default 101.325 kPa (sea level). |
| pressureUnit | select | Não | — |
| 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]