← house

East Wall Gable

v1 AI approved Generated with ElixiFree

Create East wall (edge 1), 5716.0x142.0x4432.1mm. eave_height 2782.0mm. ridge height 4432.1mm (duo-pitch gable end wall — this component MUST call .gable(ridge_height=4432.1) with this exact value; do NOT build a plain rectangular wall). Sole plate on foundation; SIP spline joins at south and north corners; gable rake carries no roof load Connects to foundation, s0_wall_e0, s0_wall_e2. Openings: window s0_e1_o3650: width=1800, height=1500, sill=600.0, centre_x=5100.0 — for each opening call .opening(x=<centre minus half its width>, z=<its sill>, width=<its width>, height=<its height>) on the builder, substituting that opening's own numbers; do NOT omit openings.

Dependencies

foundation.sole_plate_bearing

Interfaces Provided

outer_surface (planar_face) inner_surface (planar_face) 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" => 5716.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)
✖
AI provider "claude_code" request timed out while queued
✖
Max retries exhausted. Requesting human intervention.
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code
◉
Provider updated to claude_code
◉
Regeneration requested by user
◉
Refreshed placement from design spec (bbox %{"x" => 5716.0, "y" => 142.0, "z" => 2700.0})
◉
Refreshed placement from design spec (bbox %{"x" => 5716.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)
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
●
Received response ( tokens)
◉
Applied 1 deterministic .opening() call(s) from the design spec
◉
Normalized Wall builder dimensions/orientation to local-frame contract
◉
Removed a .gable(...) call the model added despite this storey having no gable data in the design spec
◆
s0_wall_e1_v1.py · 29 lines
from elixifree.domains.sip import Wall

# === ANCHOR POINTS ===
ANCHOR_TOP_FACE = (2858.0, 71.0, 2700.0)
ANCHOR_BOTTOM_FACE = (2858.0, 71.0, 0.0)
ANCHOR_FRONT_FACE = (2858.0, 0.0, 1350.0)
ANCHOR_BACK_FACE = (2858.0, 142.0, 1350.0)
ANCHOR_LEFT_FACE = (0.0, 71.0, 1350.0)
ANCHOR_RIGHT_FACE = (5716.0, 71.0, 1350.0)
# === END ANCHOR POINTS ===

# === PARAMETERS ===
SPAN = 5716.0           # mm — wall span along X
THICKNESS = 142.0       # mm — panel thickness along Y
EAVE_HEIGHT = 2782.0    # mm — rectangular part height (gable eave)
STOCK = "SIP-120"       # 142mm total thickness

# Window opening: centre_x=5100.0, width=1800, sill=600.0
WINDOW_X = 5100.0 - 1800.0 / 2  # = 4200.0
WINDOW_Z = 600.0                # sill height from ground
WINDOW_WIDTH = 1800.0
WINDOW_HEIGHT = 1500.0

# === BUILD ===
result = (Wall(span=5716.0, height=2700.0, stock="SIP-120")
    .opening(x=4200.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...
✖
FreeCAD execution failed: Traceback (most recent call last): File "/Users/briancunningham/elixicad/freecad/bin/../Mod/CadClaude/cadclaude_worker.py", line 267, in _exec_once exec(compile(script_source, "<cadclaude>", "exec"), {}) File "<cadclaude>", line 35, in <module> File "/Users/briancunningham/elixicad/freecad/Mod/CadClaude/elixifree/builder.py", line 129, in build self._validate() File "/Users/briancunningham/elixicad/freecad/Mod/CadClaude/elixifree/domains/sip.py", line 339, in _validate raise BuildError( elixifree.builder.BuildError: Opening 0 x-extent [4200.0, 6000.0] exceeds wall span 5716.0
◉
Retrying (attempt 2/4)
●
Received corrected script, re-executing...
●
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)
◉
Applied 1 deterministic .opening() call(s) from the design spec
●
Executing in FreeCAD...
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
v0.0.985