Variant management

From @ubruhin on Sat Mar 24 2018 14:56:22 GMT+0000 (UTC)

From @timhoeppner on March 23, 2018 23:1

Came across this project from a colleague at work and watched the video from FOSDEM. I’ve got to say, this project shows incredible potential. I think you nailed it on the head about why you need to start from scratch regarding library management and how it is so core to the software. It’s also refreshing to see the use of modern tools for development making the development barrier much lower than other open source CAD tools…

That aside, one thing that I find missing in many of the CAD tools is variant management. This more of a professional level feature but is something that I would really like to see in a set of free tools. My only other experience with a similar feature is in OrCAD CIS which is where I’m basing a lot of my ideas from. In case its not clear what I mean. I’m talking about configuration control for which parts should and should not be populated on a PCB. This would tie into BOM output as well as schematic generation. From my experience, we often develop PCBs that include certain features that can be selectively populated depending on the product model. This could also include having a variant for development and test which includes a bunch of test points that wouldn’t otherwise be included on a production assembly.

Here are a number of key points this feature would include:

  1. Separate window for managing variant configuration
    • Two-column layout
    • Left-side: Hierarchical tree view of variants, top-level items would be ones that you can actually generate a BOM or schematic from.
    • Right-side: List of parts associated with the selected variant. You would be able to organise which parts are populated or not in this view.
    • Variants can be dragged and dropped on the left side view to become children of a different variant
    • Variants can have a selection of parts and doesn’t need to include all parts in the design. This is useful to define parts that belong to a certain feature within the design.
  2. All designs would start with a default variant called “All” and all parts would be marked as populate.
  3. Context menu in the schematic editor for quickly marking components as populated or not populated for a specific variant. Multiple parts could be selected at the same time for this.
  4. The schematic editor would include a drop down to view the schematic with a certain variant applied. All components that are marked as not populated would appear greyed out for easy identification.
  5. PDF export of the schematic would automatically create PDFs for all top-level variants.
  6. BOM export would automatically create BOMs for all top-level variants.

I think that’s the gist of it. This is something that I would like to contribute to the project so I’m really just looking for some feedback.

Copied from original issue: LibrePCB/LibrePCB#245

Copied from original issue: https://github.com/LibrePCB/librepcb-rfcs/issues/12

1 Like

From @ubruhin on Sat Mar 24 2018 14:56:23 GMT+0000 (UTC)

From @dbrgn on March 24, 2018 11:27

There is a feature something a bit in this direction: You can “clone” a PCB and create multiple PCB variants of the same schematic.

I think you want something a bit different though: You want just one PCB design, but with some parts not populated, correct?

Sounds like an interesting idea :slight_smile: I’d have some use for that as well.

From @ubruhin on Sat Mar 24 2018 14:56:24 GMT+0000 (UTC)

> I’ve got to say, this project shows incredible potential.

Nice to hear, thanks! :smiley:

That aside, one thing that I find missing in many of the CAD tools is variant management.

Yes, I fully agree. Actually I already planned to implement variant management some time. And probably I would have implemented it very similar how you described it :smiley:

So generally I really like your proposal. I have just one question: What are the nested (non-toplevel) variants for (i.e.what’s the use-case of them)?

In addition, as @dbrgn wrote, LibrePCB already has the ability to create different boards for the same schematic. In the different boards one can even choose different devices for the same component (e.g. 0603 package on one board, and 0805 package on another board). This feature probably needs to be combined with variant management as both do similar things.

From @ubruhin on Sat Mar 24 2018 14:56:24 GMT+0000 (UTC)

From @timhoeppner on March 24, 2018 14:15

There is a feature something a bit in this direction: You can “clone” a PCB and create multiple PCB variants of the same schematic.

I noticed that and saw the demonstration in the video. Definitely an interesting feature on its own. The feature I’m describing is about BOM management which is really independent of the PCB. However, in this case, since you can select different footprints in the PCB and have different variants of the PCB, this would need to tie into that.

This feature probably needs to be combined with variant management as both do similar things.

Agreed. This certainly creates some challenges and so I’m wondering the best way to integrate these. Wondering if it would make sense to limit PCB variants to the toplevel variants on the schematic. Ultimately you need to generate a BOM for your design and so I think these goes hand in hand.

What are the nested (non-toplevel) variants for (i.e.what’s the use-case of them)?

This is a feature available in OrCAD CIS. What I used it for is grouping off sections/features of the schematic. The nested levels could be copied to other top level variants for quick and easy management.

Just thinking about this now, I’m wondering if it would make more sense to call the top-level elements “variants” and sub-level elements “features”. Not sure I’ve ever seen more levels then that anyway or can even think of a use case. In this sense, you can define “features” and just assign them to one or more “variants”.

I think it might be useful for me to draft up a diagram that shows this a little more clearly.