c中文翻译

合集下载

C#编程语言外文文献翻译中英文

C#编程语言外文文献翻译中英文

C# 编程语言概述外文文献翻译(含:英文原文及中文译文)文献出处:Barnett M. C# Programming Language Overview [J]Lecture Notes in Computer Science, 2016, 3(4):49-59.英文原文C# Programming Language OverviewBarnett M1. History of C, C++, C#The C# programming language is based on the spirit of the C and C++ programming languages. This account has powerful features and an easy-to-learn curve. It cannot be said that C# is the same as C and C++, but because C# is built on both, Microsoft has removed some features that have become more burdensome, such as pointers. This section looks at C and C++ and tracks their development in C#.The C programming language was originally defined in the UNIX operating system. In the past, we often wrote some UNIX applications, including a C compiler, and finally used to write UNIX itself. It is generally accepted that this academic competition extends to the world that contains this business. The original Windows API was defined to work with C using Windows code, and until now at least the core Windows operating system APIS maintains the C compiler.From a defined point of view, C lacks a single detail, like thelanguage Smalltalk does, and the concept of an object. Y ou will learn more about the contents of the object. In Chapter 8, "Write Object-Oriented Code," an object is collected as a data set and some operations are set. The code can be completed by C, but the concept of the object cannot be Forced to appear in this language. If you want to construct your code to make it like an object, that's fine. If you don't want to do this, C will really not mind. The object is not an intrinsic part. Many people in this language did not spend a lot of time in this program example. When the development of object-oriented perspectives began to gain acceptance, think about the code approach. C++ was developed to include this improvement. It is defined to be compatible with C (just as all C programs are also C++ programs and can be compiled by a C++ compiler) The main addition to the C++ language is to provide this new concept. C++ additionally provides a derivative of the class (object template) behavior.The C++ language is a modified version of the C language. Unfamiliar, infrequent languages such as VB, C, and C++ are very low-level and require a lot of coding to make your application run well. Reason and error checking. And C++ can be handled in some very powerful applications, the code works very smoothly. The goal is set to maintain compatibility with C. C++ cannot break the low-level features of C.Microsoft defined C# retains a lot of C and C++ statements. The code can also want to identify the code quickly. A big advantage for C# is that its designers did not make it compatible with C and C++. When this may seem like a wrong treatment, it is actually good news. C# eliminates something that makes C and C++ difficult to work with. Beginning with quirks and defects found in C. C# is starting a clean slate and does not have any compatibility requirements. So it can maintain the strengths of its predecessors and discard weaknesses that make C and C++ programs difficult to survive.2. Introduce C#C#, the new language introduced in the .NET system, is derived from C++. However, C# is a popular, object-oriented (from beginning to end) type-safe language.Language featuresThe following section provides a quick perspective on some of the features of the C# language. If some of them are unfamiliar to you, don't worry, everything will be explained in detail in the following sections. In C#, all code and data must be attached to a class. Y ou cannot define a variable outside the class, nor can you write any code that is not in the class. When a class object is created and run, the class is constructed. When the object of the class is released, the class is destroyed. The class provides single inheritance, and all the classes eventually get from thebase class is the object. Over time, C# provides versioned techniques to help with the formation of your classes to maintain code compatibility when you use code from your earlier classes.Let's look at an example of a class called Family. This class contains two static fields to hold the first and last names of family members. In the same way, there is a way to return the full name of a family member.Class Class1{Public string FirstName;Public string LastName;Public string FullName(){}Return FirstName + LastName;}Note: Single inheritance means that a C# class can only inherit from a base class.C# is a collection that you can package your class into a namespace called the namespace class. And you can help arrange collection of classes on logical aggregations. When you started learning C#, it was clear that all namespaces were related to .NET type systems. Microsoft also chose to include channels that assist in the compatibility of previouscode and APIs. These classes are also included in Microsoft's namespace.Type of dataC# lets you work with two types of data: value types and reference types. The value type holds the actual value. The reference type saves the actual value stored elsewhere in the memory. Raw data types, such as character, integer, float, enumeration, and structure types, are all value types. Objects and array types are treated as reference types. C# predefines reference types (objects and strings) New, Byte, Unsigned Short, Unsigned Integer, Unsigned Long, Float, Double-Float, Boolean, Character, and The value type and reference type of the decimal type will eventually be executed by a primitive type object. C# also allows you to convert a value or a type to another value or a type. Y ou can use an implicit conversion strategy or an explicit conversion strategy. Implicit conversion strategies are always successful and do not lose any information (for example, you can convert an integer to a long integer without losing any information because long integers are longer than integers) Some data is lost because long integers can hold more value than integers. Conversion occurs.Before and after referenceRefer to Chapter 3 "Working with V ariables" to find out more about explicit and implicit conversion strategies.Y ou can use single-dimensional and multidimensional arrays in C#at the same time. Multidimensional arrays can become a matrix. When this matrix has the same area size as a multidimensional array. Or jagged, when some arrays have different sizes.Classes and structures can have data members called attributes and fields. Y ou can define a structure called Employee. For example, there is a field called Name. If you define an Employee type variable called CurrenrEmployee, you can retrieve the employee's name by writing . What should happen after the code assignment? If the employee's name must be read by a database, for example, you can write a code "When some people ask for the value of the name attribute, read the name from the database and return the name with the string type".FunctionA function is a code that can be used at any time, code. An example of a function will appear earlier than the FullName function, in this chapter, in the Family class. A function is usually combined with some code that returns information, and a method usually does not return information. However, for us, we generally attribute them to functions.The function can have four parameters:•The input parameters have values passed into the function, but the function cannot change their values.•The output parameters have no value when they are passed to thefunction, but the function can give them a value and pass the value back to its caller. ,•The reference parameter passes another value by reference. They have a value into the function, and this value can be changed in the function.•The parameter parameter defines an array variable in the list.C# and CLR work together to provide automatic storage management. Or "Leave enough space for this object to use" code like this. The CLR monitors your memory usage and automatically retrieves it when you need it.C# provides a large number of operators that allow you to write a large number of mathematical and bitwise expressions. Many (but not all) of them can be redefined, and you can change the job of these operators.C# provides a long list of reports that you can define through a variety of processing paths through your code. Through the report's operations, using keywords like switch, while, for, break, and continue enables your code to be split into different paths depending on the value of the variable.Classes can contain code and data. Visibility of each member to other objects. C# provides such accessible ranges as public, protected, internal, protected internal, and private.V ariableV ariables can be defined as constants. The constant has a fixed value and cannot be changed during the execution of your code. The value of PI, for example, is a good example of a constant because her value will not be changed while your code is running. The enumeration type defines a specific name for the constant. For example, you can define an enumerated type of planet using Mercury V in your code. If you use a variable to represent the planet, using the names of this enum type can make your code easier to read.C# provides an embedded mechanism to define and handle some events. If you write a class that performs a long operation, you may want to call an event. When the event ends, the client can sign this time and grab the event in their own code, he can let them be notified When you have completed this long budget, this event handling mechanism uses delegates in C#, a variable that references a function.Note: Event processing is a program in your code that determines what action will take place when a time occurs.For example, the user clicks on a button. If your class holds a value, write some code called a protractor that your class can be accessed as if it were an array. Suppose you write a class called Rainbow. For example, it contains a set of colors in this rainbow. Visitors may want some MYRainbow to retrieve the first color in the rainbow. Y ou can write an indexer in your Rainbow class to define what will be returned when thevisitor accesses your class as if it were an array of values.InterfaceC# provides an interface that aggregates properties, methods, and events that describe a set of functions. The class of C# can execute the interface. It tells the user through the interface a set of function files provided by this class. What existing code can have as few compatibility issues as possible. Once there was an interface exposed, it could not be changed, but it could evolve through inheritance. C# classes can perform many interfaces, even if the class can only inherit from a base class.Let's look at an example of a very clear rule in the real world of C# that helps illustrate the interface. Many applications use the additions provided today. There is the ability to read additional items when executed. To do this, this added item must follow some rules. DLL add items must display a function called CEEntry. And you must use CEd as the beginning of the DLL file name. When we run our code, it scans the directories of all the DLLs that are starting with CEd. When it finds one, it is read. Then it uses GetProcAddress to find the CEEntry function in the DLL. This proves that it is necessary for you to obey all the rules to establish an addition. This kind of creating a read addition is necessary because it carries more unnecessary code responsibility. If we use an interface in this example, your DLL additions can be applied to an interface. This ensures that all necessary methods, properties, and eventsappear in the DLL and are specified as files.AttributesThe attribute declares additional information about your class for the CLR. In the past, if you wanted to describe your classes yourself, you would have to use a few decentralized ways to store them in external files, such as IDL or event HTML files. Through your efforts, the property solves this problem. The developer has constrained some information in the class and any kind of information, for example, in the class, defines how it acts when it is used. The possibilities are endless, which is why Microsoft will contain a lot of predefined attributes in the .NET framework.Compile C#Running your C# code generates two important types of information through the C# compiler: code and metadata. The next section describes these two topics and completes a binary review built on .NET code, which is assembly.Microsoft Intermediate Language (MSIL)The code output by the C# compiler is written in an intermediate language called Microsoft. MSIL is your code that is used to construct a detailed set of instructions to guide you on how to perform. It contains instructions for operations, such as initialization of variables, methods for evoking objects, error handling, and declaring something new. C# is notjust a language from the MSIL source code that changes during the writing process. All .NET-compatible languages, including and C++ management, generate MSIL when their source code is compiled. All .NET languages use the same runtime, so code from different languages and different compilers can easily work together.For physical CPUs, MISL is not a set of explicit instructions. It doesn't know anything about your machine's CPU, and your machine doesn't know anything about MSIL. Then, when your CPU can't read MSIL, explain the code. This sinking is called just enough to write, or JIT. The job of the JIT compiler is to translate your universal MSIL code to the machine so that the CPU can execute your code.Y ou may want to know what an extra step is in the process. When a compiler can immediately generate CPU-interpreted code for why MSIL was generated, the compiler does this later. There are many reasons for this. First, MSIL makes it easier for you to write code as it moves to a different piece of hardware. Suppose you have written some C# code and you want it to run on your desktop and handheld devices at the same time. It is very likely that these two devices have different CPUs. If you only have one C# compiler whose goal is a clear CPU, then you need two C# compilers: one with the desktop CPU and the other with the handheld device CPU. Y ou have to compile your code twice to ensure that your correct code is used on the right device. With MSIL, you only write once.The .NET Framework is installed on your desktop and it contains a JIT compiler that translates your MSIL-specific CPU code to your machine. The .NET Framework is installed on your handheld device and it contains a JIT compiler that translates the same MSIL-specific CPU-specific code to your handheld device. To run MSIL code base on any device that has a .NET JIT compiler. Y ou now have only one MSIL basic code that can run on any device that has a .NET JIT compiler. The JIT compiler on these devices can take care of your code and make them run smoothly.Another reason why the compiler uses MSIL is that the settings of the instruction can be easily read by an authenticated proximity. Part of the compiler's job is to verify your code to make it as clear as possible. When properly accessed, these checks ensure that your code does not execute any instructions that can cause your code to crash. The definition of MSIL directives makes this check process easier to understand. CPU-specific instruction settings are optimized for fast code execution. However, they make the code difficult to read and therefore difficult to check. Having a C# compiler that can output CPU-specific code at once can make code inspection difficult or even impossible. Allow the .NET Framework's JIT compiler to verify your code to ensure that your code accesses memory through a buggy path and that the variable types are used correctly.MetadataThe assembly process outputs the same amount of metadata. This is a very important part of the .NET code sharing story. Whether you use C# to build a client application or use C# to build a library that some people use for your application, you will want to take advantage of some compiled .NET code. That code may have been provided by Microsoft as part of the .NET framework, or it may be provided by some online users. The key to using a foreign code is to let the C# compiler know that the class and that variable are in another base code so that it can be found in the precompilation of your work and match the code you write with the source code.Look at the metadata for the directory for your compiled code. The number of bits of source code compiled by C# exists in the compiled code along with the generation of MSIL. The types of methods and variables are completely described in the metadata and are ready to be read by other applications. For example, can read metadata from a .NET library to provide intelligent sensing of all the methods that can be used effectively for a particular class.If you have already worked with COM, you may be familiar with type libraries. The goal of the type library is to provide the same directory functionality to COM objects. However, the type library is provided from a few limitations, and in fact not all data about the target can be put into the type library. Metadata in .NET does not have this disadvantage. Allthe code used to describe the class's information is placed in the metadata.memberSometimes you need to use C# to build a terminal application. These applications are packaged into an executable file and use .EXE as an extension. C# completely supports the creation of .EXE files. However, there are also times when you do not want to be used in other programs. Y ou may want to create some useful C# classes, such as a developer who wants to use your class in a application. In this case, you will not create an application, instead you will build a component. A component is a metadata package. As a unit to configure, these classes will share the same level of version control, security information, and dynamic requirements. Think of a component as a logical DLL. If you are familiar with Microsoft's translation services or COM+, then you can think of components as equivalent to .NET packages.There are two kinds of components: private components and global components. When you build your own component, you don't need to specify whether you want to create a global component or a private component. Y ou can only make your code accessible by a separate application. Y our component is a package similar to a DLL and is installed into the same directory when your application runs it. The application is only executable when it is in the same directory as yourcomponent.If you want to share your code, more global components in more applications. Global components can be used by any system's .NET application regardless of the directory in which it is installed. Microsoft installs components as part of the .NET structure, and each Microsoft component is installed as a global component. The Microsoft Architecture SDK contains the public functionality to install and remove artifacts from global widget storage.C# can be viewed to some extent as a programming language for the .NET Windows-oriented environment. In the past ten years, although VB and C++ have finally become very powerful languages, some of the content has come. For Visual Basic, its main advantage is that it is easy to understand. Many programming tasks are easy to accomplish and basically hide the connotations of the Windows API and the COM component structure. The downside is that Visual Basic has never implemented an early version of object-oriented, real-world (BASIC is primarily intended to make beginners easier to understand than to write large commercial applications), so it cannot really be structured or object-oriented. Programming language.On the other hand, C++ has its own root in the ANSI C++ language definition. It is not fully compatible with ANSI because Microsoft wrote the C++ compiler before the ANSI definition was standardized, but it isalready quite close. Unfortunately, this leads to two problems. First, ANSI C++ was developed under technical conditions more than a decade ago, so it does not support current concepts (such as Unicode strings and generating XML documents), and some of the older grammatical structures were designed for previous compilers ( For example, the declaration and definition of member functions are separate.) Second, Microsoft also tried to evolve C++ into a language for performing high-performance tasks on Windows - avoiding the addition of large numbers of Microsoft-specific keywords and libraries in the language. The result is that in Windows, the language becomes a very messy language. Let a C++ developer talk about how many strings are defined in this way: char*, LPTSTR, (MFC version), CString (WTL version), wchar_t*, OLECHAR*, and so on.Now entering the .NET era - a new environment, it has made new extensions to both languages. Microsoft added many Microsoft-specific keywords to C++ and evolved VB to , retaining some basic VB syntax, but it is completely different in design. From a practical application perspective, is a New language. Here, Visua l C# .NET. Microsoft describes C# as a simple, modern, object-oriented, type-safe, and C and C++-derived programming language. Most in dependent commentators are “derived from C, C++, and Java” from their claims. C# is very similar to C++ and Java. It uses parentheses ({})to mark blocks of code, and semicolons separate lines of statements. The first impression of C# code is that it is very similar to C++ or Java code. But after these seeming similarities, C# is much easier to learn than C++ but harder than Java. Its design and modern development tools are more adaptable than other languages. It also has Visua Basic's ease of use, high performance, and low memory accessibility of C++. C# includes the following features:●Full support for class and object-oriented programming, including interface and inheritance, virtual functions, and operator overloading.●Define a complete, consistent set of basic types.●Built-in support for automatically generating XML document descriptions.●Automatically clean dynamically allocated memory.●Classes or methods can be marked with user-defined properties. This can be used for documentation purposes and has a certain impact on compilation (for example, marking a method to compile only when debugging).●Full access to the .NET base class library and easy access to the Windows API.●Y ou can use pointers and direct memory access, but the C# language can access memory without them.●Supports attributes and events in VB style.●Changing compiler options, ActiveX controls (COM components) are called by other code in the same way. ●C# can be used to write dynamic Web pages and XML Web services.It should be noted that for most of these features, and Managed C++ are also available. But since C# used .NET from the beginning, support for .NET features was not only complete, but also provided a more suitable syntax than other languages. The C# language itself is very similar to Java, but there are some improvements because Java is not designed for use in a .NET environment. Before ending this topic, we must also point out two limitations of C#. One is that the language is not suitable for writing time-critical or very high-performance codes, such as a loop that runs 1000 or 1050 times, and immediately clears the resources they occupy when they are not needed. In this regard, C++ may still be the best of all low-level languages. The second is that C# lacks the key functions needed for very high-performance applications. The parcels guarantee inlining and destructor functions in specific areas of the code. However, such applications are very few.中文译文C# 编程语言概述作者:Barnett M1. C,C++,C#的历史C#程序语言是建立在C 和C++程序语言的精神上的。

电气英文翻译全称中文翻译缩写

电气英文翻译全称中文翻译缩写

A‎abor‎t中断,‎停止a‎b norm‎a l 异常‎abr‎a der ‎研磨,磨石‎,研磨工具‎abs‎e nce ‎失去A‎b senc‎e of ‎b rush‎无(碳)‎刷Ab‎s olut‎e ABS‎绝对的‎Abso‎l ute ‎a tmos‎p here‎ATA ‎绝对大气压‎AC ‎L ub o‎i l pu‎m p 交流‎润滑油泵‎abso‎r ptan‎c e 吸收‎比,吸收率‎acc‎e lera‎t ion ‎加速a‎c cele‎r ator‎加速器‎acce‎p t 接受‎acc‎e ss 存‎取ac‎c ompl‎i sh 完‎成,达到‎accu‎m ulat‎o r 蓄电‎池,累加器‎Acc‎u mula‎t or b‎a tter‎y蓄电池‎组ac‎c urac‎y准确,‎精确a‎c id 酸‎性,酸的‎Acid‎wash‎i ng 酸‎洗ac‎k nowl‎e dge ‎确认,响应‎acq‎u isit‎i on 发‎现,取得acti‎o n 动作‎Act‎i ve p‎o wer ‎有功功率‎actu‎a tor ‎执行机构‎addr‎e ss 地‎址ad‎e quat‎e适当的‎,充分的‎adju‎s t 调整‎,校正‎A dmis‎s ion ‎m ode ‎进汽方式‎Aeri‎a l li‎n e 天线‎aft‎e r 以后‎air‎风,空气‎Air‎comp‎r esso‎r空压机‎Air‎duct‎pres‎s ure ‎风管压力‎Air ‎e ject‎o r 抽气‎器Ai‎r exh‎a ust ‎f an 排‎气扇A‎i r he‎a ter ‎空气加热器‎Air‎preh‎e ater‎空气预热‎器Ai‎r rec‎e iver‎空气罐‎Alar‎m报警‎algo‎r ithm‎算法‎a lpha‎n umer‎i c 字母‎数字A‎l tern‎a ting‎curr‎e nt 交‎流电A‎l titu‎d e 高度‎,海拔‎A mbie‎n t 周围‎的,环境的‎Amb‎i ent ‎t emp ‎环境温度‎amme‎t er 电‎流表,安培‎计Am‎m onia‎tank‎氨水箱‎Ampe‎r e 安培‎amp‎l ifie‎r放大器‎Ana‎l og 模‎拟An‎a log ‎i nput‎模拟输入‎Ana‎l og-t‎o-dig‎i tal ‎A/D 模‎拟转换‎A naly‎s is 分‎析An‎g le 角‎度An‎g le v‎a lve ‎角伐A‎n gle ‎o f la‎g滞后角‎Ang‎l e of‎lead‎超前角‎anth‎r acit‎e无烟煤‎Ani‎o n 阴离‎子An‎i onic‎exch‎a nger‎阴离子交‎换器A‎n ode ‎阳极,正极‎ann‎o unce‎通知,宣‎布An‎n ual ‎年的,年报‎Ann‎u al e‎n ergy‎outp‎u t 年发‎电量a‎n tici‎p ate ‎预期,期望‎Aph‎slow‎moti‎o n mo‎t or 空‎预器低速马‎达Ap‎p lica‎t ion ‎p rogr‎a m 应用‎程序a‎p proa‎c h 近似‎值,接近‎Arc ‎电弧,弧光‎arc‎h itec‎t ure ‎建筑物结构‎Are‎a面积,‎区域a‎r matu‎r e 电枢‎,转子衔铁‎Arr‎e ster‎避雷器‎Ash ‎灰烬,废墟‎Ash‎hand‎l ing ‎除灰A‎s h se‎t tlin‎g pon‎d沉渣池‎Ash‎slur‎r y pu‎m p 灰浆‎泵as‎s embl‎e安装,‎组装A‎s sume‎假定,采‎取,担任‎Asyn‎c hron‎o us m‎o tor ‎异步马达‎atmo‎s pher‎e大气,‎大气压‎A tomi‎z ing ‎雾化A‎t temp‎t企图‎Atte‎m pera‎t er 减‎温器,调温‎器At‎t enti‎o n 注意‎Att‎e nuat‎i on 衰‎減,减少,‎降低A‎u to r‎e clos‎e自动重‎合闸A‎u to t‎r ansf‎e r 自动‎转移A‎u tofo‎r mer ‎自耦变压器‎Aut‎o mati‎c AUT‎O自动‎Auto‎m atic‎volt‎a ge r‎e gula‎t or 自‎动调压器‎Auxi‎l iary‎AUX ‎辅助的‎A uxil‎i ary ‎p ower‎厂用电‎Avai‎l able‎有效的,‎可用的‎A void‎避免,回‎避Av‎o mete‎r万用表‎,安伏欧表‎计Ax‎i al 轴‎向的A‎x is 轴‎,轴线‎A xis ‎d isp ‎p rote‎c tion‎轴向位移‎,保护‎A xle ‎轴,车轴,‎心捧B‎Bac‎k背后,‎反向的‎B ack ‎p ress‎u re 背‎压Ba‎c k wa‎s h 反冲‎洗Ba‎c k up‎支持,备‎用Ba‎c k wa‎r d 向后‎Baf‎f le 隔‎板Ba‎g fil‎t er 除‎尘布袋‎B alan‎c e 平衡‎Bal‎l球‎B all ‎v alve‎球阀‎B ar 巴‎,条杆‎B ar s‎c reen‎mate‎r ial ‎c lass‎i fier‎栅形滤网‎bas‎e基础、‎根据B‎a se l‎o ad 基‎本负荷‎B ase ‎m ode ‎基本方式‎Batc‎h pro‎c essi‎n g un‎i t 批处‎理单元‎B atte‎r y 电池‎Bea‎r ing ‎B RG 轴‎承be‎f ore ‎在...之‎前be‎l l 铃‎Belt‎带,皮带‎Ben‎d挠度,‎弯曲B‎e sel ‎监视孔‎B LAS ‎偏置,偏压‎Bin‎a ry 二‎进制,双‎Blac‎k黑色‎Blac‎k out‎大停电,‎全厂停电‎blad‎e叶片‎Blee‎d放气,‎放水B‎l ocki‎n g si‎g nal ‎闭锁信号Blow‎吹B‎l ow d‎o wn 排‎污Bl‎o wlam‎p喷灯‎blue‎蓝色‎B ms w‎a tchd‎o g Bm‎s看门狗,‎b ms监视‎器bo‎i ler ‎B LR 锅‎炉Bo‎i ler ‎f eedw‎a ter ‎p ump ‎B FP 锅‎炉给水泵‎Boil‎-off ‎蒸发汽化‎bolt‎螺栓‎b ore ‎孔,腔‎b oost‎BST ‎增压,提高‎Boo‎s t ce‎n trif‎u gal ‎p ump ‎B ST C‎E P 凝升‎泵Bo‎o st p‎u mp B‎P升压泵‎Boo‎t str‎a p 模拟‎线路,辅助‎程序b‎o ttom‎底部‎B owl ‎m ill ‎碗式磨‎b rash‎脆性,易‎脆的b‎r acke‎t支架,‎托架,括号‎bre‎a dth ‎宽度b‎r eak ‎断开,断路‎bre‎a ker ‎断路器,隔‎离开关‎B reak‎e r co‎i l 跳闸‎线路b‎r eeze‎微风,煤‎粉Br‎e ns-c‎h luss‎熄火,燃‎烧终结‎b ridg‎e电桥,‎跨接,桥形‎网络b‎r igad‎e班,组‎,队,大队‎bro‎a dcas‎t广播‎brow‎n out ‎节约用电‎brus‎h电刷,‎刷子B‎r ush ‎r ocke‎r电刷摇‎环Br‎o wn c‎o al 褐‎煤Bu‎c hhol‎t z pr‎o tect‎e r 瓦斯‎保护b‎u cket‎斗,吊斗‎Buf‎f er t‎a nk 缓‎冲箱b‎u ilt ‎建立b‎u llet‎i n 公告‎,公报‎b ump ‎碰,撞击‎bunk‎e r 煤仓‎bur‎n er 燃‎烧器B‎u rner‎mana‎g emen‎t sys‎t em 燃‎烧器管理系‎统Bu‎s sec‎t ion ‎母线段‎b usba‎r母线‎Busb‎a r fr‎a me 母‎线支架‎b usco‎u ple ‎母联b‎u tton‎按钮‎B ypas‎s/by ‎p ass ‎B YP 旁‎路By‎p ass ‎v alve‎旁路阀‎Cc‎a bine‎t柜‎c able‎电缆‎c alcu‎l ator‎计算器‎cali‎b er 管‎径、尺寸、‎大小c‎a lori‎e卡‎c alor‎i c 热的‎、热量‎C alor‎i c va‎l ue 发‎热量、热值‎cal‎o rifi‎c发热的‎、热量的‎Calo‎r ific‎effi‎c ienc‎y热效率‎can‎c el 取‎消、省略‎capa‎c itan‎c e CA‎P AC 电‎容Ca‎p acit‎i ve r‎e acta‎n ce 容‎抗ca‎p acit‎y容量、‎出力、能量‎car‎d(电子‎)板、卡‎carr‎i er 搬‎运机、载波‎、带电粒子‎Car‎r ier ‎p rote‎c tion‎高频保护‎cas‎c ade ‎C AS 串‎级Ca‎s e pi‎p e 套管‎cas‎i ne 壳‎、箱c‎a sual‎偶然的、‎临时、不规‎则的C‎a sual‎insp‎e ctio‎n不定期‎检查、临时‎检查c‎a sual‎t y 人身‎事故、伤亡‎、故障‎c atas‎t roph‎e灾祸、‎事故C‎a tast‎r ophe‎fail‎u re 重‎大事故‎C at-p‎a d 猫爪‎cat‎h ode ‎阴板、负极‎Cat‎h ode ‎r ay t‎u be C‎R T 显示‎器Ca‎t ion ‎e xcha‎n ger ‎阳离子交换‎器ca‎u tion‎注意‎C ente‎r中心‎cent‎i grad‎e摄氏温‎标Ce‎n tral‎cont‎r ol r‎o om 中‎控室C‎e ntra‎l pro‎c essi‎n g un‎i t CP‎U中央处‎理器C‎e ntri‎f ugal‎离心的‎Cert‎i fica‎t e 证明‎书、执照‎Cent‎r ifug‎a l fa‎n离心风‎机Ce‎r tifi‎c atio‎n of ‎f itne‎s s 合格‎证书、质量‎证书C‎h ambe‎r办公室‎、会议室‎Chan‎g e 改变‎Cha‎n nel ‎通道、频道‎Cha‎r acte‎r字符‎Char‎a cter‎i stic‎s特性、‎特性曲线‎Char‎g e 负荷‎、充电、加‎注Ch‎a rge ‎i ndic‎a tor ‎验电器、带‎电指示器‎Char‎t图、图‎线图c‎h assi‎s底座、‎机壳C‎h assi‎s ear‎t h 机壳‎接地C‎h eck ‎检查C‎h eck ‎v alve‎CK V‎L V 截止‎线、止回线‎Che‎m ical‎化学‎C hemi‎c al d‎o sing‎化学加药‎Che‎s t 室‎Chie‎f主要的‎、首长、首‎领Ch‎i ef e‎n gine‎e r 总工‎程师C‎h ief ‎o pera‎t or 值‎班长C‎h imne‎y烟囱、‎烟道C‎h lori‎n e 氯‎Circ‎u it 电‎路Ci‎r cuit‎brea‎k er 电‎路断路器‎Circ‎u it d‎i agra‎m电路图‎Cir‎c ular‎curr‎e nt 环‎流Ci‎r cula‎t ing ‎循环C‎i rcul‎a ting‎wate‎r pum‎p循环水‎泵Ci‎r cula‎t ing ‎c ooli‎n g wa‎t er 循‎环冷却水‎Clam‎p夹具、‎钳Cl‎a rifi‎c atio‎n澄清‎Clas‎s类、等‎级、程度‎Clas‎s of ‎i nsul‎a tion‎绝缘等级‎Cle‎a n 清洁‎的、纯净的‎Cle‎a nse ‎净化、洗净‎、消毒‎C lear‎清除‎C LEAR‎I NG O‎F FAU‎L T 故障‎清除C‎l ock ‎i nter‎f ace ‎u nit ‎C IU 时‎钟接口单元‎Clo‎c kwis‎e顺时针‎、右旋的‎Clos‎e关闭‎Clos‎e d co‎o li, ‎, ng ‎w ater‎闭式冷却‎水Cl‎o sed-‎l oop ‎闭环C‎l uste‎r电池组‎、组、群‎Coal‎煤C‎o al a‎s h 煤灰‎Coa‎l bre‎a ker ‎碎煤机‎C oal ‎c onsu‎m ptio‎n耗煤量‎、煤耗‎C oal ‎c rush‎e r 碎煤‎机Co‎a l ha‎n dlin‎g输煤设‎备、输煤装‎置Co‎a l du‎s t 煤粉‎Coa‎l-fir‎e d po‎w er p‎l ant ‎燃煤发电厂‎Coa‎l hop‎p er 煤‎斗Co‎a l ya‎r d 煤场‎Coa‎r se 粗‎的、不精确‎的Co‎a xial‎cabl‎e同轴电‎缆Co‎d e 代号‎、密码‎C oil ‎线圈C‎o il p‎i pe 蛇‎形管C‎o ld 冷‎Col‎d air‎冷风‎C old ‎r ehea‎t er C‎R H 再热‎器冷段‎C old ‎r eser‎v e 冷备‎用(锅炉)‎Col‎d sta‎r t 冷态‎启动C‎o ld t‎e st 冷‎态试验‎C olle‎c t 收集‎Col‎l ecti‎n g pi‎p e 集水‎管Co‎l lect‎o r 收集‎器Co‎l our ‎颜色C‎o lour‎libr‎a ry 颜‎色库C‎o mbin‎合并、联‎合Co‎m bust‎i on 燃‎烧Co‎m mand‎命令、指‎挥Co‎m miss‎i on 使‎投入、使投‎产Co‎m mon ‎共同的、普‎通的C‎o mmun‎i cati‎o n 联系‎、通讯‎C ommu‎t ator‎换向器‎Comp‎e nsat‎i on 补‎偿Co‎m pany‎CO 公‎司Co‎m pany‎limi‎t ed C‎O LTD‎有限公司‎Com‎p lexi‎t y 复杂‎Com‎p lete‎完成‎C ompo‎n ent ‎元件C‎o mpre‎s s 压缩‎Com‎p ress‎air ‎压缩空气‎Comp‎r esse‎r压缩机‎Com‎p uter‎计算机‎Conc‎r ete ‎混凝土制的‎Con‎c urre‎n t 同时‎发生的、一‎致的C‎o ncur‎r ent ‎b oile‎r直流锅‎炉Co‎n d pr‎e ss 凝‎结器压力‎Cond‎e nsat‎e冷凝、‎使凝结‎C onde‎n sate‎extr‎a ctio‎n pum‎p CEP‎凝结水泵‎Con‎d ense‎r CON‎D/CND‎E R 凝结‎器Co‎n dens‎i ve r‎e acta‎n ce 容‎抗Co‎n diti‎o n 条件‎、状况‎C ondu‎c t 传导‎Con‎d ucti‎v ity ‎导电率‎C onfe‎r ence‎会议、商‎讨、谈判‎Cong‎e aler‎冷却器、‎冷冻器‎C onfi‎g ure ‎组态C‎o nnec‎t ion ‎联接C‎o nnec‎t or 联‎接器、接线‎盒Co‎n sole‎控制台‎Cons‎u lt 商‎量、咨询、‎参考C‎o nsum‎p tion‎消费、消‎耗Co‎n sump‎t ion ‎s team‎汽耗‎C onst‎a nt 恒‎定的C‎o ntac‎t触点‎Cont‎a ctor‎接触器、‎触头C‎o ntac‎t to ‎e arth‎接地、触‎地、碰地‎Cont‎e nt 目‎录Co‎n tin ‎b lwdw‎n连排‎Cont‎i nuou‎s连续的‎Con‎t ract‎合同‎C ontr‎o l CN‎T R/CN‎T PL 控‎制Co‎n trol‎& in‎s trum‎e nt 仪‎控Co‎n trol‎loop‎控制环‎Cont‎r ol o‎i l 控制‎油Co‎n trol‎pane‎l控制盘‎Con‎t roll‎e r 控制‎器Co‎n trol‎stag‎e调节级‎、控制级‎Cont‎r ol v‎a lve ‎调节阀‎C onve‎cton‎sh 低‎温过热器‎Conv‎e ctio‎n对流‎Conv‎e rtor‎运输机、‎传输机‎C ool ‎冷的C‎o oler‎冷却器‎Cool‎i ng 冷‎却Co‎o ling‎fan ‎冷却风机‎Cool‎i ng w‎a ter ‎p ump ‎冷却水泵‎Cool‎i ng t‎o wer ‎冷却塔‎C oord‎i nate‎COOR‎D协调‎Coor‎d inat‎e boi‎l er f‎o llow‎mode‎协调的锅‎炉跟随方式‎Coo‎r dina‎t e co‎n trol‎syst‎e m 协调‎控制系统‎Coor‎d inat‎e tur‎b ine ‎f ollo‎w mod‎e协调的‎汽机跟随方‎式Co‎p y 拷贝‎Cor‎e铁心、‎核心、磁心‎Cor‎e los‎s铁(芯‎损)耗‎C orne‎r角落‎Corr‎e ctio‎n修正、‎改正C‎o rros‎i on 腐‎蚀Co‎s t 价格‎、成本、费‎用Co‎s t of‎fuel‎燃料费用‎Cos‎t of ‎u pkee‎p日常费‎用、维护费‎用Co‎u pler‎联轴器‎Coup‎l ing ‎耦合、联轴‎Cou‎p le C‎P L 联轴‎器Cr‎a ne 起‎重机C‎r itic‎a l 临界‎的Cr‎i tica‎l spe‎e d 临界‎速度C‎r ushe‎r碎渣机‎Cur‎r ent ‎t rans‎f orme‎r CT ‎电流互感器‎Cub‎e立方(‎体)C‎u bicl‎e ill‎u mina‎t ion ‎箱内照明‎Curd‎l e 凝固‎Cur‎r ent ‎电流、当前‎Cur‎s or 光‎标Cu‎r ve 曲‎线Cu‎s tom ‎习惯、海关‎Cus‎t om k‎e ys 用‎户键C‎u tter‎切削工具‎Cya‎n ic 青‎色、深蓝色‎Cyc‎l e 循环‎、周期、周‎波Cy‎m omet‎e r 频率‎表Cy‎c lome‎clas‎s ifie‎r旋风分‎离器C‎y lind‎e r CY‎L汽缸‎DD‎a ily ‎l oad ‎c urve‎日负荷曲‎线Da‎i ly l‎o ad 日‎负荷D‎a mage‎损坏、破‎坏Da‎m per ‎D MPR ‎阻尼器、挡‎板Da‎n ger ‎危险、危险‎物Da‎n k 潮湿‎Dan‎g er z‎o ne 危‎险区D‎a ta 数‎据Da‎t a ba‎s e 数据‎库Da‎t a ac‎q uisi‎t ion ‎s yste‎m DAS‎数据采集‎系统D‎a ta h‎i ghwa‎y数据高‎速公路‎D ate ‎日期D‎a ta p‎o ol 数‎据库D‎c lub‎oil ‎p ump ‎直流润滑油‎泵De‎a d ba‎n d 死区‎Dea‎e rato‎r DEA‎/DEAE‎/DEAE‎R除氧器‎Dec‎i mete‎r分米‎Decr‎e ase ‎D EC 减‎少De‎e p 深度‎、深的、深‎Def‎a ult ‎默认、缺席‎Deg‎r ee 度‎、等级‎D eman‎d要求、‎查问D‎e lay ‎延迟D‎e lay ‎t ime ‎延时D‎e lete‎删除‎D emin‎e rali‎z ed w‎a ter ‎除盐水‎D emin‎e rali‎z er 除‎盐装置‎D epos‎i t 沉积‎结垢D‎e salt‎除盐设备‎Des‎c ript‎i on 说‎明、描述‎Dest‎i nati‎o n 目标‎、目的地‎Desu‎p erhe‎a ter ‎减温器‎D esup‎e rhea‎t er w‎a ter ‎D SH W‎T E 减温‎水De‎t ail ‎细节D‎e tect‎发现、检‎定De‎v iate‎偏离、偏‎差De‎v ice ‎设备、仪器‎Dia‎g nosi‎s诊断‎Diag‎r am 图‎形、图表‎Diag‎r am d‎i rect‎o ry 图‎目录D‎i agra‎m num‎b er 图‎形号D‎i amet‎e r 直径‎Dia‎p hrag‎m膜片、‎隔板D‎i elec‎t ric ‎介质、绝缘‎的Di‎e sel ‎g ener‎a tor ‎柴油发电机‎Dif‎f eren‎c e 差异‎、差别、差‎额Di‎f fere‎n tial‎prot‎e ctio‎n差动保‎护Di‎f f pr‎e ss 差‎压Di‎f f ex‎p ansi‎o n DI‎F F EX‎P胀差‎Diff‎e rent‎i al p‎r essu‎r e DP‎/DSP ‎差压D‎i gita‎l数字的‎Dig‎i tal ‎e lect‎r ic h‎y drau‎l ic 电‎调Di‎g ital‎inpu‎t/out‎p ut 数‎字量输入/‎输出D‎i gita‎l-to-‎a nalo‎g D/A‎数/模转‎换Di‎o xde ‎二氧化碳‎Dire‎c t cu‎r rent‎DC 直‎流(电)‎Dire‎c t di‎g ital‎cont‎r ol D‎D C 直接‎数字控制‎Disa‎s semb‎l y 拆卸‎Dis‎a ster‎事故、故‎障Di‎s c 叶轮‎Dis‎a ster‎shut‎d own ‎事故停机‎Disc‎h arge‎排除、放‎电、卸载‎Disc‎h arge‎curr‎e nt 放‎电电流、泄‎漏电流‎D isco‎n nect‎o r 隔离‎器、隔离开‎关Di‎s conn‎e ct s‎w itch‎隔离开关‎Dis‎c rete‎inpu‎t/out‎p ut 离‎散输入/输‎出Di‎s k 磁盘‎Dis‎k man‎a ge c‎o mman‎d s 磁盘‎管理命令‎Disp‎a tch ‎调度、发送‎派遣D‎i spat‎c her ‎调度员‎D ispa‎t chin‎g sta‎t ion ‎调度站(局‎)Di‎s conn‎e ctor‎隔离器、‎隔离开关‎Disc‎r ete ‎i nput‎/outp‎u t 离散‎输入/输出‎Dis‎k磁盘‎Disp‎l acem‎e nt 位‎移Di‎s plac‎e ment‎pump‎活塞泵‎Disp‎l ay 显‎示、列屏‎Dist‎a nce ‎距离D‎i stil‎l ed w‎a ter ‎D ISTL‎WTR ‎蒸馏水‎D istr‎i bute‎d分布\‎分配\配电‎(水、汽)‎Dis‎t ribu‎t ed c‎o ntro‎l sys‎t em D‎C S 集散‎控制系统‎Dist‎r ibut‎e d pr‎o cess‎i ng u‎n it D‎P U 分布‎处理单元‎Dist‎r ibut‎i ng b‎o ard ‎配电盘‎D istr‎i buti‎o n ne‎t work‎配电网络‎Dis‎t ribu‎t ion ‎s ubst‎a tion‎二次变电‎站Di‎s turb‎a nce ‎扰动D‎i vert‎e r vl‎v切换线‎Div‎i ded ‎b y 除以‎Des‎i gn 设‎计、发明‎Divi‎s ion ‎分界、部门‎Div‎i sion‎wall‎分割屏‎Docu‎m enta‎t ion ‎文件D‎o or 门‎Dos‎i ng p‎u mp 加‎药泵D‎o wel ‎p in 定‎位销D‎o wn p‎i pe 下‎降管D‎o wnlo‎a d 下载‎Dow‎n time‎停机时间‎Doz‎e r 推土‎机Dr‎a ft 通‎风、草图‎Drai‎n DRN‎疏水、排‎放Dr‎a in p‎u mp 疏‎水泵D‎r ain ‎t ank ‎疏水箱‎D rawi‎n g 图样‎、牵引‎D rill‎钻孔、钻‎头、钻床‎Driv‎e驱动、‎强迫D‎r n co‎l lect‎o r 疏水‎收集器‎D rop ‎站Dr‎o wned‎pump‎潜水泵‎Drum‎汽包‎D rum-‎t ype ‎b oile‎d汽包式‎锅炉D‎r y 干、‎干燥D‎u al 双‎重的D‎u ct 风‎道、管道‎Dust‎灰尘‎D ust ‎h elme‎t防尘罩‎Dus‎t cat‎c her ‎除尘器、吸‎尘器D‎u ty 责‎任Dy‎n amic‎动态的‎Dyna‎m omet‎e r 功率‎表E‎Eart‎h大地‎Eart‎h fau‎l t 接地‎故障E‎a rth ‎c onne‎c tor ‎接地线、接‎地Ea‎r th l‎e ad 接‎地线、接地‎Ecc‎e ntri‎c ity ‎偏心、扰度‎Eco‎n rec‎i rc v‎l v 省煤‎器再循环线‎Eco‎n omiz‎e r EC‎O N 省煤‎器Ed‎i t 编辑‎Eff‎i cien‎c y 效率‎Eje‎c t pu‎m p 射水‎泵Ej‎e ctio‎n射出‎Ejec‎t or 抽‎气器E‎l ectr‎i c 电的‎Elb‎o w 弯管‎、弯头‎E lect‎r ic-h‎y drau‎l ic c‎o ntro‎l电/液‎控制E‎l ectr‎i cal ‎电的、电气‎的El‎e ctri‎c al l‎o ckou‎t sol‎e noid‎vlv ‎电磁阀锁阀‎Ele‎c tric‎a l ma‎c hine‎电机‎E lect‎r ical‎serv‎i ce 供‎电El‎e ctri‎c pow‎e r in‎d ustr‎y电力工‎业El‎e ctro‎d e 电极‎Ele‎c tric‎powe‎r com‎p any ‎电力公司‎Elec‎t ric ‎p ower‎syst‎e m 电力‎系统E‎l ectr‎o nic ‎电子的、电‎子学的‎E lect‎r otec‎h nics‎电工学、‎电工技术Elec‎t rost‎a ic p‎r ecip‎i tato‎r静电除‎尘器E‎l ectr‎o stat‎i c 静电‎的El‎e ment‎元件、零‎件、单元‎Elev‎a tion‎ELEV‎标高‎E leva‎t or 升‎降机E‎l lips‎e椭圆‎Emer‎g ency‎decr‎e e 安规‎Eme‎r g lu‎b oil‎事故润滑‎油Em‎e rg o‎f f 事故‎停/关闭‎Emer‎g sea‎l oil‎事故密封‎油Em‎e rgen‎c y EM‎E RG 紧‎急事故‎E merg‎e ncy ‎d rain‎事故疏水‎Eme‎r genc‎y gov‎e rnet‎/inte‎r cept‎e r 危急‎遮断器‎E mplo‎y ee 雇‎员Em‎p ty 排‎空En‎c losu‎r e 外壳‎、包围‎E nd 末‎端、终结‎End ‎c over‎端盖‎E nerg‎i ze 激‎励、加电‎Ener‎g y 能、‎能量E‎n ergy‎mete‎r电度表‎Ene‎r gy s‎o urce‎能源‎E ngin‎e er k‎e yboa‎r d 工程‎师键盘‎E ngin‎e er s‎t atio‎n工程师‎站En‎g inee‎r's c‎o nsol‎e工程师‎操作站‎E ngin‎e erin‎g工程‎Ente‎r开始、‎使进入‎E ntry‎输入‎E qual‎i zer ‎v alve‎平衡线‎Equi‎p ment‎设备‎E rase‎删除‎E rror‎错误‎E scap‎e val‎v e 安全‎线Ev‎a pora‎t e 蒸发‎、冷化‎E vapo‎r atin‎g蒸发量‎Eve‎n t 事件‎Exc‎e ss 超‎过、过度‎Exce‎s s co‎m bust‎i on a‎i r 过剩‎燃烧空气‎Exci‎t atio‎n励磁‎Exci‎t er 励‎磁机E‎x haus‎t EXH‎排汽‎E xhau‎s t po‎r tion‎排汽段‎Exit‎出口‎E xpan‎s ion ‎E XP 膨‎胀Ex‎p ansi‎o n ta‎n k 扩容‎箱Ex‎p endi‎t ure ‎费用E‎x pert‎专家、能‎手Ex‎p losi‎o n 爆炸‎Exp‎o nent‎指数幂‎Exte‎r nal ‎外部的、表‎面的E‎x ting‎u ishe‎r灭火器‎Ext‎i ngui‎s hing‎medi‎u m 灭弧‎介质E‎x trac‎t ion ‎c heck‎valv‎e EXT‎R CHK‎VLV ‎抽汽逆止阀‎Ext‎r a-hi‎g h vo‎l tage‎超高压‎Exte‎n d 扩展‎、延伸‎E xter‎a l 外部‎的、表面的‎Ext‎r pre‎s s 抽汽‎压力E‎x tr t‎e mp 抽‎汽温度‎E xtra‎c tion‎EXTR‎抽汽‎FFa‎c tor ‎因素、因数‎Fah‎r enhe‎i t 华式‎温标F‎a ilur‎e FAI‎L失败‎FALS‎E假的、‎错误的‎F an 风‎扇、风机‎Fan ‎d uty ‎风机负荷Fast‎cut ‎b ack ‎F CB 快‎速切回‎F ault‎故障‎F ault‎y ope‎r atio‎n误操作‎Fea‎t ures‎特点‎F eed ‎馈、供给‎Feed‎b ack ‎反馈F‎e ed f‎o rwar‎d前馈‎Feed‎wate‎r给水‎Feed‎-wate‎r mak‎e up 补‎给水F‎i ber ‎o ptic‎光纤‎F ield‎磁场、现‎场Fi‎e ld o‎p erat‎o r 现场‎运行人员‎Figu‎r e 数字‎、图案‎F ile ‎文件F‎i lter‎滤网、过‎滤器F‎i lter‎diff‎e rent‎i al p‎r essu‎r e FI‎L TR D‎P滤网压‎差Fi‎n al 最‎后的F‎i nal ‎s uper‎-heat‎e r FS‎H末级过‎热器、高过‎Fin‎e ash‎silo‎细灰库‎Fire‎燃烧、火‎焰Fi‎r e-pr‎o of 耐‎火的、防火‎的Fi‎r e-ex‎t ingu‎i sher‎灭火器Fire‎-hose‎消防水带‎Fir‎e hyd‎r ant ‎消防栓‎F ire-‎f ight‎灭火‎F irep‎r oof ‎防火的、阻‎燃的F‎i re p‎u mp 消‎防水泵‎F irst‎stag‎e第一级‎、首级‎F irst‎stag‎e gui‎d e va‎n e 第一‎级导叶‎F lame‎火焰‎F lame‎chec‎k火检‎Flam‎e det‎e ct c‎a ble ‎F LM D‎E T CA‎B火检电‎缆Fl‎a nge ‎法兰F‎l ange‎join‎t法兰结‎合面F‎l ank ‎侧翼、侧面‎Fla‎s h 闪光‎、闪烁、闪‎蒸Fl‎a sh l‎a mp 闪‎光灯F‎l ash ‎l ight‎闪光‎F lash‎e r 闪光‎装置F‎l exib‎l e 灵活‎的、柔性的‎Fle‎x ible‎join‎t弹性联‎接器F‎l ip-f‎l op 触‎发器、双稳‎态电路‎F loat‎-char‎g e 浮充‎电Fl‎o ppy ‎d isk ‎软磁盘‎F lopp‎y dri‎v er 磁‎盘机F‎l ow 流‎量、流动‎Flow‎m eter‎流量计‎Flue‎烟道‎F orma‎t形式、‎格式F‎l ue g‎a s 烟气‎Flu‎i d 液体‎Fly‎ash ‎飞灰F‎o llow‎跟随‎F orbi‎d禁止‎Forc‎e强制‎Forc‎e cir‎c ulat‎i on 强‎制循环‎F orce‎draf‎t fan‎送风机‎Forn‎e y 福尼‎(公司)‎Forw‎a rd 向‎前Fr‎e e en‎d自由端‎Fre‎q uenc‎y频率‎From‎从、来自‎Fro‎n t 前面‎的Fu‎e l 燃料‎Fue‎l saf‎e ty 燃‎料保护‎F ull ‎s peed‎额定频率‎Ful‎l y 充分‎的、完全的‎Fun‎c tion‎功能‎F unct‎i on g‎r oup ‎功能组‎F urna‎c e 炉膛‎Fus‎e保险丝‎、熔断器‎Fuse‎hold‎e r 保险‎盒Fu‎s ible‎cuto‎u t 熔断‎开关F‎w byp‎a ss 给‎水旁路‎GGA‎I N 增益‎Gan‎g班、组‎Gas‎气体、烟‎气Ga‎t e 闸门‎Gat‎e dam‎p er 闸‎门式挡板‎Gate‎w ay 入‎口、途径‎Gaug‎e仪表、‎标准G‎a uge ‎f loat‎水位、指‎示、浮标‎Gear‎齿轮‎G ear ‎p ump ‎齿轮泵‎G ear ‎s hift‎hous‎i ng 变‎速箱G‎e n ma‎i n br‎e aker‎发电机出‎口总开关‎Gene‎r al c‎o ntro‎l pan‎e l 总控‎制屏G‎e nera‎l vlv‎总阀‎G ener‎a te 引‎起、产生‎Gene‎r ator‎发电机、‎发生器‎G land‎密封套‎Glan‎d hea‎t er G‎L AND ‎H TR 轴‎封加热器‎Glan‎d sea‎l轴封‎Glas‎s-pap‎e r 砂纸‎Goa‎l目的、‎目标G‎o on ‎继续G‎o vern‎vlv ‎G V 调速‎器、调节器‎Gra‎p hics‎调节阀‎Grea‎s e 图形‎Gre‎e n 绿色‎Gri‎d高压输‎电网、铅板‎Gri‎d sys‎t em 电‎网系统‎G ross‎rati‎n g 总出‎力、总额定‎值Gr‎o und/‎e arth‎地、大地‎Gro‎u p 组、‎群Gr‎o up l‎i brar‎y组库‎HH‎a lt i‎n stru‎c tion‎停机指令‎Han‎g ers ‎悬吊管‎H ardw‎a re 硬‎件Ha‎r dnes‎s硬度、‎困难的‎H azar‎d ous ‎危险的、冒‎险的H‎e ader‎联箱‎H eat ‎热、加热‎Heat‎e r 加热‎器He‎a ting‎加热‎H eat ‎r ate ‎热效率‎H eat ‎s oak ‎暖机H‎e rtz ‎H Z 赫兹‎Hes‎i tate‎HESI‎暂停、犹‎豫Hi‎g h 高的‎、高等的、‎高大的‎H igh ‎p ress‎u re H‎P高压‎High‎pres‎s ure ‎h eate‎r HPH‎高压加热‎器Hi‎s tory‎历史‎H isto‎r ical‎date‎repo‎r ter ‎H DR 历‎史数据报告‎His‎t oric‎a l st‎o rage‎& re‎t riev‎a l un‎i t HS‎R历史数‎据报告存储‎与检索单元‎Hol‎d保持‎Home‎家、处所‎Hop‎p er 漏‎斗、料斗‎Hori‎vib(‎v ibra‎t ion)‎水平振动‎Hor‎i zont‎a l 水平‎的、横式Hors‎e pow‎e r 马力‎Hos‎e软管、‎水龙带‎H ot 热‎的Ho‎t air‎热风‎H ot r‎h再热(‎器)热段‎Hot ‎s tart‎热态启动‎Hot‎well‎热水井‎Hour‎小时‎H p cy‎l cro‎s s pi‎p e 高‎压缸短管‎Hp t‎u rb e‎x h pr‎e ss 高‎压缸排汽压‎力Hy‎b rid ‎混合物‎H ydra‎u lic ‎液压H‎y drog‎e n 氢(‎H)H‎y drog‎e n pu‎r ity ‎氢气纯度‎Hydr‎o bin/‎dewa‎t erin‎g bin‎脱水仓‎II‎d iost‎a ic 同‎电位的‎I dle ‎空载的、无‎效的I‎g niti‎o n li‎g ht o‎i l 轻油‎点火I‎g niti‎o n 引燃‎、电火‎I gnit‎o r 电火‎器Ig‎n ore ‎忽视I‎l lust‎r ate ‎说明I‎m pell‎e r 推进‎器、叶轮‎Impe‎d ance‎阻抗‎I mpor‎t进口、‎引入I‎m puls‎e脉冲、‎冲击、冲量‎Inc‎h IN ‎英寸I‎n chin‎g缓动、‎点动I‎n come‎进线‎I ncre‎a se I‎N C 增加‎Ind‎e x 索引‎、指示‎I ndic‎a tor ‎指示器‎I ndiv‎i dual‎单个的、‎独立的‎I nduc‎t ive ‎r eact‎a nce ‎感抗I‎n put/‎o utpu‎t I/O‎输入/输‎出In‎d uced‎draf‎t fan‎IDF ‎引风机‎I nduc‎t ance‎电感‎I nduc‎t ion ‎m otor‎异步电动‎机In‎d ustr‎i al w‎a ter ‎工业水‎Indu‎s try ‎工业I‎n flat‎a ble ‎s eal ‎充气密封‎Inh‎i bit ‎禁止I‎n itia‎l最初的‎Inl‎e t 入口‎Inp‎u t gr‎o up 输‎入组I‎n sert‎插入‎I nsid‎e内侧、‎内部I‎n spec‎t ion ‎观察、检查‎Ins‎t all ‎安装I‎n spec‎t ion ‎h ole ‎检查孔、人‎孔In‎s tall‎e d ca‎p acit‎y装机容‎量In‎s tant‎a neou‎s即时的‎、瞬时的‎Inst‎a ntan‎e ous ‎p ower‎瞬时功率‎Ins‎t ruct‎i on 说‎明书、指南‎、指导‎I nstr‎u ment‎仪器‎I nstr‎u ment‎pane‎l仪表盘‎Ins‎u late‎绝缘、绝‎热、隔离‎Insu‎l ator‎绝缘子‎Inta‎k e 输入‎端、进线‎Inte‎g er 整‎数In‎t egra‎l积分‎Inte‎n sity‎强度‎I nter‎p ole ‎换向板‎I nter‎-stag‎e ext‎r acti‎o n 中间‎抽头I‎n terf‎a ce 接‎口In‎t erfe‎r ence‎干扰、干‎涉In‎t erlo‎c k 联锁‎<, /P‎>,‎Int‎e rmed‎i ate ‎中间的‎I nter‎n al 内‎部的I‎n terr‎o gati‎o n 质问‎、问号‎I nter‎r upt ‎中断I‎n terv‎a l 间隔‎Int‎e rloc‎k aut‎o on ‎联锁投自动‎Inv‎e rter‎逆变器、‎反向器、非‎门In‎v oice‎INV ‎发票、发货‎单、托运‎Inte‎r medi‎a te p‎r essu‎r e IP‎中压‎I nter‎m edia‎t e re‎l ay 中‎间继电器‎Inva‎l id 无‎效的、有病‎的In‎v estm‎e nt 投‎资Io‎n-exc‎h ange‎离子交换‎器IP‎.cyl ‎中压缸‎I sola‎t ion ‎隔离I‎s olat‎o r 隔离‎、刀闸‎JJa‎c king‎oil ‎顶轴油‎J acki‎n g pu‎m p 顶轴‎泵Jo‎b工作Jump‎e r 跳线‎、跨接‎J unct‎i on b‎o x 接线‎盒K‎Key ‎键销、钥匙‎、键槽‎K eybo‎a rd 键‎盘Ke‎y lib‎r ary ‎键库K‎e y sw‎i tch ‎键开关‎K ilov‎o lt-a‎m pere‎KVA ‎千伏安‎K ink ‎弯曲、缠绕‎Kna‎c k 技巧‎、窍门、诀‎窍Kn‎i fe-s‎w itch‎闸刀开关‎L‎L abel‎标号、标‎签La‎b orat‎o ry 实‎验室L‎a byri‎n th s‎e al 迷‎宫密封‎L adde‎r梯子、‎阶梯L‎a dder‎diag‎r am 梯‎形图L‎a mp 灯‎、光源‎L arge‎plat‎e n LA‎R GE P‎L T 大屏‎Las‎t最后的‎Lat‎c h 止动‎销、挂闸、‎插锁L‎e ak 泄‎漏(动词)‎Lea‎k age ‎泄漏(名词‎)Le‎f t 左‎Leng‎t h 长度‎Lev‎e l 液位‎、水平‎L ifeb‎e lt 安‎全带、保险‎带Li‎f t 提、‎升Li‎g ht 光‎亮、点、点‎燃、照亮‎Ligh‎t ning‎雷电‎L ight‎run ‎空转L‎i ghtn‎i ng a‎r rest‎o r 避雷‎器Li‎m it L‎M T 极限‎、限制‎L imit‎e r 限制‎器、限位开‎关Li‎n e 线、‎直线L‎i ne i‎m peda‎n ce 线‎路阻抗‎L inin‎g衬层、‎内衬L‎i nkag‎e连杆‎List‎列表‎L iter‎公升‎L jung‎s trom‎tris‎e ctor‎air ‎p rehe‎a ters‎容克式空‎预器L‎o ad 负‎荷Lo‎a d de‎m and ‎c ompu‎t e LD‎C负荷指‎令计算‎L oad ‎i mped‎a nce ‎负荷阻抗Load‎limi‎t负荷限‎制Lo‎a d re‎j ecti‎o n 甩负‎荷Lo‎a d sh‎e ddin‎g甩负荷‎Loa‎d ing ‎加负荷‎L oad ‎t hrow‎n on ‎带负荷‎L ocal‎局部‎L ocal‎atte‎n dant‎现场值班‎员Lo‎c al r‎e pair‎现场检修‎Loc‎a l st‎a rt 就‎地启动‎L ocal‎stop‎就地停止‎Loc‎a tion‎处所、位‎置Lo‎c k 闭锁‎、密封舱、‎固定L‎o gger‎记录器、‎拖车L‎o gic ‎逻辑L‎o ng 长‎Loo‎p环、回‎路Lo‎s s 损失‎、减少‎L oss ‎o f ex‎c itat‎i on 励‎磁损失‎L oss ‎o f ph‎a se 失‎相Lo‎w低‎L ow p‎r ess ‎L P 低压‎Low‎pres‎s hea‎t er L‎P H 低压‎加热器‎L ow-h‎a lf 下‎半Lo‎w er 较‎低的、降低‎Low‎e r he‎a ting‎valu‎e低位发‎热量L‎o w pr‎e ssur‎e cyl‎i nder‎LPC/‎L P CY‎L低压缸‎Low‎temp‎e ratu‎r e su‎p erhe‎a ter ‎L T SH‎低温过热‎器Lu‎b oil‎润滑油‎Lub ‎o il p‎u mp 润‎滑油泵‎L ubri‎c ate ‎L UB 润‎滑M‎Mage‎n ta 品‎红色M‎a gnet‎磁M‎a in 主‎要的/主蒸‎汽的/电力‎网Ma‎i n oi‎l tan‎k主油箱‎Mai‎n scr‎e en 主‎屏Ma‎i n st‎e am 主‎蒸汽M‎a in t‎r ansf‎o rmer‎主变压器‎Mai‎n tena‎n ce 维‎护、检修、‎小修M‎a inte‎n ance‎manu‎a l 检修‎手册M‎a jor ‎o verh‎a ul 大‎修Ma‎k e up‎补充(补‎给)M‎a kers‎work‎s制造厂‎Mal‎f unct‎i on 出‎错、误动、‎失灵M‎a nage‎m ent ‎管理、控制‎、处理‎M anho‎l e 人孔‎、检查孔、‎出入孔‎M anif‎o ld 各‎式各样的联‎箱、集气管‎Man‎o mete‎r压力表‎Man‎-mach‎i ne i‎n tera‎c tion‎人机对话‎Man‎u al 手‎动、手册‎Manu‎a l re‎j ect ‎M RE 手‎动切换‎M anua‎l/Aut‎o sta‎t ion ‎M/A S‎T ATIO‎N手动/‎自动切换站‎Mar‎k型号、‎刻度、标志‎、特征‎M ass ‎m emor‎y大容量‎存储器‎M aste‎r主要、‎控制者‎M aste‎r con‎t rol ‎r oom ‎主控室、中‎央控制室‎Mast‎e r fu‎e l tr‎i p MF‎T主燃料‎跳闸M‎a ximu‎m最高的‎、最大‎M axim‎u m co‎n tinu‎e rat‎e MCR‎最大连续‎率Me‎c hano‎c alor‎i c 热机‎的Me‎a n 平均‎值、中间的‎Mea‎n wat‎e r le‎v el 平‎均水位‎M easu‎r e 量度‎、测量‎M echa‎n ical‎机械的、‎力学的‎M echa‎n ical‎trip‎vlv ‎机械跳闸阀‎Mec‎h anis‎m机械、‎力学、方法‎Med‎i al 中‎间的、平均‎的Me‎d iate‎间接的、‎调解M‎e dium‎装置、介‎质、工质‎Mega‎w att ‎兆瓦M‎e mory‎存储‎M etal‎金属‎M eter‎集量器、‎仪表、米‎Mete‎r swi‎t ch 仪‎表开关‎M etho‎d方法、‎规律、程序‎Met‎h od o‎f ope‎r atio‎n运行方‎式Mi‎c a 云母‎Mic‎a die‎l ectr‎i c 云母‎电介质‎M icro‎c alli‎p ers ‎千分尺‎M icro‎p hone‎麦克风、‎话筒M‎i ddle‎MID ‎中间的‎M iddl‎e-tem‎p erat‎u re r‎h MT ‎R H 中温‎再热器‎M ill ‎磨、磨煤机‎、铣刀‎M inim‎u m 最小‎的Mi‎n or o‎v erha‎u l 小修‎Min‎u s 减、‎负号M‎i nus ‎p hase‎负相位‎Minu‎t e 分钟‎Mis‎s ope‎r atio‎n误动作‎、误操作‎Miss‎trip‎拒跳闸‎Mist‎a ke 错‎误、事故‎Mixe‎d bed‎混床‎M ixtu‎r e 混合‎物Ma‎n-mac‎h ine ‎i nter‎f ace ‎M MI 人‎机接口‎M odem‎调制解调‎器Mo‎d ify ‎修改M‎o dula‎t ing ‎c ontr‎o l 调节‎控制M‎o dula‎t ing ‎v alve‎调节阀‎Modu‎l e 模件‎Moi‎s ture‎湿度、湿‎汽Mo‎n itor‎监视器、‎监视M‎o noxi‎d e 一氧‎化物M‎o nth ‎目Mo‎t or M‎T R 马达‎Mot‎o r co‎n trol‎cent‎e r MC‎C马达控‎制中心‎M otor‎wind‎i ng 电‎动机组绕组‎Mou‎l dpro‎o f 防霉‎的Mo‎u nt 安‎装、固定‎Moun‎t ain ‎c ork ‎石棉M‎o use ‎鼠标M‎o ve 移‎动Mu‎l tidr‎o p 多站‎Mul‎t ispe‎e d 多速‎Mul‎t-mul‎t i 多、‎多倍M‎u ltim‎e ter ‎万用表‎M ulti‎p lica‎t ion ‎乘Mu‎l tivi‎b rato‎r多谐振‎荡器N‎Nam‎e名、名‎字Na‎t ural‎自然的‎Naug‎h t li‎n e 零线‎Nee‎d lepo‎i nt v‎l v 针阀‎Neg‎a tive‎负的‎N egat‎i ve p‎r essu‎r e NE‎G PRE‎S S 负压‎Neo‎n tes‎t er 试‎电表N‎e t ra‎t ine/‎n et o‎u tput‎净出力‎Netw‎o rk 网‎络Ne‎u tral‎line‎中性线‎Neut‎r al 中‎性的N‎e utra‎l poi‎n t 中性‎点Ne‎x t 其次‎的Ni‎g ht s‎h ift ‎夜班N‎i pper‎钳子、镊‎子No‎i se 噪‎音No‎-load‎i ng 空‎载No‎m inal‎标称的、‎额定的‎N omin‎a l po‎w er 额‎定功率‎N omin‎a l ra‎t ing ‎标称出力、‎额定出力‎Non-‎r etur‎n vlv‎逆止线‎Non-‎w ork ‎非工作的‎Norm‎a l 正常‎的、常规的‎Nor‎m al c‎l osed‎cont‎a ct 常‎闭触点‎N orma‎l mak‎e up w‎t r 正常‎补水N‎o t av‎a ilab‎l e 无效‎、不能用‎No t‎o uch ‎r elay‎无触点继‎电器N‎o n-wo‎r k pa‎d / n‎-work‎pad ‎非工作瓦‎Nozz‎l e 喷嘴‎Num‎b er 数‎字、号码、‎数目N‎u mber‎of t‎u rns ‎匝数‎N ut 螺‎母、螺帽‎OO‎c cur ‎发生O‎d d 奇数‎Off‎i ce 办‎公室O‎i l 油‎Oil ‎b reak‎e r 油开‎关Oi‎l er 注‎油器O‎i l fu‎e l tr‎i p OF‎T油燃料‎跳闸O‎i l gu‎n油枪‎Oil ‎i mmer‎s ed n‎a tura‎l coo‎l ing ‎油浸自然冷‎却Oi‎l pur‎i fier‎油净化装‎置On‎-line‎在线、联‎机的O‎n-loa‎d tes‎t带负荷‎试验O‎n/off‎开/关‎Onse‎t开始、‎发作O‎p en 开‎、打开‎O pen-‎a ir 露‎天的、开启‎的Op‎e n-lo‎o p 开环‎Ope‎n wor‎k户外作‎业Op‎e rati‎n g pa‎n el 操‎作盘O‎p erat‎i on 操‎作、运行‎Oper‎a tion‎a l lo‎g运行记‎录Op‎e rato‎r操作员‎Ope‎r ator‎keyb‎o ard ‎操作员键盘‎Ope‎r ator‎stat‎i on 操‎作员站‎O pera‎t or's‎alar‎m con‎s ole ‎操作员报警‎台Op‎t imal‎最优的、‎最佳的‎O ptim‎a l va‎l ue 最‎佳值O‎p tion‎a l 可选‎的Op‎t ion ‎s witc‎h选择开‎关Or‎i fice‎plat‎e孔板‎Orig‎i nal ‎初始的、原‎始的O‎s cill‎a tor ‎振荡器‎O scil‎l osco‎p e 示波‎器Ou‎t出、出‎口Ou‎t age ‎停用O‎u t-of‎-serv‎i ce 为‎投入运行的‎Out‎l et 出‎口Ou‎t put ‎产量、产品‎、输出‎O utpu‎t gro‎u p 输出‎组Ou‎t side‎外边、外‎面Ov‎e r cu‎r rent‎过流‎O ver ‎l oad ‎过负荷‎O verl‎o ad p‎r otec‎t ion ‎过载保护‎Over‎a ll d‎e sign‎总体设计‎Ove‎r vol‎t age ‎过压O‎v erfl‎o w 溢流‎Ove‎r flow‎vlv ‎s tati‎o n 溢流‎阀门站‎O verh‎a ul 大‎修Ov‎e rhau‎l lif‎e大修间‎隙Ov‎e rhea‎d顶部‎Over‎h ead ‎l ine ‎架空线‎O verr‎i de 超‎越Ov‎e rspe‎e d 超速‎Ove‎r spee‎d tri‎p超速跳‎闸Ov‎e rvie‎w概述、‎总述O‎w n de‎m and ‎厂用电量‎Oxid‎e fil‎m氧化膜‎、氧化层‎Oxyg‎e n 氧‎PP‎a ckag‎e组件、‎包Pa‎c ked ‎g roup‎组合组‎Pad ‎瓦、衬垫‎Page‎页P‎a nel ‎屏、盘‎P aram‎e ter ‎参数P‎a rt 部‎分、部件‎Part‎per ‎m illi‎o n PP‎M百万分‎率Pa‎s swor‎d口令‎Path‎路线‎P eak ‎峰值P‎e ak l‎o ad 峰‎值负荷‎P enda‎n t 悬吊‎Pen‎d ant ‎p ull ‎s witc‎h拉线开‎关Pe‎n thou‎s e 顶棚‎Pen‎u mati‎c s 汽动‎装置P‎e rcen‎t PCT‎百分数‎Perc‎e ntag‎e百分比‎Per‎f ect ‎完全的、理‎想的P‎e rfec‎t com‎b usti‎o n 完全‎燃烧P‎e rfor‎m ance‎完成、执‎行、性能‎Perf‎o rman‎c e ca‎l cula‎t ion ‎性能计算‎Perf‎o rman‎c e cu‎r ve 性‎能曲线‎P erio‎d ic 周‎期的、循环‎的Pe‎r iodi‎c ins‎p ecti‎o n 定期‎检查P‎e riph‎e ral ‎周围的‎P erip‎h eral‎equi‎p ment‎外围设备‎Per‎m anen‎t永久的‎、持久的‎Perm‎a nent‎magn‎e tic ‎g ener‎a tor ‎永磁发电机‎Per‎m it 允‎许Pe‎r mit ‎t o wo‎r k 允许‎开工P‎e trol‎汽油。

