15 June 2007 08:55:59 AM FEM_IO_TEST: C++ version Test the routines in the FEM_IO library. TEST01 FEM_READ reads finite element data from files. The node coordinate file name is "ell_node_coord.txt". The element file name is "ell_element.txt". The node data file name is "ell_node_data.txt". Spatial dimension = 2 Number of nodes = 65 Number of elements = 3 Element order = 96 Number of node data items = 1 First 10 node coordindates: Row: 1 2 Col 1 0 0 2 0 0.5 3 0.5 0 4 0 1 5 0.5 0.5 6 1 0 7 0 1.5 8 0.5 1 9 1 0.5 10 1.5 0 First 10 elements Row: 1 2 3 Col 1 1 3 2 2 6 5 3 3 4 2 5 4 3 5 2 5 23 22 10 6 21 9 22 7 6 10 9 8 22 9 10 9 19 7 20 10 4 8 7 First 10 node data sets: Row: 1 Col 1 0 2 0.25 3 0.25 4 1 5 0.484936 6 1 7 2.25 8 1.22891 9 1.22891 10 2.25 FEM_TEST02 Demonstrate the use of FEM_WRITE to write finite element data to files. The node coordinate file name is "tiny_node_coord.txt". The element file name is "tiny_element.txt". The node data file name is "tiny_node_data.txt". Spatial dimension = 2 Number of nodes = 5 Number of elements = 3 Element order = 3 Number of node data items = 2 Node coordindates: Row: 1 2 Col 1 0 0 2 1 0 3 2 0 4 0 1 5 1 1 Elements Row: 1 2 3 Col 1 1 2 4 2 5 4 2 3 2 3 5 Node data sets: Row: 1 2 Col 1 1 0 2 0.8 0.2 3 0.6 0.4 4 0.9 0.1 5 0.5 0.5 FEM_WRITE wrote node coordinates to "tiny_node_coord.txt". FEM_WRITE wrote element data to "tiny_element.txt". FEM_WRITE wrote node data to "tiny_node_data.txt". FEM_IO_TEST: Normal end of execution. 15 June 2007 08:55:59 AM