Commit b184c5c
committed
re(RE-14.3): ArcWall record wire format decoded — 28 walls on Einhoven
Hex-dumped all 32 filtered ArcWall (tag 0x0191) records on Einhoven
Partitions/5. Wire format is fully deterministic.
Standard ArcWall record (292 B singleton, 568 B pair):
+0x00 u16 tag = 0x0191
+0x02 u16 filter_pad = 0x0000
+0x04 u32 fixed_header_0 = 0x00088004 (class-family marker)
+0x08 u32 count_version = 1 for standard, 3 for compound
+0x0c u32 type_code = 0x00000003
+0x10 u16 variant = 0x07fa standard, 0x0821 compound
+0x12 f64 x 6 = 6 doubles of wall geometry
+0x42 f64 x 6 = 6 doubles duplicate (diff coord system?)
+0x72 u8 trailer = 0x03
Record-count breakdown of the 32 occurrences:
- 1 index record (#0) : list of u32 IDs (manifest)
- 3 metadata records (#1-#3): contain schema constants 0x576, 0x1d94
(same constants RE-14.1 found in
HostObjAttr — cross-corpus coherence)
- 2 compound walls (#12, #13): variant 0x0821, embedded openings
- ~26 standard walls : variant 0x07fa, clean geometry
Net: 28 architectural wall elements decodable on Einhoven directly.
New hypotheses:
H14 (0.95) — records are self-describing by tag + variant, fixed
body per variant
H15 (0.9) — constants 0x88004, 0x576, 0x1d94 are schema-family IDs
stable across record types in the HostObj/ArcWall
family
H16 (0.75) — coord pairs = two 3D points (line-segment endpoints of
wall centerline)
Decisions:
D19 — Build elements::decoders::arc_wall as first concrete decoder
D20 — Build walker::iter_arc_walls() as RE-15 stand-in
D21 — Wire ArcWallRecord to IFCWALL in exporter
D22 — DEC-05 (IfcWall count > 0) is now unblocked
Synthesis: reports/element-framing/RE-14.3-synthesis.md with full
byte-level record layout, 10+ sample decodings, decoder sketch in
Rust, hypothesis set, open questions (coord semantics, variant enum,
wall-type lookup path).
Next concrete step: implement arc_wall.rs decoder + test on 28 records
+ emit 28 IFCWALL entities via exporter.1 parent 80d8e3f commit b184c5c
2 files changed
Lines changed: 430 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
0 commit comments