英文翻译材料格式参考

英文翻译材料格式参考
英文翻译材料格式参考

北方民族大学毕业设计材料翻译

系(部)名称: 计算机科学与工程学院

学生姓名:

专业: 学号:

指导教师姓名:

北方民族大学教务处制

目录

I. Introduction (1)

II. Language Types (1)

III. Classification of High-Level Languages (2)

IV. Language Structure and Components (3)

V. History (4)

一、引言 (1)

二、语言类型 (1)

三、高级语言的分类 (2)

四、语言的结构与成分 (3)

五、历史 (3)

Computer Language and Programming

I. Introduction

Programming languages, in computer science, are the artificial languages used to write a sequence of instructions (a computer program) that can be run by a computer. Similar to natural languages, such as English, programming languages have a vocabulary, grammar, and syntax. However, natural languages are not suited for programming computers because they are ambiguous, meaning that their vocabulary and grammatical structure may be interpreted in multiple ways. The languages used to program computers must have simple logical structures, and the rules for their grammar, spelling, and punctuation must be precise.

Programming languages vary greatly in their sophistication and in their degree of versatility. Some programming languages are written to address a particular kind of computing problem or for use on a particular model of computer system. For instance, programming languages such as FORTRAN and COBOL were written to solve certain general types of programming problems—FORTRAN for scientific applications, and COBOL for business applications. Although these languages were designed to address specific categories of computer problems, they are highly portable, meaning that they may be used to program many types of computers. Other languages, such as machine languages, are designed to be used by one specific model of computer system, or even by one specific computer in certain research applications. The most commonly used programming languages are highly portable and can be used to effectively solve diverse types of computing problems. Languages like C, PASCAL , and BASIC fall into this category.

II. Language Types

Programming languages can be classified as either low-level languages or high-level languages. Low-level programming languages, or machine languages, are the most basic type of programming languages and can be understood directly by a computer. Machine languages differ depending on the manufacturer and model of computer. High-level languages are programming languages that must first be translated into a machine language before they can be understood and processed by a computer. Examples of high-level languages are C, C++, PASCAL, and FORTRAN. Assembly languages are intermediate languages that are very close to machine languages and do not have the level of linguistic sophistication exhibited by other high-level languages, but must still be translated into machine language.

1. Machine Languages

In machine languages, instructions are written as sequences of 1s and 0s, called bits, that a computer can understand directly. An instruction in machine language generally tells the computer four things: (1) where to find one or two numbers or simple pieces of data in the main computer memory (Random Access Memory, or RAM), (2) a simple operation to perform, such as adding the two numbers together, (3) where in the main memory to put the result of this simple operation, and (4) where to find the next instruction to perform. While all executable programs are eventually read by the computer in machine language, they are not all programmed in machine language. It is extremely difficult to program directly in machine language because the instructions are sequences of 1s and 0s. A typical instruction in a machine language might read 10010 1100 1011 and mean add the contents of storage register A to the contents of storage register B.

2. High-Level Languages

High-level languages are relatively sophisticated sets of statements utilizing words and syntax from human language. They are more similar to normal human languages than assembly or machine languages and are therefore easier to use for writing complicated programs. These programming languages allow larger and more complicated programs to be developed faster. However, high-level languages must be translated into machine language by another program called a compiler before a computer can understand them. For this reason, programs written in a high-level language may take longer to execute and use up more memory than programs written in an assembly language.

3. Assembly Languages

Computer programmers use assembly languages to make machine-language programs easier to write. In an assembly language, each statement corresponds roughly to one machine language instruction. An assembly language statement is composed with the aid of easy to remember commands. The command to add the contents of the storage register A to the contents of storage register B might be written ADD B, A in a typical assembly language statement. Assembly languages share certain features with machine languages. For instance, it is possible to manipulate specific bits in both assembly and machine languages. Programmers use assembly languages when it is important to minimize the time it takes to run a program, because the translation from assembly language to machine language is relatively simple. Assembly languages are also used when some part of the computer has to be controlled directly, such as individual dots on a monitor or the flow of individual characters to a printer.

III. Classification of High-Level Languages

High-level languages are commonly classified as procedure-oriented, functional, object-oriented, or logic languages. The most common high-level languages today are procedure-oriented languages. In these languages, one or more related blocks of statements that perform some complete function are grouped together into a program module, or procedure, and given a name su ch as “procedure A.” If the same sequence of operations is needed elsewhere in

the program, a simple statement can be used to refer back to the procedure. In essence, a procedure is just a mini-program. A large program can be constructed by grouping together procedures that perform different tasks. Procedural languages allow programs to be shorter and easier for the computer to read, but they require the programmer to design each procedure to be general enough to be used in different situations.

Functional languages treat procedures like mathematical functions and allow them to be processed like any other data in a program. This allows a much higher and more rigorous level of program construction. Functional languages also allow variables—symbols for data that can be specified and changed by the user as the program is running—to be given values only once. This simplifies programming by reducing the need to be concerned with the exact order of statement execution, since a variable does not have to be redeclared, or restated, each time it is used in a program statement. Many of the ideas from functional languages have become key parts of many modern procedural languages.

Object-oriented languages are outgrowths of functional languages. In object-oriented languages, the code used to write the program and the data processed by the program are grouped together into units called objects. Objects are further grouped into classes, which define the attributes objects must have. A simple example of a class is the class Book. Objects within this class might be Novel and Short Story. Objects also have certain functions associated with them, called methods. The computer accesses an object through the use of one of the object’s methods. The method performs some action to the data in the object and returns this value to the computer. Classes of objects can also be further grouped into hierarchies, in which objects of one class can inherit methods from another class. The structure provided in object-oriented languages makes them very useful for complicated programming tasks.

Logic languages use logic as their mathematical base. A logic program consists of sets of facts and if-then rules, which specify how one set of facts may be deduced from others, for example:

If the statement X is true, then the statement Y is false.

In the execution of such a program, an input statement can be logically deduced from other statements in the program. Many artificial intelligence programs are written in such languages.

IV. Language Structure and Components

