%--------------------------------------------------------------------------
% SOLVE
%--------------------------------------------------------------------------
% Solving a given problem.
%--------------------------------------------------------------------------
% Syntax
%--------------------------------------------------------------------------
SOL1 = SOLVE(PB1)
%--------------------------------------------------------------------------
% Description
%--------------------------------------------------------------------------
% SOLVE method allows to solve a problem
%--------------------------------------------------------------------------
% Input arguments
%--------------------------------------------------------------------------
% PB1 : PROBLEM object
%--------------------------------------------------------------------------
% Output arguments
%--------------------------------------------------------------------------
% SOL1 : SOLUTION object
%--------------------------------------------------------------------------
% Example
%--------------------------------------------------------------------------
PB1 = PROBLEM('model',MOT,'mater',MAT,'diric',CLT,'loadt',CHT,'comp_time',0:0.005:1,...
'solve_type','QUASI_NEWTON')
PB1 =
PROBLEM with properties:
model: [1x1 MODEL]
mater: [1x1 CHAMELEM]
diric: [1x1 MATRICE]
loadt: [1x1 TIMELOAD]
comp_time: [1x201 double]
solve_type: 'QUASI_NEWTON'
solve_opt: []
indirect_control: 0
indirect_option: []
non_local: 0
connec: []
var_av: []
precision: 1.0000e-04
prec_glob: 1.0000e-04
itermax: 500
stif_update: 10
lumped_mass: []
damping: []
gamma: 0.5000
beta: 0.2500
alpha_damp: 0
beta_damp: 0
restart: 0
cham: []
displacement: []
load: []
SOL = SOLVE(PB1);
Assembling stiffness matrix...
Elapsed time is 0.032874 seconds.
Assembling external loading...
Elapsed time is 0.000371 seconds.
Step Iteration Criterion
____ _________ _________
1 1 1
------------------------------------
CONVERGENCE IN.....1 ITERATION(S)
------------------------------------
Step Iteration Criterion
____ _________ __________
2 1 1
2 2 1.0458e-14
------------------------------------
CONVERGENCE IN.....2 ITERATION(S)
------------------------------------
Step Iteration Criterion
____ _________ __________
3 1 1
3 2 7.2625e-15
------------------------------------
CONVERGENCE IN.....2 ITERATION(S)
------------------------------------
Step Iteration Criterion
____ _________ __________
4 1 1
4 2 7.1657e-15
------------------------------------
CONVERGENCE IN.....2 ITERATION(S)
------------------------------------
.
.
.