1) arbitrarily distributed load
任意分布载荷
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) arbitrary distribution
任意分布
1.
Reliability optimization design of overhead traveling crane with arbitrary distribution parameters;
任意分布参数的桥式起重机的可靠性优化设计
2.
The equipment battlefield repair systems model was set based on arbitrary distribution stochastic Petri nets.
基于任意分布随机Petri网(ASPN),建立了装备战场抢修系统的ASPN模型。
4) load distribution
载荷分布
1.
Simulating test on damage regularities of thick sandy soil layer and load distribution on key roof block in shallow coal seams;
浅埋煤层厚沙土层顶板关键块动态载荷分布规律
2.
Influence of load distribution on dynamic performance of 6-DOF motion platform;
载荷分布对六自由度运动平台动力学性能的影响
3.
A study on load distribution and slip characteristics of metal V-belt CVT;
金属带式无极变速传动的载荷分布及滑移特性研究
5) distributed load
分布载荷
1.
The fuzzy random curve shows that the crash force near the feed opening is bigger than that of other places, and the fuzzy random distributed load can be acquired by v.
模糊随机分布载荷曲线表明,离排放口附近越近的位置破碎力越大;对于不同工作条件下的模糊随机分布载荷,可以通过调整模糊隶属度函数的参数和破碎影响因子获得。
2.
The present paper deals with the elastic stability of clamp-free columms under the action of concentrated end loads and complicated distributed loads.
用能量法对于同时承受端部集中载荷与分布载荷作用下柱体的稳定性问题进行了研究,分别考虑了:①分布载荷为始终沿轴线方向的“非保守型分布载荷”和始终沿初始轴线方向的“保守型分布载荷”;②端部集中载荷与分布载荷是彼此独立的和成比例的,以便使本文的推导及求解更加符合工程中的实际问题。
3.
The concept of surface mobility is introduced to study the identification of distributed loads based on SEA in the paper.
引入面导纳的概念对结构的分布载荷进行识别。
6) load distribution
荷载分布
1.
The settlement and load distribution on the top of group pile foundation at the states of completion of platform,tower,bridge were analyzed.
通过离心模型试验,研究了5种工况下主桥索塔群桩基础的竖向承载变形特性,分析了承台竣工、裸塔竣工、成桥阶段群桩基础的沉降及桩顶荷载分布规律。
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条