Programming languages use specific types of statements, or instructions, to provide functional structure to the program. A statement in a program is a basic sentence that expresses a simple idea—its purpose is to give the computer a basic instruction. Statements define the types of data allowed, how data are to be manipulated, and the ways that procedures and functions work. Programmers use statements to manipulate common components of programming languages, such as variables and macros (mini-programs within a program).

Statements known as data declarations give names and properties to elements of a program called variables. Variables can be assigned different values within the program. The properties variables can have are called types, and they include such things as what possible values might be saved in the variables, how much numerical accuracy is to be used in the values, and how one variable may represent a collection of simpler values in an organized fashion, such as a table or array. In many programming languages, a key data type is a pointer. Variables that are pointers do not themselves have values; instead, they have information that the computer can use to locate some other variable—that is, they point to another variable.

An expression is a piece of a statement that describes a series of computations to be performed on some of th e program’s variables, such as X+Y/Z, in which the variables are X, Y, and Z and the computations are addition and division. An assignment statement assigns a variable a value derived from some expression, while conditional statements specify expressions to be tested and then used to select which other statements should be executed next.

Procedure and function statements define certain blocks of code as procedures or functions that can then be returned to later in the program. These statements also define the kinds of variables and parameters the programmer can choose and the type of value that the code will return when an expression accesses the procedure or function. Many programming languages also permit minitranslation programs called macros. Macros translate segments of code that have been written in a language structure defined by the programmer into statements that the programming language understands.

V. History

Programming languages date back almost to the invention of the digital computer in the 1940s. The first assembly languages emerged in the late 1950s with the introduction of commercial computers. The first procedural languages were developed in the late 1950s to early 1960s: FORTRAN, created by John Backus, and then COBOL, created by Grace Hopper. The first functional language was LISP, written by John McCarthy in the late 1950s. Although heavily updated, all three languages are still widely used today.

In the late 1960s, the first object-oriented languages, such as SIMULA, emerged. Logic languages became well known in the mid 1970s with the introduction of PROLOG, a language used to program artificial intelligence software. During the 1970s, procedural languages continued to develop with ALGOL, BASIC, PASCAL, C, and Ada. SMALLTALK was a highly influential object-oriented language that led to the merging of object-oriented and procedural languages in C++ and more recently in JA V A. Although pure logic languages have declined in popularity, variations have become vitally important in the form of relational languages for modern databases, such as SQL.

计算机语言与编程

一、引言

在计算机科学中,编程语言是用来编写可被计算机运行的一系列指令(计算机程序)的人工语言。与英语等自然语言相类似,编程语言具有词汇、语法和句法。然而,自然语言不适合计算机编程,因为它们能引起歧义,也就是说它们的词汇和语法结构可以用多种方式进行解释。用于计算编程的语言必须具有简单的逻辑结构,而且它们的语法、拼写和标点符号的规则必须精确。

编程语言在复杂性和通用程度上大相径庭。有些编程语言是为了处理特定类型的计算问题或为了用于特定型号的计算机系统而编写的。例如,FORTRAN和COBOL等编程语言是为解决某些普遍的编程问题类型而编写的——FORTRAN为了科学领域的应用,而COBOL 为了商业领域的应用。尽管这些语言旨在处理特定类型的计算机问题,但是它们具有很高的可移植性,也就是说它们可以用来为多种类型的计算机编程。其他的语言,譬如机器语言,是为一种特定型号的计算机系统,甚至是一台特定的计算机,在某些研究领域使用而编写的。最常用的编程语言具有很高的可移植性,可以用于有效地解决不同类型的计算问题。像C、PASCAL和BASIC这样的语言就属于这一范畴。

二、语言类型

编程语言可划分为低级语言和高级语言。低级编程语言或机器语言,是编程语言中最基础的类型,能被计算机直接理解。机器语言的区别取决于制造商和计算机的型号。高级语言是在计算机能够理解和处理之前必须首先翻译成机器语言的编程语言。C、C++、PASCAL 和FORTRAN都是高级语言的例子。汇编语言是中级语言,非常接近于机器语言,没有其他高级语言所表现出的语言复杂程度,但仍然得翻译成机器语言。

1、机器语言

在机器语言中,指令被写成计算机能够直接理解的被称之为比特的1和0的序列。机器语言中的一条指令通常告诉计算机4件事情:(1)到计算机主存储器(随机访问存储器)的哪个位置去找一或两个数字或者简单的数据段;(2)要执行的一个简单操作,例如将两个数字加起来;(3)将这个简单操作的结果存放在主存储器的什么位置;以及(4)到哪里找要执行的下一条指令。虽然所有的可执行程序最终都是以机器语言的形式被计算机读取,但是它们并非都是用机器语言编写的。直接用机器语言编程极端困难,因为指令是1和0的序列。机器语言中的一条典型的指令可能是10010 1100 1011,意思是将存储寄存器A的内容加到存储寄存器B的内容中。

2、高级语言

高级语言是利用人类语言中的词和句法的一套相对复杂的语句。它们比汇编语言和机器语言更类似于正常的人类语言,因此用来编写复杂的程序更容易。这些编程语言允许更快地开发更庞大和更复杂的程序。然而,在计算机能够理解之前,高级语言必须被称之为编译器的另外一种程序翻译成机器语言。因为这个原因,与用汇编语言编写的程序比较起来,用高级语言编写的程序可能运行的时间更长,占用的内存更多。

3、汇编语言

计算机编程人员使用汇编语言使机器语言程序编写起来更简单一些。在汇编语言中,每条语句大致对应一条机器语言指令。汇编语言的语句是借助易于记忆的命令编写的。在典型的汇编语言的语句中,把存储寄存器A的内容加到存储寄存器B的内容中这一命令,可以写成ADD B, A。汇编语言与机器语言具有某些共同特征。例如,对特定的比特进行操作,用汇编语言和机器语言都是可行的。当尽量减少程序的运行时间很重要时,程序员就使用汇编语言,因为从汇编语言到机器语言的翻译相对简单。当计算机的某个部分必须被直接控制时,如监视器上的单个点或者流向打印机的单个字符,这时也使用汇编语言。

三、高级语言的分类

