mphsolutioninfo
Get information about solution objects and datasets containing given parameters.
Syntax
info = mphsolutioninfo(model)
info = mphsolutioninfo(model,'parameters',{{ei,vi,toli},...},…)
Description
info = mphsolutioninfo(model) returns information about all solution object and solution dataset combinations in model.
info = mphsolutioninfo(model,'parameters',{{ei,vi,toli}, ...},…) returns information about solution object and solution dataset containing the given inner/outer solution parameters ei with the value equal to vi within the tolerance toli.
The function mphsolutioninfo accepts the following property/value pairs:
off | on
The returned value info is a structure with the following content
The substructure info.sol# has the following content
Example
Load model_tutorial_llmatlab.mph:
model = mphopen('model_tutorial_llmatlab');
Create a study combining a parametric sweep and a transient study step:
std = model.study.create('std');
param = std.feature.create('param','Parametric');
time = std.feature.create('time','Transient');
Set the time stepping and the parametric sweep parameters:
time.set('tlist', 'range(0,1,25)');
param.setIndex('pname','power',0);
param.setIndex('plistarr','30 60 90', 0);
Run the study:
std.run;
Retrieve the solution information corresponding to power = 30 W:
info = mphsolutioninfo(model,'parameters',{'power',30,0})
Retrieve the solution information corresponding to power = 90 W and around t = 10.4 sec. and its associated solution dataset:
info = mphsolutioninfo(model,'parameters',{{'power',90,0},...
{'t',10.4,0.5}})
Get the solution solution dataset associated:
dset = info.sol2.dataset
Get the inner and outer solution number:
solnum = info.sol2.map(end-1)
outersolnum = info.sol2.map(end)
See also
mphgetu, mphxmeshinfo, mphsolinfo