1) Shapefile
Shapefile数据格式
1.
The interface frame of transforming Shapefile to another data structure is designed, and the method of reading Shapefile with C++ is given.
给出了一种同时读取Shapefile空间数据和属性数据的方法,即建立一个临时数据源,通过临时数据源动态的读取属性表,设计了将ARC/VIEW中Shapefile数据格式转换成用户自己的数据格式接口程序框图,并给出了利用C++读取Shapefile文件的实现方法。
2) SH
SH
1.
重金属离子对鲫蛋白ATPase活性和SH基总量的影响;
重金属离子对鲫蛋白ATPase活性和SH基总量的影响
2.
STRENGTH CHARACTERISTICS OF SAND FIXATED BY SH;
SH固沙剂固化沙体的强度特征
3.
Distinguish zh, ch, sh from z, c, s Respectively with the Rule of Pronunciation Variation between Ancient and Modern Times;
利用古今音变规律分辨zh、ch、sh和z、c、s
3) SK N SH cell
SH-N-SH
4) SH waves
SH波
1.
SH waves in laminated structure of functionally gradient piezoelectric material;
功能梯度压电材料层状结构中的SH波
2.
The characteristics of the lowest model SH waves propagating on the "sandwich" structure had been given by analyzing the dispersion equations of SH waves propagating on the structure.
建立了粘接界面层多孔隙缺陷微观结构的界面数理模型,推导了横波(SH波)在“三明治”结构传播的频散方程,对最低模式的SH波在带有多孔隙缺陷界面的双层板粘接结构的传播特性进行数值计算分析。
3.
An analytical solution for 2-D scattering of plane SH waves by a circular-arc layered canyon is derived by Fourier-Bessel expansion technique, and the effects of alluvial sequence, stiffness and thickness of the soft alluvium are discussed.
利用 Fourier- Bessel级数展开法给出了圆弧形层状凹陷地形对平面 SH波散射二维问题的一个解析解 ,分析了层状凹陷地形沉积排列顺序、软夹层刚度和厚度等因素对 SH波散射的影响。
5) SH wave
SH波
1.
Scattering of SH wave by a rigid line terminating at the interface of a bi-material;
和界面接触的刚性线夹杂对SH波的散射
2.
A study on hemispherical canyon SH wave dispersion;
半球形峡谷对SH波散射问题的初步研究
3.
Dynamic stresses concentration of SH wave by cavity with lining in infinite soil;
SH波对无限介质土中衬砌结构的动应力集中
6) mercapto group
SH基
1.
The major causes of off-flavour of the cooked rice was due the intractions among rice proteins, lipids and carbohydrates, which result in the production of carbonyl compounds,the increase of caproaldehyde,and the decrease of acetaldehyde and mercapto group as well as the changes in the cell wall structures.
本文结合近几年研究工作及国内外对大米陈化研究的新进展,综合阐述了随大米存放时间的延长,其化学组织特别是大米蛋白质、类脂与淀粉的共同作用,促使羰基化合物的生成、乙醛减少、己醛增加、SH基减少,以及胞壁改变,是造成大米陈化、米饭“陈米臭”的主因。
参考词条
补充资料:ANSYS--格式输出数据
利用APDL功能按照一定格式写出ansys数据文件的方法
ANSYS在运行阶段总是处理大量的模型数据、载荷数据以及结果数据等,有时需要将这些数据按照一定的格式写进指定的数据文件中,这时可以利用*GET和*VGET数据提取的各种命令将数据存入到变量或数组中,然后利用*CFWRITE或*VWRITE命令写入到指定文件.下面是使用*VWRITE实现该过程的一个实例:
/post1
set,,,,,10.0
*get,ntemp01,node,2,temp ! 时间等于10时的节点2的温度值
*get,ntemp02,node,9,temp ! 时间等于10时的节点9的温度值
*get,ntemp03,node,7,temp ! 时间等于10时的节点7的温度值
*vwrite,ntemp01,ntemp02,ntemp03
(T1,''N2 TEMP='',F5.1,'', N9 TEMP='',F5.1,'', N7 TEMP='',F5.1)
/output,nodetemp,dat
其中,命令/output可以用于确定输出方向,即输出到ansys的输出窗口(OUTPUT WINDOW)中,或者指定的文件中。上面将温度值输出到nodetemp.dat文件中,内容如下:
N2 TEMP= 19.2, N9 TEMP= 19.8, N7 TEMP= 20.8
这样就可以对输出数据用别的工具进行处理。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。