高级语言通常分为面向过程的、函数式的、面向对象的或逻辑的语言。当今最常见的高级语言是面向过程的语言。在这种语言中,执行某个完整功能的一个或多个相关的语句块组成一个程序模块或过程,而且被给予诸如“过程A”的名称。如果在程序的其他地方需要同样的操作序列,可以使用一个简单的语句调回这个过程。实质上,一个过程就是一个小型程序。一个大程序可以通过将执行不同任务的过程组合在一起而构成。过程语言使程序变得比较短,而且更易于被计算机读取,但是要求程序员将每个过程都设计得足够通用,能用于不同的情况。

函数式语言像对待数学函数一样对待过程,并允许像处理程序中的任何其他数据一样处理它们。这就使程序构造在更高、更严密的水平上得以实现。函数式语言也允许变量——在程序运行过程中可以被用户指定和更改的数据符号——只被赋值一次。这样,通过减少对语句执行的确切顺序给予关注的必要性,就简化了编程,因为一个变量没有必要每次在一个程序语句中用到,都重新定义或重新赋值。函数式语言的许多观点已经成为许多现代过程语言的关键部分。

面向对象的语言是函数式语言的发展结果。在面向对象的语言中,用来编写程序的代码和程序处理的数据,组合成叫做对象的单元。对象进一步组合成类,而类则定义对象必须具有的属性。类的一个简单例子就是书这个类。这个类中的对象可能是小说和短篇小说。对象还有某些与其相关的功能,称为方法。计算机通过使用对象的某种方法来使用这个对象。方法对对象中的数据执行某个操作,然后将值返回给计算机。对象的类也可更进一步组合成层,而在层中一个类的对象可继承另一个类的方法。面向对象的语言中所提供的这种结构,使面向对象的语言对于复杂的编程任务非常有用。

逻辑语言将逻辑用作其数学基础。一个逻辑程序由一系列的事实与“如果……则”规则

组成,来具体说明一系列事实如何可以从其他实事中推断出来,例如:

如果X语句为真,则Y语句为假。

在这样一个程序的执行过程中,一条输入语句可以按照逻辑从程序中的其他语句推断出来。许多人工智能程序使用这种语言编写。

四、语言的结构与成分

编程语言使用特定类型的语句或指令,来给程序提供功能结构。程序中的一条语句是表达一个简单意思的基本句子,其目的是给计算机一条基本指令。语句对允许的数据类型、数据如何处理以及过程和函数的工作方式进行定义。程序员利用语句来操作编程语言的常见成分,如变量和宏(程序中的小型程序)。

数据声明语句给予称为变量的程序元素以名称和属性。变量在程序中可以赋予不同的值。变量可以具有的属性被称作类型,它们包括:变量中可能存储什么样的值,值中使用何种程度的数值精度,以及一个变量可以如何以有组织结构的方式——如以表或数组的形式——代表一组比较简单的值等等。在许多编程语言中,一种关键的数据类型是指示字。指示字变量本身没有值;相反,它们含有计算机可以用来查找某个其他变量的信息——也就是说,它们指向另一个变量。

表达式是语句的一段,描述要对一些程序变量执行的一系列运算,如X+Y/Z,其中X、Y和Z为变量,运算方法为加和除。赋值语句给一个变量赋予得自某个表达式的值,而条件语句则指定要被测试、然后用于选择接下来应该执行的其他语句的表达式。

过程与函数语句将某些代码块定义为以后可在程序中返回的进程或函数。这些语句也规定程序员可以选择的变量与参数种类,以及当一个表达式使用过程或函数时代码将返回的值的类型。许多编程语言也容许叫做宏的小型翻译程序。宏把使用程序员定义的语言结构编写的代码段翻译成编程语言可以理解的语句。

五、历史

编程语言几乎可以追溯到20世纪40年代数字计算机发明之时。最早的汇编语言,随着商业计算机的推出,出现于20世纪50年代末。最早的过程语言是在20世纪50年代末到20世纪60年代初开发的:FORTRAN语言由约翰?巴克斯创造,然后由格雷斯?霍珀创造了COBOL语言。第一种函数式语言是LISP,由约翰?麦卡锡20世纪50年代末编写。这3种语言今天仍在广泛使用,但经历过大量修改。

20世纪60年代末,出现了最早的面向对象的语言,如SIMULA语言。逻辑语言在20

世纪70年代中期随着PROLOG语言的推出而变得广为人知;PROLOG语言是一种用于编写人工智能软件的语言。在20世纪70年代,过程语言继续发展,出现了ALGOL、BASIC、PASCAL、C和Ada等语言。SMALLTALK语言是一种具有高度影响力的面向对象的语言,它导致了面向对象的语言与过程语言在C++和更近期的JA V A语言中的结合。尽管纯粹的逻辑语言受欢迎的程度有所下降,但其变体以现代数据库所使用的关系语言——如结构化查询语言——的形式,变得至关重要。

2.英文翻译格式和要求

