中英文专业资料

中英文专业资料
中英文专业资料

中文资料

PowerBuilder是著名的数据库应用开发工具生产厂商PowerSoft公司推出的产品(PowerSoft现已被数据库厂商Sybase所收购),它完全按照客户机/服务器体系结构研制设计,在客户机/服务器结构中,它使用在客户机中,作为数据库应用程序的开发工具而存在。由于PowerBuilder采用了面向对象和可视化技术,提供可视化的应用开发环境,使得我们利用PowerBuilder,可以方便快捷地开发出利用后台服务器中的数据和数据库管理系统的数据库应用程序。

在当前,网络技术迅速发展,随之发展的还有OLE,OCX,跨平台等技术,而在PowerBuilder的最新版PowerBuilder中提供了对这些技术的全面支持。总之在数据库开发工具领域,PowerBuilder是其中非常优秀的一个,利用它我们可以开发出功能强大的数据库应用程序。

PowerBuilder提供了对目前流行的大多数关系数据库管理系统的支持,由于在PowerBuilder的应用程序中对数据库访问的部分一般采用国际化标准数据库查询语言SQL,使得用PowerBuilder开发的应用程序可以不做修改或者只做少量的修改就可以在不同的后台数据库管理系统上使用。也就是说用PowerBuilder开发的应用程序是独立于服务器上的数据库管理系统的。

和大多数的windows应用程序一样,PowerBuilder也是事件驱动工作方式。在这种工作方式中,程序的运行没有固定的流程,程序中的代码也是为各种可能发生的事件编写的,当程序开始运行之后,它就可以接受来自系统,用户或者其它应用程序触发的事件,然后执行相应的事件代码。事件驱动的工作方式与面向对象技术是紧密相关的。在PowerBuilder应用程序中,接受发生的事件的往往就是程序界面中的各种可视化对象。

PowerBuilder是一种面向对象的开发工具,各种windows应用程序中常见的窗口、菜单、控件等在PowerBuilder中都是一个个的对象。在PowerBuilder中我们还可以创建自己的用户对象。特别要指出的是PowerBuilder提供了对面向对象方法中的各种技术的全面支持,我们可以利用面向对象方法中的对象的封装性、继承性、多态性等特点使得我们开发的应用程序具有极大的可重用性和可扩展性,而这一点正是软件工程中对应用程序所提出的重要目标。

在当前,由于网络技术的发展,许多种不同的操作系统平台在INTERNET网上同时被使用,这对开发的应用程序的跨平台性提出了更高的

要求,而PowerBuilder就提供了良好的跨平台性,比如在PowerBuilder 中,利用windows平台开发的各种对象可以方便地应用到UNIX平台中,因为PowerBuilder支持对象的跨平台性。这样使得把应用程序从一个平台移到另一个平台变得并不复杂。

为了给用户提供各个方面的支持,PowerBuilder具有自己的编程语言POWERSCRIPT,这个语言除了提供基本的流程控制语句,还提供了几百个函数来操纵各种对象和提供诸如DDE,OLE等方面的支持。此外我们还可以定义自己的函数,处理特定的事件。学习PowerBuilder时相当一部分的时间就是用来了解和熟悉PowerBuilder提供的各种函数。

PowerBuilder一个很大的特点就是提出了数据窗口对象的概念。数据窗口对象也是PowerBuilder中的一种对象类型,与其它对象不同的是数据窗口对象是专门为了访问后台的数据库服务的,在数据窗口对象中我们定义了数据的来源和数据的显示风格,这样在应用程序中我们就可以把精力完全放在程序的运行流程控制上,而不用关心具体数据的来源,因为我们在数据窗口对象中已经定义好了数据的来源。如果需要使用数据库中不同的数据也只要对数据窗口对象进行修改就可以了。特别要指出的是PowerBuilder在数据窗口对象中提供了丰富的数据显示方式,可以满足各种不同的需要。

在PowerBuilder较新的版本中提供了基础类库PFC,它为应用程序的开发提供了许多可重用的预定义类和对象,利用基本类库PFC可以快速开发出高质量重用性好的应用程序。真正发挥面向对象编程的巨大威力。

最后要指出的是PowerBuilder有三个不同的版本,分别为DESKTOP 型,PROFESSIONAL型,和ENTERPRISE型,DESKTOP型是为个人使用的桌面型应用程序,在这里可以利用PowerBuilder内置的数据库管理系统SYBASE SQL ANYWHERE来创建和使用本地数据库,为个人的应用服务;PROFESSIONAL型的PowerBuilder最重要的一点就是提供了对MICROSOFT ODBC(数据库标准连接接口)的支持,在PROFESSIONAL版本中我们就可以使用PowerBuilder的继承,多态等绝大多数特性;在ENTERPRISE版本中最重要的一点就是提供了对开发大型的数据库应用程序的全面的支持,提供了开发大型应用程序的许多辅助的工具,比如C++ CLASS BUILDER等。

