ROOMDENSITY: Room density
The ROOMDENSITY entity: Room power density classification tiers with W/sq ft and kW/rack ranges for capacity planning.
ROOMDENSITY definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches ROOMDENSITY.Entity properties
| Property | Value |
|---|---|
| Entity code | ROOMDENSITY |
| Display name | Room density |
| Plural | Room densities |
| Level | 250 |
Use cases
ROOMDENSITY is a lookup entity referenced by ROOM (as density) to classify the power density tier of a data hall. Beyond name and description, it defines density ranges in two units: watts per square foot (minWattsSqft, maxWattsSqft) and kilowatts per rack (minKwPerRack, maxKwPerRack). These dual metrics serve different planning perspectives: W/sq ft for facility-level cooling design, kW/rack for customer provisioning and SLA definition.
Typical tiers range from low density (~3-5 kW/rack) through medium (~8-15 kW/rack) to high density (~20-40+ kW/rack). The color field enables visual heat-map overlays on floor plans. Uses a flat definition structure with grid view.
Fields
Room density
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
minWattsSqft | number | Minimum power density in watts per square foot | |
maxWattsSqft | number | Maximum power density in watts per square foot | |
minKwPerRack | number | Minimum power density in kilowatts per rack | |
maxKwPerRack | number | Maximum power density in kilowatts per rack | |
color | color | Color for visualization | |
description | text (multi-line) | Description |
Relationships
- No declared relationships in the default definition.
Creating a Room density via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "ROOMDENSITY",
"level": 250,
"comboKey": "SUB:|ENT:",
"name": "Example name",
"minWattsSqft": 1,
"maxWattsSqft": 1,
"minKwPerRack": 1
}
Listing Room densities records
GET /v1/entities/ROOMDENSITY/SUB