Skip to content

Instantly share code, notes, and snippets.

@kaityo256
Created December 22, 2014 06:38
Show Gist options
  • Save kaityo256/c21d941c0a297c94d49e to your computer and use it in GitHub Desktop.
Save kaityo256/c21d941c0a297c94d49e to your computer and use it in GitHub Desktop.
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <algorithm>
//----------------------------------------------------------------------
const int N = 20000;
const double L = 10.0;
const int D = 3;
const int X = 0;
const int Y = 1;
const int Z = 2;
double qx[N],qy[N],qz[N];
double px[N],py[N],pz[N];
const double dt = 0.001;
const double C2 = 0.1;
const double CUTOFF2 = L*L*0.9*0.9;
//----------------------------------------------------------------------
double
myrand(void){
return static_cast<double>(rand())/(static_cast<double>(RAND_MAX));
}
//----------------------------------------------------------------------
double
myclock(void){
struct timeval t;
gettimeofday(&t, NULL);
return t.tv_sec + t.tv_usec*1e-6;
}
//----------------------------------------------------------------------
void
calcforce(void){
for(int i=0;i<N-1;i++){
for(int j=i+1;j<N;j++){
double dx = qx[j] - qx[i];
double dy = qy[j] - qy[i];
double dz = qz[j] - qz[i];
double r2 = (dx*dx + dy*dy + dz*dz);
double r6 = r2*r2*r2;
double df = ((24.0*r6-48.0)/(r6*r6*r2)+C2*8.0)*dt;
px[i] += df*dx;
py[i] += df*dy;
pz[i] += df*dz;
px[j] -= df*dx;
py[j] -= df*dy;
pz[j] -= df*dz;
}
}
}
//----------------------------------------------------------------------
void
measure(void(*pfunc)(),const char *name){
double st = myclock();
pfunc();
double t = myclock()-st;
printf("N=%d, %s %f [sec]\n",N,name,t);
}
//----------------------------------------------------------------------
int
main(void){
for(int i=0;i<N;i++){
px[i] = 0.0;
py[i] = 0.0;
pz[i] = 0.0;
qx[i] = L*myrand();
qy[i] = L*myrand();
qz[i] = L*myrand();
}
measure(&calcforce,"calcforce");
}
//----------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment