I see this problem just a bit different.
I think you have two, maybe three components that are being blended together. We just don't know the names of the last two.
So, I think this design approach might work:
DOE(
Custom Design,
{Add Response( Maximize, "Y", ., ., . ),
Add Factor( Mixture, 0.6, 0.99, "A", 0 ),
Add Factor( Categorical, {"B1", "B2", "B3", "B4", "B5"}, "First B Type", 0 ),
Add Factor( Categorical, {"B1", "B2", "B3", "B4", "B5"}, "Second B Type", 0 ),
Add Factor( Mixture, 0.01, 0.4, "First B Proportion", 0 ),
Add Factor( Mixture, 0, 0.4, "Second B Proportion", 0 ),
Set Random Seed( 187611 ), Number of Starts( 351 ), Add Term( {1, 1} ),
Add Term( {4, 1} ), Add Term( {5, 1} ), Add Term( {1, 1}, {2, 1} ),
Add Term( {1, 1}, {3, 1} ), Add Term( {1, 1}, {4, 1} ),
Add Term( {1, 1}, {5, 1} ), Add Term( {2, 1}, {3, 1} ),
Add Term( {2, 1}, {4, 1} ), Add Term( {2, 1}, {5, 1} ),
Add Term( {3, 1}, {4, 1} ), Add Term( {3, 1}, {5, 1} ),
Add Term( {4, 1}, {5, 1} ), Set Sample Size( 48 ), Simulate Responses( 0 ),
Save X Matrix( 0 ), Make Design}
);
This does have a drawback of possibly having the same B component for part 1 and part 2. However, I considered that to be just looking at blends with just one of the B components.
Would this work?
Dan Obermiller