本文整理汇总了C++中Fix::max_type方法的典型用法代码示例。如果您正苦于以下问题:C++ Fix::max_type方法的具体用法?C++ Fix::max_type怎么用?C++ Fix::max_type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Fix
的用法示例。
在下文中一共展示了Fix::max_type方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: max_type
int Properties::max_type()
{
// loop over all particles to check how many atom types are present
mintype = 100000;
maxtype = 1;
for (int i=0;i<atom->nlocal;i++)
{
if (atom->type[i]<mintype)
mintype=atom->type[i];
if (atom->type[i]>maxtype)
maxtype=atom->type[i];
}
// check all fixes
// such as fix insert, fix change/type, fix wall, fix pour
for(int i=0;i<modify->nfix;i++)
{
// checks
Fix *fix = modify->fix[i];
if(fix->min_type() > 0 && fix->min_type() < mintype)
mintype = fix->min_type();
if(fix->max_type() > 0 && fix->max_type() > maxtype)
maxtype = fix->max_type();
}
//Get min/max from other procs
int mintype_all,maxtype_all;
MPI_Allreduce(&mintype,&mintype_all, 1, MPI_INT, MPI_MIN, world);
MPI_Allreduce(&maxtype,&maxtype_all, 1, MPI_INT, MPI_MAX, world);
mintype = mintype_all;
maxtype = maxtype_all;
//error check
if(mintype != 1)
error->all(FLERR,"Atom types must start from 1 for granular simulations");
if(maxtype > atom->ntypes)
error->all(FLERR,"Please increase the number of atom types in the 'create_box' command to match the number of atom types you use in the simulation");
return maxtype;
}