数据库前端开发工具与后台数据库管理系统的连接方式是一个很重要的课题。PowerBuilder提供了两种访问后台数据库的方式,一种是通过ODBC标准接口的方式,第二种是通过专用的接口与后台的数据库相连。

ODBC的中文名字是开放式数据库连接,它是微软公司提出的数据库连

接标准,使用ODBC方式连接数据库的第一步是创建数据源,比如我们可以利用windows下控制面板中的“32 BIT ODBC”选项来创建驱动某种数据库的数据源,创建好数据源之后,我们就可以在本地计算机中利用定义好的数据源存取后台数据库中的数据了。

我们还可以通过专用接口同后台的数据库相连,由于专用接口是针对特定的后台数据库管理系统而设计,因此这种方式存取数据的速度要比采用ODBC方式存取数据的速度要快一些,如果我们的应用程序只是针对特定类型的后台数据库,当然是采用专用接口访问后台数据更快一些。

英文资料

PowerBuilder is a popular database application development tool manufacturer which is called PowerSoft introduced product (PowerSoft has been purchased by the database manufacturer called Sybase), it entirely designed in accordance with the client / server architecture, in the client / server architecture, it uses the client, as a database application development tool to exist. Because of using object-oriented and visualization technologies, providing visual application development environment in PowerBuilder, allows us to be developing data and database management system database applications in the background server easily and quickly.

At present, network technology is developing rapidly, with the development of the OLE, OCX, cross-platform technology, and in the latest version of PowerBuilder provides the full support of these technologies. In a word, in the database development tools, PowerBuilder is a very good product of them, we can use it to develop powerful database applications.

PowerBuilder provides support in most of the current popular relation database management systems, because in PowerBuilder applications for database access part of the general international standard database query language SQL, makes using PowerBuilder development of the application can be used in different background of database management systems without revision or do a small amount of revision. That is to say, with PowerBuilder development of the application server is independent of the database management system.

As the most of the windows application procedures, PowerBuilder is also event driven of the method to work. In this work method, program for the operation has no fixed processes, the code in the program is also possible programmed for the preparation of the events, when the program began running, it can be accepted the events that are from the system, users or other applications trigger, and then execute the relevant code. Event driven methods of work is

closely related to the object-oriented technology. In the PowerBuilder application, acceptance of the events is often the various visual interface object in the program.

PowerBuilder is an object-oriented development tool, various common application windows, menus, and other controls in Windows are one and one targets in PowerBuilder. We can also create own user object in PowerBuilder. We should point out that the PowerBuilder provides object-oriented method of comprehensive technical support, we can make use of object-oriented methods in the object of encapsulation, inheritance, polymorphism, and other features make the our development applications have great reusability and scalability, which is on the application in the process of the important goals in software engineering.

At present, due to the development of network technology, and many different types of operating system platforms are using on the internet at the same time, this is a higher request for the development of the cross-platform application, and PowerBuilder provides a good cross-platform, for example, in PowerBuilder, using Windows platform for the development of all kinds of objects can be easily applied to the UNIX platform, because PowerBuilder supports cross-platform object. This allows the applications from one platform to another platform to become not complicated.

In order to provide the user all aspects of supports, PowerBuilder has its own programming language which is called power script, in addition to providing the basic flow control statements, but also to provide hundreds of functions to manipulate objects and all kinds of information supports such as DDE, OLE, and other aspects in this language . Furthermore, we can also define our own functions and deal with specific incidents. When we learn PowerBuilder, a part of the time is to understand and familiar with the functions in PowerBuilder.

In PowerBuilder, a great feature is to propose the concept of data window. Data window object is one of the objects in PowerBuilder, it is different from other objects, because data window is

specifically targeted to visit background database services, in the data window, we define data sources and data display style, so that we will be able to concentrate fully on the operation of process control procedures in application procedures, and couldn’t concern about data sources, because we have been well defined data sources in the data window. If you need to use different data in the database as long as the data is revised target window on it. In particular, we should point out that the PowerBuilder provides a wealth of data display mode in data window object, and this can meet a variety of needs.

In a new version of PowerBuilder, it provides a foundation class library PFC, it provides many reusable predefined classes and objects for application procedures of development, using the basic class library PFC can enable the rapid development of high-quality reuse of good application procedures. It is really rolling power of object-oriented programming.

Finally we should point out that the there are three different versions: desktop type, professional type, and enterprise type. Desktop type is for personal using of the desktop applications, where you can use the built-in PowerBuilder database management system Sybase SQL anywhere to create and use of local databases, the application for personal services; professional type of PowerBuilder most important point is to provide the support of Microsoft ODBC (database connectivity standard interface),in professional version of PowerBuilder, we can use the inheritance, polymorphism and more features; in the enterprise versions of the most important point is to provide for the development of large-scale database applications and comprehensive support, the development of large-scale applications of the many auxiliary tools, such as C++, class builder and so on.

