说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 面波方法
1)  surface wave method
面波方法
1.
To recognize the development features,formation mechanism and development trend of geofractures in Shitangwan,Wuxi,many reconnaissance methods were used,one of which was transient surface wave method.
为了查明无锡石唐湾地裂缝发育特征、形成机理及发展趋势,投入了多种勘查方法,瞬态面波方法便是其中的一种。
2)  Plane Wave Method
平面波方法
3)  pseudopotential plane-wave method
赝势平面波方法
1.
Using the first-principles pseudopotential plane-wave methods based on the density functional theory,the geometric and electronic structures of(NiX)Al supercells with different alloying elements X(X=Cr,Mn,Fe,Co and Cu) or different Fe contents,e.
采用第一原理赝势平面波方法,计算几种合金化元素X(X=Cr、Mn、Fe、Co和Cu)与不同Fe含量(0,3。
2.
Using the first-principle pseudopotential plane-wave method, the energy and electronic structures of Ca alloying Mg_(17)Al_(12) phase were investigated.
采用第一原理赝势平面波方法,计算了Mg17Al12相Ca合金化前后的能态与电子结构。
3.
Using first-principles pseudopotential plane-wave method,the electronic structures and bonding characteristics of L1_0-TiAl intermetallic compound alloyed by Mn or Nb is calculated.
采用第一原理赝势平面波方法计算了L10型TiA l金属间化合物中掺入Mn,Nb后的电子结构和价键结构。
4)  pseudo-potential plane wave method
赝势平面波方法
1.
Using first-principles pseudo-potential plane wave method,the diffusion of Ru and Al in B2-RuAl alloy has been calculated in different situations,and scaled the chemistry reaction by using diffusion activation energy.
采用第一原理赝势平面波方法,计算B2-RuA l合金中Ru和A l在不同情况下的扩散,用扩散激活能有效地表述和研究其化学反应的难易。
2.
Using the first-principles pseudo-potential plane wave method,the diffusion activation energies of C,N and O atoms in α-Fe are calculated.
采用第一性原理赝势平面波方法计算C、N、O在α-Fe中扩散激活能。
5)  guide modes
平面波展开方法
1.
The calculated results show that that the SSTH heterostucture may produce guide modes in absolute photonic band gap(PBG) when introducing relatively longitudinal gliding or transverse displacement of the sub-lattices along the interface of the heterostructure.
本文利用平面波展开方法和超原胞方法研究了由正方形格子上放置正方形散射子和三角形格子上放置六角形散射子组成的异质结 (SSTH异质结 )的带隙结构 。
2.
By using the plane wave expansion method combined with the supercell technique, we investigate the band structures of the heterostructure composed of square cylinders in square lattice and hexagon cylinders in triangular lattice (SSTH heterostucture), and the guide modes at the interface of the heterostructure.
本文利用平面波展开方法和超原胞方法研究了由正方形格子上放置正方形散射子和三角形格子上放置六角形散射子组成的异质结(SSTH异质结)的带隙结构。
6)  plane wave expansion method
平面波展开方法
1.
Two different methods (plane wave expansion method and the finite differential of time domain method) are employed to calculate the complete band gap of a two-dimensional photonic crystal consisting of anisotropic elliptic cylinders of Tellurium.
用平面波展开方法及时域有限差分法计算了各向异性介质材料碲形成的椭圆柱光子晶体的带隙结构 。
2.
The valence subband energies and wave functions of a tensile strained quantum well are calculated by the plane wave expansion method within the 6×6 Luttinger Kohn model.
用 6× 6 L uttinger- Kohn模型结合平面波展开方法计算了应变量子阱材料的价带结构 ,分析了用来展开的平面波的数目和周期对能量本征值的影响 。
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条