- 1、本文档共4页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
netlogo代码
breed [persons person]
breed [bugs bug]
persons-own[ ;设置人的个人属性:情感
emotion
]
bugs-own[ ;设置物的个人属性:情感
emotion
]
to do-plot ;用于计算物的数量和情感的值
set-current-plot num
set-current-plot-pen plot-1
plot count bugs
set-current-plot emotion
set-current-plot-pen emotion-1
ask bugs[
plot emotion
]
end
to direction-decision ;为距离门远的逃跑对象设置“邻居”,根据人的心理尽可
;能模拟逃跑现场
ask bugs with [xcor 26][
let x bugs-on neighbors
let temp-direction heading
let temp-emotion emotion
let sum-heading 0
let ne-num count x
if (ne-num = 1 )[
ask x[set shape circle
set sum-heading sum-heading + heading
]
set sum-heading sum-heading / ne-num
set temp-direction sum-heading
]
set heading temp-direction
ifelse(xcor = 4 and heading = 180 and heading 360) ;之后的ifelse代码是为了防止当逃跑对象
;撞到墙后采取合理的转向
[
; show 11111111111111111111
set heading random 90 + 45
][
ifelse (ycor = 26 and( ( heading = 270 and heading = 360 ) or (heading 0 and heading = 90)) )[
; show 222222222222222222222
set heading random 90 + 45
][
if (ycor = 4 and heading = 90 and heading 270)[
; show 3333333333333333
set heading random 90 + 45
]]]
fd 0.2
]
end
to init ;init是为了模拟现场环境声明的必要变量和属性
clear-all
create-persons 5
[
set xcor random 25 + 3
set ycor random 25 + 3
set shape person
set size 1.5
set color white
set emotion random-float 0.2
]
create-bugs ss
[
set xcor random 25 + 3
set ycor random 25 + 3
set shape bug
set size 1.0
set emotion random-float 0.2
]
ask patches
[
set pcolor black
]
ask patches
[
if( pxcor = 2 and pycor = 2 and pycor = 28 );zuo
您可能关注的文档
最近下载
- 刘芳——本科论文初稿.doc VIP
- 安全培训记录效果评估表全员法律法规培训.docx VIP
- 3.4 透镜的应用(分层练习)2024-2025学年八年级物理上册同步精品课堂(苏科版2024)(解析版).docx VIP
- 《二年级上册美术折纸动物》ppt课件讲义.ppt
- BS EN 16120-2-2017Non-alloy 国外国际标准规范.pdf
- 精卫填海成语神话故事.pptx VIP
- 【生物】蛋白质相关计算课件 2023-2024学年高一上学期生物人教版必修1.pptx VIP
- 四位一体农村长效保洁方案(标书——已中标) .pdf VIP
- 人教版九年级上册化学第六单元测试卷.doc VIP
- 2025届高考语文复习:叠词的作用和表达效果+课件.pptx VIP
文档评论(0)