OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
printmumpsstat.m
Go to the documentation of this file.
1function printmumpsstat(id)
2%
3% printmumpsstat(id)
4% print mumps info
5%
6
7disp(['After analysis : Estimated operations ' num2str(id.RINFOG(1))]);
8disp(['After analysis : Estimated space for factors ' int2str(id.INFOG(3))]);
9disp(['After analysis : Estimated integer space ' int2str(id.INFOG(4))]);
10disp(['After analysis : Estimated max front size ' int2str(id.INFOG(5))]);
11disp(['After analysis : Number of node in the tree ' int2str(id.INFOG(6))]);
12disp(['After analysis : Estimated total size (Mbytes) ' int2str(id.INFOG(17))]);
13
14disp(['After factorization : Assembly operations ' num2str(id.RINFOG(2))]);
15disp(['After factorization : Elimination operations ' num2str(id.RINFOG(3))]);
16disp(['After factorization : Real/Complex space to store LU ' int2str(id.INFOG(9))]);
17disp(['After factorization : Integer space to store LU ' int2str(id.INFOG(10))]);
18disp(['After factorization : Largest front size ' int2str(id.INFOG(11))]);
19disp(['After factorization : Number of off-diagonal pivots ' int2str(id.INFOG(12))]);
20disp(['After factorization : Number of delayed pivots ' int2str(id.INFOG(13))]);
21disp(['After factorization : Number of memory compresses ' int2str(id.INFOG(14))]);
22disp(['After factorization : Total size needed (Mbytes) ' int2str(id.INFOG(19))]);
id INFOG
Definition dmumps.m:41
id RINFOG
Definition dmumps.m:42
function printmumpsstat(id) % % printmumpsstat(id) % print mumps info % disp(['After analysis disp(['After analysis :Estimated space for factors ' int2str(id.INFOG(3))])