Database front-end development tool and the background database management system in a way is a very important issue. PowerBuilder provides two ways to visit the background database, the one way is standard interface through ODBC, and the second is through a

dedicated interface with the database linked to the background.

ODBC is called Open Database Connectivity in Chinese, it is the database connectivity standards which is proposed by Microsoft, the use of ODBC database connectivity of the first step is creating data sources, for example, we can use windows control panel under the "32 BIT ODBC" election of the drive to create a database of data sources, after finishing creating data sources, we will be able to use computers in the local definition of good background data source to access to the data in the database.

We can also link to the background through a dedicated interface with the database, because dedicated interface is designed against the background of a specific database management system, by this way to access to data faster than using ODBC way to access to data. If our application is only for specific types of background database, of course, using a special interface to background information will be more faster.

PS中英文对照资料

Photoshop中英文对照 1、File 文件 New 新建 Open 打开 Open As 打开为 Open Recent 最近打开文件 Close 关闭 Save 存储 Save As 存储为 Save for Web 存储为Web所用格式Revert 恢复 Place 置入 Import 输入 PDF Image PDF图象导入Annotations 注释 Export 输出 Manage Workflow 管理工作流程Check In 登记 Undo Check Out 还原注销 Upload To Server 上载到服务器Add To Workflow 添加到工作流程 Open From Workflow 从工作流程打开 Automate 自动 Batch 批处理 Create Droplet 创建快捷批处理 Conditional Mode Change 条件模式更改 Contact Sheet 联系表 Fix Image 限制图像 Multi Page PDF to PSD 多页面PDF文件到PSD文件 Picture package 图片包 Web Photo Gallery Web照片画廊File Info 文件简介 Print Options 打印选项 Page Setup 页面设置 Print 打印 Jump to 跳转到 Exit 退出 2、Edit 编辑 Undo 还原 Step Forward 向前 Step Backward 返回 Fade 消退 Cut 剪切 Copy 拷贝 Copy Merged 合并拷贝 Paste 粘贴 Paste Into 粘贴入 Clear 清除 Fill 填充 Stroke 描边 Free Transform 自由变形Transform 变换 Again 再次 Scale 缩放 Rotate 旋转 Skew 斜切 Distort 扭曲 Perspective 透视 Rotate 180°旋转180度 Rotate 90°CW 顺时针旋转90度Rotate 90°CCW 逆时针旋转90度

计算机专业外文文献及翻译

微软Visual Studio 1微软Visual Studio Visual Studio 是微软公司推出的开发环境,Visual Studio可以用来创建Windows平台下的Windows应用程序和网络应用程序,也可以用来创建网络服务、智能设备应用程序和Office 插件。Visual Studio是一个来自微软的集成开发环境IDE,它可以用来开发由微软视窗,视窗手机,Windows CE、.NET框架、.NET精简框架和微软的Silverlight支持的控制台和图形用户界面的应用程序以及Windows窗体应用程序,网站,Web应用程序和网络服务中的本地代码连同托管代码。 Visual Studio包含一个由智能感知和代码重构支持的代码编辑器。集成的调试工作既作为一个源代码级调试器又可以作为一台机器级调试器。其他内置工具包括一个窗体设计的GUI应用程序,网页设计师,类设计师,数据库架构设计师。它有几乎各个层面的插件增强功能,包括增加对支持源代码控制系统(如Subversion和Visual SourceSafe)并添加新的工具集设计和可视化编辑器,如特定于域的语言或用于其他方面的软件开发生命周期的工具(例如Team Foundation Server的客户端:团队资源管理器)。 Visual Studio支持不同的编程语言的服务方式的语言,它允许代码编辑器和调试器(在不同程度上)支持几乎所有的编程语言,提供了一个语言特定服务的存在。内置的语言中包括C/C + +中(通过Visual C++),https://www.360docs.net/doc/012605606.html,(通过Visual https://www.360docs.net/doc/012605606.html,),C#中(通过Visual C#)和F#(作为Visual Studio 2010),为支持其他语言,如M,Python,和Ruby等,可通过安装单独的语言服务。它也支持的 XML/XSLT,HTML/XHTML ,JavaScript和CSS.为特定用户提供服务的Visual Studio也是存在的:微软Visual Basic,Visual J#、Visual C#和Visual C++。 微软提供了“直通车”的Visual Studio 2010组件的Visual Basic和Visual C#和Visual C + +,和Visual Web Developer版本,不需任何费用。Visual Studio 2010、2008年和2005专业版,以及Visual Studio 2005的特定语言版本(Visual Basic、C++、C#、J#),通过微软的下载DreamSpark计划,对学生免费。 2架构 Visual Studio不支持任何编程语言,解决方案或工具本质。相反,它允许插入各种功能。特定的功能是作为一个VS压缩包的代码。安装时,这个功能可以从服务器得到。IDE提供三项服务:SVsSolution,它提供了能够列举的项目和解决方案; SVsUIShell,它提供了窗口和用户界面功能(包括标签,工具栏和工具窗口)和SVsShell,它处理VS压缩包的注册。此外,IDE还可以负责协调和服务之间实现通信。所有的编辑器,设计器,项目类型和其他工具都是VS压缩包存在。Visual Studio 使用COM访问VSPackage。在Visual Studio SDK中还包括了管理软件包框架(MPF),这是一套管理的允许在写的CLI兼容的语言的任何围绕COM的接口。然而,MPF并不提供所有的Visual Studio COM 功能。

