Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Excerpt
hiddentrue
nameCalculations

You can now transform, aggregate, and perform calculation on your requirement's data with this new feature.

...

Estimate the cost of a requirement

1.2 * (@Man\ days * 150 + ext@Manufacturing\ Cost)

...

Estimate the total cost of a parent requirement

SUM(ext@Cost, from@Refines)

...

Detect when a parent requirement is over budget

SUM(ext@Cost, from@Uses) > @Budget

...

Detect when parts composing an assembly are too heavy

SUM(@Weight, from@Refines->from@Usesfrom@Uses) < @Max\ Weight

...

Here, the requirement BB-002 is marked as an error because the children requirements BB-DS-004 and BB-DS-005 do not implement the @Uses relationship.

...