1) wanton vertical load
任意垂直荷载
1.
This article discusses the mechanics calculating of semi-circular arch under the function of wanton vertical load by virtual principle and symmetry of structure,which can supply reference for structure designers and strength researchers.
用虚功原理和结构的对称性讨论了半圆形拱结构,在任意垂直荷载作用下的力学计算,可供结构设计和强度研究人员参考。
2) vertical load
垂直载荷
1.
on the basis of the tire mechanical models founded, makes an intensive theoretic study on vehicles tires vertical load variation in cornering with braking and step forward set up a simulating model.
在已有的轮胎力学模型的基础上,对汽车转弯制动工况车轮垂直载荷的变动情况作了深入的理论分析,并进一步建立了仿真模型。
3) vertical load
垂直荷载
1.
Calculating equation of internal forces in circular curved beam acted by symmetric vertical loads;
圆弧形水平曲梁在对称垂直荷载作用下的内力计算公式
2.
Calculation methods of vertical load for directly buried heating pipelines;
直埋敷设供热管道垂直荷载计算方法的研究
3.
In order to study the character and the action mechanism of the high pressure jet grouting pile composite foundation induced by vertical load, the mechanics character of the high pressure jet grouting pile is explained using experiments.
为了研究在垂直荷载作用下高压旋喷桩复合地基的性状及其工作机理,通过试验等方法说明了高压旋喷桩的力学性质。
4) 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逆变换,即可计算成层弹性地基在任意荷载下的一维团结。
5) vertical dynamic load
垂直动载荷
1.
According to the main technical parameters and its status of the existing freight train styled in C62A running on corporation-owned railway,it s feasible to increase 5t on the basis of marked load 60t after analyzing vertical dynamic load an.
根据企业铁路目前使用的C62A型车辆的主要技术参数及状况,从垂直动载荷及技术指标分析,在标记载重60 t的基础上增重5 t是可行的,并能产生较大的经济效益,可以在企业铁路上进行推广。
6) vertical-load-bearing piles
垂直荷载桩
1.
The elastic theoy is used in this essay,the static model of foundation pile on semi-infinite body is established,and the equation of static analysis of vertical-load-bearing piles is given.
采用桩侧土应力与剪应变的双曲线关系、桩端阻力与变形的双曲线关系建立了桩—土非线性共同作用的分析模型,利用弹性理论建立了半无限弹性平面体地基上垂直荷载桩的弹性力学模型,并结合桩—土非线性共同作用分析推导了垂直荷载桩静力分析的基本方程,给出了垂直荷载桩静力分析的理论求解方法。
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条