FrontISTR  5.7.1
Large-scale structural analysis program with finit element method
m_child_matrix.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 
8  use hecmw_util
9  use m_irjc_matrix
10 
12 
13  integer(kind=kint) :: ndeg ! same for A and C
14  integer(kind=kint) :: ista_c ! beginning index of row of C
15  integer(kind=kint) :: neqns_t ! total number of equations.
16 
17  ! A region
18  type(irjc_square_matrix) :: a
19 
20  ! C region
21  type(irjc_mn_matrix) :: c
22 
23  end type child_matrix
24 end module m_child_matrix
I/O and Utility.
Definition: hecmw_util_f.F90:7