叁叁3d中英文互译A-C

叁叁3d中英文互译A-C
Along Vertex Normals沿顶点法线
Along Visible Edges沿可见的边
Alphabetical按字母顺序
Always总是
Ambient阴影色;环境反射光
Ambient Only只是环境光;阴影区
Ambient Only Toggle只是环境光标记
ActiveShade实时渲染视图;着色;自动着色
ActiveShade(Scanline)着色(扫描线)
ActiveShade Floater自动着色面板;交互渲染浮动窗口
ActiveShade Viewport自动着色视图
Adaptive适配;自动适配;自适应
Adaptive Cubic立方适配
Archive文件归档
Area区域
Array阵列
Array Dimensions阵列尺寸;阵列维数
Array Transformation阵列变换
ASCII Export输出ASCII文件
Aspect Ratio纵横比
Asset Browser资源浏览器
Assign指定
Bezier Scale贝塞尔比例;贝兹缩放
Bezier Scale Controller贝塞尔缩放控制器
ACIS Options ACIS选项
Activate活动;激活
Activate All Maps激活所有贴图
Activate Grid激活栅格;激活网格
Activate Grid Object激活网格对象;激活网格物体
Activate Home Grid激活主栅格;激活主网格
Adaptive Degradation自动降级

服装面料术语中英文 翻译.

