mphsolinfo
Get information about a solution object.
Syntax
info = mphsolinfo(model,...)
info = mphsolinfo(model,'solname',soltag,...)
Description
info = mphsolinfo(model,...) returns information about the solution object.
The function mphsolinfo accepts the following property/value pairs:
on | off
The returned value info is a structure with the following content
You can use the function mphgetu to obtain the actual values of the solution vector. Note that these functions are low level functions and you most often would use functions such as mphinterp and mpheval to extract numerical data from a model.
Example
Get the information about the default solution object:
model = mphopen('model_tutorial_llmatlab');
std = model.study.create('std');
std.feature.create('stat','Stationary');
std.run;
solinfo = mphsolinfo(model)
Get information of multiple solver solution:
model = mphopen('model_tutorial_llmatlab');
std = model.study.create('std');
param = std.feature.create('param','Parametric');
time = std.feature.create('time','Transient');
time.set('tlist', 'range(0,1,25)');
param.setIndex('pname','power',0);
param.setIndex('plistarr','30 60 90',0);
std.run;
Get the information about the 1st outer solution (power = 30):
solinfo = mphsolinfo(model,'soltag','sol3');
Get the solution vector for 2nd outer solution (power = 60):
solinfo = mphsolinfo(model,'soltag','sol4');
See also
mphgetu, mphxmeshinfo, mphsolutioninfo