1) macro programming
宏观编程
2) macroscopic
宏观
1.
Fractal study of scale effect in microscopic,mesoscopic and macroscopic states for fracture mechanism of rock materials;
岩石材料微、细、宏观断裂机理尺度效应的分形研究
2.
The macroscopic property of the material differs from its microcosmic property greatly,the existing macroscopic theory is usually no longer suitable under the condition of the mesocosmic or microscopic view.
材料的宏观性能与微观性能相差甚远,已有的宏观理论在细观或者微观情况下通常不再适用;为更好地理解材料的力学性能,需要进行宏观,细观、及微观三个层次相结合的三观研究,但如何将这三个层次的现象联系起来,无论对哪一学科都还是难题。
3.
The microscopic oil production mechanism and macroscopic oil production mechanism are discussed in this paper, the main origin for the existing remaining oil in the round of injectors is analyzed.
阐述了朝阳沟油田注水井微观出油机理和宏观出油机理,以及逆向驱油(注水井转抽)可以克服毛管力的圈闭作用和贾敏效应,证明了在毛管力作用下注水井周围的油层中存在大量的剩余油,为挖掘低渗透油田剩余油潜力提供理论依据。
3) macro
宏观
1.
The Macro-Survey for 《Research and Application in Remote Sensing and Monitoring over Jiulong River Watershed Eco-environment》Project;
宏观审视《九龙江流域生态环境遥感监测研究与应用》项目
2.
This paper introduces the current actuality of the study of residual oil distribution in the world,addresses the technology of the study from the points of both micro and macro scale: the micro scale study includes physical modeling and computer modeling;and the macro scale study includes logging interpretation,3D seismic and flow unit division.
介绍了国内外剩余油分布的研究现状,从微观规模和宏观规模2个角度对剩余油研究技术进行了综述,微观规模常用的研究技术主要有物理模拟、计算机模拟等,宏观研究常用技术有测井解释、三维地震、流动单元划分等。
3.
Based on the measurement of macro mechanical properties and surface microhardness,and the analysis of dislocation structure and micro-fracture of 45# steel in different periods of fatigue,the changing rulers of macro mechanical properties(elasticity,plasticity and strength)and meso mechanical property with cycles during fatigue damage were investigated systematically.
通过对疲劳不同阶段45~#钢试样的宏观力学性能测试、表面显微硬度测量及位错结构与显微断口分析,研究了疲劳损伤过程中材料的宏观与细观力学性能随疲劳损伤的变化规律,以及剩余力学性能变化与材料内部位错结构演变及断裂特征变化的关
5) macrocosm
宏观
1.
While the contradict of microcosm and macrocosm is emphasized,the integration of them should be presented in order to make students get a more precise understand.
化学教学中有诸如物质性质、实验现象、物质作用等宏观概念,又有诸如分子、原子、离子、质子、中子、电子等微观概念。
2.
This article illustrates by the specific examples that the integral formula of Gauss s law when having insulator is a macrocosm formula under a certain condition and it can t explain microcosm.
该文通过具体例子说明了有介质时的高斯定理的积分形式是在一定条件下的宏观表达式 ,它不能解释微观现
参考词条
补充资料:Autocad VBA初级教程 (第二课 编程基础)
第二课 编程基础 本课主要任务是对上一课的例程进行详细分析 下面是源码: Sub c100() Dim cc(0 To 2) As Double '声明坐标变量 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 For i = 1 To 1000 Step 10 '开始循环 Call ThisDrawing.ModelSpace.AddCircle(cc, i * 10) '画圆 Next i End Sub 先看第一行和最后一行: Sub C100() …… End Sub C100是宏的名称,也叫过程名称,当用户执行C100时程序将运行sub 和end sub之间的所有指令。 第二行: Dim cc(0 To 2) As Double '声明坐标变量 后半段“'声明坐标变量”自动变为绿色字体,它是代码语句的注释,它不会影响程序运行,它的作用是告诉阅读者程序员的想法。对于简单的程序,一般不需要写注释,如果要编写非常复杂的程序,最好要多加注释,越详细越好,对于程序员来说,这是一个好习惯。 电脑真正编译执行的是这条语句:Dim cc(0 To 2) As Double 它的作用就是声明变量。 Dim是一条语句,可以理解为计算机指令。 它的语法:Dim变量名 As 数据类型 本例中变量名为CC,而括号中的0 to 2声明这个CC是一个数组,这个数组有三个元素:CC(0)、CC(1)、CC(2),如果改为CC(1 to 3),则三个元素是CC(1)、CC(2)、CC(3),有了这个数组,就可以把坐标数值放到这个变量之中。 Double是数据类型中的一种。ACAD中一般需要定义坐标时就用这个数据类型。在ACAD中数据类型的有很多,下面两个是比较常用的数据类型,初学者要有所理解。 Long(长整型),其范围从 -2,147,483,648 到 2,147,483,647。 Variant 它是那些没被显式声明为其他类型变量的数据类型,可以理解为一种通用的数据类型,这是最常用的。 下面三条语句 cc(0) = 1000 '定义圆心座标 cc(1) = 1000 cc(2) = 0 它们的作用是给CC变量的每一个元素赋,值其顺序是X、Y、Z坐标。 For i = 1 To 1000 Step 10 '开始循环 …… Next i '结束循环 这两条语句的作用是循环运行指令,每循环一次,i值要增加10,当i加到 1000时,结束循环。 i也是一个变量,虽然没有声明i变量,程序还是认可的,VB不是C语言,每用一个变量都要声明,不声明就会报错。简单是简单了,这样做也有坏处,如果不小心打错了一个字母,程序不会报错,如果程序很长,那就会出现一些意想不到的错误。 step后面的数值就是每次循环时增加的数值,step后也可以用负值。
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
|
|