diff --git a/science/liggghts/Makefile b/science/liggghts/Makefile index 63579b04ee75..d00e664f09b1 100644 --- a/science/liggghts/Makefile +++ b/science/liggghts/Makefile @@ -1,39 +1,43 @@ PORTNAME= liggghts -DISTVERSION= 3.8.0-26 -PORTREVISION= 1 -DISTVERSIONSUFFIX= -g6e873439 +DISTVERSION= 3.8.0-45 +DISTVERSIONSUFFIX= -g86544c3f CATEGORIES= science MAINTAINER= yuri@FreeBSD.org COMMENT= Discrete element method particle simulation software LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/../LICENSE BUILD_DEPENDS= gsed:textproc/gsed LIB_DEPENDS= libexpat.so:textproc/expat2 \ libfreetype.so:print/freetype2 \ - libmpi.so:net/openmpi \ + libhdf5_hl.so:science/hdf5 \ + libmpi.so:net/mpich \ + libnetcdf.so:science/netcdf \ libpng.so:graphics/png \ libtiff.so:graphics/tiff \ - libvtkViewsCore-8.2.so:math/vtk8 + libvtkViewsCore-9.1.so:math/vtk9 + +USES= compiler:c++17-lang cmake fortran gl jpeg python qt:5 xorg +USE_XORG= ice sm x11 xext xt +USE_QT= core declarative gui network opengl sql widgets qmake_build buildtools_build +USE_GL= gl +USE_LDCONFIG= yes -USES= compiler:c++17-lang cmake fortran jpeg qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= CFDEMproject GH_PROJECT= ${PORTNAME:tu}-PUBLIC -USE_XORG= ice sm x11 xext xt -USE_QT= core gui sql widgets qmake_build buildtools_build -USE_LDCONFIG= yes -CMAKE_ARGS= -DMPI_C_COMPILER:FILEPATH="${LOCALBASE}/mpi/openmpi/bin/mpicc" \ - -DMPI_CXX_COMPILER:FILEPATH="${LOCALBASE}/mpi/openmpi/bin/mpicxx" +CMAKE_ARGS= -DVTK_DIR=${LOCALBASE}/lib/cmake/vtk-9.1 \ + -DPython3_EXECUTABLE=${PYTHON_CMD} WRKSRC_SUBDIR= src CFLAGS+= -fPIC -CXXFLAGS+= -fPIC +CXXFLAGS+= -fPIC \ + -I${LOCALBASE}/include/vtk-9.1 BINARY_ALIAS= sed=gsed .include diff --git a/science/liggghts/distinfo b/science/liggghts/distinfo index effa2e54e9f7..59bdf3cf1bef 100644 --- a/science/liggghts/distinfo +++ b/science/liggghts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1587928829 -SHA256 (CFDEMproject-LIGGGHTS-PUBLIC-3.8.0-26-g6e873439_GH0.tar.gz) = ac2f9100d31c6a9dc92a7b30057e0e36a3505f437e33ac56055c67f864a09262 -SIZE (CFDEMproject-LIGGGHTS-PUBLIC-3.8.0-26-g6e873439_GH0.tar.gz) = 36209540 +TIMESTAMP = 1656427270 +SHA256 (CFDEMproject-LIGGGHTS-PUBLIC-3.8.0-45-g86544c3f_GH0.tar.gz) = 98dd6e9dabfafabe2f3da66294e59b7cf5580ae9f7c07d797b9288a971b51607 +SIZE (CFDEMproject-LIGGGHTS-PUBLIC-3.8.0-45-g86544c3f_GH0.tar.gz) = 36278241 diff --git a/science/liggghts/files/patch-finish.cpp b/science/liggghts/files/patch-finish.cpp deleted file mode 100644 index fd27979c4b65..000000000000 --- a/science/liggghts/files/patch-finish.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- finish.cpp.orig 2018-11-02 06:42:25 UTC -+++ finish.cpp -@@ -719,7 +719,7 @@ void Finish::end(int flag) - - nneighfull = 0; - if (m < neighbor->old_nrequest) { -- if (neighbor->lists[m]->numneigh > 0) { -+ if (neighbor->lists[m]->numneigh) { // see https://www.cfdem.com/forums/error-non-const-lvalue-reference-type-basicostringstream-cannot-bind-temporary-type - int inum = neighbor->lists[m]->inum; - int *ilist = neighbor->lists[m]->ilist; - int *numneigh = neighbor->lists[m]->numneigh; diff --git a/science/liggghts/files/patch-math__vector.h b/science/liggghts/files/patch-math__vector.h deleted file mode 100644 index 4c96ce457e1a..000000000000 --- a/science/liggghts/files/patch-math__vector.h +++ /dev/null @@ -1,38 +0,0 @@ ---- math_vector.h.orig 2018-11-02 06:51:37 UTC -+++ math_vector.h -@@ -94,7 +94,7 @@ inline void vec_neg(vector &dest) { - dest[2] = -dest[2]; } - - inline void vec_norm(vector &dest) { // a/|a| -- register double f = sqrt(vec_dot(dest, dest)); -+ double f = sqrt(vec_dot(dest, dest)); - dest[0] /= f; - dest[1] /= f; - dest[2] /= f; } -@@ -222,7 +222,7 @@ inline void form_subtr(shape &dest, form - dest[3] -= src[3]; dest[4] -= src[4]; dest[5] -= src[5]; } - - inline int form_inv(form &m_inv, form &m) { // m^-1 -- register double det = form_det(m); -+ double det = form_det(m); - if (fzero(det)) return 0; - m_inv[0] = (m[1]*m[2]-m[3]*m[3])/det; - m_inv[1] = (m[0]*m[2]-m[4]*m[4])/det; -@@ -377,7 +377,7 @@ inline void form4_unit(form4 &dest) { - dest[0] = dest[1] = dest[2] = dest[3] = 1.0; } - - inline double form4_det(form4 &m) { -- register double f = m[6]*m[7]-m[5]*m[8]; -+ double f = m[6]*m[7]-m[5]*m[8]; - return m[0]*( - m[1]*(m[2]*m[3]-m[4]*m[4])+ - m[5]*(2.0*m[4]*m[7]-m[2]*m[5])-m[3]*m[7]*m[7])+f*f+ -@@ -387,7 +387,7 @@ inline double form4_det(form4 &m) { - m[9]*(m[4]*m[4]-m[2]*m[3])); } - - inline int form4_inv(form4 &m_inv, form4 &m) { -- register double det = form4_det(m); -+ double det = form4_det(m); - if (fzero(det)) return 0; - m_inv[0] = (m[1]*(m[2]*m[3]-m[4]*m[4])+ - m[5]*(2.0*m[4]*m[7]-m[2]*m[5])-m[3]*m[7]*m[7])/det; diff --git a/science/liggghts/files/patch-pair.cpp b/science/liggghts/files/patch-pair.cpp deleted file mode 100644 index 4e1a7db54aef..000000000000 --- a/science/liggghts/files/patch-pair.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- pair.cpp.orig 2018-11-02 06:56:59 UTC -+++ pair.cpp -@@ -566,7 +566,7 @@ void Pair::init_tables_disp(double cut_l - } - - rsq = rsq_lookup.f; -- register double x2 = g2*rsq, a2 = 1.0/x2; -+ double x2 = g2*rsq, a2 = 1.0/x2; - x2 = a2*exp(-x2); - - rdisptable[i] = rsq_lookup.f; -@@ -612,7 +612,7 @@ void Pair::init_tables_disp(double cut_l - if (rsq_lookup.f < (cut_lj_globalsq = cut_lj_global * cut_lj_global)) { - rsq_lookup.f = cut_lj_globalsq; - -- register double x2 = g2*rsq, a2 = 1.0/x2; -+ double x2 = g2*rsq, a2 = 1.0/x2; - x2 = a2*exp(-x2); - f_tmp = g8*(((6.0*a2+6.0)*a2+3.0)*a2+1.0)*x2*rsq; - e_tmp = g6*((a2+1.0)*a2+0.5)*x2; diff --git a/science/liggghts/pkg-plist b/science/liggghts/pkg-plist index b86a3b0abb72..b48b3b3b1e41 100644 --- a/science/liggghts/pkg-plist +++ b/science/liggghts/pkg-plist @@ -1,448 +1,456 @@ bin/liggghts include/liggghts/abstract_mesh.h include/liggghts/accelerator_cuda.h include/liggghts/accelerator_omp.h include/liggghts/angle.h include/liggghts/angle_hybrid.h include/liggghts/associative_pointer_array.h include/liggghts/associative_pointer_array_I.h include/liggghts/atom.h include/liggghts/atom_masks.h include/liggghts/atom_vec.h include/liggghts/atom_vec_atomic.h include/liggghts/atom_vec_charge.h include/liggghts/atom_vec_convexhull.h include/liggghts/atom_vec_ellipsoid.h include/liggghts/atom_vec_full.h include/liggghts/atom_vec_hybrid.h include/liggghts/atom_vec_line.h include/liggghts/atom_vec_molecular.h include/liggghts/atom_vec_sph.h include/liggghts/atom_vec_sph_var.h include/liggghts/atom_vec_sphere.h include/liggghts/atom_vec_superquadric.h include/liggghts/atom_vec_tri.h include/liggghts/bond.h include/liggghts/bond_harmonic.h include/liggghts/bond_hybrid.h include/liggghts/bounding_box.h include/liggghts/cfd_datacoupling.h include/liggghts/cfd_datacoupling_file.h include/liggghts/cfd_datacoupling_mpi.h include/liggghts/cfd_datacoupling_simple.h include/liggghts/cfd_regionmodel.h include/liggghts/cfd_regionmodel_none.h include/liggghts/change_box.h include/liggghts/citeme.h include/liggghts/cohesion_model_base.h include/liggghts/cohesion_model_easo_capillary_viscous.h include/liggghts/cohesion_model_sjkr.h include/liggghts/cohesion_model_sjkr2.h include/liggghts/cohesion_model_washino_capillary_viscous.h include/liggghts/comm.h include/liggghts/comm_I.h include/liggghts/compute.h include/liggghts/compute_atom_molecule.h include/liggghts/compute_bond_local.h include/liggghts/compute_centro_atom.h include/liggghts/compute_cluster_atom.h include/liggghts/compute_cna_atom.h include/liggghts/compute_com.h include/liggghts/compute_com_molecule.h include/liggghts/compute_contact_atom.h include/liggghts/compute_contact_atom_gran.h include/liggghts/compute_coord_atom.h include/liggghts/compute_displace_atom.h include/liggghts/compute_erotate.h include/liggghts/compute_erotate_asphere.h include/liggghts/compute_erotate_multisphere.h include/liggghts/compute_erotate_sphere.h include/liggghts/compute_erotate_sphere_atom.h include/liggghts/compute_erotate_superquadric.h include/liggghts/compute_group_group.h include/liggghts/compute_gyration.h include/liggghts/compute_gyration_molecule.h include/liggghts/compute_inertia_molecule.h include/liggghts/compute_ke.h include/liggghts/compute_ke_atom.h include/liggghts/compute_ke_multisphere.h include/liggghts/compute_msd.h include/liggghts/compute_msd_molecule.h include/liggghts/compute_nparticles_tracer_region.h include/liggghts/compute_pair_gran_local.h include/liggghts/compute_pe.h include/liggghts/compute_pe_atom.h include/liggghts/compute_pressure.h include/liggghts/compute_property_atom.h include/liggghts/compute_property_local.h include/liggghts/compute_property_molecule.h include/liggghts/compute_rdf.h include/liggghts/compute_reduce.h include/liggghts/compute_reduce_region.h include/liggghts/compute_rigid.h include/liggghts/compute_slice.h include/liggghts/compute_stress_atom.h include/liggghts/compute_temp.h include/liggghts/contact_interface.h include/liggghts/contact_model_base.h include/liggghts/contact_model_constants.h include/liggghts/contact_models.h include/liggghts/container.h include/liggghts/container_base.h include/liggghts/container_base_I.h include/liggghts/create_atoms.h include/liggghts/create_box.h include/liggghts/custom_value_tracker.h include/liggghts/custom_value_tracker_I.h include/liggghts/debug_liggghts.h include/liggghts/delete_atoms.h include/liggghts/delete_bonds.h include/liggghts/dihedral.h include/liggghts/dihedral_hybrid.h include/liggghts/displace_atoms.h include/liggghts/domain.h include/liggghts/domain_I.h include/liggghts/domain_definitions.h include/liggghts/domain_wedge.h include/liggghts/domain_wedge_dummy.h include/liggghts/dump.h include/liggghts/dump_atom_vtk.h include/liggghts/dump_custom.h include/liggghts/dump_custom_vtk.h include/liggghts/dump_custom_vtm.h include/liggghts/dump_decomposition_vtk.h include/liggghts/dump_euler_vtk.h include/liggghts/dump_image.h include/liggghts/dump_local.h include/liggghts/dump_local_gran.h include/liggghts/dump_local_gran_vtk.h include/liggghts/dump_mesh.h include/liggghts/dump_mesh_stl.h include/liggghts/dump_mesh_vtk.h include/liggghts/dump_mesh_vtm.h include/liggghts/dump_movie.h include/liggghts/dump_particle.h include/liggghts/dump_vtk.h include/liggghts/dump_xyz.h include/liggghts/error.h include/liggghts/error_special.h include/liggghts/finish.h include/liggghts/fix.h include/liggghts/fix_adapt.h include/liggghts/fix_addforce.h include/liggghts/fix_ave_atom.h include/liggghts/fix_ave_correlate.h include/liggghts/fix_ave_euler.h include/liggghts/fix_ave_histo.h include/liggghts/fix_ave_spatial.h include/liggghts/fix_ave_time.h include/liggghts/fix_aveforce.h include/liggghts/fix_base_liggghts.h include/liggghts/fix_box_relax.h include/liggghts/fix_buoyancy.h include/liggghts/fix_calculate_energy_wall.h include/liggghts/fix_cfd_coupling.h include/liggghts/fix_cfd_coupling_convection.h include/liggghts/fix_cfd_coupling_convection_impl.h include/liggghts/fix_cfd_coupling_convection_species.h include/liggghts/fix_cfd_coupling_force.h include/liggghts/fix_cfd_coupling_force_implicit.h include/liggghts/fix_check_timestep_gran.h include/liggghts/fix_check_timestep_sph.h include/liggghts/fix_contact_atom_counter.h include/liggghts/fix_contact_atom_counter_dummy.h include/liggghts/fix_contact_atom_counter_wall.h include/liggghts/fix_contact_atom_counter_wall_dummy.h include/liggghts/fix_contact_history.h include/liggghts/fix_contact_history_mesh.h include/liggghts/fix_contact_history_mesh_I.h include/liggghts/fix_contact_property_atom.h include/liggghts/fix_contact_property_atom_wall.h include/liggghts/fix_continuum_weighted.h include/liggghts/fix_deform.h include/liggghts/fix_deform_check.h include/liggghts/fix_diam_max.h include/liggghts/fix_drag.h include/liggghts/fix_dt_reset.h include/liggghts/fix_dummy.h include/liggghts/fix_dummy2.h include/liggghts/fix_efield.h include/liggghts/fix_enforce2d.h include/liggghts/fix_external.h include/liggghts/fix_fiber_spring_simple.h include/liggghts/fix_freeze.h include/liggghts/fix_gravity.h include/liggghts/fix_heat_gran.h include/liggghts/fix_heat_gran_conduction.h include/liggghts/fix_insert.h include/liggghts/fix_insert_pack.h include/liggghts/fix_insert_rate_region.h include/liggghts/fix_insert_stream.h include/liggghts/fix_insert_stream_predefined.h include/liggghts/fix_lb_coupling_onetoone.h include/liggghts/fix_lineforce.h include/liggghts/fix_massflow_mesh.h include/liggghts/fix_massflow_mesh_sieve.h include/liggghts/fix_mesh.h include/liggghts/fix_mesh_surface.h include/liggghts/fix_minimize.h include/liggghts/fix_mixing.h include/liggghts/fix_momentum.h include/liggghts/fix_move.h include/liggghts/fix_move_mesh.h include/liggghts/fix_multicontact_halfspace.h include/liggghts/fix_multisphere.h include/liggghts/fix_multisphere_break.h include/liggghts/fix_multisphere_comm_I.h include/liggghts/fix_neighlist_mesh.h include/liggghts/fix_nve.h include/liggghts/fix_nve_asphere.h include/liggghts/fix_nve_asphere_base.h include/liggghts/fix_nve_asphere_noforce.h include/liggghts/fix_nve_limit.h include/liggghts/fix_nve_line.h include/liggghts/fix_nve_noforce.h include/liggghts/fix_nve_sph.h include/liggghts/fix_nve_sph_stationary.h include/liggghts/fix_nve_sphere.h include/liggghts/fix_nve_superquadric.h include/liggghts/fix_particledistribution_discrete.h include/liggghts/fix_planeforce.h include/liggghts/fix_print.h include/liggghts/fix_property_atom.h include/liggghts/fix_property_atom_region_tracer.h include/liggghts/fix_property_atom_tracer.h include/liggghts/fix_property_atom_tracer_stream.h include/liggghts/fix_property_global.h include/liggghts/fix_read_restart.h include/liggghts/fix_region_variable.h include/liggghts/fix_relax_contacts.h include/liggghts/fix_remove.h include/liggghts/fix_respa.h include/liggghts/fix_rigid.h include/liggghts/fix_scalar_transport_equation.h include/liggghts/fix_setforce.h include/liggghts/fix_sph.h include/liggghts/fix_sph_density_continuity.h include/liggghts/fix_sph_density_corr.h +include/liggghts/fix_sph_density_drift_corr.h include/liggghts/fix_sph_density_summation.h +include/liggghts/fix_sph_integrity.h +include/liggghts/fix_sph_mixidx.h include/liggghts/fix_sph_pressure.h +include/liggghts/fix_sph_velgrad.h include/liggghts/fix_spring.h include/liggghts/fix_spring_rg.h include/liggghts/fix_spring_self.h include/liggghts/fix_store.h include/liggghts/fix_store_force.h include/liggghts/fix_store_state.h include/liggghts/fix_template_multiplespheres.h include/liggghts/fix_template_multisphere.h include/liggghts/fix_template_sphere.h include/liggghts/fix_template_superquadric.h include/liggghts/fix_viscous.h include/liggghts/fix_wall.h include/liggghts/fix_wall_gran.h include/liggghts/fix_wall_gran_base.h include/liggghts/fix_wall_region.h include/liggghts/fix_wall_region_sph.h include/liggghts/fix_wall_sph.h +include/liggghts/fix_wall_sph_general.h +include/liggghts/fix_wall_sph_general_base.h +include/liggghts/fix_wall_sph_general_gap.h include/liggghts/force.h include/liggghts/general_container.h include/liggghts/general_container_I.h include/liggghts/global_properties.h include/liggghts/granular_pair_style.h include/liggghts/granular_styles.h include/liggghts/granular_wall.h include/liggghts/group.h include/liggghts/histogram.h include/liggghts/image.h include/liggghts/improper.h include/liggghts/improper_hybrid.h include/liggghts/info.h include/liggghts/input.h include/liggghts/input_mesh_tet.h include/liggghts/input_mesh_tri.h include/liggghts/input_multisphere.h include/liggghts/integrate.h include/liggghts/irregular.h include/liggghts/kspace.h include/liggghts/lammps.h include/liggghts/lattice.h include/liggghts/library.h include/liggghts/library_cfd_coupling.h include/liggghts/lmptype.h include/liggghts/lmpwindows.h include/liggghts/math_complex.h include/liggghts/math_const.h include/liggghts/math_extra.h include/liggghts/math_extra_liggghts.h include/liggghts/math_extra_liggghts_nonspherical.h include/liggghts/math_extra_liggghts_superquadric.h include/liggghts/math_special.h include/liggghts/math_vector.h include/liggghts/memory.h include/liggghts/memory_ns.h include/liggghts/mesh_module.h include/liggghts/mesh_module_liquidtransfer.h include/liggghts/mesh_module_stress.h include/liggghts/mesh_module_stress_servo.h include/liggghts/mesh_mover.h include/liggghts/mesh_mover_linear.h include/liggghts/mesh_mover_rotation.h include/liggghts/min.h include/liggghts/min_cg.h include/liggghts/min_linesearch.h include/liggghts/minimize.h include/liggghts/modified_andrew.h include/liggghts/modify.h include/liggghts/mpi_liggghts.h include/liggghts/multi_node_mesh.h include/liggghts/multi_node_mesh_I.h include/liggghts/multi_node_mesh_parallel.h include/liggghts/multi_node_mesh_parallel_I.h include/liggghts/multi_node_mesh_parallel_buffer_I.h include/liggghts/multi_vector_container.h include/liggghts/multisphere.h include/liggghts/multisphere_I.h include/liggghts/multisphere_parallel.h include/liggghts/multisphere_parallel_I.h include/liggghts/my_page.h include/liggghts/my_pool_chunk.h include/liggghts/neigh_bond.h include/liggghts/neigh_derive.h include/liggghts/neigh_dummy.h include/liggghts/neigh_full.h include/liggghts/neigh_gran.h include/liggghts/neigh_half_bin.h include/liggghts/neigh_half_multi.h include/liggghts/neigh_half_nsq.h include/liggghts/neigh_list.h include/liggghts/neigh_mlg_dummy.h include/liggghts/neigh_modify.h include/liggghts/neigh_multi_level_grid.h include/liggghts/neigh_request.h include/liggghts/neigh_respa.h include/liggghts/neighbor.h include/liggghts/normal_model_base.h include/liggghts/normal_model_edinburgh.h include/liggghts/normal_model_edinburgh_stiffness.h include/liggghts/normal_model_hertz.h include/liggghts/normal_model_hertz_stiffness.h include/liggghts/normal_model_hooke.h include/liggghts/normal_model_hooke_hysteresis.h include/liggghts/normal_model_hooke_stiffness.h include/liggghts/normal_model_luding.h include/liggghts/normal_model_thornton_ning.h include/liggghts/os_specific.h include/liggghts/output.h include/liggghts/pack.h include/liggghts/pair.h include/liggghts/pair_gran.h include/liggghts/pair_gran_base.h include/liggghts/pair_gran_proxy.h include/liggghts/pair_hybrid.h include/liggghts/pair_hybrid_overlay.h include/liggghts/pair_line_lj.h include/liggghts/pair_soft.h include/liggghts/pair_sph.h include/liggghts/pair_sph_artvisc_tenscorr.h +include/liggghts/pair_sph_morris_tenscorr.h include/liggghts/particleToInsert.h include/liggghts/particleToInsertSuperquadric.h include/liggghts/particleToInsert_multisphere.h include/liggghts/pointers.h include/liggghts/primitive_wall.h include/liggghts/primitive_wall_definitions.h include/liggghts/probability_distribution.h include/liggghts/procmap.h include/liggghts/properties.h include/liggghts/property_registry.h include/liggghts/random.h include/liggghts/random_mars.h include/liggghts/random_park.h include/liggghts/read_data.h include/liggghts/read_dump.h include/liggghts/read_restart.h include/liggghts/reader.h include/liggghts/reader_native.h include/liggghts/reader_xyz.h include/liggghts/region.h include/liggghts/region_block.h include/liggghts/region_cone.h include/liggghts/region_cylinder.h include/liggghts/region_intersect.h include/liggghts/region_mesh_tet.h include/liggghts/region_mesh_tet_I.h include/liggghts/region_neighbor_list.h include/liggghts/region_neighbor_list_I.h include/liggghts/region_neighbor_list_base.h include/liggghts/region_neighbor_list_definitions.h include/liggghts/region_plane.h include/liggghts/region_prism.h include/liggghts/region_sphere.h include/liggghts/region_union.h include/liggghts/region_wedge.h include/liggghts/replicate.h include/liggghts/respa.h include/liggghts/rolling_model_base.h include/liggghts/rolling_model_cdt.h include/liggghts/rolling_model_epsd.h include/liggghts/rolling_model_epsd2.h include/liggghts/rolling_model_epsd3.h include/liggghts/rolling_model_luding.h include/liggghts/rotate.h include/liggghts/run.h include/liggghts/run_time.h include/liggghts/scalar_container.h include/liggghts/set.h include/liggghts/settings.h include/liggghts/signal_handling.h include/liggghts/sort_buffer.h include/liggghts/special.h include/liggghts/sph_kernel_cubicspline.h include/liggghts/sph_kernel_cubicspline2D.h include/liggghts/sph_kernel_spiky.h include/liggghts/sph_kernel_spiky2D.h include/liggghts/sph_kernel_wendland.h include/liggghts/sph_kernel_wendland2D.h include/liggghts/sph_kernels.h include/liggghts/string_liggghts.h include/liggghts/suffix.h include/liggghts/superquadric.h include/liggghts/surface_mesh.h include/liggghts/surface_mesh_I.h include/liggghts/surface_mesh_feature_remove.h include/liggghts/surface_mesh_feature_remove_I.h include/liggghts/surface_model_base.h include/liggghts/surface_model_default.h include/liggghts/surface_model_multicontact.h include/liggghts/surface_model_superquadric.h include/liggghts/tangential_model_base.h include/liggghts/tangential_model_history.h include/liggghts/tangential_model_luding_tn.h include/liggghts/tangential_model_no_history.h include/liggghts/tet_mesh.h include/liggghts/tet_mesh_I.h include/liggghts/thermo.h include/liggghts/timer.h include/liggghts/tracking_mesh.h include/liggghts/tracking_mesh_I.h include/liggghts/tri_line.h include/liggghts/tri_mesh.h include/liggghts/tri_mesh_I.h include/liggghts/tri_mesh_I_superquadric.h include/liggghts/tri_mesh_deform.h include/liggghts/tri_mesh_planar.h include/liggghts/tri_mesh_planar_I.h include/liggghts/universe.h include/liggghts/update.h include/liggghts/utils.h include/liggghts/variable.h include/liggghts/vector_container.h include/liggghts/vector_liggghts.h include/liggghts/velocity.h include/liggghts/verlet.h include/liggghts/version.h include/liggghts/volume_mesh.h include/liggghts/volume_mesh_I.h include/liggghts/write_data.h include/liggghts/write_dump.h include/liggghts/write_restart.h lib/libliggghts.so