1) implementing direction
实施方向
2) implementation method
实施方法
1.
Research on ERP Implementation Method Based on CMM;
基于CMM的ERP实施方法研究
2.
The layout of safety monitoring network, the construction of observation podium, the implementation methods of survey and check, the survry data adjustment and the processes of survey accuracy analysis are introduced in this paper.
介绍了宝鸡峡渠首安全监测控制网的布设、观测墩建造、外业测量实施方法和检校验算、观测成果的平差及精度分析过
3.
On the basis of current research, we propose the connotation of CRM implementation method based on best practices, and the process model is build.
在现有CRM实施方法研究的基础上,提出了基于最佳实践的CRM实施方法的内涵,并建立了相应的过程模型,然后从销售、营销、服务与支持等三个方面讨论了基于最佳实践的CRM全流程改进方法,能够具体指导企业进行CRM实施,帮助企业提高CRM实施的成功率。
3) implementation scheme
实施方案
1.
Research of certificate authority system implementation scheme in e-commerce;
电子商务中身份认证系统的实施方案
2.
According to a large number of investigations,some suggestions are made on the feasible localization of turbine control equipment of large hydropower stations,and its system structure,implementation schemes,technical indexes,public bidding,etc.
经过大量的调研和试验,对大型骨干水电站水轮机控制设备实现国产化的可行性及其系统结构、实施方案、技术指标、招标等提出了建议。
3.
The article analyzes the implementation scheme of The Huai an No.
通过对南水北调东线第一期工程淮安四站输水河道穿湖段工程优化实施方案的分析,提出在湖泊中建设水利工程需注意的施工工期、施工风险、实施方案、投资控制等问题,对今后类似工程的设计和施工可以起到参考和借鉴作用。
4) Implementation plan
实施方案
1.
Improvement and perfect for the model-marketed drug sampling and testing on the essential of implementation plan for qualitative evaluation
药品评价抽验模式的改进和完善实施方案要点探讨
2.
According to the office automatic network system under construction in the unit of the author,this paper summarizes the development objective,detailed design scheme and implementation plan of the offiec automatic metwork system.
文章结合本单位正在实施的办公自动化网络系统工程,综述办公自动化网络系统的建设目标及详细的设计方案和实施方
3.
According to the research contents and emphases,the implementation plan of bilingual teaching practice was introduced from students,teaching chapter,English materials and teaching means and plan.
从学生情况、教学章节、英文素材、教学手段及方案等方面入手,对水质工程学双语教学进行了实践研究,介绍了双语教学实践研究的实施方案。
5) implementing scheme
实施方案
1.
Evaluation on implementing scheme of the New Rural Cooperative Medical System in Yunnan Province;
云南省新型农村合作医疗试点实施方案的初步评价
2.
The implementing scheme of post-evaluation of real estate development project;
房地产开发项目后评价的实施方案
3.
Reconstruction implementing scheme of the steel bifurcated sleeper of the speed-increasing type Ⅰ turnout;
提速Ⅰ型道岔钢岔枕改造实施方案
6) application method
实施方法
1.
Mass Customization Mode of Knowledge Production and Its Application Method;
知识生产的大规模定制模式及其实施方法
2.
Objective To study the application method,intensive monitoring and treatment to complication of mild hypothermia therapy for critically ill patients.
目的 探讨危重症亚低温治疗的实施方法、监护重点及并发症防治。
补充资料: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
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条