-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
93 lines (80 loc) · 2.84 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include <iostream>
#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <fstream>
#include <math.h>
using namespace std;
int N = 40;
int iterMax = 1000000;
double demE = 0;
double totE = 20;
double delE;
double partVNext;
//create a function that outputs data into a .txt file
void SaveIntoFile(double demon[]){
ofstream outputFile;
outputFile.open("vel_programdata.txt");
for(int count=0; count < iterMax; count++){
outputFile << demon[count] << endl;
}
outputFile.close();
}
//returns random double
double rand_float(double a, double b) {
return ((double)rand() / RAND_MAX) * (b - a) + a;
}
int main(){
double partV[N];
double demon[iterMax];
//the seed is different each time for random number
srand(time(0));
//start with same v
for(int countV=0; countV < N+1; countV++){
partV[countV]= float((sqrt(2*totE))/(sqrt(N)));
}
//reach equilibrium
for (int countIter=0; countIter < iterMax; countIter++){
for (int countPart = 0; countPart<N; countPart++){
SaveIntoFile(demon);
int indPart = rand()%N; // good
double dV = rand_float(-2, 2); //good
partVNext = partV[indPart] + dV; //good
delE = 0.5*((partVNext*partVNext) - (partV[indPart]*partV[indPart])); //good
//accept change if the change is negative, give to demon
if (delE < 0){
demE = demE - delE;
partV[indPart] = partVNext;
totE = totE + delE;
//cout << demE << endl;
demon[countPart] = demE;
//cout << totE<< endl;
}
if(0 < delE){
// accept positive change only if demon has that energy available
if (delE <= demE){
demE = demE - delE;
partV[indPart] = partVNext;
totE = totE + delE;
//cout << demE << endl;
demon[countPart] = demE;
//cout << totE << endl;
}
}
}
}
//this is just to check that the equilibrium energy makes sense
double sumVel = 0;
for (int count = 0; count < N; count++){
sumVel = sumVel + partV[count];
}
cout << "avgVel: " << sumVel/N << "\n" << "demE: " << demE << "\n" << "totE per part: " << totE/N << endl ;
double kinT = (sumVel/N)*(sumVel/N)/(1.380649e-23);
cout << "kinT " << kinT << endl;
cout << "Ed/kinT: " << demE / kinT;
for(int i=0; i<N; i++){
cout << partV[i] << endl;
}
return 0;
}