mphmatrix
Get model matrices.
Syntax
str = mphmatrix(model,soltag,'Out',...)
Description
str = mphmatrix(model,soltag,'Out',{'A'},...) returns a MATLAB® structure str containing the matrix A assembled using the solver node soltag and accessible as str.A, A being taken from the Out property list.
str = mphmatrix(model,soltag,fname,'Out',{'A','B',...}) returns a MATLAB structure str containing the matrices A, B, … assembled using the solver node solname and accessible as str.A and str.B, A and B being taken from the Out property list.
The function mphmatrix accepts the following property/value pairs:
on | off
init | sol
on | off
flnullorth | flspnull | flexplicit | auto
on | off
on | off | hermitian | auto
The following values are valid for the out property:
(*) Requires the Optimization Module.
Note that the assembly of the eliminated matrices uses the current solution vector as scaling method. To get the unscaled eliminated system matrices, it is required to set the scaling method to 'none' in the variables step of the solver configuration node.
The load vector is assembled using the current solution available as linearization point unless the initmethod property is provided. In case of the presence of a solver step node in the solver sequence, the load vector correspond then to the residual of the problem.
The function mphmatrix does not solve the problem as the assembly is performed before the solver node in the solution sequence. You can specify the solution feature node after which to assemble the system matrices with the property extractafter. This is useful if you need to compute the solution before extracting the matrices or if you have a solution sequence using different solver sequences and you want to extract the matrices for a specific one.
The Advanced section in the COMSOL Multiphysics Reference Manual, describes the functionality corresponding to the properties complexfun, nullfun, and rowscale.
Use the property symmetric to assemble the model matrix system as symmetric/Hermitian, or you can use the automatic feature to find out (see Advanced in the COMSOL Multiphysics Reference Manual).
Example
Evaluate the system matrices of a stationary problem
model = mphopen('model_tutorial_llmatlab');
model.mesh('mesh1').autoMeshSize(8);
std = model.study.create('std1');
std.feature.create('stat', 'Stationary');
std.run;
Get the stationary matrix system, use the initial solution as linearization point:
str = mphmatrix(model,'sol1','out',{'K','L','M','N'},...
'initmethod','init');
Display the sparsity of the stiffness matrix and the constraint Jacobian and compute the total load applied in the matrix system:
subplot(2,1,1); spy(str.K);subplot(2,1,2);spy(str.N)
Q = sum(str.L)
Get the eliminated matrix system, use the initial solution as linearization point:
str = mphmatrix(model,'sol1','out',{'Kc'},'initmethod','init');
Compare the sparsity between the eliminated and non-eliminated stiffness matrix:
subplot(2,1,1); hold on; spy(str.Kc,'r')
Evaluate the eliminated load vector using the current solution as linearization point:
str = mphmatrix(model,'sol1','out',{'Lc'},'initmethod','sol');
Evaluate the system matrices of a dynamic problem
model = mphopen('model_tutorial_llmatlab');
model.mesh('mesh1').autoMeshSize(8);
std = model.study.create('std1');
time = std.feature.create('time', 'Transient');
time.set('tlist', 'range(0,1,25)');
model.param.set('timestep', '1[s]');
std.run;
Get the dynamic matrix system:
str = mphmatrix(model,'sol1','out',{'E','D','K','L','M','N'});
Display the sparsity of the mass and stiffness matrices:
subplot(1,2,1); spy(str.D); subplot(1,2,2); spy(str.K);
Get the eliminated dynamic matrix system:
str = mphmatrix(model,'sol1','out',{'Ec','Dc','Kc','Lc','M','N'});
Assemble the Jacobian using solution number 15 as linearization point. First run the model to get available linearization point list:
std.run;
str = mphmatrix(model,'sol1','out',{'K'},...
'initmethod','sol','initsol','sol1','solnum',15);
Assemble the Jacobian using the zero vector as linearization point:
str = mphmatrix(model,'sol1','out',{'K'},...
'initmethod','sol','initsol','zero');
See also
mphstate, mphxmeshinfo, mphinputmatrix