How can I code MBC constraints?

7 views (last 30 days)
Brian Tilker
Brian Tilker on 25 Jan 2019
Answered: Ian Noell on 6 Feb 2019
Where can I find documentation on creating code to setup MBC constraints? I have not found a way to import constraints from another file.

Answers (1)

Ian Noell
Ian Noell on 6 Feb 2019
Hi Brian,
Please see the following example code.
web(fullfile(docroot, 'mbc/mbc_gs/gasoline-case-study-design-of-experiment.html'))
The basic idea is to load the other project and then set the design constraint. Note, that the inputs in the constraint you are importing must match the input order of the design inputs. If the order does not match, you can use mbcdoe.designconstraint.MatchInputs.
Hope that helps,
Ian
Create Space-Filling Design
CreateDesign defaults to creating a design for the outer (global) level.
sfDesign = CreateDesign(TP, ...
'Type', 'Latin Hypercube Sampling',...
'Name', 'Space Filling');
Add Boundary Constraints
Load boundary constraints from another project file and add to design.
otherProject = mbcmodel.LoadProject( [matlabroot,'\toolbox\mbc\mbctraining\Gasoline_project.mat']);
boundaryConstraints = otherProject.Testplans(1).BoundaryModel('global');
% Design constraints are specified as an array of
% mbcdoe.designconstraint objects.
sfDesign.Constraints = boundaryConstraints;

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!