Skip to content

Orbit Perp Exit Perp Entry

A perpendicular exit (TOP on a horizontal flow) feeding another perpendicular entry. States its flow, grid cell and port sides explicitly so the orientation-equivalence oracle can rotate and reflect it, covering this seam shape in all eight orientations rather than the one the corpus happened to carry.

Mermaid source
examples/topologies/orbit_perp_exit_perp_entry.mmd
%%metro title: Orbit - Perpendicular Exit into Perpendicular Entry
%%metro style: dark
%%metro line: main | Main | #e63946
%%metro line: aux | Aux | #2db572
%%metro grid: intake | 0,0
%%metro grid: assemble | 1,0
%%metro grid: publish | 2,0
graph LR
subgraph intake [Intake]
%%metro direction: LR
%%metro exit: right | main,aux
i1[Fetch]
i2[Verify]
i1 -->|main,aux| i2
end
subgraph assemble [Assemble]
%%metro direction: LR
%%metro entry: left | main,aux
%%metro exit: top | main,aux
a1[Merge]
a2[Index]
a1 -->|main,aux| a2
end
subgraph publish [Publish]
%%metro direction: LR
%%metro entry: top | main,aux
p1[Render]
p2[Upload]
p1 -->|main,aux| p2
end
i2 -->|main,aux| a1
a2 -->|main,aux| p1
CLI command
Terminal window
nf-metro render examples/topologies/orbit_perp_exit_perp_entry.mmd -o orbit_perp_exit_perp_entry.svg
Rendered map
Orbit - Perpendicular Exit into Perpendicular Entry 1 2 3 Fetch Merge Render Verify Index Upload Main Aux created with nf-metro v2.0.0+dev