/v1/solidification-time
Chvorinov solidification time
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/casting-api/v1/solidification-time" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/casting-api/v1/solidification-time", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/casting-api/v1/solidification-time");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/casting-api/v1/solidification-time",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Chvorinov's rule sets how long a casting takes to freeze: t = B × (V/A)², where V/A is the casting modulus (volume ÷ cooling surface area) and B is the mould constant (~2–4 min/cm² for sand). A chunky part with a small surface for its volume cools slowly; a thin one freezes fast. Risers must have a larger modulus than the casting so they stay molten longer and feed the shrinkage — this is the number that sizes them.",
"inputs": {
"volume_cm3": 1000,
"surface_area_cm2": 600,
"mold_constant_min_cm2": 2
},
"casting_modulus_cm": 1.6667,
"solidification_time_min": 5.556
},
"meta": {
"timestamp": "2026-06-07T08:17:50.420Z",
"request_id": "906d1c54-e74e-40d2-8ea9-d393328fdb61"
},
"status": "ok",
"message": "Solidification time",
"success": true
}