← house

North Wall Eave

v1 AI approved Generated with ElixiFree

SIP-120 eave panel 12000×142×2700mm, level top, roof bearing. Patio door 2400mm@9m, corner window 1800mm@0. LVL splines NW/NE.

Dependencies

foundation.sole_plate_bearing

Interfaces Provided

corner_north_east () corner_north_west () body (component)
◉
Agent initialized (status: waiting_for_dependencies, action: check_dependencies)
◉
Provider: claude_code | Profile: balanced
◇
Received interface foundation.bearing_surface: %{name: "bearing_surface", type: nil, value: %{}, agent_id: "foundation"}
◉
All dependencies resolved, starting generation
◉
Refreshed placement from design spec (bbox %{"x" => 12000.0, "y" => 142.0, "z" => 2700.0})
◉
Generating v1
◉
[ElixiFree] active — code_module=elixifree.sip
◉
[ElixiFree] downgrading to claude-haiku-4-5-20251001 (builder API active)
○
Calling Claude (local subscription) for code generation (claude-haiku-4-5-20251001)...
◉
Generation token budget: max_tokens=12288, thinking_budget=0 (retry_count=0)
●
Received response ( tokens)
◉
Applied 2 deterministic .opening() call(s) from the design spec
◉
Applied the building graph's wall top profile: level, height=2.7e3
◉
Normalized Wall builder dimensions/orientation to local-frame contract
◆
s0_wall_e2_v1.py · 42 lines
from elixifree.domains.sip import Wall

# === ANCHOR POINTS ===
ANCHOR_TOP_FACE = (6.0e3, 71.0, 2.7e3)
ANCHOR_BOTTOM_FACE = (6.0e3, 71.0, 0.0)
ANCHOR_FRONT_FACE = (6.0e3, 0.0, 1350.0)
ANCHOR_BACK_FACE = (6.0e3, 142.0, 1350.0)
ANCHOR_LEFT_FACE = (0.0, 71.0, 1350.0)
ANCHOR_RIGHT_FACE = (1.2e4, 71.0, 1350.0)
# === END ANCHOR POINTS ===

# === PARAMETERS ===
SPAN = 12000       # mm — length along X
THICKNESS = 142    # mm — depth along Y
HEIGHT = 2700      # mm — height along Z
STOCK = "SIP-120"

# Window opening: 1800mm wide at corner (x=0)
CORNER_WINDOW_X = 0
CORNER_WINDOW_WIDTH = 1800
CORNER_WINDOW_HEIGHT = 1200
CORNER_WINDOW_Z = 800

# Door opening: 2400mm wide, centred at x=9000mm
PATIO_DOOR_WIDTH = 2400
PATIO_DOOR_X = 9000 - PATIO_DOOR_WIDTH / 2
PATIO_DOOR_HEIGHT = 2100
PATIO_DOOR_Z = 0

# Corner splines (LVL bearer grooves) at NW and NE ends
GROOVE_NW_X = THICKNESS / 2
GROOVE_NE_X = SPAN - THICKNESS / 2
# === END PARAMETERS ===

result = (Wall(span=12000.0, height=2700.0, stock="SIP-120")
    .inner_groove(x=GROOVE_NW_X)
    .inner_groove(x=GROOVE_NE_X)
    .opening(x=8950.0, z=0.0, width=2400.0, height=2100.0)
    .opening(x=0.0, z=600.0, width=1800.0, height=1500.0)
    .build())

result.add_to_doc("Body")
◉
[ElixiFree] ✓ generated script uses elixifree imports
●
Executing in FreeCAD...
◉
StepAnalyzer failed: FreeCAD could not read STEP file: FreeCAD exception thrown (File to load not existing or not readable) — skipping
●
FreeCAD execution succeeded
●
Exported: model.stl
◉
Generation succeeded and component was auto-approved (v1)
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
◉
Applied 2 deterministic .opening() call(s) from the design spec
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
v0.0.985