← house

West Wall Lower Wing Gable

v1 AI approved Generated with ElixiFree

SIP-120 gable panel 3000×142×2700mm (eave 2782mm). Window 900mm@0.9m. Butts into e2/e4 inner faces. LVL splines SW/NW. 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).

Dependencies

foundation.sole_plate_bearing

Interfaces Provided

corner_north_west () corner_concave () 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" => 2716.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 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_e3_v1.py · 33 lines
from elixifree.domains.sip import Wall

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

# === PARAMETERS ===
SPAN = 2716.0          # mm — span along X
THICKNESS = 142.0      # mm — SIP-120 total thickness (Y)
EAVE_HEIGHT = 2700.0   # mm — rectangular body height (Z)
STOCK = "SIP-120"

# Window parameters (900mm wide at 900mm sill height)
WINDOW_WIDTH = 900.0
WINDOW_Z = 900.0
WINDOW_HEIGHT = 1800.0  # from sill to eave
WINDOW_X = (SPAN - WINDOW_WIDTH) / 2  # ~908mm, centered

# Corner spline groove at left edge (SW/NW)
GROOVE_X = THICKNESS / 2  # 71mm inset
# === END PARAMETERS ===

result = (Wall(span=2716.0, height=2700.0, stock="SIP-120")
    .inner_groove(x=GROOVE_X)
    .opening(x=900.0, z=900.0, width=900.0, height=1200.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
◉
Provider updated to claude_code / balanced
◉
Applied 1 deterministic .opening() call(s) from the design spec
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
v0.0.985