2) arbitrary loading
任意荷载
1.
One-dimensional nonlinear consolidation of underconsolidation clay under arbitrary loadings;
任意荷载下欠固结地基的非线性一维固结
2.
Based on the layered visco_elastic soil model, according to the Terzaghi s one dimensional consolidation theory, by the method of Laplace transform and matrix transfer technique, the problems about the consolidation of layered and saturated visco_elastic soils under arbitrary loading were solved.
针对成层粘弹性地基模型 ,运用Laplace变换及矩阵传递法求解了任意荷载下成层粘弹性地基一维变形问题 ,得到了频域内的通解 ,通过Laplace逆变换 ,即可计算成层粘弹性地基在任意荷载下的一维变形· Terzaghi一维固结理论解是本文的一个特例· 结合三层地基的算例 ,可以看到粘弹性地基的固结相对于弹性地基有个滞后过程 ,但随时间最终趋于一致 ;循环荷载下粘弹性多层地基固结时 ,其有效应力和变形都呈振荡增长 ,且不与荷载同步 ,而要相对滞后· 此外 ,通过一工程实例 ,对该方法的可靠性进行论证 ,以证明该法确能指导工程实
3.
By the method of Laplace transform and matrix transfer technique, according to the layered soil model, one dimensional consolidation of layered elastic soils under arbitrary loading has been studied in this paper.
针对成层弹性地基模型,运用Laplace变换及矩阵传递法求解了任意荷载下成层弹性地基一维固结问题,得到了频域内的通解,通过Laplace逆变换,即可计算成层弹性地基在任意荷载下的一维团结。
3) construction load
施工荷载
1.
In addition, from construction load, problem of strength, displacement of steel bar and other problems related to structural theory discussion is made in order to ensure engineering quality.
阐述了施工中结构理论对于建筑工程质量的重要性,从施工荷载、施工阶段的强度问题、施工阶段钢筋位置变化问题等多方面,对施工过程中存在的许多结构理论问题作了探讨,以确保工程质量。
4) construction loads
施工荷载
1.
The research of level construction loads influence in super high-rise frame and tube structure;
超高层框筒结构水平施工荷载影响研究
2.
Study on effect of construction loads on longitudinal deformation of adjacent metro tunnels;
地面新施工荷载对临近地铁隧道纵向变形的影响分析研究
3.
The model of one dimensional consolidation of layered systems is used with,construction loads taken into consideration,but it is difficult to calculate the basis equations from this model.
本文采用数值方法,求解层状地基考虑施工荷载变化的固结微分方程,通过计算,揭示了成层地基的固结特性,说明考虑实际土层分布的必要,为工程中求解一维固结问题提供简便可靠的计算方法。
5) constructing loads
施工荷载
1.
The emulation analysis of high building by using space structure model possessing conversion layers under constructing loads;
含转换层高层建筑施工荷载仿真分析
2.
Emulation analysis is made on the high building by using space structure model possessing conversion layers under constructing loads and the calculation model is compared with the traditional method without considering the constructing process.
对考虑施工荷载作用设有转换层的高层建筑进行了结构仿真分析 ,计算结构模型采用空间形式 ,并与不考虑施工过程的传统整体算法进行对比分析 ,所得结论可为改进设计计算方法提供借鉴。
6) live construction load
施工活荷载
1.
With on-site measuring data, authors used effective bearing area of members as statistical objects, calculated statistical parameters of live construction load of concrete buildings, referred domestic and foreign achievements, and provided advice about live construction load per effective bearing area of members.
通过现场实测,以构件有效承载面积为统计对象,计算得出混凝土房屋建筑施工活荷载的统计参量,并参考国内外有关成果,按构件有效承载面积,建议了施工活荷载。
补充资料:ANSYS中在任意面施加任意方向任意变化的压力方法
在任意面施加任意方向任意变化的压力
在某些特殊的应用场合,可能需要在结构件的某个面上施加某个坐标方向的随坐标位置变化的压力载荷,当然,这在一定程度上可以通过ANSYS表面效应单元实现。如果利用ANSYS的参数化设计语言,也可以非常完美地实现此功能,下面通过一个小例子描述此方法。
!!!在执行如下加载命令之前,请务必用选择命令asel将需要加载的几何面选择出来
!!!
finish
/prep7
et,500,shell63
press=100e6
amesh,all
esla,s
nsla,s,1
! 如果载荷的反向是一个特殊坐标系的方向,可在此建立局部坐标系,并将
! 所有节点坐标系旋转到局部坐标系下.
*get,enmax,elem,,num,max
dofsel,s,fx,fy,fz
fcum,add !!!将力的施加方式设置为"累加",而不是缺省的"替代"
*do,i,1,enmax
*if,esel,eq,1,then
*get,ae,elem,i,area !此命令用单元真实面积,如用投影面积,请用下几条命令
! *get,ae,elem,i,aproj,x !此命令用单元X投影面积,如用真实面积,请用上一条命令
! *get,ae,elem,i,aproj,y !此命令用单元Y投影面积
! *get,ae,elem,i,aproj,z !此命令用单元Z投影面积
xe=centrx !单元中心X坐标(用于求解压力值)
ye=centry !单元中心Y坐标(用于求解压力值)
ze=centrz !单元中心Z坐标(用于求解压力值)
! 下面输入压力随坐标变化的公式,本例的压力随X和Y坐标线性变化.
p_e=(xe-10)*press+(ye-5)*press
f_tot=p_e*ae
esel,s,elem,,i
nsle,s,corner
*get,nn,node,,count
f_n=f_tot/nn
*do,j,1,nn
f,nelem(i,j),fx,f_n !压力的作用方向为X方向
! f,nelem(i,j),fy,f_n !压力的作用方向为Y方向
! f,nelem(i,j),fz,f_n !压力的作用方向为Z方向
*enddo
*endif
esla,s
*enddo
aclear,all
fcum,repl !!!将力的施加方式还原为缺省的"替代"
dofsel,all
allsel
在某些特殊的应用场合,可能需要在结构件的某个面上施加某个坐标方向的随坐标位置变化的压力载荷,当然,这在一定程度上可以通过ANSYS表面效应单元实现。如果利用ANSYS的参数化设计语言,也可以非常完美地实现此功能,下面通过一个小例子描述此方法。
!!!在执行如下加载命令之前,请务必用选择命令asel将需要加载的几何面选择出来
!!!
finish
/prep7
et,500,shell63
press=100e6
amesh,all
esla,s
nsla,s,1
! 如果载荷的反向是一个特殊坐标系的方向,可在此建立局部坐标系,并将
! 所有节点坐标系旋转到局部坐标系下.
*get,enmax,elem,,num,max
dofsel,s,fx,fy,fz
fcum,add !!!将力的施加方式设置为"累加",而不是缺省的"替代"
*do,i,1,enmax
*if,esel,eq,1,then
*get,ae,elem,i,area !此命令用单元真实面积,如用投影面积,请用下几条命令
! *get,ae,elem,i,aproj,x !此命令用单元X投影面积,如用真实面积,请用上一条命令
! *get,ae,elem,i,aproj,y !此命令用单元Y投影面积
! *get,ae,elem,i,aproj,z !此命令用单元Z投影面积
xe=centrx !单元中心X坐标(用于求解压力值)
ye=centry !单元中心Y坐标(用于求解压力值)
ze=centrz !单元中心Z坐标(用于求解压力值)
! 下面输入压力随坐标变化的公式,本例的压力随X和Y坐标线性变化.
p_e=(xe-10)*press+(ye-5)*press
f_tot=p_e*ae
esel,s,elem,,i
nsle,s,corner
*get,nn,node,,count
f_n=f_tot/nn
*do,j,1,nn
f,nelem(i,j),fx,f_n !压力的作用方向为X方向
! f,nelem(i,j),fy,f_n !压力的作用方向为Y方向
! f,nelem(i,j),fz,f_n !压力的作用方向为Z方向
*enddo
*endif
esla,s
*enddo
aclear,all
fcum,repl !!!将力的施加方式还原为缺省的"替代"
dofsel,all
allsel
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条