1)  source program level
源程序级
1.
In this paper CACHE mechanism was discussed, and some techniques to enhance program locality at the source program level were analyzed.
 本文论述CACHE机理,深入分析了在源程序级加强程序局部性的若干方法,并认为应把学术领域中对CACHE行为的分析引入本科教学中,培养并加强学生的CACHE意识,编写具有良好局部性的程序,以充分利用当代微处理器的硬件复杂性,发挥其性能潜力。
2)  source-level debug system
源程序级调试系统
3)  APT programs
APT源程序
4)  source code
源程序
5)  source program
源程序
1.
In software copyright dispute if the litigant did not show the source program, it is possible that the litigant has to hold legal responsible due to evidence lack.
源程序是软件开发者身份的重要证明,在软件著作权的纠纷中,如果当事人不能出示源程序,有可能因举证不能而导致承担法律责任。
2.
Regarding the reverse engineering research topics proposed in software engineering,this paper introduces an automatic converting algorithm from source program to flowchart and proposes the method and key techniques implementing the algorithm.
随着计算机软件技术的不断发展,软件开发与维护工作所占的比重越来越大,针对软件工程领域中所提出的逆向工程的研究课题,介绍一种将源程序代码自动转换为程序流程图的改进算法,提出了实现算法的方法和关键技术,并用Visual Basic语言结合实例对该算法进行了实现,验证了算法的可行性。
3.
According to the initial value of variable and shift direction based on CRC theory,what the standard and code meaning that the source program selected are analyzed.
从CRC的原理和分类入手对源程序进行分析,根据变量初值和运算移位方式,确定源程序采用的CRC标准和D IVI-SOR代码含义,最后给出源程序运算过程。
6)  MCNP source code
MCNP源程序
参考词条
补充资料:齿轮轮齿渐开线、螺栓、弹簧autolsp源程序
 

一、齿轮轮齿渐开渐开线


(defun c:gear(/)
(
 setq
p0 (getpoint"输入齿轮中心p0: ")
m  (getreal"输入齿轮模数M: ")
z  (getint"输入齿轮齿数Z: ")
ha 1
c 0.25
a (/ pi 9)
ra(/ (* (+ z (+ ha ha)) m) 2)
rf(/ (* (- z (+ (+ ha ha) c)) m) 2)
r(/ ( * m z) 2)
rb ( * r (cos a))
ri rb
ang 0
g (polar p0 ang rb)
)
(command "circle" p0 ra)
(command "circle" p0 rf)
(command "circle" p0 r)
(command "line"  g)
 
(while (< ri ra)
(setq
ang ( + ang(/ pi 360))
ri ( / rb (cos ang))
cta ( - (/ (sin ang) (cos ang)) ang)
g(polar p0 cta ri)
)


(command g)
)
(command )
)



二、螺旋源程序


(defun errMsg (s)
  (if (/= s "function cancelled") (princ (strcat "\nError: " s)))
     ; 当命令执行时出现错误
  (setvar "cmdecho" ocmdold)                                      ; 例如用户按下了CTRL + C
  (setvar "osmode" osmold)
  (setq *error* olderr)   ; 恢复旧的错误处理
  (princ)
)


(defun c:3Dthread (/ radouter threadpitch threadlength threadangle
                   ptStart innerdiafactor radmid radinner ocmdold osmold 4H 5H 6H h6 g6)
   ;-------------------------------------------------------------------
   ; 获取公制外径大小、螺距总长
   ; 然后计算一系列几何点
   ; 并且关闭对象捕捉、命令回显
   ;-------------------------------------------------------------------
   (setq 4H (list 0.0015 0.002 0.002 0.0025 0.003 0.0035 0.004 0.005 0.006 0.007 0.008 0.009 0.010))  
   (setq 5H (list 0.002 0.0025 0.003 0.004 0.0045 0.0055 0.0065 0.0075 0.009 0.010 0.0115 0.0125 0.0135))  
   (setq 6H (list 0.003 0.004 0.0045 0.0055 0.0065 0.008 0.0095 0.011 0.0125 0.0145 0.016 0.018 0.020))  

说明:补充资料仅用于学习参考,请勿用于其它任何用途。