FrontISTR  5.9.0
Large-scale structural analysis program with finit element method
fstr_ctrl_eigen.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 !-------------------------------------------------------------------------------
6 
8  use m_fstr
9  use hecmw
11 
12 contains
13 
15  function fstr_ctrl_get_eigen( ctrl, nget, tolerance, maxiter, sigma)
16  implicit none
17  integer(kind=kint) :: ctrl
18  integer(kind=kint) :: nget
19  real(kind=kreal) :: tolerance
20  integer(kind=kint) :: maxiter
21  real(kind=kreal) :: sigma
22  integer(kind=kint) :: fstr_ctrl_get_eigen
23 
24  ! JP-16
25  fstr_ctrl_get_eigen = fstr_ctrl_get_data_ex( ctrl, 1, 'Irir ', nget, tolerance, maxiter, sigma )
26 
27  end function fstr_ctrl_get_eigen
28 
29 
30  !* ----------------------------------------------------------------------------------------------- *!
31 end module fstr_ctrl_eigen
32 
int fstr_ctrl_get_data_ex(int *ctrl, int *line_no, const char *format,...)
This module contains control file data obtaining functions for dynamic analysis.
integer(kind=kint) function fstr_ctrl_get_eigen(ctrl, nget, tolerance, maxiter, sigma)
Read in !EIGEN (struct)
Definition: hecmw.f90:6
This module defines common data and basic structures for analysis.
Definition: m_fstr.F90:15