本文整理汇总了C++中Particles::updateVel方法的典型用法代码示例。如果您正苦于以下问题:C++ Particles::updateVel方法的具体用法?C++ Particles::updateVel怎么用?C++ Particles::updateVel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Particles
的用法示例。
在下文中一共展示了Particles::updateVel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
//.........这里部分代码省略.........
timerRef = MPI_Wtime();
//parts.saveHDF5("data/bench_part",4);
timerWrite = MPI_Wtime() - timerRef;
timerRef = MPI_Wtime();
//parts.loadHDF5("data/bench_part",4);
timerLoad = MPI_Wtime() - timerRef;
#ifdef EXTERNAL_IO
timerRef = MPI_Wtime();
//parts.saveHDF5_server_write();
timerWriteServer = MPI_Wtime() - timerRef;
ioserver.closeOstream();
#endif
// cout<<"write done"<<endl;
projection_init(&phi);
projection_init(&B);
projection_init(&Tij);
//cout<<"init proj done"<<endl;
timerRef = MPI_Wtime();
scalarProjectionCIC_project(&parts,&phi);
timerProjScalar = MPI_Wtime() - timerRef;
//cout<<"scalar proj done"<<endl;
timerRef = MPI_Wtime();
scalarProjectionCIC_comm(&phi);
timerCommScalar = MPI_Wtime() - timerRef;
//cout<<"scalar comm done"<<endl;
timerRef = MPI_Wtime();
vectorProjectionCICNGP_project(&parts,&B);
timerProjVector = MPI_Wtime() - timerRef;
//cout<<"vector proj done"<<endl;
timerRef = MPI_Wtime();
vectorProjectionCICNGP_comm(&B);
timerCommVector = MPI_Wtime() - timerRef;
//cout<<"vector comm done"<<endl;
timerRef = MPI_Wtime();
symtensorProjectionCICNGP_project(&parts,&Tij);
timerProjTensor = MPI_Wtime() - timerRef;
//cout<<"tensor proj done"<<endl;
timerRef = MPI_Wtime();
symtensorProjectionCICNGP_comm(&Tij);
timerCommTensor = MPI_Wtime() - timerRef;
//cout<<"tensor comm done"<<endl;
timerRef = MPI_Wtime();
parts.updateVel(&updateVel_simple,1.0);
timerVel = MPI_Wtime() - timerRef;
//cout<<"update vel done"<<endl;
timerRef = MPI_Wtime();
parts.moveParticles(&move_particles_simple,1.0/ (1.0* (double)npts));
timerMove = MPI_Wtime() - timerRef;
//cout<<"move done"<<endl;
ofstream textfile;
if(parallel.isRoot())
{
textfile.open(str_filename.c_str(),ios::out | ios::app);
textfile<< n<<","<<m<< ","<< io_size<< ","<<io_groupe_size<< ","<< npts << ","<< numparts << ",";
textfile<< timerWrite << ","<< timerLoad << ","<< timerWriteServer << ","<< timerProjScalar << ","<< timerCommScalar << ",";
textfile<< timerProjVector << ","<< timerCommVector << ","<< timerProjTensor << ","<< timerCommTensor << ","<< timerVel << ","<< timerMove <<endl;
textfile.close();
}
#ifdef EXTERNAL_IO
ioserver.stop();
}
#endif
}