UseDocumentation Index
Fetch the complete documentation index at: https://docs.cula.tech/llms.txt
Use this file to discover all available pages before exploring further.
Amount for data points that pair a number with a unit:
type: "amount", such as incoming biomass weight, output volume, or energy use.
Amount bases and units
For amount data point configs,amount_base defines the accepted units. You can submit any unit listed for that base across metric, imperial, and US customary systems.
amount_base | Accepted unit values | Description |
|---|---|---|
weight | kg, t, lbs, shortton | Mass measurements |
volume | l, m3, foot^3, yard^3 | Volume measurements |
temperature | celsius | Temperature readings |
watt_hours | kWh | Energy measurements |
Submit the unit you have
You do not need to convert values to the site’s unit system before writing them. For a weight data point, all of these values are valid:Valid weight amounts
Validation
Amount values are checked against these rules:- Unit must match the base. The submitted
unitmust belong to the data point’samount_base(see table above). - Value must be a finite number. Non-finite values (
NaN,Infinity) are rejected. - Range bounds are optional. A data point config can declare
minand/ormaxAmountbounds. If present, the submitted value is checked against those thresholds.
Example config with validation bounds
Discovering valid units from configs
Read the config version and inspectamount_base on each type: "amount" data point config:
amount_base is weight, this data point accepts kg, t, lbs, or shortton. Submit the unit your system produces.
For a full walkthrough of reading configs and creating runtime resources, see Runtime and config layer.