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
|
|
|
|
certain rights in this software. This software is distributed under
|
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
2010-01-12 09:37:48 +08:00
|
|
|
#ifdef DUMP_CLASS
|
|
|
|
|
|
|
|
DumpStyle(custom,DumpCustom)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef LMP_DUMP_CUSTOM_H
|
|
|
|
#define LMP_DUMP_CUSTOM_H
|
2006-09-28 03:51:33 +08:00
|
|
|
|
|
|
|
#include "dump.h"
|
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
namespace LAMMPS_NS {
|
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
class DumpCustom : public Dump {
|
|
|
|
public:
|
2007-01-30 08:22:05 +08:00
|
|
|
DumpCustom(class LAMMPS *, int, char **);
|
2009-09-03 00:24:00 +08:00
|
|
|
virtual ~DumpCustom();
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2009-09-03 00:24:00 +08:00
|
|
|
protected:
|
2007-10-04 00:22:30 +08:00
|
|
|
int nevery; // dump frequency to check Fix against
|
2006-09-28 03:51:33 +08:00
|
|
|
int iregion; // -1 if no region, else which region
|
2010-08-19 23:16:31 +08:00
|
|
|
char *idregion; // region ID
|
2006-09-28 03:51:33 +08:00
|
|
|
int nthresh; // # of defined threshholds
|
|
|
|
int *thresh_array; // array to threshhhold on for each nthresh
|
|
|
|
int *thresh_op; // threshhold operation for each nthresh
|
|
|
|
double *thresh_value; // threshhold value for each nthresh
|
|
|
|
|
|
|
|
int nmine; // # of lines I am dumping
|
|
|
|
int *vtype; // type of each vector (INT, DOUBLE)
|
|
|
|
char **vformat; // format string for each vector element
|
|
|
|
|
2009-03-17 06:34:07 +08:00
|
|
|
char *columns; // column labels
|
|
|
|
|
2007-12-14 02:16:04 +08:00
|
|
|
int maxlocal; // size of atom selection and variable arrays
|
2006-09-28 03:51:33 +08:00
|
|
|
int *choose; // 1 if output this atom, 0 if no
|
|
|
|
double *dchoose; // value for each atom to threshhold against
|
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
int nfield; // # of keywords listed by user
|
2007-10-04 00:22:30 +08:00
|
|
|
|
2007-12-14 02:16:04 +08:00
|
|
|
int *field2index; // which compute,fix,variable calcs this field
|
|
|
|
int *argindex; // index into compute,fix scalar_atom,vector_atom
|
|
|
|
// 0 for scalar_atom, 1-N for vector_atom values
|
|
|
|
|
2007-10-04 00:22:30 +08:00
|
|
|
int ncompute; // # of Compute objects used by dump
|
2007-01-30 08:22:05 +08:00
|
|
|
char **id_compute; // their IDs
|
|
|
|
class Compute **compute; // list of ptrs to the Compute objects
|
2006-11-11 05:29:18 +08:00
|
|
|
|
2007-10-04 00:22:30 +08:00
|
|
|
int nfix; // # of Fix objects used by dump
|
|
|
|
char **id_fix; // their IDs
|
|
|
|
class Fix **fix; // list of ptrs to the Fix objects
|
2007-12-14 02:16:04 +08:00
|
|
|
|
|
|
|
int nvariable; // # of Variables used by dump
|
|
|
|
char **id_variable; // their names
|
|
|
|
int *variable; // list of indices for the Variables
|
|
|
|
double **vbuf; // local storage for variable evaluation
|
2006-11-11 05:29:18 +08:00
|
|
|
|
|
|
|
// private methods
|
|
|
|
|
2010-09-16 06:16:20 +08:00
|
|
|
virtual void init_style();
|
2011-01-08 05:42:19 +08:00
|
|
|
virtual void write_header(bigint);
|
2006-09-28 03:51:33 +08:00
|
|
|
int count();
|
2010-09-16 06:16:20 +08:00
|
|
|
void pack(int *);
|
2009-09-03 00:24:00 +08:00
|
|
|
virtual void write_data(int, double *);
|
2011-03-17 04:03:49 +08:00
|
|
|
bigint memory_usage();
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
void parse_fields(int, char **);
|
2007-10-04 00:22:30 +08:00
|
|
|
int add_compute(char *);
|
|
|
|
int add_fix(char *);
|
2007-12-14 02:16:04 +08:00
|
|
|
int add_variable(char *);
|
2007-01-30 08:22:05 +08:00
|
|
|
int modify_param(int, char **);
|
2009-09-03 00:24:00 +08:00
|
|
|
virtual int modify_param2(int, char **) {return 0;}
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2011-01-08 05:42:19 +08:00
|
|
|
typedef void (DumpCustom::*FnPtrHeader)(bigint);
|
2006-09-28 03:51:33 +08:00
|
|
|
FnPtrHeader header_choice; // ptr to write header functions
|
2011-01-08 05:42:19 +08:00
|
|
|
void header_binary(bigint);
|
|
|
|
void header_binary_triclinic(bigint);
|
|
|
|
void header_item(bigint);
|
|
|
|
void header_item_triclinic(bigint);
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2006-11-11 05:29:18 +08:00
|
|
|
typedef void (DumpCustom::*FnPtrData)(int, double *);
|
|
|
|
FnPtrData write_choice; // ptr to write data functions
|
|
|
|
void write_binary(int, double *);
|
|
|
|
void write_text(int, double *);
|
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
// customize by adding a method prototype
|
|
|
|
|
|
|
|
typedef void (DumpCustom::*FnPtrPack)(int);
|
|
|
|
FnPtrPack *pack_choice; // ptrs to pack functions
|
2007-01-30 08:22:05 +08:00
|
|
|
|
2009-01-06 06:26:08 +08:00
|
|
|
void pack_id(int);
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_molecule(int);
|
|
|
|
void pack_type(int);
|
2008-09-09 22:45:36 +08:00
|
|
|
void pack_mass(int);
|
2009-01-13 23:40:03 +08:00
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_x(int);
|
|
|
|
void pack_y(int);
|
|
|
|
void pack_z(int);
|
|
|
|
void pack_xs(int);
|
|
|
|
void pack_ys(int);
|
|
|
|
void pack_zs(int);
|
2009-01-13 23:40:03 +08:00
|
|
|
void pack_xs_triclinic(int);
|
|
|
|
void pack_ys_triclinic(int);
|
|
|
|
void pack_zs_triclinic(int);
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_xu(int);
|
|
|
|
void pack_yu(int);
|
|
|
|
void pack_zu(int);
|
2009-01-13 23:40:03 +08:00
|
|
|
void pack_xu_triclinic(int);
|
|
|
|
void pack_yu_triclinic(int);
|
|
|
|
void pack_zu_triclinic(int);
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_ix(int);
|
|
|
|
void pack_iy(int);
|
|
|
|
void pack_iz(int);
|
2009-01-13 23:40:03 +08:00
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_vx(int);
|
|
|
|
void pack_vy(int);
|
|
|
|
void pack_vz(int);
|
|
|
|
void pack_fx(int);
|
|
|
|
void pack_fy(int);
|
|
|
|
void pack_fz(int);
|
|
|
|
void pack_q(int);
|
|
|
|
void pack_mux(int);
|
|
|
|
void pack_muy(int);
|
|
|
|
void pack_muz(int);
|
2008-04-29 07:56:09 +08:00
|
|
|
void pack_radius(int);
|
|
|
|
void pack_omegax(int);
|
|
|
|
void pack_omegay(int);
|
|
|
|
void pack_omegaz(int);
|
2008-06-25 01:25:43 +08:00
|
|
|
void pack_angmomx(int);
|
|
|
|
void pack_angmomy(int);
|
|
|
|
void pack_angmomz(int);
|
2007-06-20 21:17:59 +08:00
|
|
|
void pack_quatw(int);
|
|
|
|
void pack_quati(int);
|
|
|
|
void pack_quatj(int);
|
|
|
|
void pack_quatk(int);
|
2006-09-28 03:51:33 +08:00
|
|
|
void pack_tqx(int);
|
|
|
|
void pack_tqy(int);
|
|
|
|
void pack_tqz(int);
|
2010-08-21 04:43:41 +08:00
|
|
|
void pack_spin(int);
|
|
|
|
void pack_eradius(int);
|
2010-08-26 01:03:55 +08:00
|
|
|
void pack_ervel(int);
|
|
|
|
void pack_erforce(int);
|
2007-10-04 00:22:30 +08:00
|
|
|
|
|
|
|
void pack_compute(int);
|
|
|
|
void pack_fix(int);
|
2007-12-14 02:16:04 +08:00
|
|
|
void pack_variable(int);
|
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
|