Terminal.skills
Skills/architectural-dimensions
>

architectural-dimensions

Reference for architectural dimensions, proportions, and building codes for AI-generated 3D/2D models. Use when: generating floor plans, creating 3D buildings, validating architectural designs, ensuring correct human-scale proportions in models.

#architecture#dimensions#floor-plan#3d#building
terminal-skillsv1.0.0
Works with:claude-codeopenai-codexgemini-clicursor
Source

Usage

$
✓ Installed architectural-dimensions v1.0.0

Getting Started

  1. Install the skill using the command above
  2. Open your AI coding agent (Claude Code, Codex, Gemini CLI, or Cursor)
  3. Reference the skill in your prompt
  4. The AI will use the skill's capabilities automatically

Example Prompts

  • "Create a responsive landing page layout following our brand guidelines"
  • "Review this component for accessibility issues and suggest fixes"

Information

Version
1.0.0
Author
terminal-skills
Category
Design
License
Apache-2.0

Documentation

Overview

Authoritative dimensional standards for AI agents generating or validating 3D/2D architectural models. All dimensions follow international best practices and common building codes (ISO, IBC, Eurocode). All values are in meters (m) unless stated otherwise.

Instructions

When generating or validating any building model, apply these dimensional standards in order:

1. Ceiling Heights

Space TypeMinimumStandardLuxury
Residential habitable room2.4 m2.7 m3.0 m
Residential corridor/bathroom2.1 m2.4 m2.7 m
Commercial office2.7 m3.0-3.6 m4.0 m
Retail/showroom3.5 m4.0-5.0 m6.0 m
Industrial/warehouse4.5 m6.0-8.0 m12.0 m+

Never generate a habitable room with ceiling height < 2.4 m. Structural floor-to-floor height = ceiling height + 0.3-0.4 m for slab thickness.

2. Wall Thicknesses

Wall TypeThickness
Interior partition (non-load-bearing)0.10-0.15 m
Interior load-bearing0.20 m minimum
Exterior wall (timber/light frame)0.14-0.20 m
Exterior wall (masonry)0.20-0.35 m
Exterior wall (reinforced concrete)0.20-0.40 m

3. Doors

Door TypeWidthHeight
Standard interior0.900 m2.100 m
Bathroom/WC0.800 m2.100 m
Main entry/exterior0.900-1.000 m2.100-2.400 m
Double door (pair)1.200-1.800 m2.100 m
Accessible (wheelchair)0.900 m min2.100 m

Door frame opening = leaf width + 100 mm each side. Minimum 100 mm clearance from door edge to adjacent wall corner. Door sill height is always 0 (at floor level).

4. Windows

Window TypeSill HeightWindow Height
Standard residential0.900 m1.200-1.500 m
Low sill (living room)0.300-0.600 m1.500-1.800 m
Floor-to-ceiling0.100 mceiling height - 0.2 m
High window (bathroom)1.500-1.800 m0.400-0.600 m

Every habitable room must have at least one window. Minimum window area >= 10% of floor area. Window head height should align with door head height (2.100-2.400 m).

5. Stairs

ParameterMinimumIdealMaximum
Riser height0.150 m0.175 m0.190 m
Tread depth0.250 m0.280 m0.350 m
Stair width (residential)0.900 m1.000 m--
Headroom2.000 m2.100 m--

Comfort rule: 2R + T = 600-630 mm. Number of risers = ceiling height / riser height (round to integer).

6. Room Sizes (Residential)

RoomMinimumTypicalGenerous
Bedroom (single)7.2 m210.5 m214 m2
Bedroom (master)10.5 m218 m227.5 m2
Bathroom (full)3.15 m25 m28.75 m2
Kitchen7.2 m212 m220 m2
Living room15.75 m227 m242 m2
Corridor/hallway0.9 m wide1.0-1.2 m1.5 m

7. Human Scale Reference

ReferenceDimension
Average adult height1.75 m
Eye level (standing)1.65 m
Counter height (kitchen)0.90 m
Dining table height0.73-0.76 m
Desk height0.72-0.75 m
Seat height (chair)0.43-0.46 m
Wheelchair width0.70 m, turn radius 1.50 m

8. Default Values for Code Generation

typescript
const DEFAULTS = {
  ceilingHeight: 2.7,
  wallThicknessInterior: 0.10,
  wallThicknessExterior: 0.20,
  slabThickness: 0.25,
  floorToFloor: 3.0,
  doorWidth: 0.9,
  doorHeight: 2.1,
  windowSillHeight: 0.9,
  windowHeight: 1.2,
} as const;

9. Validation Checks

Before finalizing any model, verify:

CheckExpected Range
Floor-to-floor height2.7-4.0 m (residential 3.0 m typical)
Building footprint density30-60% of site for residential
Window-to-wall ratio15-40% (residential), 40-80% (commercial)
Circulation area ratio15-25% of total floor area
Bedrooms vs bathrooms1 bathroom per 2 bedrooms minimum

Hard errors to flag: ceiling height < 2.1 m, exterior wall < 0.14 m thick, door width < 0.7 m, door height < 1.9 m, corridor width < 0.9 m, habitable room without window, no exterior exit door on any level.

Examples

Example 1: Validate a Residential Floor Plan

Given a 3-bedroom apartment at 85 m2:

  • Ceiling height: 2.7 m (standard residential)
  • Exterior walls: 0.20 m (masonry default)
  • Interior partitions: 0.10 m
  • Master bedroom: 14 m2 with 1.2 m x 1.2 m window at 0.9 m sill -- passes minimum 10.5 m2, has window
  • Kitchen: 12 m2 with 1.0 m x 1.2 m window -- passes minimum 7.2 m2
  • Corridor: 1.0 m wide -- passes minimum 0.9 m
  • All doors: 0.9 m x 2.1 m standard, bathroom doors 0.8 m x 2.1 m
  • Entry door: 1.0 m x 2.1 m on exterior wall
  • Result: all checks pass

Example 2: Calculate Stair Geometry for 2.7 m Ceiling

  • Target riser: 0.175 m, tread: 0.280 m
  • Number of risers: 2700 / 175 = 15.4, round to 16
  • Adjusted riser: 2700 / 16 = 168.75 mm (within 150-190 range)
  • Comfort check: 2(168.75) + 280 = 617.5 mm (within 600-630)
  • Number of treads: 16 - 1 = 15
  • Horizontal run: 15 x 0.280 = 4.200 m
  • Stair width: 1.0 m (residential standard)
  • Headroom clearance: 2.1 m minimum verified

Guidelines

  • Always use meters as the base unit for all dimensions
  • When in doubt between minimum and standard values, use standard
  • Exterior walls default to 0.20 m unless project specifies otherwise
  • Interior partitions default to 0.10 m
  • Ceiling height defaults to 2.7 m for residential
  • Every habitable room must have natural light (window area >= 10% of floor area)
  • Validate all openings fit within their host wall with 100 mm edge clearance
  • For accessibility compliance, use 0.900 m minimum door width and 1.200 m corridor width
  • Cross-reference room dimensions against both minimum area and minimum width requirements