FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
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
12contains
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
38
39
40
41
void fstr2hecmw_connect_conv(int *n_elem, int elem_type[], int elem_node_index[], int elem_node_item[])
Definition: hecmw.f90:6
HECMW to FSTR Mesh Data Converter. Convering Conectivity of Element Type 232, 342 and 352.
subroutine hecmw2fstr_mesh_conv(hecmesh)
subroutine fstr2hecmw_mesh_conv(hecmesh)