论坛首页    职业区    学术与写作    工程技术区    软件区    资料区    商务合作区    社区办公室
 您好! 欢迎 登录注册 最新帖子 邀请注册 活动聚焦 统计排行 社区服务 帮助
 
  • 帖子
  • 日志
  • 用户
  • 版块
  • 群组
帖子
  • 3895阅读
  • 9回复

请教关于煤层开采后顶板嵌入底板,如何解决? [复制链接]

上一主题 下一主题
离线friendqgp
 

发帖
20
土币
67
威望
15
原创币
0
只看楼主 倒序阅读 使用道具 楼主  发表于: 2011-11-03
模拟工作面开挖过程中,超前支承压力对巷道围岩稳定性的影响。
模型尺寸216(长)*100(宽)*63(高),在x 28 32,x 184 188,y 0 100,z 16 19范围内开掘两条巷道,为模拟工作面的上下顺槽,平衡后工作面每5m一开挖,工作面为放顶煤,采高9m。
工作面每开挖5m循环1000步,在循环过程中,顶板向下运动,最终嵌入底板而导致计算终止。
分别尝试了在煤层与底板之间和煤层与顶底板之间设置接触面,最后一次设置的接触面渗透深度为0,均无法阻止顶板向底板嵌入而导致的计算终止,请教各位高手,该如何解决这个问题,确保计算不被终止呢?



18 分钟前 上传下载附件 (26.09 KB)

这是设置了两个接触面(煤层与顶底板)的效果



18 分钟前 上传下载附件 (29.06 KB)

这是设置了一个接触面(煤层与底板)的效果
该怎么解决呢?
求版主及高手给个提示,不然做不下去了啊。
附上模型命令:
rest 模型5-无支护巷道开挖.sav
set large
hist reset
pause
define face_cave
   aa = 0.0
   bb = 5.0
     loop m (1,10)
        command
            model null range x 32 184 y aa bb z 16 25
        end_command
        
        command
            inter 1 delete
            inter 1 face range plane norm (0,0,1) origin (30,0,16) dist 0.3
            ;inter 2 face range plane norm (0,0,-1) origin (30,0,25) dist 0.3
            inter 1 ctol 0.0
            ;inter 2 maxedge 4
            inter 1 prop kn 20e11 ks 20e11 coh 10e8 fri 30;接触面设置的参数,这个参数应该很大了吧?
            ;inter 2 prop kn 20e9 ks 20e8 coh 10e7 fri 30
            step 1000
        end_command
          
          aa = aa + 5.0
          bb = bb + 5.0
     end_loop
    
end
define hist_zdis
    a = 1
    b = 0.0
       loop n (1,19)
          command
            hist id a nstep 40 gp zdis 30 b 19
          end_command
          a = a + 1
          b = b + 5.0
       end_loop
end
define hist_left_xdis
    c = 21
    d = 0.0
       loop n (1,19)
          command
            hist id c nstep 40 gp zdis 28 d 17.5
          end_command
          c = c + 1
          d = d + 5.0
       end_loop
end
define hist_right_xdis
    e = 41
    f = 0.0
       loop n (1,19)
          command
            hist id e nstep 40 gp zdis 32 f 17.5
          end_command
          e = e + 1
          f = f + 5.0
       end_loop
end
define hist_roof_smin
    g = 61
    h = 0.0
       loop n (1,19)
          command
            hist id g nstep 40 zone smin 30 h 20
          end_command
          g = g + 1
          h = h + 5.0
       end_loop
end
define hist_roof_smax
    i = 81
    j = 0.0
       loop n (1,19)
          command
            hist id i nstep 40 zone smax 30 j 20
          end_command
          i = i + 1
          j = j + 5.0
       end_loop
end
define histwrite_zdis
    k = 1
       loop n (1,19)
          command
            hist write k file zdis_1接触面.txt
          end_command
          k = k + 1
       end_loop
end
define histwrite_left_xdis
    l = 21
       loop n (1,19)
          command
            hist write l file left_xdis_1接触面.txt
          end_command
          l = l + 1
       end_loop
end
define histwrite_right_xdis
    p = 41
       loop n (1,19)
          command
            hist write p file right_xdis_1接触面.txt
          end_command
          p = p + 1
       end_loop
end
define histwrite_roof_smin
    q = 61
       loop n (1,19)
          command
            hist write q file roof_smin_1接触面.txt
          end_command
          q = q + 1
       end_loop
end
define histwrite_roof_smax
    r = 81
       loop n (1,19)
          command
            hist write r file roof_smax_1接触面.txt
          end_command
          r = r + 1
       end_loop
end
set grav 0 0 -10
set large
hist_zdis
hist_left_xdis
hist_right_xdis
hist_roof_smin
hist_roof_smax
face_cave
solve
histwrite_zdis
histwrite_left_xdis
histwrite_right_xdis
histwrite_roof_smin
histwrite_roof_smax
save 模型5-无支护巷道采场开挖-1接触面.sav
return
;采场每5m开挖一次,每5m设置一个监测点,分别记录巷道顶板中部垂直位移和两帮水平位移,写入文件
离线yangxin546

发帖
139
土币
563
威望
1052
原创币
0
只看该作者 1楼 发表于: 2011-11-04
参数调大点,E,C,F,ten什么的
离线friendqgp

发帖
20
土币
67
威望
15
原创币
0
只看该作者 2楼 发表于: 2011-11-04
回 1楼(yangxin546) 的帖子
yangxin546:[表情] 参数调大点,E,C,F,ten什么的 (2011-11-04 12:26) 

