├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── DIVEMesh-UserGuide.pdf ├── LICENSE ├── Makefile ├── release-notes.txt └── src ├── DIVEMesh.project ├── DIVEMesh.workspace ├── baselayer.cpp ├── baselayer.h ├── bc.cpp ├── bc.h ├── bedlevel.cpp ├── bedlevel.h ├── box_bl.cpp ├── box_bl.h ├── dataset.cpp ├── dataset.h ├── dataset_inversedist.cpp ├── decomp.cpp ├── decomp.h ├── decomp_analyse.cpp ├── decomp_correction.cpp ├── decomp_correction_x.cpp ├── decomp_correction_y.cpp ├── decomp_correction_z.cpp ├── decomp_costfunc.cpp ├── decomp_count.cpp ├── decomp_paraslice.cpp ├── decomp_partition.cpp ├── decomp_partition_manual.cpp ├── decomp_partition_planes.cpp ├── decomp_periodic.cpp ├── decomp_periodic_surf.cpp ├── decomp_periodic_surfco.cpp ├── decomp_print.cpp ├── decomp_surface.cpp ├── decomp_surfco.cpp ├── decomp_vtp.cpp ├── dive.cpp ├── dive.h ├── driver.cpp ├── driver.h ├── driver_analytics.cpp ├── driver_declarations.h ├── driver_headers.h ├── field.cpp ├── field.h ├── field1d.cpp ├── field1d.h ├── field2d.cpp ├── field2d.h ├── geodat.cpp ├── geodat.h ├── geodat_holecheck.cpp ├── geodat_multigrid.cpp ├── geodat_multigrid_ccipol.cpp ├── geodat_patch.cpp ├── geodat_pointcheck.cpp ├── geodat_print-sampled.cpp ├── geodat_print-vtp.cpp ├── geodat_remove_bounds.cpp ├── geodat_setup_ijk.cpp ├── geometry.cpp ├── geometry.h ├── geometry_arch.cpp ├── geometry_beam.cpp ├── geometry_box.cpp ├── geometry_box_array.cpp ├── geometry_cone_x.cpp ├── geometry_cone_y.cpp ├── geometry_cone_z.cpp ├── geometry_cylinder_y.cpp ├── geometry_cylinder_z.cpp ├── geometry_ellipsoid.cpp ├── geometry_ellipsoid_semi.cpp ├── geometry_ellipsoid_semi_rot.cpp ├── geometry_fluvial_box_fill_segments.cpp ├── geometry_fluvial_box_util.cpp ├── geometry_fluvial_box_v1.cpp ├── geometry_fluvial_box_v2.cpp ├── geometry_hexahedron.cpp ├── geometry_jacketmember_norm.cpp ├── geometry_ogee-weir.cpp ├── geometry_plate_x.cpp ├── geometry_pyramid.cpp ├── geometry_ray_cast.cpp ├── geometry_ray_cast_io_x.cpp ├── geometry_ray_cast_io_ycorr.cpp ├── geometry_ray_cast_io_zcorr.cpp ├── geometry_ray_cast_x.cpp ├── geometry_ray_cast_x_gcb.cpp ├── geometry_ray_cast_y.cpp ├── geometry_ray_cast_z.cpp ├── geometry_rotation.cpp ├── geometry_semicyl_y.cpp ├── geometry_sphere.cpp ├── geometry_stl.cpp ├── geometry_tetrahedon.cpp ├── geometry_wedge.cpp ├── geometry_wedge_x.cpp ├── geometry_wedge_y.cpp ├── geometry_wedge_z.cpp ├── hdc.cpp ├── hdc.h ├── hdc_allocate.cpp ├── hdc_decomp.cpp ├── hdc_filename_in.cpp ├── hdc_filename_out.cpp ├── hdc_read_cfd.cpp ├── hdc_read_fnpf.cpp ├── hdc_read_header.cpp ├── hdc_read_mainheader.cpp ├── hdc_read_nhflow.cpp ├── hdc_read_sflow.cpp ├── hdc_write_cfd.cpp ├── hdc_write_fnpf.cpp ├── hdc_write_header.cpp ├── hdc_write_nhflow.cpp ├── hdc_write_sflow.cpp ├── increment.cpp ├── increment.h ├── ini.cpp ├── initialize.cpp ├── initialize.h ├── interpolation.h ├── intfield.cpp ├── intfield.h ├── intfield1d.cpp ├── intfield1d.h ├── intfield1dy.cpp ├── intfield1dy.h ├── intfield2d.cpp ├── intfield2d.h ├── inverse_dist.cpp ├── inverse_dist.h ├── inverse_dist_local.cpp ├── inverse_dist_local.h ├── inverse_dist_local_setup.cpp ├── iterators.h ├── kriging.cpp ├── kriging.h ├── kriging_ini.cpp ├── kriging_rearrange.cpp ├── kriging_semivariogram.cpp ├── kriging_solve.cpp ├── lexer.cpp ├── lexer.h ├── lexer_createspace.cpp ├── lexer_gridspacing.cpp ├── lexer_gridspacing_cellBased.cpp ├── lexer_gridspacing_fsf.cpp ├── lexer_gridspacing_print.cpp ├── lexer_pos.cpp ├── logic.cpp ├── looping.h ├── main.cpp ├── main.h ├── module.h ├── module_void.cpp ├── module_void.h ├── porous.cpp ├── porous.h ├── print_bottom.cpp ├── print_debug.cpp ├── print_grid.cpp ├── print_grid.h ├── print_solid.cpp ├── print_stl.h ├── print_stl_geodat.cpp ├── print_stl_geodat.h ├── print_vtu.cpp ├── print_vtu.h ├── printer.h ├── read_control.cpp ├── read_data.cpp ├── read_geodat.cpp ├── read_solid.cpp ├── read_stl.cpp ├── read_topo.cpp ├── resize.cpp ├── resize.h ├── resize_delete.cpp ├── resize_resize.cpp ├── slice.cpp ├── slice.h ├── solid.cpp ├── solid.h ├── solid_fluvial_box.cpp ├── solid_gcbest.cpp ├── surface.cpp ├── surface.h ├── surface_dir.cpp ├── surface_gcbest.cpp ├── surface_plate.cpp ├── surface_solid.cpp ├── template.h ├── topo.cpp ├── topo.h └── topo_gcbest.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/.gitignore -------------------------------------------------------------------------------- /DIVEMesh-UserGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/DIVEMesh-UserGuide.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/Makefile -------------------------------------------------------------------------------- /release-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/release-notes.txt -------------------------------------------------------------------------------- /src/DIVEMesh.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/DIVEMesh.project -------------------------------------------------------------------------------- /src/DIVEMesh.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/DIVEMesh.workspace -------------------------------------------------------------------------------- /src/baselayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/baselayer.cpp -------------------------------------------------------------------------------- /src/baselayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/baselayer.h -------------------------------------------------------------------------------- /src/bc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/bc.cpp -------------------------------------------------------------------------------- /src/bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/bc.h -------------------------------------------------------------------------------- /src/bedlevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/bedlevel.cpp -------------------------------------------------------------------------------- /src/bedlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/bedlevel.h -------------------------------------------------------------------------------- /src/box_bl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/box_bl.cpp -------------------------------------------------------------------------------- /src/box_bl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/box_bl.h -------------------------------------------------------------------------------- /src/dataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/dataset.cpp -------------------------------------------------------------------------------- /src/dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/dataset.h -------------------------------------------------------------------------------- /src/dataset_inversedist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/dataset_inversedist.cpp -------------------------------------------------------------------------------- /src/decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp.cpp -------------------------------------------------------------------------------- /src/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp.h -------------------------------------------------------------------------------- /src/decomp_analyse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_analyse.cpp -------------------------------------------------------------------------------- /src/decomp_correction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_correction.cpp -------------------------------------------------------------------------------- /src/decomp_correction_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_correction_x.cpp -------------------------------------------------------------------------------- /src/decomp_correction_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_correction_y.cpp -------------------------------------------------------------------------------- /src/decomp_correction_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_correction_z.cpp -------------------------------------------------------------------------------- /src/decomp_costfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_costfunc.cpp -------------------------------------------------------------------------------- /src/decomp_count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_count.cpp -------------------------------------------------------------------------------- /src/decomp_paraslice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_paraslice.cpp -------------------------------------------------------------------------------- /src/decomp_partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_partition.cpp -------------------------------------------------------------------------------- /src/decomp_partition_manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_partition_manual.cpp -------------------------------------------------------------------------------- /src/decomp_partition_planes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_partition_planes.cpp -------------------------------------------------------------------------------- /src/decomp_periodic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_periodic.cpp -------------------------------------------------------------------------------- /src/decomp_periodic_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_periodic_surf.cpp -------------------------------------------------------------------------------- /src/decomp_periodic_surfco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_periodic_surfco.cpp -------------------------------------------------------------------------------- /src/decomp_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_print.cpp -------------------------------------------------------------------------------- /src/decomp_surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_surface.cpp -------------------------------------------------------------------------------- /src/decomp_surfco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_surfco.cpp -------------------------------------------------------------------------------- /src/decomp_vtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/decomp_vtp.cpp -------------------------------------------------------------------------------- /src/dive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/dive.cpp -------------------------------------------------------------------------------- /src/dive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/dive.h -------------------------------------------------------------------------------- /src/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/driver.cpp -------------------------------------------------------------------------------- /src/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/driver.h -------------------------------------------------------------------------------- /src/driver_analytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/driver_analytics.cpp -------------------------------------------------------------------------------- /src/driver_declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/driver_declarations.h -------------------------------------------------------------------------------- /src/driver_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/driver_headers.h -------------------------------------------------------------------------------- /src/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field.cpp -------------------------------------------------------------------------------- /src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field.h -------------------------------------------------------------------------------- /src/field1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field1d.cpp -------------------------------------------------------------------------------- /src/field1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field1d.h -------------------------------------------------------------------------------- /src/field2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field2d.cpp -------------------------------------------------------------------------------- /src/field2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/field2d.h -------------------------------------------------------------------------------- /src/geodat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat.cpp -------------------------------------------------------------------------------- /src/geodat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat.h -------------------------------------------------------------------------------- /src/geodat_holecheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_holecheck.cpp -------------------------------------------------------------------------------- /src/geodat_multigrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_multigrid.cpp -------------------------------------------------------------------------------- /src/geodat_multigrid_ccipol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_multigrid_ccipol.cpp -------------------------------------------------------------------------------- /src/geodat_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_patch.cpp -------------------------------------------------------------------------------- /src/geodat_pointcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_pointcheck.cpp -------------------------------------------------------------------------------- /src/geodat_print-sampled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_print-sampled.cpp -------------------------------------------------------------------------------- /src/geodat_print-vtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_print-vtp.cpp -------------------------------------------------------------------------------- /src/geodat_remove_bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_remove_bounds.cpp -------------------------------------------------------------------------------- /src/geodat_setup_ijk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geodat_setup_ijk.cpp -------------------------------------------------------------------------------- /src/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry.cpp -------------------------------------------------------------------------------- /src/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry.h -------------------------------------------------------------------------------- /src/geometry_arch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_arch.cpp -------------------------------------------------------------------------------- /src/geometry_beam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_beam.cpp -------------------------------------------------------------------------------- /src/geometry_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_box.cpp -------------------------------------------------------------------------------- /src/geometry_box_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_box_array.cpp -------------------------------------------------------------------------------- /src/geometry_cone_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_cone_x.cpp -------------------------------------------------------------------------------- /src/geometry_cone_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_cone_y.cpp -------------------------------------------------------------------------------- /src/geometry_cone_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_cone_z.cpp -------------------------------------------------------------------------------- /src/geometry_cylinder_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_cylinder_y.cpp -------------------------------------------------------------------------------- /src/geometry_cylinder_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_cylinder_z.cpp -------------------------------------------------------------------------------- /src/geometry_ellipsoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ellipsoid.cpp -------------------------------------------------------------------------------- /src/geometry_ellipsoid_semi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ellipsoid_semi.cpp -------------------------------------------------------------------------------- /src/geometry_ellipsoid_semi_rot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ellipsoid_semi_rot.cpp -------------------------------------------------------------------------------- /src/geometry_fluvial_box_fill_segments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_fluvial_box_fill_segments.cpp -------------------------------------------------------------------------------- /src/geometry_fluvial_box_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_fluvial_box_util.cpp -------------------------------------------------------------------------------- /src/geometry_fluvial_box_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_fluvial_box_v1.cpp -------------------------------------------------------------------------------- /src/geometry_fluvial_box_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_fluvial_box_v2.cpp -------------------------------------------------------------------------------- /src/geometry_hexahedron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_hexahedron.cpp -------------------------------------------------------------------------------- /src/geometry_jacketmember_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_jacketmember_norm.cpp -------------------------------------------------------------------------------- /src/geometry_ogee-weir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ogee-weir.cpp -------------------------------------------------------------------------------- /src/geometry_plate_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_plate_x.cpp -------------------------------------------------------------------------------- /src/geometry_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_pyramid.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_io_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_io_x.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_io_ycorr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_io_ycorr.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_io_zcorr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_io_zcorr.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_x.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_x_gcb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_x_gcb.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_y.cpp -------------------------------------------------------------------------------- /src/geometry_ray_cast_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_ray_cast_z.cpp -------------------------------------------------------------------------------- /src/geometry_rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_rotation.cpp -------------------------------------------------------------------------------- /src/geometry_semicyl_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_semicyl_y.cpp -------------------------------------------------------------------------------- /src/geometry_sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_sphere.cpp -------------------------------------------------------------------------------- /src/geometry_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_stl.cpp -------------------------------------------------------------------------------- /src/geometry_tetrahedon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_tetrahedon.cpp -------------------------------------------------------------------------------- /src/geometry_wedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_wedge.cpp -------------------------------------------------------------------------------- /src/geometry_wedge_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_wedge_x.cpp -------------------------------------------------------------------------------- /src/geometry_wedge_y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_wedge_y.cpp -------------------------------------------------------------------------------- /src/geometry_wedge_z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/geometry_wedge_z.cpp -------------------------------------------------------------------------------- /src/hdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc.cpp -------------------------------------------------------------------------------- /src/hdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc.h -------------------------------------------------------------------------------- /src/hdc_allocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_allocate.cpp -------------------------------------------------------------------------------- /src/hdc_decomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_decomp.cpp -------------------------------------------------------------------------------- /src/hdc_filename_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_filename_in.cpp -------------------------------------------------------------------------------- /src/hdc_filename_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_filename_out.cpp -------------------------------------------------------------------------------- /src/hdc_read_cfd.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hdc_read_fnpf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_read_fnpf.cpp -------------------------------------------------------------------------------- /src/hdc_read_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_read_header.cpp -------------------------------------------------------------------------------- /src/hdc_read_mainheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_read_mainheader.cpp -------------------------------------------------------------------------------- /src/hdc_read_nhflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_read_nhflow.cpp -------------------------------------------------------------------------------- /src/hdc_read_sflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_read_sflow.cpp -------------------------------------------------------------------------------- /src/hdc_write_cfd.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hdc_write_fnpf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_write_fnpf.cpp -------------------------------------------------------------------------------- /src/hdc_write_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_write_header.cpp -------------------------------------------------------------------------------- /src/hdc_write_nhflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_write_nhflow.cpp -------------------------------------------------------------------------------- /src/hdc_write_sflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/hdc_write_sflow.cpp -------------------------------------------------------------------------------- /src/increment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/increment.cpp -------------------------------------------------------------------------------- /src/increment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/increment.h -------------------------------------------------------------------------------- /src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/ini.cpp -------------------------------------------------------------------------------- /src/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/initialize.cpp -------------------------------------------------------------------------------- /src/initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/initialize.h -------------------------------------------------------------------------------- /src/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/interpolation.h -------------------------------------------------------------------------------- /src/intfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield.cpp -------------------------------------------------------------------------------- /src/intfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield.h -------------------------------------------------------------------------------- /src/intfield1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield1d.cpp -------------------------------------------------------------------------------- /src/intfield1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield1d.h -------------------------------------------------------------------------------- /src/intfield1dy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield1dy.cpp -------------------------------------------------------------------------------- /src/intfield1dy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield1dy.h -------------------------------------------------------------------------------- /src/intfield2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield2d.cpp -------------------------------------------------------------------------------- /src/intfield2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/intfield2d.h -------------------------------------------------------------------------------- /src/inverse_dist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/inverse_dist.cpp -------------------------------------------------------------------------------- /src/inverse_dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/inverse_dist.h -------------------------------------------------------------------------------- /src/inverse_dist_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/inverse_dist_local.cpp -------------------------------------------------------------------------------- /src/inverse_dist_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/inverse_dist_local.h -------------------------------------------------------------------------------- /src/inverse_dist_local_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/inverse_dist_local_setup.cpp -------------------------------------------------------------------------------- /src/iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/iterators.h -------------------------------------------------------------------------------- /src/kriging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging.cpp -------------------------------------------------------------------------------- /src/kriging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging.h -------------------------------------------------------------------------------- /src/kriging_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging_ini.cpp -------------------------------------------------------------------------------- /src/kriging_rearrange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging_rearrange.cpp -------------------------------------------------------------------------------- /src/kriging_semivariogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging_semivariogram.cpp -------------------------------------------------------------------------------- /src/kriging_solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/kriging_solve.cpp -------------------------------------------------------------------------------- /src/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer.cpp -------------------------------------------------------------------------------- /src/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer.h -------------------------------------------------------------------------------- /src/lexer_createspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_createspace.cpp -------------------------------------------------------------------------------- /src/lexer_gridspacing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_gridspacing.cpp -------------------------------------------------------------------------------- /src/lexer_gridspacing_cellBased.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_gridspacing_cellBased.cpp -------------------------------------------------------------------------------- /src/lexer_gridspacing_fsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_gridspacing_fsf.cpp -------------------------------------------------------------------------------- /src/lexer_gridspacing_print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_gridspacing_print.cpp -------------------------------------------------------------------------------- /src/lexer_pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/lexer_pos.cpp -------------------------------------------------------------------------------- /src/logic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/logic.cpp -------------------------------------------------------------------------------- /src/looping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/looping.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/main.h -------------------------------------------------------------------------------- /src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/module.h -------------------------------------------------------------------------------- /src/module_void.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/module_void.cpp -------------------------------------------------------------------------------- /src/module_void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/module_void.h -------------------------------------------------------------------------------- /src/porous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/porous.cpp -------------------------------------------------------------------------------- /src/porous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/porous.h -------------------------------------------------------------------------------- /src/print_bottom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_bottom.cpp -------------------------------------------------------------------------------- /src/print_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_debug.cpp -------------------------------------------------------------------------------- /src/print_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_grid.cpp -------------------------------------------------------------------------------- /src/print_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_grid.h -------------------------------------------------------------------------------- /src/print_solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_solid.cpp -------------------------------------------------------------------------------- /src/print_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_stl.h -------------------------------------------------------------------------------- /src/print_stl_geodat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_stl_geodat.cpp -------------------------------------------------------------------------------- /src/print_stl_geodat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_stl_geodat.h -------------------------------------------------------------------------------- /src/print_vtu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_vtu.cpp -------------------------------------------------------------------------------- /src/print_vtu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/print_vtu.h -------------------------------------------------------------------------------- /src/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/printer.h -------------------------------------------------------------------------------- /src/read_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_control.cpp -------------------------------------------------------------------------------- /src/read_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_data.cpp -------------------------------------------------------------------------------- /src/read_geodat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_geodat.cpp -------------------------------------------------------------------------------- /src/read_solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_solid.cpp -------------------------------------------------------------------------------- /src/read_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_stl.cpp -------------------------------------------------------------------------------- /src/read_topo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/read_topo.cpp -------------------------------------------------------------------------------- /src/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/resize.cpp -------------------------------------------------------------------------------- /src/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/resize.h -------------------------------------------------------------------------------- /src/resize_delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/resize_delete.cpp -------------------------------------------------------------------------------- /src/resize_resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/resize_resize.cpp -------------------------------------------------------------------------------- /src/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/slice.cpp -------------------------------------------------------------------------------- /src/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/slice.h -------------------------------------------------------------------------------- /src/solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/solid.cpp -------------------------------------------------------------------------------- /src/solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/solid.h -------------------------------------------------------------------------------- /src/solid_fluvial_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/solid_fluvial_box.cpp -------------------------------------------------------------------------------- /src/solid_gcbest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/solid_gcbest.cpp -------------------------------------------------------------------------------- /src/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface.cpp -------------------------------------------------------------------------------- /src/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface.h -------------------------------------------------------------------------------- /src/surface_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface_dir.cpp -------------------------------------------------------------------------------- /src/surface_gcbest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface_gcbest.cpp -------------------------------------------------------------------------------- /src/surface_plate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface_plate.cpp -------------------------------------------------------------------------------- /src/surface_solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/surface_solid.cpp -------------------------------------------------------------------------------- /src/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/template.h -------------------------------------------------------------------------------- /src/topo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/topo.cpp -------------------------------------------------------------------------------- /src/topo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/topo.h -------------------------------------------------------------------------------- /src/topo_gcbest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/REEF3D/DIVEMesh/HEAD/src/topo_gcbest.cpp --------------------------------------------------------------------------------