由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Science版 - 请教一个Monte Carlo摹拟的问题
相关主题
蒙特卡罗(Monte Carlo)电泳理论---物理学的应用(1).
Re: Monte Carlo simulation by using MatLabRe: DNA结构
大牛们启发一下我把!!!!!!!!!问题
求助,关于monte carlo计算Collection of classic papers.
环状DNA的topology以及topoisomerases简介(4)Re: Random Walk
Re: 问题:并行的计算一定可以用单CPU摹拟吗?a problem in randomized algorithm
Microsoft QuestionA card game
Re: 请问什么软件可以做分子动力学动画演示?Re: 关于随机数产生的问题?
相关话题的讨论汇总
话题: 摹拟话题: 微扰话题: monte话题: carlo话题: too
进入Science版参与讨论
1 (共1页)
s***e
发帖数: 911
1
我摹拟的是一个链状分子的统计物理特性. 这个分子由系列小球相连而成. 给定
这些小球的初始位置, 我计算相应的弹性能(目前只是弯曲和拉伸). 设若相邻
小球平衡间距为1, 那么什么样的微扰幅度最优?
目前运行比较良好的微扰是这样选的: 0.05*Random[0,1]. 但是这个选择下被接受的
微扰构型很少, 程序运行时间太长; 若选择0.5*Random[0,1], 则干脆就没有被接受的
微扰构型.
请教对Metropolis 算法熟悉的同志指点一下. THX...
s*a
发帖数: 33
2
I assume this is a simulation using classical mechanics (i.e., not quantum
systems). Ususally one choose the acceptance ratio of the random move
to be around 50%, (in practice, 10% to 90% is acceptable)
so that the simulation can sample the phase space more
efficiently. You can change this ratio by choosing the magnitude of your
perturbance (the 0.05 or 0.5 number in your example). If even in 0.05
(the simulation time you feel already too long) and the acceptance ratio
still too low, then there

【在 s***e 的大作中提到】
: 我摹拟的是一个链状分子的统计物理特性. 这个分子由系列小球相连而成. 给定
: 这些小球的初始位置, 我计算相应的弹性能(目前只是弯曲和拉伸). 设若相邻
: 小球平衡间距为1, 那么什么样的微扰幅度最优?
: 目前运行比较良好的微扰是这样选的: 0.05*Random[0,1]. 但是这个选择下被接受的
: 微扰构型很少, 程序运行时间太长; 若选择0.5*Random[0,1], 则干脆就没有被接受的
: 微扰构型.
: 请教对Metropolis 算法熟悉的同志指点一下. THX...

s*a
发帖数: 33
3

For a single chain, this might not help too much, I think.
There is a "multi-level" algorithm for polymers:
Say a segment of your chain is like this:
...abcde.... (five balls here: a, b, ... and e)
Your current algorithm is to fix the position of "a" and "c" (and
all other balls), then
try to move "b"; then fix "b" and "d", then try to move "c", right?
Take the first step for example, since "a" and "c" are fixed, so "b"
can't move too far, otherwise the chain will be streched too much.
In a mul

【在 s***e 的大作中提到】
: 我摹拟的是一个链状分子的统计物理特性. 这个分子由系列小球相连而成. 给定
: 这些小球的初始位置, 我计算相应的弹性能(目前只是弯曲和拉伸). 设若相邻
: 小球平衡间距为1, 那么什么样的微扰幅度最优?
: 目前运行比较良好的微扰是这样选的: 0.05*Random[0,1]. 但是这个选择下被接受的
: 微扰构型很少, 程序运行时间太长; 若选择0.5*Random[0,1], 则干脆就没有被接受的
: 微扰构型.
: 请教对Metropolis 算法熟悉的同志指点一下. THX...

E*****y
发帖数: 33
4
accept rate 0.3左右比较好. 你可以模拟退火过程, 从高温逐渐降到你所要
的温度, 这样或许比你直接模拟你想要的温度达到热平衡快...

【在 s***e 的大作中提到】
: 我摹拟的是一个链状分子的统计物理特性. 这个分子由系列小球相连而成. 给定
: 这些小球的初始位置, 我计算相应的弹性能(目前只是弯曲和拉伸). 设若相邻
: 小球平衡间距为1, 那么什么样的微扰幅度最优?
: 目前运行比较良好的微扰是这样选的: 0.05*Random[0,1]. 但是这个选择下被接受的
: 微扰构型很少, 程序运行时间太长; 若选择0.5*Random[0,1], 则干脆就没有被接受的
: 微扰构型.
: 请教对Metropolis 算法熟悉的同志指点一下. THX...

1 (共1页)
进入Science版参与讨论
相关主题
Re: 关于随机数产生的问题?环状DNA的topology以及topoisomerases简介(4)
Re: 请教:关于fractals and percolationRe: 问题:并行的计算一定可以用单CPU摹拟吗?
An optimization problemMicrosoft Question
Re: 把epr实验改进一把Re: 请问什么软件可以做分子动力学动画演示?
蒙特卡罗(Monte Carlo)电泳理论---物理学的应用(1).
Re: Monte Carlo simulation by using MatLabRe: DNA结构
大牛们启发一下我把!!!!!!!!!问题
求助,关于monte carlo计算Collection of classic papers.
相关话题的讨论汇总
话题: 摹拟话题: 微扰话题: monte话题: carlo话题: too