英文 小四号字,单倍行距,首行缩进2个字符,不能定义文档网格。约3千英文单词。 MCU Description SCM is also known as micro-controller (Microcontroller Unit), commonly used letters of the acronym MCU MCU that it was first used in industrial control. Only a single chip by the CPU chip developed from a dedicated processor. The first design is by a large number of peripherals and CPU on a chip in the computer system, smaller, more easily integrated into a complex and demanding on the volume control device which. INTEL's Z80 is the first designed in accordance with this idea processor, then on the development of microcontroller and dedicated processors have parted ways. 一、SCM history SCM was born in the late 20th century, 70, experienced SCM, MCU, SoC three stages. SCM the single chip microcomputer (Single Chip Microcomputer) stage, mainly seeking the best of the best single form of embedded systems architecture. "Innovation model" success, laying the SCM and general computer completely different path of development. In the open road of independent development of embedded systems, Intel Corporation contributed. MCU the micro-controller (Micro Controller Unit) stage, the main direction of technology development: expanding to meet the embedded applications, the target system requirements for the various peripheral circuits and interface circuits, highlight the object of intelligent control.It involves the areas associated with the object system, therefore,the development of MCU's responsibility inevitably falls on electrical, electronics manufacturers. From this point of view, Intel faded MCU development has its objective factors. In the development of MCU, the most famous manufacturers as the number of Philips Corporation. Philips company in embedded applications, its great advantage, the MCS-51 single-chip micro-computer from the rapid development of the micro-controller. Therefore, when we look back at the path of development of embedded systems, do not forget Intel and Philips in History. 二、Embedded Systems Embedded system microcontroller is an independent development path, the MCU important factor in the development stage, is seeking applications to maximize the solution on the chip; Therefore, the development of dedicated single chip SoC trend of the natural form. As the microelectronics, IC design, EDA tools development, application system based on MCU SoC design have greater development. Therefore, the understanding of the microcontroller chip microcomputer can be, extended to the single-chip micro-controller applications. 三、MCU applications SCM now permeate all areas of our lives, which is almost difficult to find traces of the field without SCM. Missile navigation equipment, aircraft, all types of instrument control, computer network communications and data transmission, industrial automation, real-time process control and data processing, extensive use of various smart IC card, civilian luxury car security system, video recorder, camera, fully automatic washing machine control, and program-controlled toys, electronic pet, etc., which are inseparable from the microcontroller. Not to mention the area of robot control, intelligent instruments, medical equipment was. Therefore, the MCU learning, development and application of the large number of computer applications and

材料英语翻译

①化学这门科学在当今世界非常有用。 ②y对于x的依赖关系用y=f(x)来表示。 ③各种物质的导热能力差异很大③各种物质的导热能力差异很大。 ④这个参数可以准确地加以测量。 ⑤半导体的导电率随温度的变化而变化。 ⑥原子能的恰当名称是核能。 ⑦工程材料的性质依赖于(取决于)它们的成分、结构、合成、加工。 ⑧材料科学与工程这个术语将材料科学与材料工程结合在一起,材料科学在材料知识谱的基础知识端,材料工程在应用知识端,两者之间并没有分界线。 ⑨材料的许多性质强烈依赖于其结构,即使材料的成分保持不变。这就是为什么材料中结构-性质关系或者显微结构-性质关系至关重要。 ⑩上面的两个等式极为重要。 The two equations above are of great importance. 十一.金属棒热端的分子随着那里的温度的增加而振动得越来越快。 Molecules at the hot end of a metallic rod vibrate faster as the temperature there increases. 十二.通常这些参数中有一些是已知的。 Usually some of these parameters are known. 十三.当温度低于临界温度时,电子能自由地通过晶格运动。 As temperatures below the critical temperature, the electrons move freely throughout the lattice. 十四. A随温度的这种变化主要是由B的变化引起的。 This variation of A with temperature is due primarily to variations in B. 十五.这种复杂的关系必须用图解来表示。 This complicated relationship must be representedgraphically. 十六.原子间的键合作用部分取决于原子的价电子如何结合在一起。键的类型包括金属键、共价键、离子键、范德华键。 十七.键能与键的强度有关,特别是离子键和共价键结合的材料键能很高。高键能的材料常常具有高的熔点、高的弹性模量和低的热膨胀系数。 ③许多陶瓷材料中发现的离子键是当正电性的原子失去电子给负电性的原子,产生带正电的阳离子和带负电的阴离子而形成的。

05 英文翻译模板 供参考

毕业设计(论文) 外文翻译 题目一种配电网小电流故障 选线新方法 专业电气工程及其自动化 班级 学生 指导教师 年

一种配电网小电流故障选线的新方法 I. Zamora, Member, IEEE, A. J. Mazón, Member, IEEE, K. J. Sagastabeitia, and J. J. Zamora 摘要:在配电网系统中,故障点经经高阻接地或者中性点经消弧线圈接地使得故障电流比较小。以前高的故障电阻主要由于非有效接地或者绝缘降低引起。到后来,中性点就不接地或者经消弧线圈接地,然而,由于这样使得故障电流很小,无法使传统的过流继电器动作或者熔断熔断。本文提出了一种适用于辐射状配电网的基于特定频率电压信号叠加原理的单相接地故障选线新方法,计算机仿真和实验室试验都证明这种方法对于任何形式的接地故障选线都比较准确。 关键词:配电网,故障诊断,小电流接地,信号叠加 符号说明 R fbi馈线i单相对地电阻 Iresi 馈线i残余电流 VNG中性点电压 VpG相电压 Vh参考电压 Ki 馈线i的不对称度 △Kri 馈线i对称度的相对变化率 (a) Prefault situation 故障前 (b) Superposition situation叠加信号时

1简介 配电网的维护和运行里面两个必须要考虑的关键问题是公网安全和电能质量。在最大限度内输送电能必须协调好电能质量和苛刻的安全极限之间的矛盾。所有这些实现都要以新的立法形势和把握好技术改进和经济维护为前提。 然而,设计一种完全可靠的电力系统是不可能的,所以就要发展在最短时间内找到故障点并恢复供电的各种技术,短路故障情况下,短路电流变化比较明显,所以很容易找出故障线路。但是,由于故障的特殊性,配电网中的小电流接地不能被通常的保护监测到。 小电流接地故障通常发生在于高阻接地或有中性点有补偿装置的系统中。在第一种情况下,间接接地或弧光接地使得故障电阻很大,从而限制了故障电流。在第二种情况下,独立的系统或者中性点经电抗接地的系统在发生单相接地故障时,允许系统急需运行相负荷供电一段时间。 无论如何,如果对小电流接地不进行监控,有可能使巨大的电能危及人身安全和设备安全,即使短路电路很小,对设备来说是安全的,但是故障时刻的高电压已经威胁到人身的安全。因此,研究小电流接地选线装置对公众安全是必要的。 目前,有很多人从事这方面的研究工作,期望找出最好的办法来解决这个问题。利用神经网络,小波变换和人工智能的方法已经越来越重要了。低频信号分析也已经被用来分析故障特征,在中性点经消弧线圈接地系统中,利用改变消弧线圈的档位或者在中性点向系统注入工频电流信号,通过检测其对地的流通回路,但是,大部分这种技术只是用于一些小电流接地故障或者仅仅用于特定的情况下和特定类型的配电网中。 本文提出了一种基于电压信号叠加原理来监测小电流故障的的新方法,该方法适用配电网中的任何接地故障类型。

