FrontISTR  5.7.0
Large-scale structural analysis program with finit element method
hecmw2fstr_mesh_conv.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 !-------------------------------------------------------------------------------
7 
9  use hecmw
11 
12 contains
13 
14  subroutine hecmw2fstr_mesh_conv( hecMESH )
15  implicit none
16  type (hecmwST_local_mesh) :: hecMESH
17 
18  call hecmw2fstr_connect_conv( hecmesh%n_elem, &
19  hecmesh%elem_type, &
20  hecmesh%elem_node_index, &
21  hecmesh%elem_node_item )
22 
23  end subroutine hecmw2fstr_mesh_conv
24 
25 
26  subroutine fstr2hecmw_mesh_conv( hecMESH )
27  implicit none
28  type (hecmwST_local_mesh) :: hecMESH
29 
30  call fstr2hecmw_connect_conv( hecmesh%n_elem, &
31  hecmesh%elem_type, &
32  hecmesh%elem_node_index, &
33  hecmesh%elem_node_item )
34 
35  end subroutine fstr2hecmw_mesh_conv
36 
37 end module m_hecmw2fstr_mesh_conv
38 
39 
40 
41 
m_hecmw2fstr_mesh_conv::fstr2hecmw_mesh_conv
subroutine fstr2hecmw_mesh_conv(hecMESH)
Definition: hecmw2fstr_mesh_conv.f90:27
m_hecmw2fstr_mesh_conv::hecmw2fstr_mesh_conv
subroutine hecmw2fstr_mesh_conv(hecMESH)
Definition: hecmw2fstr_mesh_conv.f90:15
hecmw
Definition: hecmw.f90:6
m_hecmw2fstr_mesh_conv::hecmw2fstr_connect_conv
external hecmw2fstr_connect_conv
Definition: hecmw2fstr_mesh_conv.f90:10
m_hecmw2fstr_mesh_conv
HECMW to FSTR Mesh Data Converter. Converting Connectivity of Element Type 232, 342 and 352.
Definition: hecmw2fstr_mesh_conv.f90:8
fstr2hecmw_connect_conv
void fstr2hecmw_connect_conv(int *n_elem, int elem_type[], int elem_node_index[], int elem_node_item[])
Definition: hecmw2fstr_connect_conv.c:209