estimate_curing_time
Determine concrete or coating curing time from daily temperatures using the Nurse-Saul maturity method. Returns ready date or capped flag when temperature data is too short.
Instructions
Estimate how long a concrete or coating work type needs to cure under a given sequence of daily temperatures, using the Nurse-Saul maturity method. Use this when a work type has a curing stage and cold weather may extend it beyond the nominal duration. Returns the ready date, or capped=true when the supplied temperature sequence is too short to reach the required maturity. Fails with no_curing_stage for work types that have no curing stage at all.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| capped | Yes | True if the supplied temperature sequence was too short to reach required_maturity. | |
| work_code | Yes | The work type curing was estimated for. | |
| ready_date | Yes | Date the work becomes ready, or null if not reached within the supplied days. | |
| daily_breakdown | Yes | Per-day maturity accounting. Truncated at the ready day if one was found; includes every supplied day if capped is true. | |
| effective_hours | Yes | Elapsed hours (in whole days) needed to reach the ready date, or covered by the supplied days if capped. | |
| required_maturity | Yes | Target Nurse-Saul maturity in degree-Celsius-hours. | |
| accumulated_maturity | Yes | Maturity actually accumulated over the supplied days. |