材料科学与工程专业英语第三版翻译以及答案

材料科学与工程专业英语第三版翻译以及答案 Document serial number【KK89K-LLS98YT-SS8CB-SSUT-SST108】

UNIT 1 一、材料根深蒂固于我们生活的程度可能远远的超过了我们的想象,交通、装修、制衣、通信、娱乐(recreation)和食品生产,事实上(virtually),我们生活中的方方面面或多或少受到了材料的影响。历史上,社会的发展和进步和生产材料的能力以及操纵材料来实现他们的需求密切(intimately)相关,事实上,早期的文明就是通过材料发展的能力来命名的(石器时代、青铜时代、铁器时代)。 二、早期的人类仅仅使用(access)了非常有限数量的材料,比如自然的石头、木头、粘土(clay)、兽皮等等。随着时间的发展,通过使用技术来生产获得的材料比自然的材料具有更加优秀的性能。这些性材料包括了陶瓷(pottery)以及各种各样的金属,而且他们还发现通过添加其他物质和改变加热温度可以改变材料的性能。此时,材料的应用(utilization)完全就是一个选择的过程,也就是说,在一系列有限的材料中,根据材料的优点来选择最合适的材料,直到最近的时间内,科学家才理解了材料的基本结构以及它们的性能的关系。在过去的100年间对这些知识的获得,使对材料性质的研究变得非常时髦起来。因此,为了满足我们现代而且复杂的社会,成千上万具有不同性质的材料被研发出来,包括了金属、塑料、玻璃和纤维。 三、由于很多新的技术的发展,使我们获得了合适的材料并且使得我们的存在变得更为舒适。对一种材料性质的理解的进步往往是技术的发展的先兆,例如:如果没有合适并且没有不昂贵的钢材,或者没有其他可以替代(substitute)的东西,汽车就不可能被生产,在现代、复杂的(sophisticated)电子设备依赖于半导体(semiconducting)材料四、有时,将材料科学与工程划分为材料科学和材料工程这两个副学科(subdiscipline)是非常有用的,严格的来说,材料科学是研究材料的性能以及结构的关系,与此相反,材料工程则是基于材料结构和性能的关系,来设计和生产具有预定性

学士学位证书及毕业证英文翻译模板

学士学位证书及毕业证英文翻译模板 附录:今天老师给我们留了个作业,让我们把本科毕业证书翻译成英文的,怎么翻译啊~所以请大家帮帮忙吧~谁能给我提供一个毕业证书的英文模版啊~本科毕业证书的啊~越快越好,如果老师满意,多少钱我都不在乎~包括专升本证书,能有工商管理硕士的最好!学士学位证书英语翻译与毕业证英文翻译模板,为爱大学本科生及研究生提供英文毕业证翻译样本。首先请看《办理中英文成绩单、英文毕业证学位证书的须知》。涉及中文或英文成绩单翻译,含英文毕业证书学位证书的证明。学生学位证书英文翻译模板BACHELOR’S DEGREE CERTIFICATE This is to certify that Ms. Wang Danli, born in October 1977, has studied in the Department of Law, xxx University with a specialty of Law from September 1996 to June 2000. Upon completing and passing all the required courses of the 4-year undergraduate program, she is granted graduation. In accordance with the academic degree act of the People’s Republic of China, the aforesaid student is awarded the Bachelor’s Degree in Law. xxx Chairman of Degree Appraising Committee of xx University June 30, 2000 Certificate No.: 103354003888 本科毕业证书翻译模板DIPLOMA This is to certify that Ms. Wang Lan, born on February 29, 1980, has studied in the Department of Foreign Languages,xxxUniversity with a specialty of English from September 1997 to June 2000. Upon completing and passing all the required

英文翻译材料

债权人(商业银行)视角的企业经营业绩评价体系设计框架 ———基于工业工程理论 严化川 (东南大学,江苏南京210000,中信银行南京分行,江苏南京210000) 摘要:每个企业都是一个复杂的、有生命力和连续变化的“社会—技术”系统。系统本身与周围环境有着物质和能量的交换。在公司进行财务活动的过程当中,最为典型的“物质和能量”交换便是现金的交换。现金的流动带动了公司相关的供应链和价值链的正常运转。公司的筹资、投资和股利分配三大理财活动构成企业现金交换的完整过程。作为企业融资的主要提供者的商业银行,面对为数众多的数额巨大的资金需求者,深刻感到单纯以企业个体信誉或对企业状况的主观判断和经验估测作为贷款的依据,必然身陷泥潭,血本无归。因此债权人(商业银行)必须对企业经营业绩进行自主的评价。本文基于工业工程理论,对债权人(商业银行)视角的企业经营业绩评价体系设计框架进行浅析,以期基于此框架所设计的企业经营业绩评价体系能够帮助债权人实现维护自身利益的目标。 关键词: 中图分类号:F832 文献标识码:A 文章编号:1008-4428(2009)08-71-03 企业业绩的测试、评价与改进,是组织系统管理的重要组成部分。作为企业融资的主要提供者的商业银行,面对为数众多的数额巨大的资金需求者,深刻感到单纯以企业个体信誉或对企业状况的主观判断和经验估测作为贷款的依据,必然身陷泥潭,血本无归。因此债权人(商业银行)必须对企业经营业绩进行自主的评价,并且作为企业业绩的评价主体,必须基于自己的视角构建企业经营业绩评价体系,以满足自身对企业经营业绩评价的需求。 基于债权人视角的企业经营业绩评价体系的框架结构应当由评价理念、评价程序、评价方法和评价指标共同构成,它是商业银行以防范信用风险和操作风险为目标的内控制度的重要环节。 一、确立正确的评价理念 管理首先是一种理念,管理的实践是一项系统工程,管理是在一定的理念指导下为了实现现实目标的系统工程。 评价理念是指导企业经营业绩评价的基本原则,是整个评价体系运行的前提。根据工业工程的基本原理,我们应当确立系统变异的观点,从全局\ 整体系统思考的观点,以及价值定向的观点。 (一)系统或过程/流程变异的观点 分析和掌握系统或过程/流程变异的观点是工业工程建立有效的测量系统的重要出发点。 设计企业经营业绩评价体系,需要考虑组织背景对企业经营业绩评价的影响。这里所说的组织背景是指企业的生产经营活动所面临的外部环境和内部环境,包括外部环境、技术、组织战略、组织结构、规模、文化等变量。 工业工程理论提出:企业是一个复杂的,有生命,连续变化,“今天和昨天不一样”的大系统,具有时变的动态特征。近些年来,经济全球化使企业变得更加复杂化和动态化,企业面对市场变化、竞争规则、经济、市场和资源条件都同已有的经验极不同,企业面临着日益增大的商务风险,并且这种风险还处在不断变化当中。 因而在设计企业业绩评价体系时,我们必须按照工业工程所指出的那样,利用数据统计方法和量化分析掌握系统或过程/流程的变异,了解变异的本质,并对之实施管理控制。鉴于了解工作性能/业绩方面统计思考起着更加关键的作用,我们应当按照以下要点进行统计思考: 1、所有的工作都是相互关联的过程或流程的一部分。 2、变化(变异或变差)总是存在于每个过程/流程中。 3、85%以上的问题是过程流程变化造成的。 4、过程决策必须建立在合适的过程数据基础上。 (二)从全局/整体进行系统思考的观点

