Μετάβαση στο περιεχόμενο
GET /v1/solidification-time

Chvorinov solidification time

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/casting-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}