← Shed

Interior north-south partition

v1 AI approved Generated with ElixiFree

Timber-stud partition, 5716mm span × 122mm thick × 2700mm height. Butts into south and north wall inner faces via structural screws (#10 × 150mm) through OSB skins into studs. Interior door 1000×2100mm at centreline x=3600.

Dependencies

south_wall.partition_mount_surface north_wall.partition_mount_surface
◉
Agent initialized (status: waiting_for_dependencies, action: check_dependencies)
◉
Provider: claude_code | Profile: balanced
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
◉
Provider updated to claude_code / balanced
◇
Received interface north_wall.bearing_top_plate: %{name: "bearing_top_plate", type: nil, value: %{}, agent_id: "north_wall"}
◇
Received interface north_wall.corner_joint_east: %{name: "corner_joint_east", type: nil, value: %{}, agent_id: "north_wall"}
◇
Received interface north_wall.corner_joint_west: %{name: "corner_joint_west", type: nil, value: %{}, agent_id: "north_wall"}
◇
Received interface north_wall.partition_mount_surface: %{name: "partition_mount_surface", type: nil, value: %{}, agent_id: "north_wall"}
◇
Received interface south_wall.bearing_top_plate: %{name: "bearing_top_plate", type: nil, value: %{}, agent_id: "south_wall"}
◇
Received interface south_wall.corner_joint_east: %{name: "corner_joint_east", type: nil, value: %{}, agent_id: "south_wall"}
◇
Received interface south_wall.corner_joint_west: %{name: "corner_joint_west", type: nil, value: %{}, agent_id: "south_wall"}
◇
Received interface south_wall.partition_mount_surface: %{name: "partition_mount_surface", type: nil, value: %{}, agent_id: "south_wall"}
◉
All dependencies resolved, starting generation
◉
Refreshed placement from design spec (bbox %{"x" => 5716.0, "y" => 122.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
◆
partition_central_v1.py · 35 lines
import FreeCAD
from elixifree.domains.sip import Wall

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

# === PARAMETERS ===
SPAN = 5716.0        # mm — partition runs along X
THICKNESS = 122.0    # mm — depth/thickness along Y (SIP-100)
HEIGHT = 2700.0      # mm — height along Z
DOOR_WIDTH = 1000.0  # mm
DOOR_HEIGHT = 2100.0 # mm
DOOR_X = 3100.0      # mm — left edge (centreline at 3600 - 500)
DOOR_Z = 0.0         # mm — floor level
# === END PARAMETERS ===

# ElixiFree gap: Timber-stud construction (SIP-100 builder used as design-intent placeholder)
# Build interior partition wall with door opening
doc = FreeCAD.ActiveDocument or FreeCAD.newDocument("Partition")

result = (Wall(span=5716.0, height=2700.0, stock="SIP-100")
    .opening(x=0.0, z=0.0, width=1000.0, height=2100.0)
    .build())

result.add_to_doc("Body")

doc.recompute()
if FreeCAD.GuiUp:
    FreeCAD.Gui.ActiveDocument.ActiveView.fitAll()
◉
[ElixiFree gap] Timber-stud construction (SIP-100 builder used as design-intent placeholder)
◉
[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)
v0.0.985