可是我觉得我的接触面的相关参数已经设置不小了,麻烦帮忙看一下,难道还不够大?
inter 1 prop kn 20e11 ks 20e11 coh 10e8 fri 30;
离线yangxin546

发帖
139
土币
563
威望
1052
原创币
0
只看该作者 3楼 发表于: 2011-11-04
岩石参数呢?
难道你计算自重场开了大变形?
离线friendqgp

发帖
20
土币
67
威望
15
原创币
0
只看该作者 4楼 发表于: 2011-11-06
回 3楼(yangxin546) 的帖子
yangxin546:[表情] 岩石参数呢?
难道你计算自重场开了大变形? (2011-11-04 18:09) 

rest 模型5-模型建立.sav
model mohr

prop bulk 2.26e10 shear 1.76e10 coh 7.59e7 fri 36.62 ten 5.67e7 range group floor1
prop bulk 9.88e9 shear 6.50e9 coh 1.60e7 fri 30 ten 3e7 range group floor2
prop bulk 6.17e9 shear 4.07e9 coh 1e7 fri 31.81 ten 2.3e7 range group coal
prop bulk 1.79e10 shear 1.23e10 coh 3e7 fri 39.52 ten 5.35e7 range group roof1
prop bulk 9.88e9 shear 6.50e9 coh 1.6e7 fri 30.7 ten 3.1e7 range group roof2
prop bulk 2.41e10 shear 1.74e10 coh 4.2e7 fri 39.52 ten 7.03e7 range group roof3

fix z range z -0.1 0.1
fix x range x -0.1 0.1
fix x range x 215 216.1
fix y range y -0.1 0.1
fix y range y 99.9 100.1

ini dens 2800 range group floor1
ini dens 2530 range group floor2
ini dens 1390 range group coal
ini dens 2530 range group roof1
ini dens 2500 range group roof2
ini dens 2800 range group roof3

ini szz -1.35e7 grad 0 0 27e3 range z 0 63
ini syy -6.75e6 grad 0 0 13.5e3 range z 0 63
ini sxx -6.75e6 grad 0 0 13.5e3 range z 0 63
apply szz -1.4e7 range z 62.9 63.1
set grav 0 0 -10
hist unbal
pause
solve
save 模型5-应力平衡.sav
;return
这是计算自重场时进行的计算,参数比实际的参数调大了10倍,并没有设置大变形。
离线friendqgp

发帖
20
土币
67
威望
15
原创币
0
只看该作者 5楼 发表于: 2011-11-06
回 3楼(yangxin546) 的帖子
yangxin546:[表情] 岩石参数呢?
难道你计算自重场开了大变形? (2011-11-04 18:09) 

model mohr
prop bulk 2.26e9 shear 1.76e9 coh 7.59e6 fri 36.62 ten 5.67e6 range group floor1
prop bulk 9.88e8 shear 6.50e8 coh 1.60e5 fri 30 ten 3e6 range group floor2
prop bulk 6.17e8 shear 4.07e8 coh 1e6 fri 31.81 ten 2.3e6 range group coal
prop bulk 1.79e9 shear 1.23e9 coh 3e6 fri 39.52 ten 5.35e6 range group roof1
prop bulk 9.88e8 shear 6.50e8 coh 1.6e6 fri 30.7 ten 3.1e6 range group roof2
prop bulk 2.41e9 shear 1.74e9 coh 4.2e6 fri 39.52 ten 7.03e6 range group roof3

这是巷道开挖的过程中设置的参数
在巷道开挖平衡的过程中,设置了大变形

离线yangxin546

发帖
139
土币
563
威望
1052
原创币
0
只看该作者 6楼 发表于: 2011-11-06
  这样的话就要一步步验证了
首先,自重场后应力位移云图是怎样的
其次,开挖前,自重位移清0了没有?
再者,自重计算和开挖过程为什么变了参数,

数值计算即使命令都是对的,小错误调试也蛮麻烦的,你可以留QQ交流下不。
离线friendqgp

发帖
20
土币
67
威望
15
原创币
0
只看该作者 7楼 发表于: 2011-11-06
回 6楼(yangxin546) 的帖子
yangxin546:[表情]  这样的话就要一步步验证了
首先,自重场后应力位移云图是怎样的
其次,开挖前,自重位移清0了没有?
再者,自重计算和开挖过程为什么变了参数,
....... (2011-11-06 12:01) 

谢谢,我的qq是:34266603
近期会一直在线的
离线friendqgp

发帖
20
土币
67
威望
15
原创币
0
只看该作者 8楼 发表于: 2011-11-06
回 6楼(yangxin546) 的帖子
yangxin546:[表情]  这样的话就要一步步验证了
首先,自重场后应力位移云图是怎样的
其次,开挖前,自重位移清0了没有?
再者,自重计算和开挖过程为什么变了参数,
....... (2011-11-06 12:01) 

通过提醒,我想我的模型中应该还存在一个问题,就是在巷道开挖之前,自重位移没有清零,我会继续修改做计算
离线sdzs1984114

发帖
21
土币
1
威望
110
原创币
0
只看该作者 9楼 发表于: 2015-08-22
兄弟  解决了吗
很好  很好 很好
快速回复
限100 字节
温馨提示:欢迎交流讨论,请勿纯表情、纯引用!
 
上一个 下一个

      浙公网安备 33010602003799号 浙ICP备14021682号-1

      工业和信息化部备案管理系统网站