r*****t 发帖数: 7278 | 1 using System;
namespace QFramework
{
///
/// Represents a Cox-Ross-Rubenstein binomial tree option pricing
calculator. May be used for pricing European or American options
///
public class BinomialTree
{
#region "Private Members"
private double assetPrice = 0.0;
private double strike = 0.0;
private double timeStep = 0.0;
private double volatility = 0.0;
private EPutCall putCall = EPutCall.Call;
... 阅读全帖 |
|
f****a 发帖数: 31 | 2 我们学校一个model, 八百里外的另一个学校也有一个model, 都是做大型计算的。
我的输出数据是外校model的输入数据,外校model经过一个timestep的计算所产生
的输出是我的下一个timestep的输入,如此往复。要传的数据一个timestep有10到50M,
运算时间在1到10分钟之间,取决于格点选择。
大家能不能给我点概念该怎么实现这个设想,我该看些什么书。我实在不想守在机器旁,
来一组数据手动输入算下一步,外校的model只能在他们的机器上算。我机器用solaris,
那边用的肯定是unix,具体还不清楚。 |
|
H****E 发帖数: 444 | 3 请问如何让HSPICE的transient Simulation的输出是指定timestep的数据,
比如timestep为0.1,就严格输出以0.1为步长递增的数据:
0.1 1
0.2 1
0.3 1
……
这样的,
看了HSPICE manual里timestep control部分,但是感觉讲的主要是算法,而不是做
Simulation的
设定,感到一头雾水,求指教!谢谢! |
|
q********g 发帖数: 10694 | 4 相关搜索: 热导率, 文件, 计算
作者: zhxlhdd2008 于 2010-10-28 16:23
看到有不少人在找热导率计算方面的in文件,我就贡献三个in文件吧,仅供参考。
同时,附件里贴出了我的计算结果。EMD的输出结果(compute heat/flux command
+compute tc command的计算结果)中, “ac.dat”(见附件中的"ac.wmf")是热流自
相关函数(我已经修改了compute_tc.cpp,目前输出的是normalized HCACF,但结果中
给出的还是没有归一化的热流自相关函数,但形状和归一化的是一样的,请注意!)随
m的变化,"tc.dat"(见附件中的"tc.wmf")是热导率随m的变化(m的涵义请参看热导率
计算的Green Kubo离散化公式,见附件"Comparison of atomic-level simulation
methods for computing thermal conductivity”中的(9)式),"tc_time.dat"(见附
件中的"tc_time.wmf")是热导率随时间的变... 阅读全帖 |
|
c**c 发帖数: 2593 | 5 或者比较原始而安全的做法,反正要传大文件,就写一个script来做sftp操作
好了,在两台机器上都跑。在每一边程序算完一个timestep都调用这个script,
这个script先进入sftp,把数据文件(比如A)上传到对方机器上,因为数据量
大,要传一段时间,传完后立即用rename命令把对方机器上的文件名改成B,然
后这个script退出sftp,进入循环等待,一直到检测到自己指定目录下出现文
件B,立即再把它改回文件名A,然后script退出,文件A这时就可以作为下一个
timestep的输入文件了。两边都是上传以后等待,来回改文件名算是最原始的
同步方式,呵呵,不过如果没有太复杂的要求的话,实现起来倒是简单方便。 |
|
s***t 发帖数: 195 | 6 solving a parabolic partial differential equation.
which is worse: having too fine timestep or too fine grnd? |
|
a******e 发帖数: 331 | 7 Use .option RUNLVL=5 or 6, It supposed to have fixed timestep
.option accurate was removed a few years ago. |
|
y*********n 发帖数: 22 | 8 按照手册上说的
tincr:Specifies the printing or plotting increment for printer output, and
the suggested computing increment for post-processing.
delmax是hspice计算时的最大步长,timestep再大也不会超过这个值,你把delmax设成
100n试试? |
|
b*******u 发帖数: 62 | 9 it is very quick based on the assumption
you will use all the default they set etc.
like timestep 7fs instead of 2fs in most
literature. otherwise it will not be that
quick. |
|
j*x 发帖数: 302 | 10 another comment on gromacs is that it is not good for some protein
systems although the initial motivation of this program is (partly) for
protein and DNA. The reason is that they don't have multiple-timestep
scheme. Actually they didn't like MTS so that they didn't implement it.
For highly charged protein systems, it becomes a problem in long simulations.
looks like many people just ignore it, or maybe people didn't run
simulations over 10 ns very frequently. |
|
b*******u 发帖数: 62 | 11 but i thought multiple-timestep is for time-saving.
what is the relation with the stability of the simulation? |
|
a*****e 发帖数: 4577 | 12 遇到一个vasp 跑 molecular dynamics的问题
我用gamma only的vasp 4.6
1fs timestep
一个periodic的体系64个原子,从optimized结构开始,加温到600K开始跑NVE 20000步
,这时候体系温度差不多是300K左右,然后NVT跑NVT 10000步左右
然后再跑NVE 100000 步,结果发现温度下降到了260K左右
另外一个是同样的结构,跑550K NVT 20000步之后,转成NVE,结果100000步之后温度上
升到680K
我说的这些温度都是几百步步的平均温度,因此不是由于一般的flucutation导致的
如果画图的话,就发现温度是接近直线下降(上升)的
不知道各位能否给讲讲可能的原因,谢谢。 |
|