~fluidity-core/fluidity/tidal-velocity-bcs-doodson

« back to all changes in this revision

Viewing changes to tools/Checkmesh.F90

Merging in moving mesh checkpoint fix, so we can checkpoint our tidal runs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
  use linked_lists
16
16
  use meshdiagnostics
17
17
  use metric_tools
18
 
  use mesh_files
 
18
  use read_triangle
19
19
  use supermesh_construction
20
20
  use tetrahedron_intersection_module
21
21
  use iso_c_binding
38
38
  rformat = real_format()    
39
39
 
40
40
  print "(a)", "Reading in mesh mesh with base name " // trim(filename)
41
 
  positions = read_mesh_files(filename, quad_degree = 4)    
 
41
  positions = read_triangle_files(filename, quad_degree = 4)    
42
42
  if(isparallel()) call read_halos(filename, positions)
43
43
  print "(a)", "Read successful"
44
44