Hi all,
I am simulating a single moving sphere placed between two fixed walls (represented by spherical particles) using LAMMPS with the lubricate/poly pair style
The sphere moves in the x-direction with an initial velocity.
Both walls consist of frozen particles (high-mass, no movement).
The fluid behaviour is implicitly modelled via lubrication forces.
Could you please help me explain why the vertical force component fz1 acting on the sphere fluctuates over time (switching from negative to positive values) even though the Z-position increases linearly?
Best
Fernando
As a suggestion, someone is more likely to assist if you are able to provide a small script that demonstrates the issue you are having. Without such details, it’s hard to speculate.
---- CREATE A bottom WALL USING FROZEN PARTICLES ----
region bottom_wall_region block 0 128 0 128 0 1 units box
lattice sc 1
create_atoms 2 region bottom_wall_region
set type 2 diameter 0.5
group bottom_wall type 2
set group bottom_wall mass 99999 # Large mass to freeze wall particles
---- CREATE A top WALL USING FROZEN PARTICLES ----
region top_wall_region block 0 128 0 128 1.82 2.82 units box
lattice sc 1
create_atoms 3 region top_wall_region
set type 3 diameter 0.5
group top_wall type 3
set group top_wall mass 99999 # Large mass to freeze wall particles
dump dmp all vtk 20 post/plane_*.vtk id type x y z vx vy vz fx fy fz radius #dump_modify dmp element Sphere Wall
fix exportTXT all print 10 “step time {x1} {y1} {z1} {fx1} {fy1} {fz1}” file output_sphere_plane_perp.txt screen no title “Step Time x1 y1 z1 fx1 fy1 fz1”