Newer
Older
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
(see the PEOPLE file at the root of the distribution for a list of names)
plumed is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
plumed is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with plumed. If not, see <http://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#include "vesselbase/ActionWithVessel.h"
#include "tools/Tools.h"
namespace PLMD {
void GridVessel::registerKeywords( Keywords& keys ){
AveragingVessel::registerKeywords( keys );
keys.add("compulsory","COMPONENTS","the names of the components in the vector");
keys.add("compulsory","COORDINATES","the names of the coordinates of the grid");
keys.add("compulsory","PBC","is the grid periodic in each direction or not");
}
GridVessel::GridVessel( const vesselbase::VesselOptions& da ):
AveragingVessel(da),
Gareth Tribello
committed
cube_units(1.0),
noderiv(false),
npoints(0)
{
std::vector<std::string> compnames; parseVector("COMPONENTS",compnames);
std::vector<std::string> coordnames; parseVector("COORDINATES",coordnames);
dimension=coordnames.size();
std::vector<std::string> spbc( dimension ); parseVector("PBC",spbc);
str_min.resize( dimension); str_max.resize( dimension ); stride.resize( dimension );
max.resize( dimension ); dx.resize( dimension ); nbin.resize( dimension ); min.resize( dimension );
unsigned n=0; nper=compnames.size()*( 1 + coordnames.size() );
arg_names.resize( coordnames.size() + compnames.size()*( 1 + coordnames.size() ) );
for(unsigned i=0;i<coordnames.size();++i){ arg_names[n] = coordnames[i]; n++; }
for(unsigned i=0;i<compnames.size();++i){
arg_names[n]=compnames[i]; n++;
for(unsigned j=0;j<coordnames.size();++j){ arg_names[n] = "d" + compnames[i] + "_" + coordnames[j]; n++; }
}
pbc.resize( dimension );
if( spbc[i]=="F" ) pbc[i]=false;
else if( spbc[i]=="T" ) pbc[i]=true;
else plumed_error();
}
}
void GridVessel::setNoDerivatives(){
nper = ( nper/(1+dimension) ); noderiv=true;
std::vector<std::string> tnames( dimension ), cnames(nper);
for(unsigned i=0;i<dimension;++i) tnames[i]=arg_names[i];
unsigned k=dimension; for(unsigned i=0;i<nper;++i){ cnames[i]=arg_names[k]; k+=(1+dimension); }
arg_names.resize( dimension + nper );
for(unsigned i=0;i<dimension;++i) arg_names[i]=tnames[i];
for(unsigned i=0;i<nper;++i) arg_names[dimension+i]=cnames[i];
}
void GridVessel::setBounds( const std::vector<std::string>& smin, const std::vector<std::string>& smax,
const std::vector<unsigned>& binsin, const std::vector<double>& spacing ){
plumed_dbg_assert( smin.size()==dimension && smax.size()==dimension );
plumed_assert( (spacing.size()==dimension || binsin.size()==dimension) );
npoints=1; bounds_set=true;
for(unsigned i=0;i<dimension;++i){
str_min[i]=smin[i]; str_max[i]=smax[i];
Tools::convert( str_min[i], min[i] );
Tools::convert( str_max[i], max[i] );
if( spacing.size()==dimension && binsin.size()==dimension ){
double range = max[i] - min[i]; unsigned spc = std::floor( range / spacing[i]);
// This check ensures that nbins is set correctly if spacing is set the same as the number of bins
if( fabs( binsin[i]*spacing[i]-range )>epsilon ) spc += 1;
if( spc>binsin[i] ) nbin[i]=spc; else nbin[i]=binsin[i];
} else if( binsin.size()==dimension ) nbin[i]=binsin[i];
else if( spacing.size()==dimension ) nbin[i] = std::floor(( max[i] - min[i] ) / spacing[i]) + 1;
else plumed_error();
dx[i] = ( max[i] - min[i] ) / static_cast<double>( nbin[i] );
if( !pbc[i] ){ max[i] +=dx[i]; nbin[i]+=1; }
stride[i]=npoints;
npoints*=nbin[i];
resize(); // Always resize after setting new bounds as grid size may have have changed
std::string GridVessel::description(){
if( !bounds_set ) return "";
std::string des="grid of "; std::string num;
for(unsigned i=0;i<dimension-1;++i){
Tools::convert( nbin[i], num );
des += num + " X ";
}
Tools::convert( nbin[dimension-1], num );
des += num + " equally spaced points between (";
for(unsigned i=0;i<dimension-1;++i) des += str_min[i] + ",";
Tools::convert( nbin[dimension-1], num );
des += str_min[dimension-1] + ") and (";
for(unsigned i=0;i<dimension-1;++i) des += str_max[i] + ",";
des += str_max[dimension-1] + ")";
return des;
}
void GridVessel::resize(){
plumed_massert( nper>0, "Number of datapoints at each grid point has not been set");
resizeBuffer( getNumberOfBufferPoints()*nper ); setDataSize( npoints*nper );
if( active.size()!=npoints) active.resize( npoints, true );
}
unsigned GridVessel::getIndex( const std::vector<unsigned>& indices ) const {
plumed_dbg_assert( bounds_set && indices.size()==dimension );
// indices are flattended using a column-major order
unsigned index=indices[dimension-1];
for(unsigned i=dimension-1;i>0;--i){
index=index*nbin[i-1]+indices[i-1];
}
return index;
}
void GridVessel::getIndices( const std::vector<double>& point, std::vector<unsigned>& indices ) const {
plumed_dbg_assert( bounds_set && point.size()==dimension && indices.size()==dimension );
for(unsigned i=0;i<dimension;++i){
indices[i]=std::floor( (point[i] - min[i])/dx[i] );
if( pbc[i] ) indices[i]=indices[i]%nbin[i];
else if( indices[i]>nbin[i] ) plumed_merror("point is outside grid range");
}
unsigned GridVessel::getIndex( const std::vector<double>& point ) const {
plumed_dbg_assert( bounds_set && point.size()==dimension );
std::vector<unsigned> indices(dimension); getIndices( point, indices );
return getIndex( indices );
}
void GridVessel::convertIndexToIndices( const unsigned& index, const std::vector<unsigned>& nnbin, std::vector<unsigned>& indices ) const {
indices[0]=index%nnbin[0];
for(unsigned i=1;i<dimension-1;++i){
kk=(kk-indices[i-1])/nnbin[i-1];
indices[i]=kk%nnbin[i];
}
if(dimension>=2){ // I think this is wrong
indices[dimension-1]=(kk-indices[dimension-2])/nnbin[dimension-2];
}
void GridVessel::getIndices( const unsigned& index, std::vector<unsigned>& indices ) const {
convertIndexToIndices( index, nbin, indices );
void GridVessel::getGridPointCoordinates( const unsigned& ipoint , std::vector<double>& x ) const {
plumed_dbg_assert( x.size()==dimension && ipoint<npoints );
std::vector<unsigned> tindices( dimension ); getIndices( ipoint, tindices );
for(unsigned i=0;i<dimension;++i) x[i] = min[i] + dx[i]*tindices[i];
void GridVessel::getSplineNeighbors( const unsigned& mybox, std::vector<unsigned>& mysneigh ) const {
mysneigh.resize( static_cast<unsigned>(pow(2.,dimension)) );
std::vector<unsigned> tmp_indices( dimension );
std::vector<unsigned> my_indices( dimension );
getIndices( mybox, my_indices );
for(unsigned i=0;i<mysneigh.size();++i){
unsigned tmp=i;
for(unsigned j=0;j<dimension;++j){
unsigned i0=tmp%2+my_indices[j]; tmp/=2;
if(!pbc[j] && i0==nbin[j]) getAction()->error("Extrapolating function on grid");
if( pbc[j] && i0==nbin[j]) i0=0;
tmp_indices[j]=i0;
mysneigh[i]=getIndex( tmp_indices );
plumed_massert( active[mysneigh[i]], "inactive grid point required for splines");
}
}
double GridVessel::getGridElement( const unsigned& ipoint, const unsigned& jelement ) const {
plumed_assert( bounds_set && ipoint<npoints && jelement<nper && active[ipoint] );
return getDataElement( nper*ipoint + jelement );
Gareth Tribello
committed
}
void GridVessel::setGridElement( const unsigned& ipoint, const unsigned& jelement, const double& value ){
plumed_dbg_assert( bounds_set && ipoint<npoints && jelement<nper );
setDataElement( nper*ipoint + jelement, value );
Gareth Tribello
committed
void GridVessel::calculate( const unsigned& current, MultiValue& myvals, std::vector<double>& buffer, std::vector<unsigned>& der_list ) const {
plumed_dbg_assert( myvals.getNumberOfValues()==(nper+1) );
for(unsigned i=0;i<nper;++i) buffer[bufstart + nper*current + i] += myvals.get(i+1);
}
double GridVessel::getGridElement( const std::vector<unsigned>& indices, const unsigned& jelement ) const {
return getGridElement( getIndex( indices ), jelement );
}
void GridVessel::setGridElement( const std::vector<unsigned>& indices, const unsigned& jelement, const double& value ){
setGridElement( getIndex( indices ), jelement, value );
}
std::vector<std::string> GridVessel::getMin() const {
}
std::vector<std::string> GridVessel::getMax() const {
}
std::vector<unsigned> GridVessel::getNbin() const {
plumed_dbg_assert( bounds_set );
std::vector<unsigned> ngrid( dimension );
for(unsigned i=0;i<dimension;++i){
if( !pbc[i] ) ngrid[i]=nbin[i] - 1;
else ngrid[i]=nbin[i];
}
return ngrid;
}
Gareth Tribello
committed
void GridVessel::getNeighbors( const std::vector<double>& pp, const std::vector<unsigned>& nneigh,
unsigned& num_neighbors, std::vector<unsigned>& neighbors ) const {
plumed_dbg_assert( bounds_set && nneigh.size()==dimension );
Gareth Tribello
committed
std::vector<unsigned> indices( dimension );
for(unsigned i=0;i<dimension;++i) indices[i] = std::floor( (pp[i]-min[i])/dx[i] );
Gareth Tribello
committed
getNeighbors( indices, nneigh, num_neighbors, neighbors );
}
void GridVessel::getNeighbors( const std::vector<unsigned>& indices, const std::vector<unsigned>& nneigh,
unsigned& num_neighbors, std::vector<unsigned>& neighbors ) const {
plumed_dbg_assert( bounds_set && nneigh.size()==dimension );
unsigned num_neigh=1; std::vector<unsigned> small_bin( dimension );
for(unsigned i=0;i<dimension;++i){
small_bin[i]=(2*nneigh[i]+1);
num_neigh *=small_bin[i];
}
Gareth Tribello
committed
if( neighbors.size()!=num_neigh ) neighbors.resize( num_neigh );
Gareth Tribello
committed
num_neighbors=0;
std::vector<unsigned> s_indices(dimension), t_indices(dimension);
for(unsigned index=0;index<num_neigh;++index){
convertIndexToIndices( index, small_bin, s_indices );
for(unsigned i=0;i<dimension;++i){
int i0=s_indices[i]-nneigh[i]+indices[i];
if(!pbc[i] && i0<0) found=false;
if(!pbc[i] && i0>=nbin[i]) found=false;
if( pbc[i] && i0<0) i0=nbin[i]-(-i0)%nbin[i];
if( pbc[i] && i0>=nbin[i]) i0%=nbin[i];
t_indices[i]=static_cast<unsigned>(i0);
}
if( found ){
neighbors[num_neighbors]=getIndex( t_indices );
num_neighbors++;
}
}
}
void GridVessel::setCubeUnits( const double& units ){
cube_units=units;
}
double GridVessel::getCubeUnits() const {
return cube_units;
}
std::string GridVessel::getInputString() const {
std::string mstring="COORDINATES="+arg_names[0];
for(unsigned i=1;i<dimension;++i) mstring+="," + arg_names[i];
mstring += " PBC=";
if( pbc[0] ) mstring +="T";
else mstring +="F";
for(unsigned i=1;i<dimension;++i){
if( pbc[i] ) mstring +=",T";
else mstring +=",F";
}
return mstring;
}
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
double GridVessel::getValueAndDerivatives( const std::vector<double>& x, const unsigned& ind, std::vector<double>& der ) const {
plumed_dbg_assert( der.size()==dimension && !noderiv && ind<getNumberOfComponents() );
double X,X2,X3,value=0; der.assign(der.size(),0.0);
std::vector<double> fd(dimension);
std::vector<double> C(dimension);
std::vector<double> D(dimension);
std::vector<double> dder(dimension);
std::vector<unsigned> nindices(dimension);
std::vector<unsigned> indices(dimension); getIndices( x, indices );
std::vector<unsigned> neigh; getSplineNeighbors( getIndex(indices), neigh );
std::vector<double> xfloor(dimension); getGridPointCoordinates( getIndex(x), xfloor );
// loop over neighbors
for(unsigned int ipoint=0;ipoint<neigh.size();++ipoint){
double grid=getGridElement(neigh[ipoint], ind*(1+dimension) );
for(unsigned j=0;j<dimension;++j) dder[j] = getGridElement( neigh[ipoint], ind*(1+dimension) + 1 + j );
getIndices( neigh[ipoint], nindices );
double ff=1.0;
for(unsigned j=0;j<dimension;++j){
int x0=1;
if(nindices[j]==indices[j]) x0=0;
double ddx=dx[j];
X=fabs((x[j]-xfloor[j])/ddx-(double)x0);
X2=X*X;
X3=X2*X;
double yy;
if(fabs(grid)<0.0000001) yy=0.0;
else yy=-dder[j]/grid;
C[j]=(1.0-3.0*X2+2.0*X3) - (x0?-1.0:1.0)*yy*(X-2.0*X2+X3)*ddx;
D[j]=( -6.0*X +6.0*X2) - (x0?-1.0:1.0)*yy*(1.0-4.0*X +3.0*X2)*ddx;
D[j]*=(x0?-1.0:1.0)/ddx;
ff*=C[j];
}
for(unsigned j=0;j<dimension;++j){
fd[j]=D[j];
for(unsigned i=0;i<dimension;++i) if(i!=j) fd[j]*=C[i];
}
value+=grid*ff;
for(unsigned j=0;j<dimension;++j) der[j]+=grid*fd[j];
}
return value;
}
void GridVessel::activateThesePoints( const std::vector<bool>& to_activate ){
plumed_dbg_assert( to_activate.size()==npoints );
for(unsigned i=0;i<npoints;++i) active[i]=to_activate[i];
}