Estimate the cost of a requirement
1.2 * (@Man\ days * 150 + ext@Manufacturing\ Cost)
...
Here, we see that the result for requirement AA-003
is marked as error because the property @Man days
used in the calculation is not a valid number.
...
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, child@Refines→child@Uses) > @Max\ weight
...
Here, we see that the result for requirement AA-003
is marked as error because the property @Weight
used in the calculation is not a valid number.
...