2014-10-22 01:09:24 +08:00
|
|
|
/* -*- c++ -*- ----------------------------------------------------------
|
2006-09-28 03:51:33 +08:00
|
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
2007-01-30 08:22:05 +08:00
|
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
|
|
Steve Plimpton, sjplimp@sandia.gov
|
2006-09-28 03:51:33 +08:00
|
|
|
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
2012-06-07 06:47:51 +08:00
|
|
|
certain rights in this software. This software is distributed under
|
2006-09-28 03:51:33 +08:00
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
2010-01-12 09:37:48 +08:00
|
|
|
#ifdef COMMAND_CLASS
|
|
|
|
|
|
|
|
CommandStyle(delete_atoms,DeleteAtoms)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef LMP_DELETE_ATOMS_H
|
|
|
|
#define LMP_DELETE_ATOMS_H
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
#include "pointers.h"
|
2013-05-24 06:45:11 +08:00
|
|
|
#include <map>
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
namespace LAMMPS_NS {
|
|
|
|
|
|
|
|
class DeleteAtoms : protected Pointers {
|
2006-09-28 03:51:33 +08:00
|
|
|
public:
|
2007-01-30 08:22:05 +08:00
|
|
|
DeleteAtoms(class LAMMPS *);
|
2006-09-28 03:51:33 +08:00
|
|
|
void command(int, char **);
|
|
|
|
|
|
|
|
private:
|
2008-01-25 06:30:58 +08:00
|
|
|
int *dlist;
|
2015-01-07 05:07:35 +08:00
|
|
|
int compress_flag,bond_flag,mol_flag;
|
2014-01-26 06:46:08 +08:00
|
|
|
std::map<tagint,int> *hash;
|
2008-01-25 06:30:58 +08:00
|
|
|
|
|
|
|
void delete_group(int, char **);
|
|
|
|
void delete_region(int, char **);
|
|
|
|
void delete_overlap(int, char **);
|
2008-12-05 00:14:49 +08:00
|
|
|
void delete_porosity(int, char **);
|
2015-01-07 05:07:35 +08:00
|
|
|
|
|
|
|
void delete_bond();
|
2014-05-01 01:41:33 +08:00
|
|
|
void delete_molecule();
|
2014-05-13 06:29:09 +08:00
|
|
|
void recount_topology();
|
2010-08-04 07:39:05 +08:00
|
|
|
void options(int, char **);
|
2011-04-06 03:10:43 +08:00
|
|
|
|
|
|
|
inline int sbmask(int j) {
|
|
|
|
return j >> SBBITS & 3;
|
|
|
|
}
|
2013-05-24 06:45:11 +08:00
|
|
|
|
|
|
|
// static variable for ring communication callback to access class data
|
|
|
|
// callback functions for ring communication
|
|
|
|
|
|
|
|
static DeleteAtoms *cptr;
|
2015-01-07 05:07:35 +08:00
|
|
|
static void bondring(int, char *);
|
2013-05-24 06:45:11 +08:00
|
|
|
static void molring(int, char *);
|
2006-09-28 03:51:33 +08:00
|
|
|
};
|
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
}
|
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
#endif
|
2010-01-12 09:37:48 +08:00
|
|
|
#endif
|
2011-12-16 09:37:13 +08:00
|
|
|
|
|
|
|
/* ERROR/WARNING messages:
|
|
|
|
|
|
|
|
E: Delete_atoms command before simulation box is defined
|
|
|
|
|
|
|
|
The delete_atoms command cannot be used before a read_data,
|
|
|
|
read_restart, or create_box command.
|
|
|
|
|
|
|
|
E: Illegal ... command
|
|
|
|
|
|
|
|
Self-explanatory. Check the input script syntax and compare to the
|
|
|
|
documentation for the command. You can use -echo screen as a
|
|
|
|
command-line option when running LAMMPS to see the offending line.
|
|
|
|
|
|
|
|
E: Cannot use delete_atoms unless atoms have IDs
|
|
|
|
|
|
|
|
Your atoms do not have IDs, so the delete_atoms command cannot be
|
|
|
|
used.
|
|
|
|
|
|
|
|
E: Could not find delete_atoms group ID
|
|
|
|
|
|
|
|
Group ID used in the delete_atoms command does not exist.
|
|
|
|
|
|
|
|
E: Could not find delete_atoms region ID
|
|
|
|
|
|
|
|
Region ID used in the delete_atoms command does not exist.
|
|
|
|
|
|
|
|
E: Delete_atoms requires a pair style be defined
|
|
|
|
|
|
|
|
This is because atom deletion within a cutoff uses a pairwise
|
|
|
|
neighbor list.
|
|
|
|
|
|
|
|
E: Delete_atoms cutoff > neighbor cutoff
|
|
|
|
|
|
|
|
Cannot delete atoms further away than a processor knows about.
|
|
|
|
|
|
|
|
*/
|