Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions examples/example35-pmp11282-isolated-dcdc.fixture.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import type { CircuitJson } from "circuit-json"
import { SchematicViewer } from "lib/components/SchematicViewer"
import circuitJson from "./pmp11282-isolated-dcdc.circuit.json"

/**
* Visual reproduction from the source-derived PMP11282 isolated DC/DC TSX.
*
* The fixture intentionally uses the compiled Circuit JSON so this repository
* exercises only viewer/SVG behavior. In particular, the generic component
* bodies used for the transformer, coupled inductor, optocouplers, and dual
* diodes make their pin labels and component text crowd or escape the yellow
* schematic boxes at a full-sheet scale.
*
* Trace routing and fallback net-label generation are reproduced separately in
* schematic-trace-solver; this viewer fixture preserves their rendered output.
*/
export default () => (
<SchematicViewer
circuitJson={circuitJson as CircuitJson}
containerStyle={{ width: "100vw", height: "100vh" }}
/>
)
Loading
Loading