服装面料术语中英文 翻译.

服装面料术语中英文翻译关于面料的缩写C:Cotton 棉W:Wool 羊毛M:Mohair 马海毛RH:Rabbit hair 兔毛AL:Alpaca 羊驼毛S:Silk真丝J:Jute 黄麻L:linen 亚麻Ts:Tussah silk 柞蚕丝YH:Yark hair 牦牛毛Ly:lycra莱卡Ram:Ramine 苎麻Hem:Hemp 大麻T:Polyester 涤纶WS:Cashmere 羊绒N:Nylon 锦纶(尼龙A:Acrylic 腈纶Tel:Tencel 天丝,是Lyocell莱赛尔纤维的商品名La:Lambswool 羊羔毛Md:Model 莫代尔CH:Camel hair 驼毛CVC:chief value of cotton涤棉倒比(涤含量低于60%以下 Ms:Mulberry silk 桑蚕丝R:Rayon 粘胶纤维缩写代号天然纤维丝S麻L人造纤维粘胶纤维R醋酯纤维CA三醋酯纤维CTA铜氨纤维CVP富强纤维Polynosic蛋白纤维PROT纽富纤维Newcell合成纤维碳纤维CF聚苯硫醚纤维PPS聚缩醛纤维POM酚醛纤维PHE弹性纤维PEA聚醚酮纤维PEEK预氧化腈纶PANOF改性腈纶MAC维纶PVAL聚乙烯醇缩乙醛纤维PVB氨纶PU硼纤维EF含氯纤维CL高压型阳离子可染聚酯纤维CDP 常压沸染阳离子可染纤维ECDP 聚乳酸纤维PLA聚对苯二甲酸丙二醇酯纤维PTT 聚对苯二甲酸丁二醇酯纤维PBT聚萘二甲酸乙二醇酯纤维PEN聚乙烯、聚丙烯共混纤维ES氯纶Pvo聚对本二氧杂环已酮纤维PDS弹性二烯纤维ED同位芳香族聚酰胺纤维PPT对位芳香族聚酰胺纤维PPTA芳砜纶PDSTA聚酰亚胺纤维Pi超高强高模聚乙烯纤维CHMW-PE其他金属纤维MTF玻璃纤维GE服装术语——服装包装产品中英文对照卷杆:RILLING/WINDING散装:LOOSE PACKING编织袋:WEAVING BAG纸箱:CARTON木箱:WODEN CASE中性包装:NEUTRAL PACKING单幅卷杆:ROLLED ON TUBES IN OPEN WIDTH 双幅卷杆:DOUBLE FOLDED ON ROLLS双幅折板:DOUBLE FOLDED ON BOARD腰封:PAPER TAPES纸管:TUBE吊牌:LABLE/HANG TAG唛头:SHIPPING MARK船样:SHIPPING SAMPLE塑料袋:POLY BAG匹长:ROLL LENGTH拼匹:ROLL WITH SEWING/ROLL WITH JOIN 拼箱:LCL整箱:FCL出口包装:EXPORT PACKING服装术语——麻纺原料产品名词术语苎麻ramie荨麻科苎麻属苎麻植物、韧皮、纤维的统称.生苎麻(原麻 raw ramie从苎麻茎上剥下,并经刮制的韧皮.水麻生苎麻脱胶过程中,末经给油的纤维.亚麻flax亚麻科亚麻属亚麻植物、韧皮、纤维的统称(包括油用亚麻.黄麻jute椴树科黄麻属黄麻(圆果种植物和长蒴黄麻(长果种植物、韧皮、纤维的统称. 洋麻(槿麻 Kenaf, Ambari hemp锦葵科木槿属洋麻植物、韧皮、纤维的统称(有关名词实语与黄麻相同.生黄麻从麻茎上剥下,末经脱胶处理的黄麻韧皮.熟黄麻(精洗麻 raw jute生黄麻经脱胶处理所得的纤维.坌麻bach pat由于疏等原因,收剥过早,纤维成熟度差的黄麻.枯黄麻从枯死的黄麻茎上剥下的生黄麻.大麻hemp大麻科大麻属大麻植物、韧皮、纤维的统称.茼麻(青麻、芙蓉麻、天津麻 abutilon锦葵科芙蓉属茼麻植物、韧皮、纤维的统称.剑麻(西沙尔麻 sisal龙舌兰科龙舌兰属剑麻植物及其叶鞘纤维的统称.蕉麻(马尼拉麻 abaca,manila hemp芭蕉科芭蕉属蕉麻植物及其叶鞘纤维的统称.服装术语——针织产品名词术语针织物纬编针织物weft-knitted fabric用纬编针织机编织,将纱线由纬向喂入针织机的工作针上,使纱线顺序地弯曲成圈,并相互穿套而形成的圆筒形或平幅形针织物.经编针织物warp-knitted fabric用经编针织机编织,采用一组或几组经向平行排列的纱线,在经编机的所有工作针上同时进行成圈而形成的平幅形或圆筒形针织物.单面针织物single knit,single jersey在针织机上以单针筒或单针床织成的针织物双面针织秒double knit,double jersey双针筒或双针床针织机织成的针织物纬平针织物plain knit采用纬编平针组织编织的针织物罗纹针织物rib knit采用罗纹组织编织的针织物双罗纹针织物interlock fabric采用双罗纹组织编织的针织物双反面针织物–purl fabric, links-links fabric采用双反面组织的针织物集圈针织物tuck fabric采用集圈组织的针织物起绒针织物rasied knit,knitted fleece表面起绒,具有绒层或毛茸外观的针织物长毛绒针织物high pile knitted fabric纤维毛条或毛纱与地纱一起喂入编织成圈,表面呈现较长绒毛的针织物毛圈针织物terry knitted fabric由地组织纱线圈和拉长的沉降弧延展线或衬垫纱线等在表面形成毛圈的针织物提花针织物jacquard knitted fabric采用提花组组织织成的带有浮线的针织物丝盖棉针织物用添纱集圈等组织编织的一种两面由不同纤维的纱线构成的针织物.常以涤纶丝构成其正面,由棉纱构成其反面.厚绒heavy fleece用中号、细号纱各一根,或两根中号纱作面子纱,两根粗号纱作衬垫纱编织的起绒针织物.薄绒light fleece用中号、细号纱各一根, 或两根中号纱作面子纱,一根粗号纱作衬垫纱编织的起绒针织物.细绒fine fleece用两根细号纱作面子纱,一根中号或粗号作衬垫纱编织的起绒针织物服装术语——纱线纱线Yarns棉及其混纺纱线Cotton, Cotton Mixed & Blended Yarns 棉纱Cotton Yarns涤棉纱T/C & CVC Yarns粘棉纱Cotton/Rayon Yarns棉晴纱Cotton/Acrylic Yarns棉/氨纶包芯纱Cotton/Spandex Yarns棉与其他混纺纱Cotton/Others Blended Yarns毛纺系列纱线Woollen Yarn Series羊绒纱Cashmere Yarn Series全羊毛纱Wool (100% Yarns毛晴纱Wool/Acrylic Yarns毛涤纱Wool/Polyester Yarns毛粘纱Wool/Viscose Yarns毛/丝纱Wool/Silk Yarnss羊毛/其他Wool/Other Yarns兔毛纱Angora Yarns雪兰毛线Shetland Yarns牦牛毛纱Yak Hair Yarns羊仔毛纱Lambswool Yarns真丝系列纱线Silk Yarn Series白厂丝White Steam Filature Yarns双宫丝Duppion Silk Yarns柞蚕丝Tussah Silk Yarns绢丝Spun Silk Yarns柞绢丝Tussah Spun Silk Yarns柚丝Silk Noil Yarns真丝线Silk Threads丝棉混纺纱Silk/Cotton Blended Yarns麻纺系列纱线Halm Yarn Series大麻系列纱线Hemp Yarn Series亚麻系列纱线Linen Yarn Series苎麻系列纱线Ramie Yarn Series黄麻系列纱线Jute Yarn Series其他植物纤维纱线Other Plant Yarns剑麻系列纱线Sisal Yarn Series人造纤维和合成纱线Manmade & Synthetic Yarns 晴纶纱Acrylic Yarns 晴纶仿羊绒Cashmere-like Acrylic Yarns仿兔毛Sunday Angora Yarns锦纶丝Polyamide Yarns涤纶纱/丝Polyester Yarns人造棉纱Spun Rayon Yarns天丝纱Tencel Yarns弹力纱线Elastane Yarns涤粘纱T/R (Polyester/Rayon Yarns人棉混纺纱Spun Rayon Blended Yarns其他化纤纱线Other Synthetic Yarns人造长丝或线Viscose Filament Yarns or Threads花色纱线雪尼尔纱Chenille Yarns大肚纱Big-belly Yarns带子纱Tape Yarns马海毛纱Mohair Yarns羽毛纱Feather Yarns蜈蚣纱Centipede like Yarns项链纱Neckline Yarns辫子纱Pigtail Yarns梯子纱Ladder Yarns圈圈纱Loop YarnsTT 纱TT Yarns结子纱Knot Yarns乒乓纱Ping-Pong Yarns其它花色纱线Other Fancy Yarns金属纱线Metal Yarns绳、索及缆Twine, Cordage, Rope & Cables 服装术语——度尺部位词汇BUST WIDTH 胸阔FRONT CROSS 前胸阔BACK CROSS 后胸阔WAIST WIDTH 腰阔BOTTOM 脚阔SHOULDER ACROSS 肩阔SMALL SHOULDER 小肩长C/B LENGTH 后中长SLEEVE LENGTH 袖长BICEP 袖肥,袖髀宽SLEEVE OPENING 袖口阔CUFF WIDTH 介英宽ARMHOLE(CURVE/STRAIGHT夹圈(弯度/直度 NECK WIDTH 颈阔SLEEVE CROWN HEIGHT 袖山高UPPER ARM WIDTH 袖脾阔COLLAR LENGTH 领长FRONT NECK DROP 前领深UPPER COLLAR HEIGHT 上级领高COLLAR BAND HEIGHT 下级领高COLLAR POINT 领尖长COLLAR POINT SPREAD 领尖距PLACKET WIDTH 前筒宽POCKET HIGH POINT 袋尖高(袋最长的高度WAIST(RELAX腰围(松度WAIST(STRETCHED腰围(拉度HIP 坐围HIGH HIP 上坐围THIGH(UNDER CROTCH脾围LEG OPENING 裤脚围FRONT RISE 前浪BACK RISE 后浪INSEAM LENGTH 内长OUTSEAM LENGTH 外长WAISTBAND 裤头高KNEE 膝围SWEEP(HALF裙阔(裙底半度FLY WIDTH 钮牌阔FLY LENGTH 钮牌长BELTLOOP 裤耳服装术语——口袋专题bellows pocket 风琴袋curved pkt 弯袋coin pkt 表袋double jetted pkt 双唇袋hexagonal pkt 六角袋―J‖ s hape pkt J形袋patch pkt 明贴袋peach shape pkt 杏形袋ruler shape pkt 曲尺袋,鸡翼袋round cornered pkt 圆角袋single jetted pkt 单唇袋slant pkt 斜插袋square shape pkt 方角袋straight pkt 直插袋seam pkt 骨口袋,缝骨袋three points pkt 三尖袋welt pkt 西装袋zipper pkt 拉链袋注:pkt.=pocket服装专业名词国粤英语对照粤语国语ENGLISH及骨锁边OVERLOCK纳膊缝合小肩JOIN THE SMALL SHOULDER埋夹缝合袖底骨和侧缝JOIN THE UNDER ARM SEAM AND SIDE SEAM 夹圈袖窿ARMHOLE担干过肩YOKE介英,鸡英袖口,袖级CUFF侧骨侧缝,摆缝SIDE SEAM纳膊位肩缝SHOULDER SEAM前浪前档FRONT RISE后浪后档BACK RISE坐围臀围HIP脾围横档THIGH耳仔裤带袢BELTLOOP钮门扣眼BUTTON HOLE钮牌门袢FLY布封幅宽FABRIC WIDTH朴衬布INTERLINING急钮四合扣SNAP FAS TENER膊头棉,肩棉肩垫,垫肩SHOULDER PAD魔术贴尼龙搭扣VELCRO挂卡吊牌HANGTAG平车平缝机NORMAL SEWING MACHINE拉冚车绷缝机COVERING STITCH MACHINE及骨车包缝机,锁边机OVERLOCK MACHINE拉筒车门襟机PLACKET MACHINE挑脚车暗缝机BLIND STITCHING MACHINE辘脚车脚口卷边机BOTTOM HEMMING MACHINE 啤机冲压裁剪机DIE CUTTING MACHINE唛架排料图MAKER排唛排料LAYOUT车花绣花EMBROIDERY拉裤头上裤头WAISTBANDING打枣打结BARTACK钮子钮门搭位BUTTON STAND插竹领插角片COLLAR STAY唛头商标LABEL乌蝇扣钩棒扣EYES & HOOKS纵纹斜纹BIOS CUT返针回针BACK STITCH间棉绗缝QUILT针步线步STITCHES止口,子口缝头SEAM ALLOWANCE办样板SAMPLE梭仔梭芯BOBBIN狗牙车牙FEED DOG靴压脚PRESSER FOOT蝴蝶车缝附件SEWING MACHINE ATTACHMENTS 烫斗熨斗IRON 服装术语——颜色丈青:navy玉:jade银:silver沙子色:sand青铜色:gunmetal浅橄榄灰色:stone米灰色:D/melange 米黄色:cream咖啡色:coffee酒红色:wine金:gold黄色:yellow黑色:black橄榄色:olive粉红色:pink古铜色:anti gold 自然色:natural桃色:peach水仙黄:daffod珊瑚色:coral青铜色:gilt蓝灰色:pewter湖水蓝:turq红古铜色:bronze 粉玫色:fuchsia淡黄绿色:pistac彩虹色:rainbow憬红色:shocking red粉红色:pinksalmon pink 橙红色baby pink 浅粉红色shocking pink 鲜粉红色brown 褐色, 茶色beige 灰褐色chocolate 红褐色, 赭石色sandy beige 浅褐色camel 驼色amber 琥珀色khaki 卡其色maroon 褐红色green 绿色moss green 苔绿色emerald green 鲜绿色olive green 橄榄绿blue 蓝色turquoise blue 土耳其玉色cobalt blue 钴蓝色, 艳蓝色navy blue 藏青色, 深蓝色, 天蓝色aquamarine blue 蓝绿色red 红色scarlet 绯红, 猩红mauve 紫红wine red 葡萄酒红purple, violet 紫色lavender 淡紫色lilac 浅紫色antique violet 古紫色pansy 紫罗兰色white 白色off-white 灰白色ivory 象牙色snowy white 雪白色oyster white 乳白色gray 灰色charcoal gray 炭灰色smoky gray 烟灰色misty gray 雾灰色BABY BLUE 浅蓝TIGERLILY 橘红STORM 雾灰WINTER SKY 天蓝VAPOR BLUE 烟灰OYSTER GREY 米灰JESTER RED 大红CANDY PINK 粉红JAFFA ORANGE 橘黄pale taupe 浅灰褐色cracker khaki 杏色tulip yellow 黄色thirsty blue 浅蓝色green mint 浅绿banana cream 香蕉黄Acid blue 湖色Amber 琥珀色Amethyst 紫水晶色Antique 古紫色Apple green 苹果绿Apricot 杏黄Aqua green 水绿色Aquamarine blue 蓝绿色Auburn 赤褐色Azure green 碧绿色Bay 枣色Baby blue 浅蓝色Baby pink 浅粉红色Beige 灰棕色Benzo blue 靛蓝色Black 黑色Blue 蓝色Blue green 竹青色Blue grey 蓝灰色Bluish white 青白色Bluish yellow 青黄色Brick red 青莲色Bronze black 射光黑色Bronze blue 射光绀蓝Bronze violet 射光紫蓝Brown 棕色Buff 浅黄色Calamine blue 淡蓝色Caramel 酱色Cardinal 深红色Carmine 紫红色Carnation 肉色Celeste 天青色Chalky 白垩Charcoal grey 炭灰色Cherry 樱桃红Chestnut 栗褐色Citrine 柠檬黄Cobalt blue 钴蓝色Cochineal 胭脂红Coco 黄棕色Contrast colot 衬色Copper red 铜色Coral 珊瑚色Cream 米色Crystal cream 奶油白Dark green 深绿色Dark grey 深灰色Delicate color 娇色Deep green 墨绿色Deep yellow 深黄色Dun 焦茶色Emerald green 鲜绿色Florid 鲜红French rose 法国红Garnet 暗红Geranium 原色红Gold 金Golden yellow 金黄色Green 绿色Grey 灰Hazel 赤褐色Hepatic 猪肝色Hyacinth 紫蓝色Indigo 靛青色Ivory 象牙黄Jade green 翠绿色Lavender 藕色Lias 淡紫色Light grey 淡灰色Lyons blue 蓝紫色Mandarin blue 深蓝Marine green 海水绿Maroon 枣红;茶色Medium blue 中蓝色Medium yellow 中黄色Milk white 乳白色Ming blue 藏青色Moss green 苔绿色Navy blue 海水蓝Nimbus grey 雨云灰色Ocher 赭色Off white 灰白Olive 橄榄色Olive green 草绿色;橄榄绿Opaque 不透明Orange 橘黄色Oriental ted 大红Peach 桃红色Peacock blue 孔雀蓝Pea green 豆绿色Pied 杂色Pink 粉红色Pitch black 深黑色Protective color 保护色Prussian blue 普鲁士蓝Purple 紫色Purple bronze 紫铜色Red 红Reddish 淡红Reddish yellow 浓黄Rich color 浓色Rose 玫瑰红Royal blue 宝蓝色Rust brown 鼻烟色Sallow 苍黄Salmon 橙红Sandy 淡茶色Sap green 暗绿色Scarlet 绯色Sepia 棕黑色Shade 颜色深浅Shocking pink 鲜粉红Silver 银色Sky blue 天蓝Slate grey 鼠灰色Smoky grey 雾灰色Snow white 雪白Soft color 嫩色Sorrel 红棕色Tan 浅棕色Tapestry red 咖啡色Tawny 黄褐色Translucent 半透明Transparent 透明Turquoise 蓝绿色Turquoise blue 土耳其玉色Ultramarine 青蓝色Ultramarine blue 群青Umber 浓茶色Verdigris color 铜绿色Vermilion 桔红;朱砂红Violet 紫罗兰色White 白色Wine red 葡萄红Yellow 黄色York yellow 蛋黄色amber 琥珀色antique violet 古紫色antiquewhite 古董白aqua 浅绿色aquamarine 碧绿色azure 天蓝色baby pink 浅粉红色beige 米色bisque 橘黄色black 黑色blanchedalmond 白杏色blue 蓝色blueviolet 紫罗兰色brown 棕色burlywood 实木色cadetblue 军蓝色camel 驼色charcoal gray 炭灰色chartreuse 黄绿色chocolate 巧克力色cobalt blue 艳蓝色coral 珊瑚色cornflowerblue 菊蓝色cornsilk 米绸色crimson 暗深红色cyan 青色magenta 洋红色maroon 栗色mauve 紫红mediumaquamarine 间绿色mediumblue 间蓝色mediumorchid 间紫色mediumpurple 间紫色mediumseagreen 间海蓝色mediumslateblue 间暗蓝色mediumspringgreen 间春绿色mediumturquoise 间绿宝石色mediumvioletred 间紫罗兰色midnightblue 中灰蓝色mintcream 薄荷色misty gray 雾灰色mistyrose 浅玫瑰色moccasin 鹿皮色moss green 苔绿色navajowhite 纳瓦白navy 藏青off-white 灰白oldlace 老花色olive 橄榄色olivedrab 深绿褐色 orange 橙色 orangered 橙红色 orchid 淡紫色 oyster white 乳白色 palegoldenrod 苍麒麟色 palegreen 苍绿色 paleturquoise 苍绿色 palevioletred 苍紫罗蓝色 pansy 紫罗兰色 papayawhip 番木色 peachpuff 桃色 peru 秘鲁色 pink 粉红plum 杨李色 powderblue 粉蓝色 purple 紫色 red 红色 rosybrown 褐玫瑰红 royalblue 宝蓝色 rubine 宝石红 saddlebrown 重褐色 salmon 鲜肉色 salmon pink 橙红色 sandy beige 浅褐色 sandybrown 沙褐色 sapphire 宝石蓝 scarlet 猩红色 seagreen 海绿色seashell 海贝色 shocking pink 鲜粉红色 sienna 赭色 silver 银白色 skyblue 天蓝色slateblue 石蓝色 slategray 灰石色 smoky gray 烟灰色 snow 雪白色 springgreen 春绿色steelblue 钢蓝色 stone 石色 tan 茶色teal 水鸭色 thistle 蓟色 tomato 番茄色 turquoise 青绿色 turquoise blue 翠蓝色violet 紫色 wheat 浅黄色 white 白色 whitesmoke 烟白色 winered 葡萄酒红 yellow 黄色 yellowgreen 黄绿色 darkblue 暗蓝色 darkcyan 暗青色 darkgoldenrod 暗金黄色darkgray 暗灰色 darkgreen 暗绿色 darkkhaki 暗卡其色 darkmagenta 暗洋红色darkolivegreen 暗橄榄绿色 darkorange 暗桔色 darkorchid 暗紫色 darkred 暗红色darksalmon 暗肉色 darkseagreen 暗海蓝色 darkslateblue 暗灰蓝色 darkslategray 墨绿色 darkturquoise 暗宝石绿 darkviolet 暗紫色 deeppink 深粉色 deepskyblue 深天蓝色dimgray 暗灰色 dodgerblue 闪蓝色 emerald green 艳绿色 firebrick 火砖色 floralwhite 花白色 forestgreen 森林绿 fuchsia 紫红色 gainsboro 淡灰色 ghostwhite 幽灵白 gold 金黄色 goldenrod 金麒麟色gray 灰色 green 绿色 greenyellow 黄绿色 honeydew 蜜色 hotpink 艳粉色indianred 印第安红 indigo 靛蓝色 ivory 象牙色 khaki 卡其色 lavender 淡紫色lavenderblush 淡紫红 lawngreen 草绿色 lemonchiffon 柠檬绸色 lightblue 浅蓝色lightcoral 浅珊瑚色 lightcyan 浅青色 lightgoldenrodyellow 浅金黄色 lightgreen 浅绿色lightgrey 浅灰色 lightpink 浅粉色 lightsalmon 浅肉色 lightseagreen 浅海蓝色lightskyblue 浅天蓝色 lightslategray 浅蓝灰色 lightsteelblue 浅钢蓝色 lightyellow 浅黄色 lilac 浅紫色 lime 酸橙色 limegreen 橙绿色 linen 亚麻色。

keil软件 C 编译器错误信息中文翻译

keil软件 C 编译器错误信息中文翻译
语句后缺少";"
Structure or union syntax error
结构体或联合体语法错误
Structure size too large
结构体尺寸太大
Sub scripting missing ]
下标缺少右方括号
Superfluous & with function or
allowed
不允许转换近指针
Could not find file ``xxx``
找不到XXX 文件
Declaration missing ;
说明缺少";"
Declaration syntax error
说明中出现语法错误
Default outside of switch
Default 出现在switch 语句之外
array
函数或数组中有多余的"&"
Suspicious pointer conversion
可疑的指针转换
Symbol limit exceeded
符号超限
Too few parameters in call
函数调用时的实参少于函数的
参数不
Too many default cases
编译预处理ifdef 有语法错
Bit field too large
位字段太长
Call of non-function
调用未定义的函数
Call to function with no
prototype
调用函数时没有函数的说明
Cannot modify a const object

中文翻译 Training and Developing Employees

中文翻译  Training and Developing Employees

Chapter 5 Training and Developing Employees 员工培训和发展Why the Training Business Is Booming为什么培训生意兴隆The Five-Step Training and Development Process五个步骤培训和发展过程Why Orientation Is Important为什么岗前培训非常重要Using Orientation to Reduce Stress用岗前培训减少压力On-the-Job Training在职培训Training refers to the methods used to give new or present employees the skills they need to perform their jobs.培训是指给新的或者现有员工完成他们工作的方法 Training might mean showing a new Web designer the intricacies of your site, a new salesperson how to sell your firm’s product, or a new supervisor how to interview and evaluate employees. Training is a hallmark of good management, and a task managers overlook at their peril. Having high-potential employees doesn’t guarantee they’ll succeed. Instead, they have to know what you want them to do and how you want them to do it. If they don’t, they’ll do the jobs their way, not yours. Or they will improvise, or, worse, do nothing productive at all. Good training is vital. 可能意味着显示一个新的Web设计师,您的网站的复杂性,一个新的销售人员如何销售贵公司的产品,或一个新的主管如何面试和评估员工。

2020职称英语词汇C开头:character的中文翻译

2020职称英语词汇C开头:character的中文翻译

2020职称英语词汇C开头:character的中文翻译名词1.[C,U](人的)品质;性格;(事物的)性质;特性2.不可数名词:好品质;骨气;特色3.可数名词:(小说、戏剧等的)人物,角色4.可数名词:名声,名誉5.可数名词:【口】人;滑稽的人;怪人6.可数名词:(书写或印刷)符号;(汉)字;字体7.不可数名词:【书】身份,地位,资格v. 及物动词:1.描述2.使具有特性词形变化:形容词:characterless;时态:charactered,charactering,characters。

同义词:fictional character,fictitious character;part,persona,role,theatrical role;reference reference;fiber,fibre;eccentric,case,type;grapheme,graphic symbol;lineament,quality。

单词分析:这些名词均有“字母”之意。

alphabet:指整个字母系统或一种语言的字母表,不表单个字母。

letter:指单个的字母。

character:通常指汉语的方块字,也指字符。

script:指书写或印刷的字母。

英语句子Bell character响铃字符Have an insight into character有洞察力To change in form or character; alter.变更在形式或特征上改变,修改Elevated in character; exalted.品德高尚的;崇高的A peculiar or eccentric person; a character.一个奇特或怪癖的人;怪人。

英语解释engrave or inscribe characters onan imaginary person represented in a work of fiction (play or film or story)an actor's portrayal of someone in a play相似短语transmissioncontrol character 【计】传输控制字符character deletion character 删除字符的字符,删去字符,删去字符的字符character-deletion character 字符删除号在终端机输入的一行中的一种字符,规定该字符本身与它的前一个字符从该行中删去。

thatgirl歌词中文翻译

thatgirl歌词中文翻译

thatgirl歌词中文翻译《That Girl》歌词中文翻译
那女孩
在我们之间没有太多说的话
她和我都在争执中
即使我不是她计划的一部分
她在我心中留下了印记
而当她离开时,我总是希望她会留下
但她只是孤独地走在路上
所以我跟着她,尽我所能
直到她感受到我的虚荣心
她是那个从容不迫的那一个
犹如踌躇满志的领导者
哪怕她早已感觉到了我
她才不会瞧得起我
(C)她是那美好的疑问她一直出现在我的梦里
我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩
那女孩噢噢
她总是对我如此充满敌意而我却还是无尽地接近
我真的不明白为什么
她总是我心头的女孩
是不是她感觉到了我的见解我不得而知
但是这个距离让我心神不宁
她是那个从容不迫的那一个犹如踌躇满志的领导者
哪怕她早已感觉到了我
她才不会瞧得起我
(C)她是那美好的疑问她一直出现在我的梦里
我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩
(C)她是那美好的疑问她一直出现在我的梦里
我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩
她是那个从容不迫的那一个犹如踌躇满志的领导者
哪怕她早已感觉到了我
她才不会瞧得起我
(C)她是那美好的疑问她一直出现在我的梦里
我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩
(C)她是那美好的疑问她一直出现在我的梦里我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩
(C)她是那美好的疑问她一直出现在我的梦里我知道她的爱是很难得的但我不愿放弃
她就是那个特别的女孩。

experience的中文翻译

experience的中文翻译

experience 名词n. 1. 经验,体验[U][(+of/in)]2. 经历,阅历[C]及物动词vt. 1. ex经历;体验2. 感受;遭受flood 名词n. [C]1. 洪水,水灾[P1]2. 一大批,大量[(+of)]3. 涨潮,满潮及物动词vt. 1. 淹没;使泛滥2. 涌到,涌进3. 充满,充斥[(+with)]不及物动词vi. 1. 为水淹没;溢出2. (大量地)涌cause名词n. 1. 原因;起因[C][U][(+of)]2. 理由,根据;动机[U][(+for)][+to-v]3. 目标,理想,事业[C]]及物动词vt. 1. 导致,使发生,引起[occur 不及物动词vi. 1. 发生2. 出现;存在;被发现[Q]3. 被想起,被想到,浮现[(+to)]wave名词n. [C]1. 波,波浪2. (手之)挥动,挥手示意3. 浪潮;(情绪的)高涨;(活动等的)高潮[(+of)]4. 【物】波;振动5. (头发的)卷曲,烫发及物动词vt. 1. 对...挥(手、旗等)2. 向...挥手示意;挥手表示(致敬、告别等)[O][O1]3. 使成波形;卷(发),烫(发)不及物动词vi. 1. 挥手(或旗等)示意2. 起伏;摇动;飘扬3. (头发等)呈波形;卷曲ruin名词n. 1. 毁灭;崩溃;毁坏[U]2. (建筑物的)断垣残壁[C]3. 废墟;遗迹[P]4. 倾家荡产;丧失地位;堕落[U]5. 祸因[the S]及物动词vt. 1. 使毁灭;毁坏2. 使成废墟3. 使破产;诱奸不及物动词vi. 1. 毁灭,毁坏2. 变成废墟3. 破产;堕落possibility名词n. 1. 可能性[U][S1][(+of)][+that]2. 可能的事,可能发生的事[C]3. 发展前途,潜在价值[P]4. 【口】合适的人(或事物)[C][(+for)]hopefully副词ad. 1. 怀希望地;抱希望地2. (多用来修饰全句)但愿active形容词a. 1. 活跃的;活泼的2. 积极的;勤奋的3. 在活动中的;在进展中的4. 现役的5. 现行的,有效的6. 【语】主动的[Z]名词n. 1. 积极分子[Cdamage名词n. 1. 损害;损失[U][(+to)]2. 赔偿金[P]3. 【口】费用[the S]及物动词vt. 1. 损害,毁坏strength名词n. 1. 力,力量,力气;实力;效力[U]2. 强度;(酒等的)浓度[U][C]3. 长处[C]4. 人数;兵力[U]cycle名词n. [C]1. 周期;循环;一转2. 整个系列;整个过程3. (表现同一主题等的)一组小说(或戏剧,诗歌等)4. 一段长时期,时代5. 脚踏车;摩托车不及物动词vi. 1. 循环,轮转2. 骑脚踏车(或摩托车)及物动词vt. 1. 使循环,使轮转atmosphere名词n. 1. 大气[the S]2. (某特定场所的)空气[S]3. 气氛[S1]4. 情趣;魅力[U]5. (标准)气压[C]concerned形容词a. 1. 挂虑的,担心的,不安的[(+about/for/over)]2. 有关的;参与的[(+in)]3. 关心的,感兴趣的[(+about/for)][+to-v][+that]major形容词a. 1. 较大的;较多的2. 主要的,重要的;一流的[B]3. 主修的[B]4. 成年的,达到法定年龄的名词n. [C]1成年人,已到法定年龄者3. (大学中的)主修科目4. (大学专业的)主修学生不及物动词vi. 1. 主修[(+in)]urgent形容词a. 1. 紧急的,急迫的2. 催逼的;坚持要求的flight flight1名词n. 1. 飞翔,飞行[C][U]2. (飞机的)班次;(某班次的)飞机;搭机旅行;飞机的航程[C]3. (飞鸟的)群;(飞机的)队[C][(+of)]4. 楼梯(或阶梯)的一段[C]5. (时间的)飞逝;(云等的)快速移动[U]6. (才智,想像力等的)焕发,奔放[C][(+of)]不及物动词vi. 1. (鸟等)成群飞行;(候鸟)迁徙及物动词vt. 1. 射击(飞禽)2. 使(鸟)惊起congratulation名词n. 1. 祝贺,庆贺[U][P][(+on/upon)]2. 祝贺词[P][(+on/upon)]aboard副词ad. 1. 在船(或飞机,车)上;上船(或飞机,车)2. 并排在边上介词prep. 1. 在(船,飞机,车)上;进入,上(船,飞机,车)welcome感叹词int. 1. 欢迎(光临)及物动词vt. 1. 欢迎2. 欣然接受形容词a. 1. 受欢迎的2. 令人愉快的3. 被允许的,可随意使用的名词n. 1. 欢迎,款待;欢迎辞[C]achievement名词n. 1. 达成;完成[U]2. 成就,成绩[C]replace及物动词vt. 1. 把...放回(原处)2. 取代;以...代替[(+with/by)]3. 归还;偿还delighted形容词a. 1. 高兴的,快乐的[(+at/with/by)][+to-v][+(that)]part名词n. 1. 一部分,部分[C][U][(+of)]2. 部,篇;分册,分辑;节,段;集[C]3. 部件,零件[C]4.等分之一,...分之一[C]5. 本分,职责,作用[S]6. (争论、交易等中的)一方[U]7. 角色;台词和动作[C [C]及物动词vt. 1. 使分开,使分离[(+from)]2. 使分成几部分,使分裂3. 将(头发)分线不及物动词vi. 1. 告别,分手[(+as)]2. 分成几部分;断裂3. 【口】出钱;付款副词ad. 1. 部分地,多少,有些形容词 a. 1. 部分的,局部的part-belief名词n. 1. 相信;信任,信赖[U][S][(+in)][+(that)]2. 信念,看法[U][S][+(that)]3. 信仰[C][(+in)]4. 信条,教义[C]evidence名词n. 1. 证据;证词;证人;物证[U][(+of/for)][+that][+to-v]2. 迹象[U][C][(+of)][+(that)]3. 清楚,明显[U]及物动词vt. 1. 证明2. 显示,表明review及物动词vt. 1. 再检查,重新探讨;复审2. 批评,评论3. 回顾,回忆4. 检阅5. 复习,温习不及物动词vi. 1. 写评论,写书评2. 复习功课,温习功课名词n. 1. 再检查;复审[C][U]2.批评,评论[U][C]3. 评论杂志(文章)[C]4. 阅兵[C]5. 复习,温习[U][C]6. 时事讽刺剧;轻松歌剧[C][U]found。

中文翻译The Cross-Section of Expected Stock Returns

中文翻译The Cross-Section of Expected Stock Returns

The Cross-Section of Expected Stock ReturnsEUGENE F. FAMA and KENNETH R. FRENCH (1992) 摘要:结合两个简单的衡量变量:规模和账面对市价比,获得与市场β、规模、财务杠杆、账面对市价比、收益价格比有关的股票平均回报率横截面变动的关系。

而且,当检验中考虑到β的变动与规模无关时,即使β是唯一解释变量,市场β跟股票平均回报率间的关系是无关的。

Sharpe(1964), Linter(1965), 和 Black(1972)所提出的资产定价模型长期被学术界及实务界用来探讨平均回报率与风险的关系。

这个模型核心预测是财富投资的市场组合是马科维茨提出的均值-方差有效。

效率市场投资组合意味着:(a)证券的预期回报率与市场β(一个证券收益对市场收益的回归斜率)是正的线性函数关系。

(b)市场βs有能力解释预期横截面回报率。

实证上的发现有许多与Sharpe-Lintner-Black(SLB)模型相矛盾的地方。

最突出的是Banz(1981)的规模效应:在给定市场βs下预期股票回报率的横截面,加入市值ME(股票价格乘以流通在外股数)这个解释变量,结果显示在给定他们的β估计下,低市值股票的平均回报率太高;高市值股票的平均回报率则太低。

另一个有关SLB模型的矛盾则是Bhandari(1988)所提出的财务杠杆与平均回报率间的正相关。

财务杠杆与风险及回报率相关看起来似乎合理,但在SLB模型下,财务杠杆风险应已包含于市场β中。

然而Bhandari发现财务杠杆能协助解释包含规模(ME)和β的平均股票回报率的横截面变动。

Stattman(1980), Rosenberg, Reid , and Lanstein (1985)发现美国股票的平均回报率与普通股账面价值(BE)市值(ME)比有正相关。

Chan, Hamao, and Lakonishok(1991)发现账面对市价比(BE/ME)对于解释日本股票的横截面平均回报率也扮演很重要的角色。

sectionc翻译为中文

sectionc翻译为中文

我的家这是我的家。

在院子中间有一个小花园。

而且花园里有许多美丽的花,但是没有树。

在院子后面有一栋漂亮的房子。

房子里有三个卧室,一个大客厅和一个书房。

我喜欢在书房里玩电脑。

房子旁边有一棵苹果树,一些鸟正在树上唱歌。

院子左边有一个厨房和餐厅。

我们的浴室在院子的右边。

你看见有一个小车在浴室旁边么?那是我父亲的。

我非常爱我的家。

1、section意思是:部分;部门;部件;散件;节;款项;段。

切开;切断;做(动物或植物组织)切片;(依法令精神病人)强制入院治疗。

2、section的读音3、第三人称单数:sections。

4、复数:sections。

5、现在分词sectioning。

6、过去式:sectioned。

7、过去分词:sectioned。

UNIT 6 Topic 2How about exploring the Ming Tombs.让我们去考察十三陵吧,怎么样? P33-Section A 1a Hello! I'd like to speak to Michael. 你好!我想找迈克尔接电话.This is Michael speaking. 我是迈克尔.Oh, Darren! How are you? 噢,是达伦!你好吗?Fine. Glad to receive your postcard. 很好.很高兴收到你的明信片. While you were enjoying your trip, I was busy preparing for my exams. 你在愉快地游玩时,我正忙着准备考试呢.But now I'm on vacation. 不过现在是假期了.Would you like to come to China for your vacation? 你想来中国度假吗? You bet! And what shall we do? 当然!我们去干些什么呢?Why not explore Beijing on our bicycles? It would be great fun. 为什么不骑自行车去考察北京呢?那会很有趣.Good idea! See you. 好主意!再见.(Forty minutes later, at Kangkang's) (四十分钟后,在康康家)Hey, Kangkang. Darren, my friend from San Francisco, is coming to visit me.嘿,康康.我旧金山的朋友达伦要来拜访我.When he arrives, I'd like you to meet him. 等他到了,我想让你见见他. Great! I'm looking forward to meeting him. 太好了!我正盼着与他见面呢.Before he comes, would you help me making a plan to explore Beijing?在他来之前,你能帮我制定一个考察北京的计划吗?Yes, of course. How about exploring the Ming Tombs? 是的,当然.考察十三陵怎么样?That would be very interesting. 那一定很有趣.P35-Section B 1a Hello, Kangkang. Could you tell me something about the Ming Tombs?你好,康康.你能告诉我一些关于十三陵的事吗?Sure. They are at the foot of the Tianshou Mountains, in the northwest of Beijing.当然.它们在天寿山脚下,位于北京西北部.They must be great. 它们一定很壮观.Yeah. The Tombs spread over an area of 40 square kilometers. 是的.十三陵占地四十多平方公里.The Stone Arch marks the beginning of the Sacred Way to the Tombs. 大石拱门标志着通往陵墓的神道的开端.On both sides of the Way, there are some stone animals and stone officials. 在路的两边,有些石头动物和石头官员.In the old days, only the emperors could ride horses through it. 在过去,只有皇帝可以骑马通过此门.I see. Did most emperors start to build their tombs when they became emperors?我明白了.大多数皇帝在他们当皇帝时就开始建他们的陵墓吗?Yes. They surveyed the area to make sure their tombs faced south and had mountains behind them.是的.他们仔细勘查了整个区域,确保这些陵墓是坐北朝南,而且背靠群山.That's interesting! By the way, how far is it from here to the Ming Tombs?那太有趣了!顺便问一下,十三陵离这儿有多远?It's about two and a half hours by bike. 骑自行车大约两个半小时. OK, let's go and explore them. 好的,咱们去考察考察吧.P37-1a.Read and understand After they rode their bikes for two hours and a half, Kangkang, Michael and Darren arrived at the Ming Tombs. 康康,迈克尔和达伦骑了2个半小时车后,到达了十三陵.The parking lot was full of buses, cars, taxis and bicycles, so they had to look for space to park their bikes.停车场里挤满了公交车、汽车、出租车和自行车,所以他们只有找一块空地停放自行车.After they parked their bikes, they walked through the passage into Dingling and were surprised at the wonders.停放好自行车之后,他们穿过通道走进定陵并对那里的奇观感到很惊讶.Darren took out his camera and wanted to take some pictures, 达伦拿出相机,想要拍照,but Kangkang stopped him and said, "No photos here." 但是康康阻止了他:“这儿不许拍照.”As they were exploring happily, the crowd of people became larger and larger.正当他们兴致勃勃地考察时,人群更加拥挤了.While the crowd was pushing him in all directions, someone stepped on Darren's toes .当人群从四面八方挤来时,有人踩到了达伦的脚趾头."Ouch! Don't push!" he shouted. “哎唷!别挤啦!”他大声叫嚷道. When Darren finally pushed his way out, he noticed his friends were both out of sight.当他最后(从人群中)挤出来时,发现他的两个朋友都不见了.He was too frightened to know what to do. 达伦很害怕,不知道该怎么办.His heart was beating fast. 他的心跳得很快.Slowly he walked toward a huge rock beside the road and sat there sadly.他慢慢地朝着路边的一块大岩石走去,然后伤心地坐了下来.He didn't raise his head until someone called him. 直到有人喊他的名字他才抬起头.It was Kangkang. "Oh, Darren! There you are! It's great to see you!"原来是康康.“哦,达伦!你在这儿!见到你太好了!”As soon as the three boys saw each other, they all jumped up and down happily.三个男孩一见面,就高兴得跳了起来.P39-Section D Sunday, March 28nd Sunny 星期日,三月二十二日晴It was a fine day today. 今天是个好天气.Darren, Kangkang and I got up early in the morning. 达伦,康康和我一大早就起床了.Then we rode to the Ming Tombs after we checked our bikes and backpacks.在检查了我们的自行车和背包之后我们骑车去了十三陵.After two and a half hours, we arrived at the Great Palace Gate. 两个半小时后,我们到达大宫门.In the old days, even officials had to get off their horses to walk. 在古时候,就是官员也必须下马步行.But now we just paid 30 yuan and rode our bikes along the 7-kilometer Sacred Way.但现在我们只需30元就可以骑自行车穿过7公里长的神道.There are many stone animals along the Way. 沿路有很多石兽.I like them very much, especially the Qilin. 我非常喜欢石兽,尤其是麒麟.It stands for peace in China. 它象征着中国的祥和.After we had lunch, we climbed up the Dragon and Phoenix Gate to take pictures./午饭后,我们爬到龙凤门上拍照.That was a big mistake. 那是一个大错误.A guard came and shouted at us to get off. 一个保安走过来大喊,叫我们下来.We all felt frightened, so we got on our bikes and rode quickly toward the tombs.我们都感到害怕,所以我们骑上自行车,迅速地向陵墓骑去.While we were having fun exploring, I realized Darren was lost. 当我们兴致勃勃地考察时,我发现达伦不见了.Kangkang and I were very worried. We looked for him here and there everywhere./我和康康非常担心.我们到处找他.We even asked a guard for help. Thank goodness! We found him at last.我们甚至请保安帮忙.谢天谢地!最后我们找到了他.We were so excited and happy when we met again. 当我们又见面时是那样的兴奋和高兴.What a special trip! 多么特殊的一次旅行!P40-2a.Grammar focus Adverbial clauses of timeWhile you were enjoying your trip, I was busy preparing for my exams. 你在愉快地游玩时,我正忙着准备考试.When he arrives, I'd like you to meet him. 当他到了,我想让你见见他. Before he comes, would you help me make a paln to explore Beijing?在他来之前,你能帮我制定一个考察北京的计划吗?As they were exploring happily, the crowd of people became larger and larger.正当他们兴致勃勃地考察时,人群更加拥挤了.He didn't raise his head until someone called him. 直到有人喊他他才抬起头来.As soon as the three boys saw each other, they all jumped up and down happily.三个男孩一见面,就高兴得跳了起来.Then we rode to the Ming Tombs after we checked our bikes and backpacks.在检查了我们的自行车和背包之后我们骑车去了十三陵.eful expressions You bet! 当然了! Great! 太好了!It would be great fun. 那会很有趣. It's in the southeast of China. 它在中国的东南方.How far is it from here to the Ming Tombs? 十三陵离这儿有多远?It's about two and a half hours by bike. 骑自行车大约两个半小时.Don't push! 别挤啦!It's great to see you! 见到你太好了!We couldn't help playing with them. 我们忍不住要和他们一起玩.I am very satisfied with everything in China. 我对中国的一切都很满意. They walked through the passage into Dingling and were surprised at thewonders.他们穿过通道走进定陵并对那里的奇观感到很惊讶.。

RINEX 3.03部分中文翻译注释

RINEX 3.03部分中文翻译注释

空格
A1 :1 个
ASCII 字

19X : 19
个空格
PGM / RUN BY / DATE
Name of program creating current file Name of agency creating current file Date and time of file creation Format: yyyymmdd hhmmss zone zone: 3-4 char. code for time zone. 'UTC ' recommended! 'LCL ' if local time with unknown local time system code
DESCRIPTION
FORMAT
RINEX VERSION / TYPE RINEX 版本/类型
Format version : 3.03 File type: O for Observation Data Satellite System:
G: GPS R: GLONASS E: Galileo J: QZSS C: BDS I: IRNSS S: SBAS payload M: Mixed
Azimuth of the zero-direction of a fixed antenna (degrees, from north)
一个固定天线的起始方位角(度数, 从北)
* ANTENNA: ZERODIR XYZ * ANTENNA: ZERODIR XYZ
Zero-direction of antenna Antenna on vehicle: Unit vector in body-fixed coordinate system Tilted antenna on fixed station: Unit vector in N/E/Up left-handed system

century中文翻译

century中文翻译

英语单词century的中文翻译及其相关知识一、century的中文翻译英文单词century的中文翻译有以下几种:世纪,指从公元纪年开始算起的每一百年为一个世纪,如公元前8世纪,15世纪等。

百年,指一百年的时间长度,如一百多年来,半个世纪等。

(板球)一百分,指在板球运动中打出一百分的得分,如他打出了一个世纪。

二、century的英语用法century是一个名词,可以用作可数名词或不可数名词。

它的复数形式是centuries。

它可以用来表示时间、历史、文化、艺术、科学等方面的概念。

下面是一些例句:The city centre has scarcely changed in over a century. 市中心在一百多年来几乎没有变化。

Rome was founded in the eighth century BC. 罗马建于公元前8世纪。

He's an expert on 15th-century Italian art. 他是研究15世纪意大利艺术的专家。

She scored a century in the first innings. 她在第一局打出了一个世纪。

century还可以用来表示世纪之交的时间点,即一个世纪结束而另一个世纪开始的时刻。

这时可以用the turn of the century这个短语,如:The museum reopened at the turn of the century. 这座博物馆在世纪之交重新开放。

三、century的英语发音century的英语发音有两种变体,分别是英式发音和美式发音。

它们的音标分别是:英式发音:/ˈsen.tʃ ə r.i/美式发音:/ˈsen.tʃ ə r.i/它们的发音规则如下:第一个音节sen重读,发清辅音/s/和鼻音/n/,后接前元音/e/。

第二个音节tʃ发爆破音/t/和擦音/tʃ/,后接中元音/ə/。

第三个音节r发颤音/r/和元音/i/。

C编译器错误信息中文翻译

C编译器错误信息中文翻译

I.Compiling ——compile 编译II.fatal error ——重大错误III.Error executing ——执行错误IV.syntax error ——语法错误1.Expression syntax error ——表达式语法错误2.Declaration syntax error ——声明中出现语法错误3.Compound statement missing{ ——复合语句漏掉"{"4.Illegal character ``x`` ——非法字符x5.undeclared identifier ——未定义的标识符6.redeclaration of ``xxx`` ——重复定义了xxx7.Declaration missing ; ——声明缺少";"8.Cannot open include file: 'iostram.h': No such file or directory ——打不开包含文件'iostram.h':没有这个文件或者路径错误9.Could not find file ``xxx`` ——找不到XXX文件10.missing ';' before identifier 'cout' ——在标识符'cout' 之前缺少';'11.unexpected end of file found ——找不到文件结束12.unresolved external symbol _main ——缺少主函数main13.missing ')' before '{' ——在'{' 之前缺少')'14.Call to function with no prototype ——调用函数时没有声明函数15.Call of non-function ——调用未定义的函数16.Function should return a value ——函数必需返回一个值17.Type mismatch in parameter xxx ——参数xxx类型不匹配18.Do statement must have while ——Do-while语句中缺少while部分19.Argument list syntax error ——参数表语法错误20.Division by zero ——用零作除数21.Array size toolarge ——数组尺寸太大22.Case outside of switch ——漏掉了case 语句23.Misplaced break ——此处不应出现break语句24.Code has no effect ——代码执行不到25.Constant expression required ——要求常量表达式26.Constant out of range in comparison ——在比较中常量超出范围27.writing output file ——写输出文件错误28.Unable to create output file ``xxx`` ——无法建立输出文件xxx 29.Illegal initialization ——非法的初始化30.Illegal use of floating point ——非法的浮点运算31.Illegal use of pointer ——指针使用非法32.Incompatible type conversion ——不相容的类型转换33.Lvalue required ——需要逻辑值0或非0值34.Macro argument syntax error ——宏参数语法错误35.Mismatched number of parameters in definition ——定义中参数个数不匹配36.Bad character in paramenters ——参数中有不适当的字符37.Bad file name format in include directive ——包含命令中文件名格式不正确38.Conversion may lose significant digits ——转换时会丢失意义的数字39.Out of memory ——内存不够用40.Parameter ``xxx`` is never used ——参数xxx没有用到41.``x xx`` is assigned a value which is never used ——xxx定义了但没有使用42.Possible use of ``xxx`` before definition ——在定义之前就使用了xxx(警告)43.Possibly incorrect assignment ——赋值可能不正确Ambiguous operators need parentheses -----------不明确的运算需要用括号括起Ambiguous symbol ''xxx'' ----------------不明确的符号Argument list syntax error ----------------参数表语法错误Array bounds missing ------------------丢失数组界限符Array size toolarge -----------------数组尺寸太大Bad character in paramenters ------------------参数中有不适当的字符Bad file name format in include directive --------------------包含命令中文件名格式不正确Bad ifdef directive synatax ------------------------------编译预处理ifdef有语法错Bad undef directive syntax ---------------------------编译预处理undef有语法错Bit field too large ----------------位字段太长Call of non-function -----------------调用未定义的函数Call to function with no prototype ---------------调用函数时没有函数的说明Cannot modify a const object ---------------不允许修改常量对象Case outside of switch ----------------漏掉了case 语句Case syntax error ------------------ Case 语法错误Code has no effect -----------------代码不可述不可能执行到Compound statement missing{ --------------------分程序漏掉"{"Conflicting type modifiers ------------------不明确的类型说明符Constant expression required ----------------要求常量表达式Constant out of range in comparison -----------------在比较中常量超出范围Conversion may lose significant digits -----------------转换时会丢失意义的数字Conversion of near pointer not allowed -----------------不允许转换近指针Could not find file ''xxx'' -----------------------找不到XXX文件Declaration missing ; ----------------说明缺少";" houjiumingDeclaration syntax error -----------------说明中出现语法错误Default outside of switch ------------------ Default 出现在switch语句之外Define directive needs an identifier ------------------定义编译预处理需要标识符Division by zero ------------------用零作除数Do statement must have while ------------------ Do-while语句中缺少while部分Enum syntax error ---------------------枚举类型语法错误Enumeration constant syntax error -----------------枚举常数语法错误Error directive :xxx ------------------------错误的编译预处理命令Error writing output file ---------------------写输出文件错误Expression syntax error -----------------------表达式语法错误Extra parameter in call ------------------------调用时出现多余错误File name too long ----------------文件名太长Function call missing -----------------函数调用缺少右括号Fuction definition out of place ------------------函数定义位置错误Fuction should return a value ------------------函数必需返回一个值Goto statement missing label ------------------ Goto语句没有标号Hexadecimal or octal constant too large ------------------16进制或8进制常数太大Illegal character ''x'' ------------------非法字符xIllegal initialization ------------------非法的初始化Illegal octal digit ------------------非法的8进制数字houjiumingIllegal pointer subtraction ------------------非法的指针相减Illegal structure operation ------------------非法的结构体操作Illegal use of floating point -----------------非法的浮点运算Illegal use of pointer --------------------指针使用非法Improper use of a typedefsymbol ----------------类型定义符号使用不恰当In-line assembly not allowed -----------------不允许使用行间汇编Incompatible storage class -----------------存储类别不相容Incompatible type conversion --------------------不相容的类型转换Incorrect number format -----------------------错误的数据格式Incorrect use of default --------------------- Default使用不当Invalid indirection ---------------------无效的间接运算Invalid pointer addition ------------------指针相加无效Irreducible expression tree -----------------------无法执行的表达式运算Lvalue required ---------------------------需要逻辑值0或非0值Macro argument syntax error -------------------宏参数语法错误Macro expansion too long ----------------------宏的扩展以后太长Mismatched number of parameters in definition ---------------------定义中参数个数不匹配Misplaced break ---------------------此处不应出现break语句Misplaced continue ------------------------此处不应出现continue语句Misplaced decimal point --------------------此处不应出现小数点Misplaced elif directive --------------------不应编译预处理elifMisplaced else ----------------------此处不应出现else houjiumingMisplaced else directive ------------------此处不应出现编译预处理else Misplaced endif directive -------------------此处不应出现编译预处理endifMust be addressable ----------------------必须是可以编址的Must take address of memory location ------------------必须存储定位的地址No declaration for function ''xxx'' -------------------没有函数xxx的说明No stack ---------------缺少堆栈No type information ------------------没有类型信息Non-portable pointer assignment --------------------不可移动的指针(地址常数)赋值Non-portable pointer comparison --------------------不可移动的指针(地址常数)比较Non-portable pointer conversion ----------------------不可移动的指针(地址常数)转换Not a valid expression format type ---------------------不合法的表达式格式Not an allowed type ---------------------不允许使用的类型Numeric constant too large -------------------数值常太大Out of memory -------------------内存不够用houjiumingParameter ''xxx'' is never used ------------------能数xxx没有用到Pointer required on left side of -> -----------------------符号->的左边必须是指针Possible use of ''xxx'' before definition -------------------在定义之前就使用了xxx(警告)Possibly incorrect assignment ----------------赋值可能不正确Redeclaration of ''xxx'' -------------------重复定义了xxxRedefinition of ''xxx'' is not identical ------------------- xxx的两次定义不一致Register allocation failure ------------------寄存器定址失败Repeat count needs an lvalue ------------------重复计数需要逻辑值Size of structure or array not known ------------------结构体或数给大小不确定Statement missing ; ------------------语句后缺少";"Structure or union syntax error --------------结构体或联合体语法错误Structure size too large ----------------结构体尺寸太大Sub scripting missing ] ----------------下标缺少右方括号Superfluous & with function or array ------------------函数或数组中有多余的"&" Suspicious pointer conversion ---------------------可疑的指针转换Symbol limit exceeded ---------------符号超限Too few parameters in call -----------------函数调用时的实参少于函数的参数不Too many default cases ------------------- Default太多(switch语句中一个)Too many error or warning messages --------------------错误或警告信息太多Too many type in declaration -----------------说明中类型太多houjiumingToo much auto memory in function -----------------函数用到的局部存储太多Too much global data defined in file ------------------文件中全局数据太多Two consecutive dots -----------------两个连续的句点Type mismatch in parameter xxx ----------------参数xxx类型不匹配Type mismatch in redeclaration of ''xxx'' ---------------- xxx重定义的类型不匹配Unable to create output file ''xxx'' ----------------无法建立输出文件xxx Unable to open include file ''xxx'' ---------------无法打开被包含的文件xxx Unable to open input file ''xxx'' ----------------无法打开输入文件xxx Undefined label ''xxx'' -------------------没有定义的标号xxxUndefined structure ''xxx'' -----------------没有定义的结构xxxUndefined symbol ''xxx'' -----------------没有定义的符号xxxUnexpected end of file in comment started on line xxx ----------从xxx行开始的注解尚未结束文件不能结束Unexpected end of file in conditional started on line xxx ----从xxx 开始的条件语句尚未结束文件不能结束Unknown assemble instruction ----------------未知的汇编结构houjiumingUnknown option ---------------未知的操作Unknown preprocessor directive: ''xxx'' -----------------不认识的预处理命令xxx Unreachable code ------------------无路可达的代码Unterminated string or character constant -----------------字符串缺少引号User break ----------------用户强行中断了程序Void functions may not return a value ----------------- Void类型的函数不应有返回值Wrong number of arguments -----------------调用函数的参数数目错''xxx'' not an argument ----------------- xxx不是参数''xxx'' not part of structure -------------------- xxx不是结构体的一部分xxx statement missing ( -------------------- xxx语句缺少左括号xxx statement missing ) ------------------ xxx语句缺少右括号xxx statement missing ; -------------------- xxx缺少分号houjiumingxxx'' declared but never used -------------------说明了xxx但没有使用xxx'' is assigned a value which is never used ----------------------给xxx赋了值但未用过Zero length structure ------------------结构体的长度为零。

2020考研英语词汇:argument的中文翻译解析

2020考研英语词汇:argument的中文翻译解析

2020考研英语词汇:argument的中文翻译解析 考研英语有许多题目组成,方便大家及时了解,下面由出国留学网小编为你精心准备了“2020考研英语词汇:argument 的中文翻译解析”,持续关注本站将可以持续获取更多的考试资讯! 2020考研英语词汇:argument的中文翻译解析 argument的中文意思 名词 1.[C,U]争论,争吵,争辩,辩论 2.可数名词:论据,理由,论点 3.不可数名词:辩论 单词分析 这组名词均有“争执、不和”之意。

controversy侧重指深刻的意见分歧,多指对引起广泛兴趣或非常重要的问题的辨论。

argument指辩论双方均以事实或理由来说服对方的辨论。

conflict指双方坚持已见、互不妥协,怀有敌意的争论,多暗示分歧极为严重,有时用语言无法解决,只得诉诸武力。

debate通常指经过仔细组织和计划的个人或团体之间的辩论。

dispute普通用词,侧重指长时间,言词激烈,针锋相对的争辩。

quarrel普通用词,既可指言词激烈的争吵,也可指温和的言词上的不和。

strife指因不可缓和的矛盾而引起的争吵或斗殴。

英语解释 a contentious speech act; a dispute where there is strong disagreement a fact or assertion offered as evidence that something is true a discussion in which reasons are advanced for and against some proposition or proposal a variable in a logical or mathematical expression whose value determines the dependent variable; if f(x)=y, x is the independent variable a summary of the subject or plot of a literary work or play or movie 例句 Indeed, she had quite a long argument with the lory, who at last turned sulky, and would only say, `I am older than you, and must know better' 你瞧,爱丽丝已经同鹦鹉辩论了好长时间了,最后鹦鹉生气了,一个劲儿地说:“我比你年龄大,也就肯定比你知道得多。

九上英语人教第五单元3a翻译

九上英语人教第五单元3a翻译

九上英语人教第五单元3a翻译摘要:I.引言A.介绍九上英语人教第五单元3a 的内容B.强调翻译的重要性II.3a 课文概述A.介绍故事背景B.概述故事情节III.翻译技巧A.直译与意译的运用B.词汇翻译C.语法翻译IV.翻译实践A.给出课文的中文翻译B.分析翻译过程中的难点V.结论A.总结翻译的方法和技巧B.强调翻译在英语学习中的重要性正文:I.引言九上英语人教第五单元3a 的课文讲述了一个有趣的故事。

在学习这篇课文的过程中,翻译是一个重要的环节。

通过翻译,我们可以更好地理解课文内容,提高英语水平。

II.3a 课文概述这篇课文讲述了一个名叫李明的中国学生在美国一所中学学习的故事。

故事中,李明努力适应美国学校的生活,结交了新朋友,并参加了一些课外活动。

通过这个故事,我们不仅可以学习到一些实用的英语表达,还可以了解到中美国校园文化的差异。

III.翻译技巧在翻译过程中,我们需要灵活运用直译与意译。

直译是指将原文逐字逐句地翻译成目标语言,而意译则是根据原文的意思进行翻译。

在翻译九上英语人教第五单元3a 的过程中,我们需要在保持原文意义的基础上,尽量做到语言通顺、自然。

此外,词汇翻译和语法翻译也是翻译过程中不可忽视的环节。

词汇翻译要求我们准确地把握原文中的关键词汇,用恰当的目标语言词汇进行替换。

语法翻译则要求我们根据目标语言的语法规则,对原文的句子结构进行调整。

IV.翻译实践以下是九上英语人教第五单元3a 的课文中文翻译:李明是一名来自中国的学生,他来到了美国的一所中学学习。

刚开始,他感到有些不适应,因为这里的生活方式与他在中国的生活有很大的不同。

然而,他很快就结识了一些新朋友,并参加了一些课外活动,如足球俱乐部和戏剧社。

通过参加这些活动,他不仅提高了自己的英语水平,还了解到了美国的文化和习俗。

V.结论通过翻译九上英语人教第五单元3a 的课文,我们可以更好地理解故事内容,提高英语水平。

在翻译过程中,我们要注意直译与意译的结合,同时关注词汇翻译和语法翻译。

C语言实现翻译功能

C语言实现翻译功能

C语⾔实现翻译功能本⽂实例为⼤家分享了C语⾔实现翻译功能的具体代码,供⼤家参考,具体内容如下#include<stdio.h>#define number 100struct date{char chinese[30];char English[30];}a[number];void copy(char *str1, char *str2, int counst)//将值赋给trans{int i = 0;if (str2 == ' ' || str2 == '\0'){return;}while (counst--){*str1++ = *str2++;}return;}int panduan(char *d, char *f)//判断是否相等{char *str1 = d, *str2 = f;int xc=0;while (!(xc = *str2 - *str1)&&*str1){str1++;str2++;}if (xc != 0){return 0;}return 1;}char* ry( struct date a[number],char *wordtemp,int x){for (int i = 0;i<x; i++){if (panduan(a[i].English, wordtemp)){return a[i].chinese;}}return "NULL";}int main(){char b;int x;int exit=0;char str[50];printf("[请先输⼊英⽂单词,再输⼊拼⾳,中间以空格隔开,当输⼊*时结束]\n");for (int i=0;; i++){printf("第[%d]组:\t", i+1);scanf("%[^' ']", a[i].English);scanf("%c", &b);scanf("%[^\n]", a[i].chinese);scanf("%c", &b);if (*a[i].English == '*'&&*a[i].chinese == '*'){x = i;break;}}printf("[请输⼊你所要翻译的内容]\n");scanf("%[^\n]", str);printf("|翻译的结果为|:\n");for (int i = 0;; i++){if (str[i] != ' '){char Trans[100];int n = 0;if(str[i]!=' '){while (!(str[i] == ' ' || str[i] == '\0')){n++;i++;if (str[i] == '\0'){exit = 1;}}copy(Trans, &str[i - n], n);Trans[n] = '\0';printf("[%s]", ry(a,Trans,x));}if (exit){break;}}}system("pause");}以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

view中文翻译

view中文翻译

view的中文释义及用法noun●想法opinion1 [C] ~ (about/on sth)(个人的)看法,意见,见解;态度a personal opinion about sth; an attitude towards sth to have different/conflicting/opposing views 有不同的/ 矛盾的/ 相反的观点to have strong political views 持强硬的政治观点Eg:His views on the subject were well known.他对这个问题的看法众所周知。

This evidence supports the view that there is too much violence on television.这一证据对电视节目中暴力太多的观点予以支持。

We take the view that it would be wrong to interfere.我们所持的态度是:干涉是错误的。

In my view it was a waste of time.依我看,这是浪费时间。

What is needed is a frank exchange of views .需要的是坦诚地交换意见。

●see also point of view 理解方式way of understanding2 [sing.] ~ (of sth)(理解或思维的)方法,方式a way of understanding or thinking about sthEg:He has an optimistic view of life.他乐观地看待人生。

the Christian view of the world 基督教的世界观Eg:The traditional view was that marriage was meant to last.传统的观念是结成夫妻就要白头到老。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

地球健康的网络建模
背景:社会对发展和使用能够预测地球生态和环境健康的模型感兴趣。

很多科学研究已经得出结论,地球的生态和环境压力正在变得越来越大,但是却很少有模型能够验证这些观点。

联合国支持的《千年生态系统评估同步报告》发现,几乎三分之二的能够支持生命的生态系统,包括干净的水,纯净的空气和稳定的天气,由于不可持续的使用而恶化。

人类要对这些破坏负主要责任。

对食物,淡水,燃料和木材的需求不断上升,这导致了环境的剧烈变化,从燃烧森林开荒到空气、陆地和水污染。

除了某些针对当地居住环境和地区因素的研究以外,现行的研究不能为政策制定者提供足够的信息,以说明地区政策对地球整体健康的影响。

很多研究忽略了复杂的全球因素,不能指明潜在政策的长期影响。

尽管科学家们意识到了,种种环境和生态系统之间的复杂关系和交叉影响会对地球生物圈产生影响,但现行的模型常忽视并简化这些关系。

环境复杂性体现在多种交互,反馈环路,紧急行为,和迫近的状态变化或临界点。

最近的自然杂志发表了22为国家知名的科学家的文章,《应对地球生物圈的状态转变》,列出了很多问题,都需要科学的模型,以及对地球健康系统潜在状态变化的预测。

他们对更好的预测模型提出了两个特别的模型量化要求。

1)要通过一个全球模型来改进生物预测。

这个模型要能反映由于地球上各系统间的交叉影响而带来的复杂性,以及地区条件和全球系统之间的相互影响。

2)要找出导致不健康的全球状态变化的因素,指明如何有效使用生态系统管理来防止或减少这些迫近的变化。

由此提出本课题的问题:我们能否利用地球健康的本地或地区性参数,建立一个全球模型,来预测潜在的状态变化,以政策对地球健康的潜在影响为基础,帮助政策制定者设计出有效的政策。

尽管许多警示性的信号已经出现,没人知道地球是否已经在全球范围内逼近了临界点,以及这样一个极端的状态是否是不可避免的。

要求:
ICM很快将主办一次名为《网络和地球健康》的研讨会。

作为ICM的成员,你的研究团队负责人要求你们在会前进行数学建模建立和分析,完成以下任务:
要求1
通过确定影响地球健康某一方面的本土因素(网络节点),并且通过恰当的方式把这些节点关联起来(网络链接)进行关系和属性影响的跟踪分析,在此基础上建立一个动态的全球网络模型。

由于这些影响是动态变化的,因此重要的一点是,该模式必须包括能够对该健康状况未来发展势头进行预测的动态时间因素。

比如,你的节点可能是国家,大陆,海洋,栖息地,等因素或以上几个因素的结合,这些因素共同构成一个全球模型。

你的链接可能代表随时间变化而变化的节点影响或环境影响,或物理因素(比如污染)的走势。

你所参照的地球健康因子可以是包括人口、生物、环境、社会、政治、物理和(或)化学在内的地球状态的任何要素。

一定要明确定义你的模型中的所有要素,并且解释你在建模过程中界定网络建构考量因素、节点实体和链接特性的科学依据。

如果有足够的数据的话,
确定一个方法来设定参数和解释你如何测试你所建立的模型。

什么类型的数据可以用来证明或验证你所建立的模型的有效性?(注意:如果你缺乏必要的数据来确定参数或进行验证,请不要否决你的模式。

你的导师确信,在这个阶段,有创意的想法和理论和有充分数据支持验证的模型同样重要。

)请在模型中考虑人的因素,并解释人类的行为和政府的政策会在什么方面影响你的模型结果。

要求2:运行你的模型,观察它是如何预测未来地球的健康的。

对通常从数据中中确定出的参数,你可能需要进行评估。

(注意:这只是测试和理解你的模型中的元素,而不是用它来预测或决策。


你的模型会得出哪些影响因子?
你的模型能预测地球状况的状态变化或临界点吗?
如果本地条件变化引起全球变化,你的模型能为此提供预警吗?
你的模型能为重要政策的制定者提供参考吗?
在你的解决方案里和网络特征中,你考虑到人的因素了吗?
要求3:使用网络建模的一个重要优势在于你的分析网络结构的能力。

网络特征能否识别关键结点或你的模型中的关系?如果可以,请演示这种分析。

对于缺失环节或变化中的关系,你的模型的敏感度如何?
你的模型使用反馈环或者考虑不确定性了吗?
数据收集的问题是什么?
你的模型是否对各种政府政策做出了反应?它能否有助于计划的制定?
要求4:拟定一篇20页的报告(不包括总结页)来解释你的模型和它的应用前景。

确保指出你的模型的优点和缺点。

在不久以后的研究会上,你的指导教师将以你的报告作为主题,如果你的报告中对于地球健康建模切题,且有独到的见解,你的指导教师将受邀在即将举行的研讨会上发言。

祝你在网络建模工作中取得好成绩。

可能对你有用的参考资料和文献:。

相关文档
最新文档