英文翻译格式要求

河北建筑工程学院 毕业设计(论文)外文资料翻译 系别:机械工程系 专业:机械电子工程 班级:机电(本)091 姓名:张少强 学号: 2009322110 外文出处:English in Mechanical and Electrical Engineering 附件:1、外文原文;2、外文资料翻译译文。 指导教师评语: 签字: 年月日 金属热处理 普遍接受的金属和金属合金的热处理定义是“在某种程度上加热和冷却金属或金属合金,以获得特定的条件和属性。”加热的唯一目的是进行热加工,锻造操作是被排除在这个定义之外的。热处理有时候也用产品表示,同样玻璃和塑料也被排除在这个定义之外。 变换曲线 热处理的基础是在一个单一的图表上绘制的包含三个所有的等温转变曲线或TTT曲线。因为曲线的形状,他们有时候也称为c曲线或s曲线。 TTT曲线绘制,特定的钢在给定的条件下和预定的时间间隔内记录以检查的组织结构转换的

数量。众所周知共析钢(T80)在超过723℃形成的是奥氏体,在此温度下形成的是珠光体。为了形成珠光体碳原子应该分散形成渗碳体。扩散是一个过程需要足够的时间来完成奥氏体向珠光体的转变。我们可以注意到在不同的样本内在任何的温度下数量都在发生变化。这些点被绘制在以时间和温度为轴的坐标内。通过这些点共析钢的变换曲线如图1所示。曲线的左极端代表在任何给定的温度下奥氏体向珠光体的转变。同样的右极端代表完成所需要的时间。这两个曲线之间转换的点代表部分转换。水平线条s M和f M发代表开始和完成的马氏体转变。 热处理工艺的分类 在某些情况下,热处理在技术和使用程序上是分开的。而在其他情况下,,描述或简单的解释是不够的,因为相同的技术常常可以获得不同的目标。例如,应力消除和回火需要相同的设备和利用相同时间和温度循环。然而这是两个不同的过程。 图8.1 T80钢在等温间隔下的热处理图 以下对热处理的描述主要是根据他们之间的关系来安排的。正火指加热铁合金到高于它转变温度上的一个合适温度(通常是50°F到100°F或28℃到56℃)。接下来是在精致空气至少是在低于其转变温度范围下冷却。由此产生的结构和性能和通过完全退火是一样的。对大多数铁合金来说正火和退火是不一样的。 正火通常被用作调节处理,尤其是没有经过高温锻造或其他热加工的精炼粒钢。正火的成功通常由另一个热处理来完成如奥氏体化的淬火、退火或回火。 退火是一个通用术语,它表示一个热处理,包括加热和保持在一个合适的温度后以一个合适的冷却速度冷却。它主要用来软化金属材料,但它同时也会产生其他属性或期望的微观结构。

汉译英格式规范

汉译英翻译格式规范 I 格式规范 1. 正文标题、机构名称、图表格名称和表头中所有单词(除虚词外)的首字母均大 写;但标题为句子的情况除外; 2. 译文中出现的标准、规范名称,单独出现时每个单词首字母均应大写并斜体,不 加引号;在表格中出现时不用斜体; 3. 摄氏度符号统一从“符号”“Times new roman”中找到“°”(位于最右一列)插 入,然后在后面加上大写“C”,即“°C”; 4. 排比和并列的内容,标点应统一。一般做法是中间采用“;”,最后一个采用“.”, 最后一个与倒数第二个之间用“; and”; 5. 数值范围的表示形式应是:110-220 kV,而不是110 kV~220 kV;注意:数字和 连字符之间没有空格,数字和单位之间有空格数字与单位之间要加一个空格,但“°C”、“°F”和“%”除外; 6. 在英文中,百分号应采用英文半角“%”,而不可采用中文全角“%”; 7. 公式中的符号从“插入公式”中选择; 8. 文本框中第一个单词首字母大写; 9. 1号机组和2号机组、一期和二期的表示方法:Unit 1 & 2;Phase I & II; 10. 第x条(款、项)和第y条(款、项)的表示方法:Article x and Article y,即表 示条(款、项)的词不能省略; 11. 文件中出现公式时,公式后说明性文字的“其中”、“式中”统一译为“Where:”, 注意其后加冒号;对公式中的字母和符号进行解释时,采用“-”,其前后均不空格,“-”后的首字母为小写;公式后的说明要用分号,最后采用句号。例如: Where: F sc-short circuit current force (lb/ft); V-velocity; P-gas density. 12. 冒号后首字母小写; 13. 大于号、小于号、等号两边均有空格; 14. 表格的标题和标题栏字体加粗; 15. 注意上下标与原文一致; 16. 直径符号φ的输入方法:插入,符号,字体选择Symbol,然后选择输入φ,并采用 斜体;

