FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
solve_LINEQ.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 implicit none
8
9 private
10
11 public :: solve_lineq
12
13contains
14
15 subroutine solve_lineq(hecMESH, hecMAT)
16 use hecmw
17 use hecmw_solver
18
19 type(hecmwst_local_mesh) :: hecmesh
20 type(hecmwst_matrix) :: hecmat
21
22 call hecmw_solve(hecmesh, hecmat)
23
24 end subroutine solve_lineq
25end module m_solve_lineq
subroutine hecmw_solve(hecmesh, hecmat)
Definition: hecmw.f90:6
subroutine, public solve_lineq(hecmesh, hecmat)
Definition: solve_LINEQ.f90:16