版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、RANDOM WALK王慶PB11204037物理化學(xué)研討第三小組12013/12/24 Tuesday一維晶格隨機(jī)行走模擬(C)#include #include #include #include #includevoid main() FILE*outfile; if(outfile=fopen(outfile.dat,w)=NULL) printf(cannot open this filen); exit(0); float a=0.0; float b=0.0; int x=0; int i=1; srand(int)time(NULL);while(i0.5) x=x+1; el
2、se x=x-1; printf(%d %dn,i,x); fprintf(outfile,%d %dn,i,x); i=i+1; fclose(outfile);22013/12/24 Tuesday一維隨機(jī)行走模擬1000個(gè)點(diǎn)32013/12/24 Tuesday4一維隨機(jī)行走模擬10000個(gè)點(diǎn)2013/12/24 Tuesday5一維隨機(jī)行走模擬100000個(gè)點(diǎn)2013/12/24 Tuesday#include#includeusing namespace std;int main() FILE*outfile; if(outfile=fopen(outfile.dat,w)=NULL
3、) printf(cannot open this filen); exit(0); int x=0,y=0,i=0; int step; cout起點(diǎn):(0,0)endl; fprintf(outfile,%d %d %dn,i,x,y); srand(time(NULL); for(i=1;i100;i+) step=rand()%4; if(step=0) x+; couti向前endl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y); else if(step=1) x-; couti向后endl; cout位置(x,y)endl;
4、 fprintf(outfile,%d %d %dn,i,x,y); else if(step=2) y-; couti向左endl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y); else if(step=3) y+; couti向右endl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y); printf(*n); printf(以上數(shù)據(jù)是二維隨機(jī)行走%d步的結(jié)果!n,i); fclose(outfile);6二維晶格隨機(jī)行走模擬(C+)2013/12/24 Tuesday二維隨機(jī)行
5、走100步位置 (X,Y)與時(shí)間T關(guān)系圖72013/12/24 Tuesday8二維隨機(jī)行走100步距離R與時(shí)間T關(guān)系圖2013/12/24 Tuesday9二維隨機(jī)行走10000步位置 (X,Y)與時(shí)間T關(guān)系圖2013/12/24 Tuesday10二維隨機(jī)行走10000步距離R與時(shí)間T關(guān)系圖2013/12/24 Tuesday#include#include#includeusing namespace std;int main() FILE*outfile; if(outfile=fopen(outfile.dat,w)=NULL) printf(cannot open this fil
6、en); exit(0); int x=0,y=0,i=0; int step; long double r=0,max=0; cout起點(diǎn):(0,0)endl; fprintf(outfile,%d %d %dn,i,x,y); srand(time(NULL); for(i=1;i10E8;i+)/此處設(shè)置循環(huán)次數(shù) step=rand()%4; if(step=0) x+; couti向前endl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y);11二維晶格沙漠中醉漢隨機(jī)行走模型 else if(step=1) x-; couti向后e
7、ndl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y); else if(step=2) y-; couti向左endl; cout位置(x,y)endl; fprintf(outfile,%d %d %dn,i,x,y); else if(step=3) y+; couti向右endl; cout位置(x,y)max) max=r; if(max=40) break;/此處設(shè)置沙漠半徑 printf(最遠(yuǎn)距離是:%.2fn,max); if(max=40) printf(上天憐憫啊,我終于走出沙漠了!n);/此處設(shè)置沙漠半徑 else p
8、rintf(我是故意不走出沙漠的,哼!n); printf(* * * * * * * * * * * * * * * * * * *n); printf(以上數(shù)據(jù)是二維隨機(jī)行走%d步的結(jié)果!n,i); fclose(outfile);2013/12/24 Tuesday12醉漢沙漠隨機(jī)行走模型某次運(yùn)行結(jié)果預(yù)設(shè)(速度:1m/s,沙漠半徑是10000m,完全隨機(jī)晶格線路)走1000步,計(jì)算機(jī)運(yùn)行約4秒,最遠(yuǎn)距離23.09;走10000步,計(jì)算機(jī)運(yùn)行約28秒,最遠(yuǎn)距離127.88;走100000步,計(jì)算機(jī)運(yùn)行約270秒,最遠(yuǎn)距離345.04;走1000000步。2013/12/24 Tuesday
9、13二維晶格自規(guī)避隨機(jī)行走GSAW2013/12/24 Tuesday以(0,0)為起點(diǎn)的GSAW模擬情形??梢?jiàn)該模型很容易就會(huì)“進(jìn)入死胡同”從而終止程序。14二維晶格自規(guī)避隨機(jī)行走GSAW2013/12/24 Tuesday15蜂窩狀晶格隨機(jī)行走示意圖2013/12/24 Tuesday#include #include #include #include #include#define PI 3.141592654main()FILE*fengwo; if(fengwo=fopen(fengwo.dat,w)=NULL) printf(cannot open this filen);exi
10、t(0); double x=0.0,y=0.0; int i=1;int step; 16srand(int)time(NULL); for(i=1;i100;i+)if(i%2=1) step=rand()%3; if(step=0) y=y+1.0; else if(step=1) x=x+0.5;y=y-cos(PI/6); else if(step=2) x=x-0.5;y=y-cos(PI/6); elsestep=rand()%3; if(step=0) y=y-1.0; else if(step=1) x=x+0.5;y=y+cos(PI/6); else if(step=2) x=x-0.5;y=y+cos(PI/6); printf(%f %fn,x,y); fprintf(fengwo,%f %
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年分期付款旅游套餐協(xié)議
- 導(dǎo)演與設(shè)計(jì)師2025年度合作協(xié)議3篇
- 2025年人事代理授權(quán)服務(wù)協(xié)議
- 二零二五版奶茶店財(cái)務(wù)審計(jì)與風(fēng)險(xiǎn)控制服務(wù)合同
- 2025年代理權(quán)益保護(hù)協(xié)議書(shū)案例展示總結(jié)介紹案例
- 2025年在線購(gòu)物消費(fèi)者協(xié)議
- 2025年銀行間市場(chǎng)協(xié)議存款居間業(yè)務(wù)合作合同范本6篇
- 2025年超額保險(xiǎn)合同保險(xiǎn)合同保險(xiǎn)范圍協(xié)議
- 復(fù)習(xí)課件蘇聯(lián)的社會(huì)主義建設(shè)人教版
- 2025年度新能源技術(shù)研發(fā)個(gè)人技術(shù)服務(wù)合同4篇
- 書(shū)籍小兵張嘎課件
- 藝術(shù)哲學(xué):美是如何誕生的學(xué)習(xí)通超星期末考試答案章節(jié)答案2024年
- 北京海淀區(qū)2025屆高三下第一次模擬語(yǔ)文試題含解析
- 量子醫(yī)學(xué)治療學(xué)行業(yè)投資機(jī)會(huì)分析與策略研究報(bào)告
- 多重耐藥菌病人的管理-(1)課件
- (高清版)TDT 1056-2019 縣級(jí)國(guó)土資源調(diào)查生產(chǎn)成本定額
- 環(huán)境監(jiān)測(cè)對(duì)環(huán)境保護(hù)的意義
- 2023年數(shù)學(xué)競(jìng)賽AMC8試卷(含答案)
- 神經(jīng)外科課件:神經(jīng)外科急重癥
- 2023年十天突破公務(wù)員面試
- 《瘋狂動(dòng)物城》中英文對(duì)照(全本臺(tái)詞)
評(píng)論
0/150
提交評(píng)論