材料科学与工程计划专业英语第三版翻译以及其答案

UNIT 1 一、材料根深蒂固于我们生活的程度可能远远的超过了我们的想象,交通、装修、制衣、通信、娱乐(recreation)和食品生产,事实上(virtually),我们生活中的方方面面或多或少受到了材料的影响。历史上,社会的发展和进步和生产材料的能力以及操纵材料来实现他们的需求密切(intimately)相关,事实上,早期的文明就是通过材料发展的能力来命名的(石器时代、青铜时代、铁器时代)。 二、早期的人类仅仅使用(access)了非常有限数量的材料,比如自然的石头、木头、粘土(clay)、兽皮等等。随着时间的发展,通过使用技术来生产获得的材料比自然的材料具有更加优秀的性能。这些性材料包括了陶瓷(pottery)以及各种各样的金属,而且他们还发现通过添加其他物质和改变加热温度可以改变材料的性能。此时,材料的应用(utilization)完全就是一个选择的过程,也就是说,在一系列有限的材料中,根据材料的优点来选择最合适的材料,直到最近的时间内,科学家才理解了材料的基本结构以及它们的性能的关系。在过去的100年间对这些知识的获得,使对材料性质的研究变得非常时髦起来。因此,为了满足我们现代而且复杂的社会,成千上万具有不同性质的材料被研发出来,包括了金属、塑料、玻璃和纤维。 三、由于很多新的技术的发展,使我们获得了合适的材料并且使得我们的存在变得更为舒适。对一种材料性质的理解的进步往往是技术的发展的先兆,例如:如果没有合适并且没有不昂贵的钢材,或者没有其他可以替代(substitute)的东西,汽车就不可能被生产,在现代、复杂的(sophisticated)电子设备依赖于半导体(semiconducting)材料 四、有时,将材料科学与工程划分为材料科学和材料工程这两个副学科(subdiscipline)是非常有用的,严格的来说,材料科学是研究材料的性能以及结构的关系,与此相反,材料工程则是基于材料结构和性能的关系,来设计和生产具有预定性能的材料,基于预期的性能。材料科学家发展或者合成(synthesize)新的材料,然而材料工程师则是生产新产品或者运用现有的材料来发展生产材料的技术,绝大部分材料学的毕业生被同时训练成为材料科学家以及材料工程师。 五、s tructure”一词是个模糊(nebulous )的术语值得解释。简单地说,材料的结构通常与其内在成分的排列有关。原子(subatomic)内的结构包括介于单个原子间的电子和原子核的相互作用。在原子水平上,结构包括(emcompasses)原子或分子与其他相关的原子或分子的组织。在更大的结构领域(realm)上,其包括大的原子团,这些原子团通常聚集(agglomerate)在一起,称为“微观”结构,意思是可以使用某种显微镜直接观察 得到的结构。最后,结构单元可以通过肉眼看到的称为宏观结构。 六、“Property”一词的概念值得详细(elaborate)阐述。在使用中,所有材料对外部的刺激(stimuli)都表现(evoke)出某种反应。比如,材料受到力作用会引起形变,或者抛光金属表面会反射光。材料的特征取决于其对外部刺激的反应程度(magnitude)。通常,材料的性质与其形状及大小无关。 七、实际上,所有固体材料的重要性质可以概括分为六类:机械、电学、热学、磁学、光学(optical)和腐蚀性(deteriorative)。对于每一种性质,其都有一种对特定刺激(stimulus)引起反应的能力。如机械性能与施加压力引起的形变有关,包括弹性、强度和韧性。对于电性能,如电导性(conductivity)和介电(dielectric)系数,特定的刺激物(stimulus)是电场。固体的热学行为则可用热容和热导率来表示。磁学性质表示一种材料对施加的电场的感应能力。对于光学性质(optical),刺激物(stimulus)是电磁或光照。用折射(refraction)和反射(reflectivity)来表示光学性质。最后,腐蚀(deteriorative)性质表示材料的化学反应能力。

翻译时间格式新要求(必看)

一,翻译时间 1,试译文件需在发布任务的2天之内上传,我们将根据提交上来的试译文件选出中标作品,并发站内信通知,注意查收。为方便联系,可以在提交试译文件时留下联系方式(QQ,邮箱,最好是手机) 2,提交作品到指定的邮箱,不能按时交任务的话,要及时通知我。 5,如果稿件由于质量问题被退回,要求从退回日期算起一天之内发回。 二,翻译格式要求 1.应为纯文本格式,编码UTF-8, 统一使用Editplus 3。见附件 介于Editplus界面,左右宽度很大,总的拉动下面那个Bar,可以调整。找到左上Document,点击下拉出现菜单,选择Word-wrap Options...再选择enable word-wrap,然后下面那个format 选80,应该就可以了。 2.格式采用一段英文一段中文的方式(不是一句一句对应,而是一段一段),英 文下面跟中文,可以按照自然段的格式,不要把英文删掉。 使用中文标点,包括逗号(,),句号(。),省略号(……),引号(“”),破折号(——)等都用专门的全角中文标点,而不要使用英文标点。 3. <>表示一条评论的开始,要求一条一条翻译。不要搞混。<>中的内容保留, 不要做任何变动。 4,翻译文本应为纯文本格式,在保存翻译文件的时候点下拉框选编码UTF-8,不要更改原文件名。 三,翻译内容注意事项 1.TripAdvisor 一定要翻译成“到到网”,这个是网站的中文名字。 2.题目括号<>里面的酒店名不需要翻译,正文中的地名,酒店名尽量要翻译(可 在到到网和携程网上找),正文中的人名不需要翻译。 3.Review 里会有一些带感情色彩的话,特别是褒义的,在翻译的时候一定要把 这种感情给表现出来,语气也可以强烈些。比如说,“Amazing Value”有些人把它翻成“物有所值”,但也有些人把它翻成“物超所值”,肯定是后者表达的感情色彩更强烈,也更贴切。

常见材料学专业名词中英文对译

