git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14511 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2016-01-28 21:19:43 +00:00
parent d42ebe4e5e
commit 7e67afad7b
4 changed files with 7 additions and 7 deletions

View File

@ -66,7 +66,7 @@ variable vol_one equal ${l0}^2 # volume of one particle -- assuming unit thickn
variable skin equal ${h} # Verlet list range
neighbor ${skin} bin
set group all volume ${vol_one}
set group all smd_mass_density ${rho}
set group all smd/mass/density ${rho}
set group all diameter ${h} # set SPH kernel radius
####################################################################################################

View File

@ -76,10 +76,10 @@ group tlsph type 2
variable h equal 2.5*${l0} # SPH kernel diameter
variable vol_one equal ${l0}^2 # initial particle volume for 2d simulation
set group all diameter ${h}
set group all smd_contact_radius ${l0}
set group all smd/contact/radius ${l0}
set group all volume ${vol_one}
set group all smd_mass_density ${rho_water}
set group solids smd_mass_density ${rho_obj}
set group all smd/mass/density ${rho_water}
set group solids smd/mass/density ${rho_obj}
variable contact_scale equal 1.5 # scale factor to increase contact gap between bodies
variable skin equal ${h} # Verlet list range
neighbor ${skin} bin

View File

@ -54,9 +54,9 @@ variable vol_one equal ${l0}^3 # volume of one particle -- assuming unit thickn
variable skin equal 0.1*${h} # Verlet list range
neighbor ${skin} bin
variable cr equal ${l0}/2
set group all smd_contact_radius ${cr}
set group all smd/contact/radius ${cr}
set group all volume ${vol_one}
set group all smd_mass_density ${rho}
set group all smd/mass/density ${rho}
set group all diameter ${h} # set SPH kernel radius
####################################################################################################

View File

@ -50,7 +50,7 @@ group tlsph union left right
variable l0 equal 0.3 # we need to set a length scale for the neighbor list skin
variable skin equal 4.0*${l0} # Verlet list range
neighbor ${skin} bin
set group all smd_contact_radius 1.0
set group all smd/contact/radius 1.0
####################################################################################################