NAMD
Public Member Functions | Public Attributes | Protected Member Functions | List of all members
ComputeGridForce Class Reference

#include <ComputeGridForce.h>

Inheritance diagram for ComputeGridForce:
ComputeHomePatch Compute

Public Member Functions

 ComputeGridForce (ComputeID c, PatchID pid)
 
virtual ~ComputeGridForce ()
 
void doForce (FullAtom *p, Results *r)
 
- Public Member Functions inherited from ComputeHomePatch
 ComputeHomePatch (ComputeID c, PatchID pid)
 
virtual ~ComputeHomePatch ()
 
virtual void initialize ()
 
virtual void atomUpdate ()
 
virtual void doWork ()
 
- Public Member Functions inherited from Compute
 Compute (ComputeID)
 
int type ()
 
virtual ~Compute ()
 
void setNumPatches (int n)
 
int getNumPatches ()
 
virtual void patchReady (PatchID, int doneMigration, int seq)
 
virtual int noWork ()
 
virtual void finishPatch (int)
 
int sequence (void)
 
int priority (void)
 
int getGBISPhase (void)
 
virtual void gbisP2PatchReady (PatchID, int seq)
 
virtual void gbisP3PatchReady (PatchID, int seq)
 

Public Attributes

SubmitReductionreduction
 
- Public Attributes inherited from Compute
const ComputeID cid
 
LDObjHandle ldObjHandle
 
LocalWorkMsg *const localWorkMsg
 

Protected Member Functions

template<class T >
void do_calc (T *grid, int gridnum, FullAtom *p, int numAtoms, Molecule *mol, Force *forces, BigReal &energy, Force &extForce, Tensor &extVirial)
 
- Protected Member Functions inherited from Compute
void enqueueWork ()
 

Additional Inherited Members

- Protected Attributes inherited from ComputeHomePatch
int numAtoms
 
Patchpatch
 
HomePatchhomePatch
 
- Protected Attributes inherited from Compute
int computeType
 
int basePriority
 
int gbisPhase
 
int gbisPhasePriority [3]
 

Detailed Description

Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000 by The Board of Trustees of the University of Illinois. All rights reserved.

Definition at line 17 of file ComputeGridForce.h.

Constructor & Destructor Documentation

ComputeGridForce::ComputeGridForce ( ComputeID  c,
PatchID  pid 
)

Definition at line 23 of file ComputeGridForce.C.

References ReductionMgr::Object(), reduction, REDUCTIONS_BASIC, and ReductionMgr::willSubmit().

24  : ComputeHomePatch(c,pid)
25 {
26 
28 
29 }
SubmitReduction * willSubmit(int setID, int size=-1)
Definition: ReductionMgr.C:365
static ReductionMgr * Object(void)
Definition: ReductionMgr.h:278
SubmitReduction * reduction
ComputeHomePatch(ComputeID c, PatchID pid)
ComputeGridForce::~ComputeGridForce ( )
virtual

Definition at line 33 of file ComputeGridForce.C.

References reduction.

34 {
35  delete reduction;
36 }
SubmitReduction * reduction

Member Function Documentation

template<class T >
void ComputeGridForce::do_calc ( T *  grid,
int  gridnum,
FullAtom p,
int  numAtoms,
Molecule mol,
Force forces,
BigReal energy,
Force extForce,
Tensor extVirial 
)
protected

Definition at line 39 of file ComputeGridForce.C.

References charge, DebugM, endi(), Patch::flags, Molecule::get_gridfrc_params(), ComputeHomePatch::homePatch, CompAtomExt::id, iout, Molecule::is_atom_gridforced(), iWARN(), Transform::j, Transform::k, Patch::lattice, ComputeHomePatch::numAtoms, outer(), CompAtom::position, Lattice::reverse_transform(), Flags::step, FullAtom::transform, Vector::x, Vector::y, and Vector::z.

Referenced by doForce().

