절대온도
속력
로 주어진다. 가능한 샘플
1. 주어진
2.
3.
다음 예는

그림의 붉은점은 accepted된 값이고 푸른점은 rejected된 값이다.

const CSize sz = CSize(500, 500);
raster.SetDimensions(sz, 24);
srand(unsigned(time(0)));
int hist[500] = {0};
int required = 50000;
const double xmin = 0, xmax = 4;
while (required) {
double x = double(rand()) / RAND_MAX; //[0,1]
double v = (xmax - xmin) * x + xmin; //[xmin,xmax]
double p = double(rand()) / RAND_MAX; //[0,1]
double maxwell = MaxwellDist(v);
CPoint q = CPoint(int(x * (sz.cx - 1)), int(p * (sz.cy - 1)));
if (p <= maxwell) {
raster.SetPixel(q.x, sz.cy - 1 - q.y, 0xFF0000);
hist[q.x]++;
required--;
}
else
raster.SetPixel(q.x, sz.cy - 1 - q.y, 0xFF);
}
int s = 0;
for (int i = 0; i < sz.cx; i++)
s += hist[i];
FILE *fp = fopen("maxwell.txt", "w");
for (int i = 0; i < sz.cx; i++)
fprintf(fp, "%f, %f\n", (xmax - xmin) * double(i) /(sz.cx - 1) + xmin, \
double(hist[i]) / s);
fclose(fp);
728x90
'Mathematics' 카테고리의 다른 글
타원의 둘레길이(Perimeter of an Ellipse) (2) | 2024.02.06 |
---|---|
왜 땅속은 여름에 시원하고 겨울에는 따뜻한가? (1) | 2024.02.03 |
왜 샘플 편차를 계산할 때 n-1로 나누는가? (0) | 2023.02.19 |
Fourier Series를 이용한 Isoperimetric Inequality 증명 (0) | 2023.02.01 |
Brachistochrone inside the Earth (0) | 2023.01.25 |