Hello. I’ve been trying to run a script for gas permeabilitiy, and the way it works is by generating a methane molecule, having it run for a while, and then deleting that molecule and recreating it in a new location.
This works for a while, but after around 15 thousand steps, creating the atoms suddenly creates this error:
Deleted 5 atoms, new total = 2300
Created 5 atoms
using lattice units in orthogonal box = (0 0 -15.176166) to (19.7 15.2 91.056996)
create_atoms CPU = 0.000 seconds
5 atoms in group penetrantGenerated 1 of 1 mixed pair_coeff terms from arithmetic mixing rule
Setting up cg style minimization …
Unit style : real
Current step : 15618WARNING: Inconsistent image flags (src/domain.cpp:1051)
ERROR on proc 0: Angle atoms 2302 2301 2304 missing on proc 0 at step 15618 (src/ntopo_angle_all.cpp:62)
Last command: minimize 0.0 1.0e-4 1000 10000003
the area of my code that is causing this error:
minimize 0.0 1.0e-4 1000 10000004
delete_atoms group penetrant
create_atoms 0 random 1 $s mobileR mol CH4mol 55 overlap 0.3 maxtry 5000
group penetrant id > 2300
fix 3 penetrant nvt temp 300.0 300.0 100.0
minimize 0.0 1.0e-4 1000 10000003
“”"
I don’t think it’s an overlap thing, since there wasn’t a warning about a failure to create the molecule. The minimize command just before I delete also didn’t cause any issues. What’s happening here, and how can I fix it?