商务英语口语900句-中英文对照-中文翻译资料

商务英语口语900句中英文对照中文翻译 Unit 1希望与要求 Part 1 . 1. We'd like to express our desire to establish business relationship with you on the basis of quality, mutually benefit and exchange of needed goods . 我们希望在保证质量、互惠互利以及交易彼此需要的货物的基础上和你们建立业务关系。 2 .In order to extend our export business to your country we wish to enter direct business relations with you. 为了扩大我们在贵国的出口业务,我们希望和你们建立直接贸易关系。 3. Our hope is to establish mutually beneficial trading relations between us . 希望在我们之间能够建立互惠互利的贸易关系。 4. We looking forward to further extensions of pleasant business relations. 我们期待进一步保持愉快的业务关系。 5. It’s our hope to continue with considerable business dealing with you. 我们的希望是和你们保持可观的生意往来。 6. We looking forward to receiving your quotation very soon. 我们期待尽快收到你们的报价单。 7.I hope you see from the reduction that we are really doing our utmost. 我希望你能够看到我们事实上已经作出了最大程度的让价。 8.We hope to discuss business with you at your earliest convenience. 我们希望在你方便的时候和你洽谈业务。

中英文专业资料

中文资料 PowerBuilder是著名的数据库应用开发工具生产厂商PowerSoft公司推出的产品(PowerSoft现已被数据库厂商Sybase所收购),它完全按照客户机/服务器体系结构研制设计,在客户机/服务器结构中,它使用在客户机中,作为数据库应用程序的开发工具而存在。由于PowerBuilder采用了面向对象和可视化技术,提供可视化的应用开发环境,使得我们利用PowerBuilder,可以方便快捷地开发出利用后台服务器中的数据和数据库管理系统的数据库应用程序。 在当前,网络技术迅速发展,随之发展的还有OLE,OCX,跨平台等技术,而在PowerBuilder的最新版PowerBuilder中提供了对这些技术的全面支持。总之在数据库开发工具领域,PowerBuilder是其中非常优秀的一个,利用它我们可以开发出功能强大的数据库应用程序。 PowerBuilder提供了对目前流行的大多数关系数据库管理系统的支持,由于在PowerBuilder的应用程序中对数据库访问的部分一般采用国际化标准数据库查询语言SQL,使得用PowerBuilder开发的应用程序可以不做修改或者只做少量的修改就可以在不同的后台数据库管理系统上使用。也就是说用PowerBuilder开发的应用程序是独立于服务器上的数据库管理系统的。 和大多数的windows应用程序一样,PowerBuilder也是事件驱动工作方式。在这种工作方式中,程序的运行没有固定的流程,程序中的代码也是为各种可能发生的事件编写的,当程序开始运行之后,它就可以接受来自系统,用户或者其它应用程序触发的事件,然后执行相应的事件代码。事件驱动的工作方式与面向对象技术是紧密相关的。在PowerBuilder应用程序中,接受发生的事件的往往就是程序界面中的各种可视化对象。 PowerBuilder是一种面向对象的开发工具,各种windows应用程序中常见的窗口、菜单、控件等在PowerBuilder中都是一个个的对象。在PowerBuilder中我们还可以创建自己的用户对象。特别要指出的是PowerBuilder提供了对面向对象方法中的各种技术的全面支持,我们可以利用面向对象方法中的对象的封装性、继承性、多态性等特点使得我们开发的应用程序具有极大的可重用性和可扩展性,而这一点正是软件工程中对应用程序所提出的重要目标。 在当前,由于网络技术的发展,许多种不同的操作系统平台在INTERNET网上同时被使用,这对开发的应用程序的跨平台性提出了更高的

外文资料及其翻译

A Wavelet Based Approach for Fast Detection of Internal Fault in Power Transformers The power transformer is one of the most expensive elements of power system and its protection is an essential part of the overall system protection strategy. The differential protection provides the best protection for power transformer. Its operation principle is based on this point that the differential current during an internal fault is higher than normal condition. But, a large transient current (inrush current) can cause mal-operation of differential relays. Then, studies for the improvement of the transformer protection have focused on discrimination between internal short circuit faults and inrush currents in transformers. The magnetizing inrush current has a large second order harmonic component in comparison to internal faults. Therefore , some transformer protection systems are designed to halt operating during the inrush current by sensing this large second order harmonic. The second harmonic component in the magnetizing inrush currents tend to be relatively small in modern large power transformers because of improvements in the power transformer core materials. Also , it has been seen that the fault current can contain higher second order harmonics than the inrush current due to nonlinear fault resistance, CT saturation .the distributed capacitance in the transmission line, which transformer is connected to, or due to the use of extra high voltage underground cables. Various methods have been suggested for overcoming this protection system mal-operation. This paper presents a wavelet based method for discrimination among inrush current, internal short circuit ,external short circuit and energizing and it is not affected by CT saturation and it is able to detect internal faults while transformer energization. Unlike Artificial Neural Network and Fuzzy logic based algorithms. This approach is not system dependent. The operating time of the scheme is less than 10ms. The Daubechies mother wavelet is used with a sample rate of 5 kHz. Then , the differential currents of the three phases are decomposed into two details and only the second level will be considered by using db5 mother wavelet. Discrete Wavelet Transform The wavelet transform is a powerful tool to extract information from the non-stationary signals simultaneously in both time and frequency domains. The ability of the wavelet transform to focus on short time intervals for high-frequency components and long intervals for low-frequency components improves the analysis

外文文献及翻译

文献翻译 原文 Combining JSP and Servlets The technology of JSP and Servlet is the most important technology which use Java technology to exploit request of server, and it is also the standard which exploit business application .Java developers prefer to use it for a variety of reasons, one of which is already familiar with the Java language for the development of this technology are easy to learn Java to the other is "a preparation, run everywhere" to bring the concept of Web applications, To achieve a "one-prepared everywhere realized." And more importantly, if followed some of the principles of good design, it can be said of separating and content to create high-quality, reusable, easy to maintain and modify the application. For example, if the document in HTML embedded Java code too much (script), will lead the developed application is extremely complex, difficult to read, it is not easy reuse, but also for future maintenance and modification will also cause difficulties. In fact, CSDN the JSP / Servlet forum, can often see some questions, the code is very long, can logic is not very clear, a large number of HTML and Java code mixed together. This is the random development of the defects. Early dynamic pages mainly CGI (Common Gateway Interface, public Gateway Interface) technology, you can use different languages of the CGI programs, such as VB, C / C + + or Delphi, and so on. Though the technology of CGI is developed and powerful, because of difficulties in programming, and low efficiency, modify complex shortcomings, it is gradually being replaced by the trend. Of all the new technology, JSP / Servlet with more efficient and easy to program, more powerful, more secure and has a good portability, they have been many people believe that the future is the most dynamic site of the future development of technology. Similar to CGI, Servlet support request / response model. When a customer submit a request to the server, the server presented the request Servlet, Servlet responsible for handling requests and generate a response, and then gave the server, and then from the server sent to

PLC论文中英文对照资料外文翻译文献

PLC论文中英文对照资料外文翻译文献 外文资料: PLC technique discussion and future development Along with the development of the ages, the technique that is nowadays is also gradually perfect, the competition plays more more strong; the operation that list depends the artificial has already can't satisfied with the current manufacturing industry foreground, also can't guarantee the request of the higher quantity and high new the image of the technique business enterprise. The people see in produce practice, automate brought the tremendous convenience and the product quantities for people up of assurance, also eased the personnel's labor strength, reduce the establishment on the personnel. The target control of the hard realization in many complicated production lines, whole and excellent turn, the best decision etc., well-trained operation work, technical personnel or expert, governor but can judge and operate easily, can acquire the satisfied result. The research target of the artificial intelligence makes use of the calculator exactly to carry out, imitate these intelligences behavior, moderating the work through person's brain and calculators, with the mode that person's machine combine, for resolve the very complicated problem to look for the best path We come in sight of the control that links after the electric appliances in various situation, that is already the that time generation past, now of after use in the mold a perhaps simple equipments of grass-roots control that the electric appliances can do for the low level only;And the PLC emergence also became the epoch-making topic, adding the vivid software control through a very and stable hardware, making the automation head for the new high tide. The PLC biggest characteristics lie in: The electrical engineering teacher already no longer electric hardware up too many calculationses of cost, as long as order the importation that the button switch or the importation of the sensors order to link the PLC up can solve problem, pass to output to order the conjunction contact machine or control the start equipments of the

最新中国传统文化(中英文)资料

中国传统文化 一、“传统节日”单词预热vocabulary work 烹调cooking cuisine 鱼肉满架well stocked with fish and meat 象征意义symbolic significance 农历lunar calendar 阳历solar calendar 端午节Dragon Boat Festival 元宵节Lantern Festival 清明节Pure Brightness Day 重阳节Double Ninth Day 放逐be exiled 忠臣loyal minister 糯米粽子glutinous rice dumplings wrapped in bamboo leaves 祭祀亡灵in memory of sb. 龙舟比赛dragon boat races 中秋节Mid Autumn Festival 满月full moon 月饼moon cake 蜜饯preserved fruits 豆沙bean paste 蛋黄egg yolk 海鲜seafood 家禽poultry 饺子dumplings 八宝饭eight treasure rice 米羹rice balls 油条fried sticks 麻花fried twisted stick 炒面Chaomian 叉烧包steamed bun with roast pork 粥porridge 芋头taro 葱油饼pan-fried cake with sesame seeds and green onion 有关春节的常用词 放鞭炮let off firecrackers 耍龙灯play the dragon lantern 耍狮子play the lion dance 拜年pay a new-year call 二、有关“介绍”的翻译 ?我很高兴向各位介绍中国的主要传统节日。 →I am very happy to have the opportunity to talk to you about major traditional Chinese holidays. 表示“介绍情况”时,我们可以这样翻译: 1.to share with you brief information ?在此,我愿意向朋友们介绍这些方面的情况。 →I'd like to share with you brief information in this respect. 2.to brief you on ?借此机会,我愿意向各位朋友介绍中国加入世贸组织和参与经济全球化的有关情况。 →I would like to avail myself of this opportunity to brief you on China's accession to WTO and participation in economic globalization. 3.to give a brief account of ?我简单介绍我厂的情况。 →Let me, first of all, give you a brief account of this factory. ?在来宾们参观我校之前,请允许我简要介绍一下我校的概况。 →Before you start to look around, I would like to give you a brief account of our

中英文对照资料外文翻译文献

中英文对照资料外文翻译文献 平设计任何时期平面设计可以参照一些艺术和专业学科侧重于视觉传达和介绍。采用多种方式相结合,创造和符号,图像和语句创建一个代表性的想法和信息。平面设计师可以使用印刷,视觉艺术和排版技术产生的最终结果。平面设计常常提到的进程,其中沟通是创造和产品设计。共同使用的平面设计包括杂志,广告,产品包装和网页设计。例如,可能包括产品包装的标志或其他艺术作品,举办文字和纯粹的设计元素,如形状和颜色统一件。组成的一个最重要的特点,尤其是平面设计在使用前现有材料或不同的元素。平面设计涵盖了人类历史上诸多领域,在此漫长的历史和在相对最近爆炸视觉传达中的第20和21世纪,人们有时是模糊的区别和重叠的广告艺术,平面设计和美术。毕竟,他们有着许多相同的内容,理论,原则,做法和语言,有时同样的客人或客户。广告艺术的最终目标是出售的商品和服务。在平面设计,“其实质是使以信息,形成以思想,言论和感觉的经验”。

在唐朝(618-906 )之间的第4和第7世纪的木块被切断打印纺织品和后重现佛典。阿藏印在868是已知最早的印刷书籍。在19世纪后期欧洲,尤其是在英国,平面设计开始以独立的运动从美术中分离出来。蒙德里安称为父亲的图形设计。他是一个很好的艺术家,但是他在现代广告中利用现代电网系统在广告、印刷和网络布局网格。于1849年,在大不列颠亨利科尔成为的主要力量之一在设计教育界,该国政府通告设计在杂志设计和制造的重要性。他组织了大型的展览作为庆祝现代工业技术和维多利亚式的设计。从1892年至1896年威廉?莫里斯凯尔姆斯科特出版社出版的书籍的一些最重要的平面设计产品和工艺美术运动,并提出了一个非常赚钱的商机就是出版伟大文本论的图书并以高价出售给富人。莫里斯证明了市场的存在使平面设计在他们自己拥有的权利,并帮助开拓者从生产和美术分离设计。这历史相对论是,然而,重要的,因为它为第一次重大的反应对于十九世纪的陈旧的平面设计。莫里斯的工作,以及与其他私营新闻运动,直接影响新艺术风格和间接负责20世纪初非专业性平面设计的事态发展。谁创造了最初的“平面设计”似乎存在争议。这被归因于英国的设计师和大学教授Richard Guyatt,但另一消息来源于20世纪初美国图书设计师William Addison Dwiggins。伦敦地铁的标志设计是爱德华约翰斯顿于1916年设计的一个经典的现代而且使用了系统字体设计。在20世纪20年代,苏联的建构主义应用于“智能生产”在不同领域的生产。个性化的运动艺术在2俄罗斯大革命是没有价值的,从而走向以创造物体的功利为目的。他们设计的建筑、剧院集、海报、面料、服装、家具、徽标、菜单等。J an Tschichold 在他的1928年书中编纂了新的现代印刷原则,他后来否认他在这本书的法西斯主义哲学主张,但它仍然是非常有影响力。Tschichold ,包豪斯印刷专家如赫伯特拜耳和拉斯洛莫霍伊一纳吉,和El Lissitzky 是平面设计之父都被我们今天所知。他们首创的生产技术和文体设备,主要用于整个二十世纪。随后的几年看到平面设计在现代风格获得广泛的接受和应用。第二次世界大战结束后,美国经济的建立更需要平面设计,主要是广告和包装等。移居国外的德国包豪斯设计学院于1937年到芝加哥带来了“大规模生产”极简到美国;引发野火的“现代”

建筑外文文献及翻译

外文原文 , , ,610031 ’s . a . a . , a . —, , ’s ’s . 1. , . , , ’s ’ [1] , . [1] a () , [2] . [3,4] [5] () , ’s , [6]. [7] ’s . , ’s ’s a . 2.’S . , . ’s ’s , ’s . , (1). (…) (1) w ’s ; I ; c , ; s , . 3. 3.1 , . , a , ’s . , a , ’s , . , ’s ’s . 3.2 a : (1)N. 1,2, … N.

(2) w 12… . (3) R 1,2, … (4) Δ ? ? ?others toprojectQ rcer humanresou i k 01 (5) . I t I t . (6) △ I ’s a .( ’t .) (7) (5) t I △ ,( △ ). , – a . (8) (6) (7), I ( = △* △ ). (9) =ηi / * , ηi I ; * I , * =∑=R k ki 1 δ . , . , , . 3.3 , , : = ∑∑==N i i N i Ci 11 ω i i N i i N i c t ??∑∑==1 1 ω (2) ∑∑ ==N i i N i 1 1 ω ) E i R i ki i t - ?? ∑=1 δη i c ? 2F Z 2()i t ? ) E i R i ki i t - ??∑=1 δη (3) () ,(N j i K 3,2,1,=?) (4)

英语翻译学习资料(含中英文解释)

例1.Winners do not dedicate their lives to a concept of what they imagine they should be, rather, they are themselves and as such do not use their energy putting on a performance, maintaining pretence and manipulating(操纵) others . They are aware that there is a difference between being loved and acting loving, between being stupid and acting stupid, between being knowledgeable and acting knowledgeable. Winners do not need to hide behind a mask. 1.dedicate to 把时间,精力用于 2.pretence 虚伪,虚假 6 .1 斤斤于字比句次,措辞生硬 例2.Solitude is an excellent laboratory in which to observe the extent to which manners and habits are conditioned by others. My table manners are atrocious( 丑恶)—in this respect I've slipped back hundreds of years in fact, I have no manners whatsoever(完全,全然). If I feel like it, I eat with my fingers, or out of a can, or standing up —in other words, whichever is easiest. 孤独是很好的实验室,正好适合观察一个人的举止和习惯在多大程度上受人制约。如今我吃东西的举止十分粗野;这方面一放松就倒退了几百年,实在是一点礼貌也没有。我高兴就用手抓来吃,(eat out of a can)开个罐头端着吃,站着吃;反正怎么省事就怎么吃。 3.Whatsoever 完全,全然 1.Be conditioned by 受……制约 2.Atrocious 丑恶 6 .2 结构松散,表达过于口语化 例3.有一次,在拥挤的车厢门口,我听见一位男乘客客客气气地问他前面的一位女乘客:“您下车吗?”女乘客没理他。“您下车吗?”他又问了一遍。女乘客还是没理他。他耐不住了,放大声问:“下车吗?”,那女乘客依然没反应。“你是聋子,还是哑巴?”他急了,捅了一下那女乘客,也引起了车厢里的人都往这里看。女乘客这时也急了,瞪起一双眼睛,回手给了男乘客一拳。(庄绎传,英汉翻译教程,1999 :练习 3 ) 译文1:Once at the crowded door of the bus, I heard a man passenger asked politely a woman passenger before him: “Are you getting off?” The woman made no

常用材料中英文对照表

常用原材料英文缩写与中文名称对照表A 英文缩写全称 A/MMA 丙烯腈/甲基丙烯酸甲酯共聚物 AA 丙烯酸 AAS 丙烯酸酯-丙烯酸酯-苯乙烯共聚物 ABFN 偶氮(二)甲酰胺 ABN 偶氮(二)异丁腈 ABPS 壬基苯氧基丙烷磺酸钠 B 英文缩写全称 BAA 正丁醛苯胺缩合物 BAC 碱式氯化铝 BACN 新型阻燃剂 BAD 双水杨酸双酚A酯 BAL 2,3-巯(基)丙醇 BBP 邻苯二甲酸丁苄酯 BBS N-叔丁基-乙-苯并噻唑次磺酰胺 BC 叶酸 BCD β-环糊精 BCG 苯顺二醇 BCNU 氯化亚硝脲 BD 丁二烯 BE 丙烯酸乳胶外墙涂料 BEE 苯偶姻乙醚 BFRM 硼纤维增强塑料 BG 丁二醇 BGE 反应性稀释剂 BHA 特丁基-4羟基茴香醚 BHT 二丁基羟基甲苯 BL 丁内酯 BLE 丙酮-二苯胺高温缩合物 BLP 粉末涂料流平剂 BMA 甲基丙烯酸丁酯 BMC 团状模塑料 BMU 氨基树脂皮革鞣剂

BN 氮化硼 BNE 新型环氧树脂 BNS β-萘磺酸甲醛低缩合物 BOA 己二酸辛苄酯 BOP 邻苯二甲酰丁辛酯 BOPP 双轴向聚丙烯 BP 苯甲醇 BPA 双酚A BPBG 邻苯二甲酸丁(乙醇酸乙酯)酯 BPF 双酚F BPMC 2-仲丁基苯基-N-甲基氨基酸酯 BPO 过氧化苯甲酰 BPP 过氧化特戊酸特丁酯 BPPD 过氧化二碳酸二苯氧化酯 BPS 4,4’-硫代双(6-特丁基-3-甲基苯酚) BPTP 聚对苯二甲酸丁二醇酯 BR 丁二烯橡胶 BRN 青红光硫化黑 BROC 二溴(代)甲酚环氧丙基醚 BS 丁二烯-苯乙烯共聚物 BS-1S 新型密封胶 BSH 苯磺酰肼 BSU N,N’-双(三甲基硅烷)脲 BT 聚丁烯-1热塑性塑料 BTA 苯并三唑 BTX 苯-甲苯-二甲苯混合物 BX 渗透剂 BXA 己二酸二丁基二甘酯 BZ 二正丁基二硫代氨基甲酸锌 C 英文缩写全称 CA 醋酸纤维素 CAB 醋酸-丁酸纤维素 CAN 醋酸-硝酸纤维素 CAP 醋酸-丙酸纤维素 CBA 化学发泡剂

有限元分析中英文对照资料

The finite element analysis Finite element method, the solving area is regarded as made up of many small in the node connected unit (a domain), the model gives the fundamental equation of sharding (sub-domain) approximation solution, due to the unit (a domain) can be divided into various shapes and sizes of different size, so it can well adapt to the complex geometry, complex material properties and complicated boundary conditions Finite element model: is it real system idealized mathematical abstractions. Is composed of some simple shapes of unit, unit connection through the node, and under a certain load. Finite element analysis: is the use of mathematical approximation method for real physical systems (geometry and loading conditions were simulated. And by using simple and interacting elements, namely unit, can use a limited number of unknown variables to approaching infinite unknown quantity of the real system. Linear elastic finite element method is a ideal elastic body as the research object, considering the deformation based on small deformation assumption of. In this kind of problem, the stress and strain of the material is linear relationship, meet the generalized hooke's law; Stress and strain is linear, linear elastic problem boils down to solving linear equations, so only need less computation time. If the efficient method of solving algebraic equations can also help reduce the duration of finite element analysis. Linear elastic finite element generally includes linear elastic statics analysis and linear elastic dynamics analysis from two aspects. The difference between the nonlinear problem and linear elastic problems: 1) nonlinear equation is nonlinear, and iteratively solving of general; 2) the nonlinear problem can't use superposition principle; 3) nonlinear problem is not there is always solution, sometimes even no solution. Finite element to solve the nonlinear problem can be divided into the following three categories: 1) material nonlinear problems of stress and strain is nonlinear, but the stress and strain is very small, a linear relationship between strain and displacement at this time, this kind of problem belongs to the material nonlinear problems. Due to theoretically also cannot provide the constitutive relation can be accepted, so, general nonlinear relations between stress and strain of the material based on the test data, sometimes, to simulate the nonlinear material properties available mathematical model though these models always have their limitations. More important material nonlinear problems in engineering practice are: nonlinear elastic (including piecewise linear elastic, elastic-plastic and viscoplastic, creep, etc. 2) geometric nonlinear geometric nonlinear problems are caused due to the nonlinear relationship between displacement. When the object the displacement is larger, the strain and displacement relationship is nonlinear relationship. Research on this kind of problem Is assumes that the material of stress and strain is linear relationship. It consists

相关文档
最新文档