目录 英文缩写词 钢号中所采用的缩写字母及其涵义 常见材料学专业名词中英文对译 对文中使用的英文缩写词说明如下: 缩写英文原文中文翻译 CQ Commercial Quality 普通级 DQ Drawing Quality 冲压级 DDQ Deep Drawing Quality 深冲级 EDDQ Extra Deep Drawing Quality 超深冲级 CSP Compact Srip Production 紧凑式带钢生产 IF Interstitial Free (Steel) 无间隙原子(钢) LC Low Carbon 低碳(钢) DSA Dynamic Strain Aging 动态应变老化 MFS Mean Flow Stress 平均流动应力 YS Yield Stress 屈服应力 DRC Dynamic Recovery 动态回复 DRX Dynamic Recrystallization 动态再结晶 SRX Static Recrystallization 静态再结晶 SRC Static Recovery 静态回复 Ti-IF Ti Interstitial Free (Steel) 含钛无间隙原子(钢) Ti-Nb IF Ti-Nb Interstitial Free (Steel) 含钛铌无间隙原子(钢) ULC Ultra Low Carbon(Steel) 超低碳钢 DSP Direct Strip Production 带钢直接生产 FTSR Flexible Thin Slab Rolling 灵活性薄板坯轧制 C.C.T Continuous Cooling Transformation 过冷奥氏体连续转变曲线 T.T.T Time Temperature Transformation 过冷奥氏体等温转变曲线SPSS Statistical Package for the Social Science 社会科学统计软件包 钢号中所采用的缩写字母及其涵义

材料英文文献翻译

The development of plastic mould China's industrial plastic moulds from the start to now, after more than half a century, there has been great development, mold levels have been greatly enhanced. Mould has been at large can produce 48-inch big-screen color TV Molded Case injection mold, 6.5 kg capacity washing machine full of plastic molds, as well as the overall car bumpers and dashboards, and other plastic mould precision plastic molds, the camera is capable of producing plastic mould , multi-cavity mold small modulus gear and molding mold. --Such as Tianjin and Yantai days Electrical Co., Ltd Polaris IK Co. manufactured multi-cavity mold VCD and DVD gear, the gear production of such size precision plastic parts, coaxial, beating requirements have reached a similar foreign the level of product, but also the application of the latest gear design software to correct contraction as a result of the molding profile error to the standard involute requirements. Production can only 0.08 mm thickness of a two-cavity mold and the air Cup difficulty of plastic doors and windows out of high modulus, and so on. Model cavity injection molding manufacturing accuracy of 0.02 to 0.05 mm, surface roughness Ra0.2 μ m, mold quality, and significantly increase life expectancy, non-hardening steel mould life up to 10~ 30 million, hardening steel form up to 50 ~ 10 million times, shorten the delivery time than before, but still higher than abroad,and the gap between a specific data table. Process, the multi-material plastic molding die, efficient multicolor injection mould, inserts exchange structure and core pulling Stripping the innovative design has also made great progress. Gas-assisted injection molding, the use of more mature technologies, such as Qingdao Hisense Co., Ltd., Tianjin factory communications and broadcasting companies, such as mold manufacturers succeeded in 29 ~ 34-inch TV thick-walled shell, as well as some parts on the use of gas-assisted mould technology Some manufacturers also use the C-MOLD gas-assisted software and achieved better results. Prescott, such as Shanghai, such as the new company will provide users with gas-assisted molding equipment and technology. Began promoting hot runner mold, and some plants use rate of more than 20 percent, the general heat-thermal hot runner, or device, a small number of units with the world's advanced level of rigorous hot runner-needle device, a small number of units with World advanced level of rigorous needle-hot runner mould. However, the use of hot runner overall rate of less than 10%, with overseas compared to 50 ~ 80%, the gap larger. In the manufacturing technology, CAD / CAM / CAE technology on the level of application of a new level to the enterprise for the production of household appliances representatives have introduced a considerable number of CAD / CAM systems, such as the United States EDS UG Ⅱ,

外文文献翻译封面格式及要求(模版)

毕业论文外文文献翻译 院 年级专业: 2009 级XXXXXXXXXXX 姓 名:学 号:附 件: 备注:(注意:备注页这一整页的内容都不需要打印,看懂了即可)

1.从所引用的与毕业设计(论文)内容相近的外文文献中选择一篇或一部分进行翻译(不少于3000实词); 2.外文文献翻译的装订分两部分,第一部分为外文文献;第二部分为该外文文献的中文翻译,两部分之间用分页符隔开。也就是说,第一外文文献部分结束后,使用分页符,另起一页开始翻译。 3.格式方面,外文文献的格式,除了字体统一使用Times new roman 之外,其他所有都跟中文论文的格式一样。中文翻译的格式,跟中文论文的格式一样。 (注意:备注页这一整页的内容都不需要打印,看懂了即可,定稿后,请删除本页.) 范文如下:注意,下面内容每一部份均已用分页符分开了,如果用本模板,请将每一模块单独删除,直接套用到每一模板里面,不要将全部内容一次性删除. 【Abstract】This paper has a systematic analysis on outside Marco-environment of herbal tea beverage industry and major competitors of brands inside the herbal tea market. Based on

the theoretic framework, this paper takes WONG LO KAT and JIA DUO BAO herbal tea as an example, and researches the strategy on brand positioning and relevant marketing mix of it. Through analysis on the prevention sense of WONG LO KAT herbal tea, it was positioned the beverage that can prevent excessive internal heat in body, a new category divided from the beverage market. the process of brand positioning of it in Consumers brain was finished. Based on this positioning strategy, WONG LO KAT reasonably organized and arranged its product strategy, price strategy, distribution strategy and promotion strategy, which not only served for and further consolidated the position of preventing excessive internal heat in body, but also elevated the value of brand. The JDB and WONG LO KAT market competition brings us enlightenment. Reference the successful experience from the JDB and lessons from the failure of the WONG LO KAT.,Times New Roman. 【Key Words】Brand positioning; Marketing mix; Positioning Strategy; enlightenment, lessons;ABC (本页为英文文献摘要,关键词两项一起单独一页,字体为:Times New Roman,小四号,1.5倍行距)

相关文档
最新文档