linzheng200 发表于 2009-12-23 16:09:51

求一段模量随夯击次数增加而增加的fish命令!

本帖最后由 linzheng200 于 2009-12-23 16:17 编辑

假设地基有两层土,0-5m为第一层,5-10m为第二层。
对第一层土进行强夯处理,第一层土的模量会随着夯击次数的增加而增加入(公式如附图 ),其中N为夯击次数,E0为初始模量。请高手指点,或给出一段简单的命令,以供学习!

jihezhilv 发表于 2009-12-23 19:19:57

本帖最后由 jihezhilv 于 2009-12-23 19:43 编辑

def get_E
E0=2e7
loop n (1,20)
    E_new=E0*n^0.516
    xtable(1,n)=n
    ytable(1,n)=E_new
endloop
end
get_E
table 1 name 弹模变化曲线
plot set ba w
plot set ca right size 25
plot add table 弹模变化曲线 both xlab '夯击次数' ylab '弹模'
plot show
;pr table 1

linzheng200 发表于 2009-12-26 16:28:27

谢谢jihezhilv 的回答!:victory:
页: [1]
查看完整版本: 求一段模量随夯击次数增加而增加的fish命令!