Hi,
I have 5 factors for a custom DOE and I need two linear constraints:
Mean(CAP + RAP + OAP + EAP) + 10 < RRP
Max(CAP, RAP, OAP, EAP) - Min(CAP, RAP, OAP, EAP) < 150
It is ok for CAP, RAP, OAP, EAP and RRP to vary significantly between 100 and 500, but if they vary, I want them to be somewhat close together. For example 450,400,350,450,500 is ok, but 100,500,100,500,500 is not.
I've tried the below constraint. The design calculates, but the constraint is not applied.
AND(
Mean(CAP + RAP + OAP + EAP)+10 < RRP,
Max( CAP, RAP, OAP, EAP )- Min( CAP, RAP, OAP, EAP )<150)
Thanks for your help