13 October 2006 2:35:28.961 PM FEM_SAMPLE_PRB Test the FORTRAN90 FEM_SAMPLE library. FEM_SAMPLE_TEST01: Evaluate a finite element function on a uniform grid. This function expects to find three files to read: * node_file, containing the node coordinates, * triangle_file, containing nodes that form triangles * coef_file, containing nodal coefficient values. It reads the files, constructs a grid of evenly spaced sample points, and the evaluates the finite element at the sample points. The node file is "nodes.txt". The triangle file is "triangles.txt". The coefficient file is "coefs.txt". The number of nodes is 25 The triangle order is 3 The number of triangles is 32 The coefficient data has been read. The triangle neighbor array has been computed. Requested node density = 4 Suggested X node density = 4 Suggested Y node density = 4 X sample coordinates: 0.0000 1.3333 2.6667 4.0000 Y sample coordinates: 0.0000 1.3333 2.6667 4.0000 U evaluated at sample points: 16.0000 18.0000 23.3333 32.0000 7.3333 9.3333 14.6667 23.3333 2.0000 4.0000 9.3333 18.0000 0.0000 2.0000 7.3333 16.0000 FEM_SAMPLE_PRB Normal end of execution. 13 October 2006 2:35:28.969 PM