40 {
41  Real scale; // Scaling factor
42  Charge charge; // Charge
43  Vector dV;
44  float V;
45 
46  Vector gfScale = grid->get_scale();
47  DebugM(3, "doCalc()\n" << endi);
48 
49  // Loop through and check each atom
50  for (int i = 0; i < numAtoms; i++) {
51  if (mol->is_atom_gridforced(p[i].id, gridnum))
52  {
53  DebugM(1, "Atom " << p[i].id << " is gridforced\n" << endi);
54 
55  mol->get_gridfrc_params(scale, charge, p[i].id, gridnum);
56 
57  // Wrap coordinates using grid center
58  Position pos = grid->wrap_position(p[i].position, homePatch->lattice);
59  DebugM(1, "pos = " << pos << "\n" << endi);
60 
61  // Here's where the action happens
62  int err = grid->compute_VdV(pos, V, dV);
63 
64  if (err) {
65  DebugM(2, "V = 0\n" << endi);
66  DebugM(2, "dV = 0 0 0\n" << endi);
67  continue; // This means the current atom is outside the potential
68  }
69 
70  //Force force = scale * Tensor::diagonal(gfScale) * (-charge * dV);
71  Force force = -charge * scale * Vector(gfScale.x * dV.x, gfScale.y * dV.y, gfScale.z * dV.z);
72 
73 #ifdef DEBUGM
74  DebugM(2, "scale = " << scale << " gfScale = " << gfScale << " charge = " << charge << "\n" << endi);
75 
76  DebugM(2, "V = " << V << "\n" << endi);
77  DebugM(2, "dV = " << dV << "\n" << endi);
78  DebugM(2, "grid = " << gridnum << " force = " << force << " pos = " << pos << " V = " << V << " dV = " << dV << " step = " << homePatch->flags.step << " index = " << p[i].id << "\n" << endi);
79 
80  DebugM(1, "transform = " << (int)p[i].transform.i << " "
81  << (int)p[i].transform.j << " " << (int)p[i].transform.k << "\n" << endi);
82 
83  if (V != V) {
84  iout << iWARN << "V is NaN!\natomid = " << p[i].id << " loc = " << p[i].position << " V = " << V << "\n" << endi;
85  }
86 #endif
87 
88  forces[i] += force;
89  extForce += force;
90  Position vpos = homePatch->lattice.reverse_transform(p[i].position, p[i].transform);
91 
92  //energy -= force * (vpos - homePatch->lattice.origin());
93  if (gfScale.x == gfScale.y && gfScale.x == gfScale.z)
94  {
95  // only makes sense when scaling is isotropic
96  energy += scale * gfScale.x * (charge * V);
97 
98  // add something when we're off the grid? I'm thinking no
99  }
100  extVirial += outer(force,vpos);
101  }
102  }
103  DebugM(3, "doCalc() done\n" << endi);
104 }
signed char j
Definition: NamdTypes.h:38
Lattice & lattice
Definition: Patch.h:126
Definition: Vector.h:64
float Real
Definition: common.h:109
#define DebugM(x, y)
Definition: Debug.h:59
std::ostream & endi(std::ostream &s)
Definition: InfoStream.C:54
BigReal z
Definition: Vector.h:66
Position position
Definition: NamdTypes.h:53
std::ostream & iWARN(std::ostream &s)
Definition: InfoStream.C:82
#define iout
Definition: InfoStream.h:51
void get_gridfrc_params(Real &k, Charge &q, int atomnum, int gridnum) const
Definition: Molecule.h:1274
Flags flags
Definition: Patch.h:127
signed char k
Definition: NamdTypes.h:38
BigReal x
Definition: Vector.h:66
Tensor outer(const Vector &v1, const Vector &v2)
Definition: Tensor.h:241
Position reverse_transform(Position data, const Transform &t) const
Definition: Lattice.h:138
BigReal y
Definition: Vector.h:66
k< npairi;++k){TABENERGY(const int numtypes=simParams->tableNumTypes;const float table_spacing=simParams->tableSpacing;const int npertype=(int)(namdnearbyint(simParams->tableMaxDist/simParams->tableSpacing)+1);) int table_i=(r2iilist[2 *k] >> 14)+r2_delta_expc;const int j=pairlisti[k];#define p_j BigReal diffa=r2list[k]-r2_table[table_i];#define table_four_i TABENERGY(register const int tabtype=-1-(lj_pars->A< 0?lj_pars->A:0);) BigReal kqq=kq_i *p_j-> charge
float Charge
Definition: NamdTypes.h:32
HomePatch * homePatch
Transform transform
Definition: NamdTypes.h:116
Bool is_atom_gridforced(int atomnum, int gridnum) const
Definition: Molecule.h:1185
int step
Definition: PatchTypes.h:16
void ComputeGridForce::doForce ( FullAtom p,
Results r 
)
virtual

Implements ComputeHomePatch.

Definition at line 106 of file ComputeGridForce.C.

References ADD_TENSOR_OBJECT, ADD_VECTOR_OBJECT, SimParameters::berendsenPressureOn, DebugM, do_calc(), endi(), Results::f, GridforceGrid::fits_lattice(), Patch::flags, forces, GridforceGrid::get_center(), GridforceGrid::get_checksize(), GridforceGrid::get_e(), GridforceGrid::get_grid_type(), Molecule::get_gridfrc_grid(), GridforceGrid::get_scale(), Patch::getNumAtoms(), GF_OVERLAPCHECK_FREQ, GridforceGrid::GridforceGridTypeFull, GridforceGrid::GridforceGridTypeLite, ComputeHomePatch::homePatch, SubmitReduction::item(), SimParameters::langevinPistonOn, Patch::lattice, Node::molecule, NAMD_bug(), NAMD_die(), Results::normal, ComputeHomePatch::numAtoms, Molecule::numGridforceGrids, Node::Object(), reduction, REDUCTION_MISC_ENERGY, Node::simParameters, simParams, Flags::step, SubmitReduction::submit(), Vector::x, Vector::y, and Vector::z.

107 {
109  Molecule *mol = Node::Object()->molecule;
110 
111  Force *forces = r->f[Results::normal];
112  BigReal energy = 0;
113  Force extForce = 0.;
114  Tensor extVirial;
115 
116  int numAtoms = homePatch->getNumAtoms();
117 
118  if ( mol->numGridforceGrids < 1 ) NAMD_bug("No grids loaded in ComputeGridForce::doForce()");
119 
120  DebugM(3, "doForce()\n" << endi);
121 
122  for (int gridnum = 0; gridnum < mol->numGridforceGrids; gridnum++) {
123  GridforceGrid *grid = mol->get_gridfrc_grid(gridnum);
124 
125  const Vector gfScale = grid->get_scale();
126  if ((gfScale.x == 0.0) && (gfScale.y == 0.0) && (gfScale.z == 0.0)) {
127  DebugM(3, "Skipping grid index " << gridnum << "\n" << endi);
128  continue;
129  }
130 
132  // only check on node 0 and every GF_OVERLAPCHECK_FREQ steps
133  if (simParams->langevinPistonOn || simParams->berendsenPressureOn) {
134  // check for grid overlap if pressure control is on
135  // not needed without pressure control, since the check is also performed on startup
136  if (!grid->fits_lattice(homePatch->lattice)) {
137  char errmsg[512];
138  if (grid->get_checksize()) {
139  sprintf(errmsg, "Warning: Periodic cell basis too small for Gridforce grid %d. Set gridforcechecksize off in configuration file to ignore.\n", gridnum);
140  NAMD_die(errmsg);
141  }
142  }
143  }
144  }
145 
146  if (homePatch->flags.step % 100 == 1) {
147  Position center = grid->get_center();
148  DebugM(3, "center = " << center << "\n" << endi);
149  DebugM(3, "e = " << grid->get_e() << "\n" << endi);
150  }
151 
154  do_calc(g, gridnum, p, numAtoms, mol, forces, energy, extForce, extVirial);
155  } else if (grid->get_grid_type() == GridforceGrid::GridforceGridTypeLite) {
157  do_calc(g, gridnum, p, numAtoms, mol, forces, energy, extForce, extVirial);
158  }
159  }
161  ADD_VECTOR_OBJECT(reduction,REDUCTION_EXT_FORCE_NORMAL,extForce);
162  ADD_TENSOR_OBJECT(reduction,REDUCTION_VIRIAL_NORMAL,extVirial);
163  reduction->submit();
164  DebugM(3, "doForce() done\n" << endi);
165 }
static Node * Object()
Definition: Node.h:86
Bool berendsenPressureOn
Lattice & lattice
Definition: Patch.h:126
Definition: Vector.h:64
#define ADD_TENSOR_OBJECT(R, RL, D)
Definition: ReductionMgr.h:43
SimParameters * simParameters
Definition: Node.h:178
static __thread float4 * forces
BigReal & item(int i)
Definition: ReductionMgr.h:312
#define DebugM(x, y)
Definition: Debug.h:59
std::ostream & endi(std::ostream &s)
Definition: InfoStream.C:54
BigReal z
Definition: Vector.h:66
#define GF_OVERLAPCHECK_FREQ
int numGridforceGrids
Definition: Molecule.h:591
Flags flags
Definition: Patch.h:127
bool fits_lattice(const Lattice &lattice)
Definition: GridForceGrid.C:84
void NAMD_bug(const char *err_msg)
Definition: common.C:129
virtual Position get_center(void) const =0
Force * f[maxNumForces]
Definition: PatchTypes.h:67
SubmitReduction * reduction
BigReal x
Definition: Vector.h:66
GridforceGrid * get_gridfrc_grid(int gridnum) const
Definition: Molecule.h:1280
void NAMD_die(const char *err_msg)
Definition: common.C:85
virtual Bool get_checksize(void) const =0
virtual Vector get_scale(void) const =0
#define simParams
Definition: Output.C:127
Definition: Tensor.h:15
BigReal y
Definition: Vector.h:66
int getNumAtoms()
Definition: Patch.h:105
virtual Tensor get_e(void) const =0
#define ADD_VECTOR_OBJECT(R, RL, D)
Definition: ReductionMgr.h:27
void do_calc(T *grid, int gridnum, FullAtom *p, int numAtoms, Molecule *mol, Force *forces, BigReal &energy, Force &extForce, Tensor &extVirial)
GridforceGridType get_grid_type(void)
Definition: GridForceGrid.h:65
void submit(void)
Definition: ReductionMgr.h:323
Molecule * molecule
Definition: Node.h:176
HomePatch * homePatch
double BigReal
Definition: common.h:114
int step
Definition: PatchTypes.h:16

Member Data Documentation

SubmitReduction* ComputeGridForce::reduction

Definition at line 28 of file ComputeGridForce.h.

Referenced by ComputeGridForce(), doForce(), and ~ComputeGridForce().


The documentation for this class was generated from the following files: