route_l

photonforge.parametric.route_l(*, port1=None, port2=None, radius=None, bend=None, straight_kwargs=None, technology=None, name=None, route_model=None, bundle_model=None)[source]

Route the connection between orthogonal ports.

Parameters:
  • port1 (Port | tuple[Reference, str] | tuple[Reference, str, int] | Sequence[Port | tuple[Reference, str] | tuple[Reference, str, int]] | None) – First port to be connected. The port can be specified as a photonforge.Port or as a tuple including a photonforge.Reference, the port name, and the repetition index (optional, only for array references). A sequence of ports can be used for bundle routing.

  • port2 (Port | tuple[Reference, str] | tuple[Reference, str, int] | Sequence[Port | tuple[Reference, str] | tuple[Reference, str, int]] | None) – Second port to be connected. A sequence of ports can be used for bundle routing (with same length as port1).

  • radius (Annotated[float, exclusiveMinimum=0, units='μm'] | None) – Radius used for bends.

  • bend (Component | Sequence[Component] | None) – 90° bend to be used for routing. If the bundle has different port specifications, a sequence of bends (one for each specification) must be provided. If None, the default parametric bend will be used.

  • straight_kwargs (Annotated[dict[str, Any], _] | None) – Keyword arguments for straight().

  • technology (Technology | None) – Component technology. If None, the default technology is used.

  • name (str | None) – Component name.

  • route_model (Model | None) – Model to be used with each route sub-component. If None a photonforge.CircuitModel is used.

  • bundle_model (Model | None) – Model to be used with the top-level route component. If None a photonforge.CircuitModel is used.

Returns:

Component with the route, including ports and model.

Return type:

Component

bends = [
    pf.parametric.bend(angle=90, radius=5, port_spec="Strip", euler_fraction=0.5),
    pf.parametric.bend(angle=90, radius=10, port_spec="Rib", euler_fraction=0.5),
]

ports1 = [pf.Port((30, 8), 0, "Strip"), pf.Port((40, 0), 0, "Rib")]

ports2 = [pf.Port((5, 40), 90, "Strip"), pf.Port((0, 42), 90, "Rib")]

component = pf.parametric.route_l(port1=ports1, port2=ports2, bend=bends)
route_l