FrontISTR  5.7.0
Large-scale structural analysis program with finit element method
m_irjcmatrix.f90
Go to the documentation of this file.
1 !-------------------------------------------------------------------------------
2 ! Copyright (c) 2019 FrontISTR Commons
3 ! This software is released under the MIT License, see LICENSE.txt
4 !-------------------------------------------------------------------------------
5 
7 ! irow, jcol type sparse matrix
8 
10 integer :: neqns ! dimension of matrix. each element have (ndeg,ndeg) small matrix
11 integer :: nttbr ! number of nonzero elements
12 integer :: ndeg ! degree of freedom of each element
13 integer, pointer :: irow(:), jcol(:) ! location of i'th element
14 real(8), pointer :: val(:,:) ! concrete value of nonzero elements. small matrix is expanded as ndeg*ndeg.
15 end type irjc_matrix
16 end module m_irjcmatrix
m_irjcmatrix
Definition: m_irjcmatrix.f90:6
m_irjcmatrix::irjc_matrix
Definition: m_irjcmatrix.f90:9