Hi all,
I've been trying for a while to understand how the nested sets model could work for my problem...and I am in need of some help to accomplish it!
-The product I am dealing with are gensets (bigger ones). One must pick an engine and a lot of parts should be delivered with it.
There are about 20 engines.
Many parts are used for all of them (that means the same part will be delivered with many engines).
To define the rest I must know how much power the engine will deliver.
Before one can know how much power the engine will deliver, you need to know many other parameters. Like: fuel type, emissions level, rpms, etc
That results in about 250 possible combinations.
Since I don't want to define ALL the parts I need for every one of my 250 combinations (because many of the parts are valid for more than one combination), I am trying to do the following:
Root node: Engine type
Under Engine type: C100;C200;C300
Under C100: Nat. Gas; Biogas; coal mine gas
under Nat. Gas: NOX 500; NOX 750
under NOX 500: 750 rpms
and so on...
Then there will be a Parts table containing all parts used for all combinations.
A third part would link every node with the parts table. Like:
C100--->Part #2
C100--->Part #67
C100--->Part #54
That means that parts #2,#67 and #54 are common for all C100's
Can aynone tell whether this could work? Am I far away from the truth?
Thank you very much for your comments!