毕业设计外文文献翻译(可编辑修改word版)

合集下载

毕业设计英语翻译Word版

毕业设计英语翻译Word版

电动汽车永磁无刷直流电机的轴向永磁体的运动轨迹设计N. A. Rahim, Member, IEEE, Hew Wooi Ping, Member, IEEE, M Tadjuddin 摘要:汽车制造商如丰田、本田、福特和现代都在从事紧急的研究、开发和制造燃料高效、环保的混合动力电动汽车。

电动机是混合动力车辆一个主要的能源消耗零件。

在驱动时电机除了要求高效率,还必须有强转矩和紧凑的设计。

本文设计一个电动马达直接驱动电动车辆。

设计了一种永磁电机以轴向磁槽内stator-non类型。

初步设计了一个电机转子16对磁极低速稳定的旋转下高转矩和大密度能量。

电机设计时利用Ansoft Maxwell3D进行了模拟电磁仿真有限元法(FEM)软件得到一定的参数。

电机安装在一个实验平台上,用实验测试数据对其结果进行比较,得到了仿真结果。

关键词:电动车、轴向磁永久性的永磁电机、驱动1引言电动汽车(EV)在不久的将来能成为一种非常明智的选择的交通工具。

一般而言,它是物美价廉,无污染的个人运输需要一种的新的方法。

大卫卡先生在1870年开发了一辆由笨重蓄电池和轻型电机组成的汽车,但是驾驶的速度和续航里程都很差。

在这多年后, 1898年年仅23岁得费迪南德保时捷博士制造了自己的第一辆车,Lohner电动四轮马车。

这是世界上第一辆前轮驱动的汽车。

他的第二辆汽车是一个混合型的,利用内燃机旋转带动发电机发电,驱动安装在车轮毂中的电动机。

单靠电池这辆车可以行使40公里。

在世界各地,有很多研究人员和工程师一直研究和开发最适合的电动汽车电机,是一个正在进行的敏锐过程。

永磁无刷直流电机已经成为电动汽车运用中最普遍的电机。

高级电源电子技术,比如适当的转换拓扑结构,自控制技术和强大的数字信号处理使我们能够建造一个高效、紧凑的驱动系统。

永磁无刷电机最突出的特点紧实度、低重量和高效率。

正是由于这些原因,永磁无刷电机为电动的发展提供了一个很好的选择。

java毕业设计中英文翻译

java毕业设计中英文翻译

java毕业设计中英文翻译篇一:JAVA外文文献+翻译Java and the InternetIf Java is, in fact, yet another computer programming language, you may question why it is so important and why it is being promoted as a revolutionary step in computer programming. The answer isn’t immediately obvious if you’re coming from a traditional programming perspective. Although Java is very useful for solving traditional stand-alone programming problems, it is also important because it will solve programming problems on the World Wide Web.1. Client-side programmingThe Web’s initial server-browser design provided for interactive content, but the interactivity was completely provided by the server. The server produced static pages for the client browser, which would simply interpret and display them. Basic HTML contains simple mechanisms for data gathering: text-entry boxes, check boxes, radio boxes, lists and drop-down lists, as well as a button that can only be programmed to reset the data on the form or “submit” the data on the form backto the server. This submission passes through the Common Gateway Interface (CGI) provided on all Web servers. The text within the submission tells CGI what to do with it. The most common action is to run a program located on the server in a directory that’s typically called “cgi-bin.” (If you watch the address window at the top of your browser when you push a button on a Web page, you can sometimes see “cgi-bin” within all the gobbledygook there.) These programs can be written in most languages. Perl is a common choice because it is designed for text manipulation and is interpreted, so it can be installed on any server regardless of processor or operating system. Many powerful Web sites today are built strictly on CGI, and you can in fact do nearly anything with it. However, Web sites built on CGI programs can rapidly become overly complicated to maintain, and there is also the problem of response time. The response of a CGI program depends on how much data mustbe sent, as well as the load on both the server and the Internet. (On top of this, starting a CGI program tends to be slow.) The initial designers of the Web didnot foresee how rapidly this bandwidth would be exhausted for the kinds of applications people developed. For example, any sort of dynamic graphing is nearly impossible to perform with consistency because a GIF file must be created and moved from the server to the client for each version of the graph. And you’ve no doubt had direct experience with something as simple as validating the data on an input form. You press the submit button on a page; the data is shipped back to the server; the server starts a CGI program that discovers an error, formats an HTML page informing you of the error, and then sends the page back to you; you must then back up a page and try again. Not only is this slow, it’s inelegant.The solution is client-side programming. Most machines that run Web browsers are powerful engines capable of doing vast work, and with the original static HTML approach they are sitting there, just idly waiting for the server to dish up the next page. Client-side programming means that the Web browser is harnessed to do whatever work it can, and the result for the user is a much speedier and more interactive experience atyour Web site.The problem with discussions of client-side programming is that they aren’t very different from discussions of programming in general. The parameters are almost the same, but the platform is different: a Web browser is like a limited operating system. In the end, you must still program, and this accounts for the dizzying array of problems and solutions produced by client-side programming. The rest of this section provides an overview of the issues and approaches in client-side programming.2.Plug-insOne of the most significant steps forward in client-side programming is the development of the plug-in. This is a way for a programmer to add new functionality to the browser by downloading a piece of code that plugs itself into the appropriate spot in the browser. It tells the browser “from now on you can perform this new activity.” (You need to download the plug-in only once.) Some fast and powerful behavior is added to browsers via plug-ins, but writing a plug-in is not a trivial task, and isn’t something you’d wantto do as part of the process of building a particular site. The value of the plug-in for client-side programming is that it allows an expert programmer to develop a new language and add that language to a browser without the permission of the browser manufacturer. Thus, plug-ins provide a “back door”that allows the creation of new client-side programming languages (although not all languages are implemented as plug-ins).3.Scripting languagesPlug-ins resulted in an explosion of scripting languages. With a scripting language you embed the source code for your client-side program directly into the HTML page, and the plug-in that interprets that language is automatically activated while the HTML page is being displayed. Scripting languages tend to be reasonably easy to understand and, because they are simply text that is part of an HTML page, they load very quickly as part of the single server hit required to procure that page. The trade-off is that your code is exposed for everyone to see (and steal). Generally, however, you aren’t doing amazingly sophisticatedthings with scripting languages so this is not too much of a hardship.This points out that the scripting languages used inside Web browsers are really intended to solve specific types of problems, primarily the creation of richer and more interactive graphical user interfaces (GUIs). However, a scripting language might solve 80 percent of the problems encountered in client-side programming. Your problems might very well fit completely within that 80 percent, and since scripting languages can allow easier and faster development, you should probably consider a scripting language before looking at a more involved solution such as Java or ActiveX programming.The most commonly discussed browser scripting languages are JavaScript (which has nothing to do with Java; it’s named that way just to grab some of Java’s marketing momentum), VBScript (which looks like Visual Basic), andTcl/Tk, which comes from the popular cross-platform GUI-building language. There are others out there, and no doubt more in development.JavaScript is probably the most commonly supported. It comes built into both Netscape Navigator and the Microsoft Internet Explorer (IE). In addition, there are probably more JavaScript books available than there are for the other browser languages, and some tools automatically create pages using JavaScript. However, if you’re already fluent in Visual Basic or Tcl/Tk, you’ll be more productive using those scripting languages rather than learning a new one. (You’ll have your hands full dealing with the Web issues already.)4.JavaIf a scripting language can solve 80 percent of the client-side programming problems, what about the other 20 percent—the “really hard stuff?” The most popular solution today is Java. Not only is it a powerful programming language built to be secure, cross-platform, and international, but Java is being continually extended to provide language features and libraries that elegantly handle problems that are difficult in traditional programming languages, such as multithreading, database access, network programming, and distributed computing. Java allowsclient-side programming via the applet.An applet is a mini-program that will run only under a Web browser. The applet is downloaded automatically as part of a Web page (just as, for example, a graphic is automatically downloaded). When the applet is activated it executes a program. This is part of its beauty—it provides you with a way to automatically distribute the client software from the server at the time the user needs the client software, and no sooner. The user gets the latest version of the client software without fail and without difficult reinstallation. Because of the way Java is designed, the programmer needs to create only a single program, and that program automatically works with all computers that have browsers with built-in Java interpreters. (This safely includes the vast majority of machines.) Since Java is a full-fledged programming language, you can do as much work as possible on the client before and after making requests of theserver. For example, you won’t need to send a request form across the Internet to discover that you’ve gotten a date or some other parameter wrong, and yourclient computer can quickly do the work of plotting data instead of waiting for the server to make a plot and ship a graphic image back to you. Not only do you get the immediate win of speed and responsiveness, but the general network traffic and load on servers can be reduced, preventing the entire Internet from slowing down.One advantage a Java applet has over a scripted program is that it’s in compiled form, so the source code isn’t available to the client. On the other hand, a Java applet can be decompiled without too much trouble, but hiding your code is often not an important issue. Two other factors can be important. As you will see later in this book, a compiled Java applet can comprise many modules and take multiple server “hits” (accesses) to download. (In Java 1.1 and higher this is minimized by Java archives, called JAR files, that allow all the required modules to be packaged together and compressed for a single download.) A scripted program will just be integrated into the Web page as part of its text (and will generally be smaller and reduce server hits). This could be important to the responsiveness of your Website. Another factor is the all-important learning curve. Regardless of what you’ve heard, Java is not a trivial language to learn. If you’re a Visual Basic programmer, moving to VBScript will be your fastest solution, and since it will probably solve most typical client/server problems you might be hard pressed to justify learning Java. If you’re experienced with a scripting language you will certainly benefit from looking at JavaScript or VBScript before committing to Java, since they might fit your needs handily and you’ll be more productive sooner.to run its applets withi5.ActiveXTo some degree, the competitor to Java is Microsoft’s ActiveX, although it takes a completely different approach. ActiveX was originally a Windows-only solution, although it is now being developed via an independent consortium to become cross-platform. Effectively, ActiveX says “if your program connects to篇二:JAVA思想外文翻译毕业设计文献来源:Bruce Eckel. Thinking in Java [J]. Pearson Higher Isia Education,XX-2-20.Java编程思想 (Java和因特网)既然Java不过另一种类型的程序设计语言,大家可能会奇怪它为什么值得如此重视,为什么还有这么多的人认为它是计算机程序设计的一个里程碑呢?如果您来自一个传统的程序设计背景,那么答案在刚开始的时候并不是很明显。

毕业设计论文外文文献翻译

毕业设计论文外文文献翻译

毕业设计(论文)外文文献翻译院系:财务与会计学院年级专业:201*级财务管理姓名:学号:132148***附件: 财务风险管理【Abstract】Although financial risk has increased significantly in recent years risk and risk management are not contemporary issues。

The result of increasingly global markets is that risk may originate with events thousands of miles away that have nothing to do with the domestic market。

Information is available instantaneously which means that change and subsequent market reactions occur very quickly。

The economic climate and markets can be affected very quickly by changes in exchange rates interest rates and commodity prices。

Counterparties can rapidly become problematic。

As a result it is important to ensure financial risks are identified and managed appropriately. Preparation is a key component of risk management。

【Key Words】Financial risk,Risk management,YieldsI. Financial risks arising1.1What Is Risk1.1.1The concept of riskRisk provides the basis for opportunity. The terms risk and exposure have subtle differences in their meaning. Risk refers to the probability of loss while exposure is the possibility of loss although they are often used interchangeably。

山东建筑大学本科毕业设计说明书外文文献及翻译格式模版1.doc

山东建筑大学本科毕业设计说明书外文文献及翻译格式模版1.doc

山东建筑大学本科毕业设计说明书外文文献及翻译格式模版1附件3:(本科毕业论文)文献、资料题目:院(部)专班姓名:张三学号:指导教师:张九光翻译日期:2005.6.30,the National Institute of Standards and Technology (NIST) has been working to develop a new encryption standard to keep government information secure .The organization is in the final stages of an open process of selecting one or more algorithms ,or data-scrambling formulas ,for the new Advanced Encryption Standard (AES) and plans to make adecision by late summer or early fall .The standard is slated to go into effect next year .AES is intended to be a stronger ,more efficient successor to Triple Data Encryption Standard (3DES),which replaced the aging DES ,which was cracked in less than three days in July 1998.“Until we have the AES ,3DES will still offer protection for years to come .So there is no need to immediately switch over ,”says Edward Roback ,acting chief of the computer security division at NIST and chairman of the AES selection committee .“What AES will offer is a more efficient algorithm .It will be a federal standard ,but it will be widely implemented in the IT community .”According to Roback ,efficiency of the proposed algorithms is measured by how fast they can encrypt and decrypt information ,how fast they can present an encryption key and how much information they can encrypt .The AES review committee is also looking at how much space the algorithm takes up on a chip and how much memory it requires .Roback says the selection of a more efficient AES will also result in cost savings and better use of resources .“DES w as designed for hardware implementations ,and we are now living in a world of much more efficient software ,and we have learned an awful lot about the design of algorithms ,”says Roback .“When you start multiplying this with the billions of implementations done daily ,the saving on overhead on the networks will be enormous .”……山东建筑大学毕业设计(或毕业论文,二选一)外文文献及译文- 1 -以确保政府的信息安全。

(完整版)PLC毕业设计的外文文献(及翻译)

(完整版)PLC毕业设计的外文文献(及翻译)

PLC technique discussion and future developmentT.J.byersElectronic Test Equipment-principles and ApplicationsPrinceton University .AmericaAlong with the development of the ages, the technique that is nowadays is also gradually perfect, the competition plays 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 calculations 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 big power after the electric appliances, but the exportation equipmentsdirect conjunction of the small power can.PLC internal containment have the CPU of the CPU, and take to have an I/ O for expand of exterior to connect a people's address and saving machine three big pieces to constitute, CPU core is from an or many is tired to add the machine to constitute, mathematics that they have the logic operation ability, and can read the procedure save the contents of the machine to drive the homologous saving machine and I/ Os to connect after pass the calculation; The I/ O add inner part is tired the input and output system of the machine and exterior link, and deposit the related data into the procedure saving machine or data saving machine; The saving machine can deposit the data that the I/ O input in the saving machine, and in work adjusting to become tired to add the machine and I/ Os to connect, saving machine separately saving machine RAM of the procedure saving machine ROM and dates, the ROM can do deposit of the data permanence in the saving machine, but RAM only for the CPU computes the temporary calculation usage of hour of buffer space.The PLC anti- interference is very and excellent, our root need not concern its service life and the work situation bad, these all problems have already no longer become the topic that we fail, but stay to our is a concern to come to internal resources of make use of the PLC to strengthen the control ability of the equipments for us, make our equipments more gentle.PLC language is not we imagine of edit collected materials the language or language of Cs to carry on weaving the distance, but the trapezoid diagram that the adoption is original after the electric appliances to control, make the electrical engineering teacher while weaving to write the procedure very easy comprehended the PLC language, and a lot of non- electricity professional also very quickly know and go deep into to the PLC.Is PLC one of the advantage above and only, this is also one part that the people comprehend more and easily, in a lot of equipments, the people have already no longer hoped to see too many control buttons, they damage not only and easily and produce the artificial error easiest, small is not a main error perhaps you can still accept; But lead even is a fatal error greatly is what we can't is tolerant of. New technique always for bringing more safe and convenient operation for us, make we a lot of problems for face on sweep but light, do you understand the HMI? Says the HMI here you basically not clear what it is, also have no interest understanding, change one inside text explains it into the touch to hold orman-machine interface you knew, it combines with the PLC to our larger space.HMI the control not only is reduced the control press button, increase the vivid of the control, more main of it is can sequence of, and at can the change data input to output the feedback with data, control in the temperature curve of imitate but also can keep the manifestation of view to come out. And can write the function help procedure through a plait to provide the help of various what lies in one's power, the one who make operate reduces the otiose error. Currently the HMI factory is also more and more, the function is also more and more strong, the price is also more and more low, and the noodles of the usage are wide more and more. The HMI foreground can say that think to be good.At a lot of situations, the list is a smooth movement that can't guarantee the equipments by the control of the single machine, but pass the information exchanges of the equipments and equipments to attain the result that we want. For example fore pack and the examination of the empress work preface, we will arrive wrapping information feedback to examine the place, and examine the information of the place to also want the feedback to packing. Pass the information share thus to make both the chain connect, becoming a total body, the match of your that thus make is more close, at each other attain to reflect the result that mutually flick.The PLC correspondence has already come more body now its value, at the PLC and correspondence between Places, can pass the communication of the information and the share of the data’s to guarantee that of the equipments moderates mutually, the result that arrive already to repair with each other. Data conversion the adoption RS232 between PLC connect to come to the transmission data, but the RS232 pick up a people and can guarantee 10 meters only of deliver the distance, if in the distance of 1000 meters we can pass the RS485 to carry on the correspondence, the longer distance can pass the MODEL only to carry on deliver.The PLC data transmission is just to be called a form to it in a piece of and continuous address that the data of the inner part delivers the other party, we, the PLC of the other party passes to read data in the watch to carry on the operation. If the data that data in the watch is a to establish generally, that is just the general data transmission, for example today of oil price rise, I want to deliver the price of the oil price to lose the oil ally on board, that is the share of the data; But take data in the watch for an instruction procedure that controls the PLC, that had the difficulty very much, for example you have to control one pedestal robot to pressthe action work that you imagine, you will draw up for it the form that a procedure combine with the data sends out to pass by.The form that information transport contain single work, the half a work and the difference of a workers .The meaning of the single work also is to say both, a can send out only, but a can receive only, for example a spy he can receive the designation of the superior only, but can't give the superior reply; A work of half is also 2 and can send out similar to accept the data, but can't send out and accept at the same time, for example when you make a phone call is to can't answer the phone, the other party also; But whole pair works is both can send out and accept the data, and can send out and accept at the same time. Be like the Internet is a typical example.The process that information transport also has synchronous and different step cent: The data line and the clock lines are synchronous when synchronous meaning lie in sending out the data, is also the data signal and the clock signals to be carry on by the CPU to send out at the same time, this needs to all want the specialized clock signal each other to carry on the transmission and connect to send, and is constrained, the characteristics of this kind of method lies in its speed very quick, but correspond work time of take up the CPU and also want to be long oppositely, at the same time the technique difficulty also very big. Its request lies in canting have an error margins in a dates deliver, otherwise the whole piece according to compare the occurrence mistake, this on the hardware is a bigger difficulty. Applied more and more extensive in some appropriative equipments, be like the appropriative medical treatment equipments, the numerical signal equipments...etc., in compare the one data deliver, its result is very good.And the different step is an application the most extensive, this receive benefit in it of technique difficulty is opposite and want to be small, at the same time not need to prepare the specialized clock signal, its characteristics to lie in, its data is partition, the long-lost send out and accept, be the CPU is too busy of time can grind to a stop sex to work, also reduced the difficulty on the hardware, the data throw to lose at the same time opposite want to be little, we can pass the examination of the data to observe whether the data that we send out has the mistake or not, be like strange accidentally the method, tired addition and eight efficacies method etc, can use to helps whether the data that we examine to send out have or not themistake occurrence, pass the feedback to carry on the discriminator.A line of transmission of the information contains a string of and combines the cent of: The usual PLC is 8 machines, certainly also having 16 machines. We can be at the time of sending out the data a send out to the other party, also can be 88 send out the data to the other party, and 8 differentiations are also the as that we say to send out the data and combine sends out the data. A speed is more and slowly, but as long as 2 or three lines can solve problem, and can use the telephone line to carry on the long range control. But combine the ocular transmission speed is very quick of, it is a string of ocular of 25600%, occupy the advantage in the short distance, the in view of the fact TTL electricity is even, being limited by the scope of one meter generally, it combine unwell used for the data transmission of the long pull, thus the cost is too expensive.Under a lot of circumstances we are total to like to adopt the string to combine the conversion chip to carry on deliver, under this kind of circumstance not need us to carry on to deposited the machine to establish too and complicatedly, but carry on the data exchanges through the data transmission instruction directly, but is not a very viable way in the correspondence, because the PLC of the other party must has been wait for your data exportation at the time of sending out the data, it can't do other works.When you are reading the book, you hear someone knock on door, you stop to start up of affair, open the door and combine to continue with the one who knock on door a dialogue, the telephone of this time rang, you signal hint to connect a telephone, after connecting the telephone through, return overdo come together knock on door to have a conversation, after dialogue complete, you continue again to see your book, this kind of circumstance we are called the interruption to it, it has the authority, also having sex of have the initiative, the PLC had such function .Its characteristics lie in us and may meet the urgently abrupt affairs in the operation process of the equipments, we want to stop to start immediately up of work, the whereabouts manages the more important affair, this kind of circumstance is we usually meet of, PLC while carry out urgent mission, total will keep the current appearance first, for example the address of the procedure, CPU of tired add the machine data etc., be like to stick down which the book that we see is when we open the door the page or simply make a mark, because we treat and would still need to continue immediately after book of see the behind.The CPU always does the affair that should do according to our will, but your mistake of give it an affair, it also would be same to do, this we must notice.The interruption is not only a, sometimes existing jointly with the hour several inside break, break off to have the preferred Class, they will carry out the interruption of the higher Class according to person's request. This kind of breaks off the medium interruption to also became to break off the set. The Class that certainly breaks off is relevant according to various resources of CPU with internal PLC; also following a heap of capacity size of also relevant fasten.The contents that break off has a lot of kinds, for example the exterior break off, correspondence in of send out and accept the interruption and settle and the clock that count break off, still have the WDT to reset the interruption etc., they enriched the CPU to respond to the category while handle various business. Speak thus perhaps you can't comprehend the internal structure and operation orders of the interruption completely also, we do a very small example to explain.Each equipment always will not forget a button, it also is at we meet the urgent circumstance use of that is nasty to stop the button. When we meet the Human body trouble and surprised circumstances we as long as press it, the machine stops all operations immediately, and wait for processing the over surprised empress recover the operation again. Nasty stop the internal I/ O of the internal CPU of the button conjunction PLC to connect up, be to press button an exterior to trigger signal for CPU, the CPU carries on to the I/ O to examine again, being to confirm to have the exterior to trigger the signal, CPU protection the spot breaks off procedure counts the machine turn the homologous exterior I/ O automatically in the procedure to go to also, be exterior interruption procedure processing complete, the procedure counts the machine to return the main procedure to continue to work. Have 1:00 can what to explain is we generally would nasty stop the button of exterior break off to rise to the tallest Class, thus guarantee the safety.When we are work a work piece, giving the PLC a signal, counting PLC inner part the machine add 1 to compute us for a day of workload, a count the machine and can solve problem in brief, certainly they also can keep the data under the condition of dropping the electricity, urging the data not to throw to lose, this is also what we hope earnestly.The PLC still has the function that the high class counts the machine, being us while accept some dates of high speed, the high speed that here say is the data of the in all aspects tiny second class, for example the bar code scanner is scanning the data continuously, calculating high-speed signal of the data processor DSP etc., we will adopt the high class to count the machine to help we carry on count. It at the PLC carries out the procedure once discover that the high class counts the machine to should of interruption, will let go of the work on the hand immediately. The trapezoid diagram procedure that passes by to weave the distance again explains the high class for us to carry out procedure to count machine would automatic performance to should of work, thus rise the Class that the high class counts the machine to high one Class.You heard too many this phrases perhaps:" crash", the meaning that is mostly is a workload of CPU to lead greatly, the internal resources shortage etc. the circumstance can't result in procedure circulate. The PLC also has the similar circumstance, there is a watchdog WDT in the inner part of PLC, we can establish time that a procedure of WDT circulate, being to appear the procedure to jump to turn the mistake in the procedure movement process or the procedure is busy, movement time of the procedure exceeds WDT constitution time, the CPU turn but the WDT reset the appearance. The procedure restarts the movement, but will not carry on the breakage to the interruption.The PLC development has already entered for network ages of correspondence from the mode of the one, and together other works control the net plank and I/ O card planks to carry on the share easily. A state software can pass all se hardwires link, more animation picture of keep the view to carries on the control, and cans pass the Internet to carry on the control in the foreign land, the blast-off that is like the absolute being boat No.5 is to adopt this kind of way to make airship go up the sky.The development of the higher layer needs our continuous effort to obtain. The PLC emergence has already affected a few persons fully, we also obtained more knowledge and precepts from the top one experience of the generation, coming to the continuous development PLC technique, push it toward higher wave tide.可编程控制器技术讨论与未来发展T.J.拜尔斯(电子测试设备原理及应用普林斯顿大学)随着时代的发展,当今的技术也日趋完善、竞争愈演愈烈;单靠人工的操作已不能满足于目前的制造业前景,也无法保证更高质量的要求和高新技术企业的形象。

本科毕业设计外文文献翻译

本科毕业设计外文文献翻译

(Shear wall st ructural design ofh igh-lev el fr ameworkWu Jiche ngAbstract : In t his pape r the basic c oncepts of man pow er from th e fra me sh ear w all str uc ture, analy sis of the struct ur al des ign of th e c ont ent of t he fr ame she ar wall, in cludi ng the seism ic wa ll she ar spa本科毕业设计外文文献翻译学校代码: 10128学 号:题 目:Shear wall structural design of high-level framework 学生姓名: 学 院:土木工程学院 系 别:建筑工程系 专 业:土木工程专业(建筑工程方向) 班 级:土木08-(5)班 指导教师: (副教授)nratiodesign, and a concretestructure in themost co mmonly usedframe shear wallstructurethedesign of p oints to note.Keywords: concrete; frameshearwall structure;high-risebuildingsThe wall is amodern high-rise buildings is an impo rtant buildingcontent, the size of theframe shear wall must comply with building regulations. The principle is that the largersizebut the thicknessmust besmaller geometric featuresshouldbe presented to the plate,the force is close to cylindrical.The wall shear wa ll structure is a flatcomponent. Itsexposure to the force along the plane level of therole ofshear and moment, must also take intoaccountthe vertical pressure.Operate under thecombined action ofbending moments and axial force andshear forcebythe cantilever deep beam under the action of the force levelto loo kinto the bottom mounted on the basis of. Shearwall isdividedinto a whole walland theassociated shear wall in theactual project,a wholewallfor exampl e, such as generalhousingconstruction in the gableor fish bone structure filmwalls and small openingswall.Coupled Shear walls are connected bythecoupling beam shear wall.Butbecause thegeneralcoupling beamstiffness is less thanthe wall stiffnessof the limbs,so. Walllimb aloneis obvious.The central beam of theinflection pointtopay attentionto thewall pressure than the limits of the limb axis. Will forma shortwide beams,widecolumn wall limbshear wall openings toolarge component atbothen ds with just the domain of variable cross-section ro din the internalforcesunder theactionof many Walllimb inflection point Therefore, the calcula tions and construction shouldAccordingtoapproximate the framestructure to consider.The designof shear walls shouldbe based on the characteristics of avariety ofwall itself,and differentmechanical ch aracteristicsand requirements,wall oftheinternalforcedistribution and failuremodes of specific and comprehensive consideration of the design reinforcement and structural measures. Frame shear wall structure design is to consider the structure of the overall analysis for both directionsofthehorizontal and verticaleffects. Obtain theinternal force is required in accordancewiththe bias or partial pull normal section forcecalculation.The wall structure oftheframe shear wall structural design of the content frame high-rise buildings, in the actual projectintheuse of themost seismic walls have sufficient quantitiesto meet thelimitsof the layer displacement, the location isrelatively flexible. Seismic wall for continuous layout,full-length through.Should bedesigned to avoid the wall mutations in limb length and alignment is notupand down the hole. The sametime.The inside of the hole marginscolumnshould not belessthan300mm inordertoguaranteethelengthof the column as the edgeof the component and constraint edgecomponents.Thebi-direc tional lateral force resisting structural form of vertical andhorizontalwallconnected.Each other as the affinityof the shear wall. For one, two seismic frame she ar walls,even beam highratio should notgreaterthan 5 and a height of not less than400mm.Midline columnand beams,wall midline shouldnotbe greater tha nthe columnwidthof1/4,in order toreduce thetorsional effect of the seismicaction onthecolumn.Otherwisecan be taken tostrengthen thestirrupratio inthe column tomake up.If theshear wall shearspan thanthe big two. Eventhe beamcro ss-height ratiogreaterthan 2.5, then the design pressure of thecut shouldnotmakeabig 0.2. However, if the shearwallshear spanratioof less than two couplingbeams span of less than 2.5, then the shear compres sion ratiois notgreater than 0.15. Theother hand,the bottom ofthe frame shear wallstructure to enhance thedesign should notbe less than200mmand notlessthanstorey 1/16,otherpartsshouldnot be less than 160mm and not less thanstorey 1/20. Aroundthe wall of the frame shear wall structure shouldbe set to the beam or dark beamand the side columntoform a border. Horizontal distributionofshear walls can from the shear effect,this design when building higher longeror framestructure reinforcement should be appropriatelyincreased, especially in the sensitiveparts of the beam position or temperature, stiffnesschange is bestappropriately increased, thenconsideration shouldbe givento the wallverticalreinforcement,because it is mainly from the bending effect, andtake in some multi-storeyshearwall structurereinforcedreinforcement rate -likelessconstrained edgeofthecomponent or components reinforcement of theedge component.References: [1 sad Hayashi,He Yaming. On the shortshear wall high-rise buildingdesign [J].Keyuan, 2008, (O2).高层框架剪力墙结构设计吴继成摘要: 本文从框架剪力墙结构设计的基本概念人手, 分析了框架剪力墙的构造设计内容, 包括抗震墙、剪跨比等的设计, 并出混凝土结构中最常用的框架剪力墙结构设计的注意要点。

毕业设计论文 外文文献翻译

毕业设计论文 外文文献翻译

毕业设计(论文)外文参考文献翻译计算机科学与信息工程系系(院)2008 届题目企业即时通Instant Messaging for Enterprises课题类型技术开发课题来源自选学生姓名许帅专业班级 04计算机科学与技术指导老师王占中职称工程师完成日期:2008年4 月 6 日目录I NSTANT M ESSAGING FOR E NTERPRISE (1)1. Tips (1)2. Introduction (1)3. First things first (2)4.The While-Accept loop (4)5. Per-Thread class (6)6. The Client class (7)企业即时通 (9)1.提示 (9)2.简介 (9)3.首先第一件事 (10)4.监听循环 (11)5.单线程类 (13)6.用户端类 (14)Instant Messaging for Enterprise1. TipsIf Java is, in fact, yet another computer programming language, you may question why it is so important and why it is being promoted as a revolutionary step in computer programming. The answer isn’t immediately obvious if you’re coming from a tr aditional programming perspective. Although Java is very useful for solving traditional standalone programming problems, it is also important because it will solve programming problems on the World Wide Web. What is the Web?The Web can seem a bit of a mys tery at first, with all this talk of “surfing,”“presence,” and “home pages.” It’s helpful to step back and see what it really is, but to do this you must understand client/server systems, another aspect of computing that is full of confusing issues. The primary idea of a client/server system is that you have a central repository of information,some kind of data, often in a database。

毕业设计英文翻译》【范本模板】

毕业设计英文翻译》【范本模板】

外文文献翻译(译成中文1000字左右):【主要阅读文献不少于5篇,译文后附注文献信息,包括:作者、书名(或论文题目)、出版社(或刊物名称)、出版时间(或刊号)、页码。

提供所译外文资料附件(印刷类含封面、封底、目录、翻译部分的复印件等,网站类的请附网址及原文】太阳能—地源热泵的热源性能Y。

Bi1,2,L. Chen1*and C. Wu3本论文研究了中国天津冬季里的太阳能—地源热泵的太阳能与地源性能。

结果被用于设计和分析的太阳能集热器和地面热交换器。

太阳能-地源热泵在这个地区的使用可行性是成立的. 关键词:太阳能,地源热泵,可行性。

介绍地源热泵(GSHP)利用地下相对稳定的温度作为热源或水槽提供热源或调节空气。

GSHP 系统寻求利用常规空气—空气热泵系统的两方面可用的功能。

首先,地下环境温度缓慢地变化,归结于其高的热质量,导致了相对稳定的源或者散热器的温度而不受较大的极限。

其次,被地面吸收的太阳能在整个冬季可以热源。

自从地源热泵的观念在二十世纪四十年代被发展,大量的理论和实验工作都完成了,实验研究审查了具体的地源热泵系统和现场数据。

理论研究已经集中于用数值方法模拟地下盘管换热器以及研究参数对系统性能的影响。

太阳能—地源热泵(SGSHP)采用太阳能集热器和大地作为热源开始发展于1982年。

热泵实验系统用垂直双螺旋线圈(VSDC)地下换热器(GHX)为太阳能—地源热泵(SGSHP)利用低品位能源,这种方法已经被作者们所创造。

(图1)蒸汽压缩热泵的加热负荷和性能系数(COP)取决于蒸发温度和热源温度。

SGSHP采用太阳能集热器和大地作为热源,因此,其应用主要是依靠太阳能和土壤源性能。

在本论文中,中国天津的气象数据被用来分析SGSHP在该区域的应用可行性。

太阳能源分析天津的太阳能在中国处于中等水平。

1966—1976年期间天津的太阳能辐射月平均变化如图2所示。

结果表明,该太阳能集热器在夏天可以直接用于提供热水。

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

毕业设计外文文献翻译专业学生姓名班级学号指导教师优集学院外文资料名称:Knowledge-Based Engineeri--ng Design Methodology外文资料出处:Int.J.Engng Ed.Vol.16.No.1附件:1.外文资料翻译译文2.外文原文1.背景基于知识工程(KBE)设计方法D. E. CALKINS复杂系统的发展需要很多工程和管理方面的知识、决策,它要满足很多竞争性的要求。

设计被认为是决定产品最终形态、成本、可靠性、市场接受程度的首要因素。

高级别的工程设计和分析过程(概念设计阶段)特别重要,因为大多数的生命周期成本和整体系统的质量都在这个阶段。

产品成本的压缩最可能发生在产品设计的最初阶段。

整个生命周期阶段大约百分之七十的成本花费在概念设计阶段结束时,缩短设计周期的关键是缩短概念设计阶段,这样同时也减少了工程的重新设计工作量。

工程权衡过程中采用良好的估计和非正式的启发进行概念设计。

传统CAD 工具对概念设计阶段的支持非常有限。

有必要,进行涉及多个学科的交流合作来快速进行设计分析(包括性能,成本,可靠性等)。

最后,必须能够管理大量的特定领域的知识。

解决方案是在概念设计阶段包含进更过资源,通过消除重新设计来缩短整个产品的时间。

所有这些因素都主张采取综合设计工具和环境,以在早期的综合设计阶段提供帮助。

这种集成设计工具能够使由不同学科的工程师、设计者在面对复杂的需求和约束时能够对设计意图达成共识。

那个设计工具可以让设计团队研究在更高级别上的更多配置细节。

问题就是架构一个设计工具,以满足所有这些要求。

2.虚拟(数字)原型模型现在需要是一种代表产品设计为得到一将允许一产品的早发展和评价的真实事实上原型的过程的方式。

虚拟样机将取代传统的物理样机,并允许设计工程师,研究“假设”的情况,同时反复更新他们的设计。

真正的虚拟原型,不仅代表形状和形式,即几何形状,它也代表如重量,材料,性能和制造工艺的非几何属性。

设计人员希望设计的表述,将成为一个既有几何又有非几何属性的物理原型确切的表示。

产品表示法已经从二维的形状和几何的形式字形绘画的表示法移动向充分的三维几何模型表示法。

设计工具,用于设计工程领域的需要,显然必须有刚才讨论的所有工具的属性。

它必须结合计算机辅助设计系统的几何表示法,能做对程序语言的工程分析和代表设计知识在一个专家系统。

一个真正的虚拟原型包含此全方位设计知识。

3.启用的技术设计3.1.知识类型如同适用于KBE 那样,知识能分成四种类型:.事实,.程序,.判断,.控制。

在手册找到的形式化的知识例如原材料明细表,设计data,ASTM 标准和设备规格被认为事实知识。

算法的和操作的知识是程序上的知识的两种形式。

数字的和非数字的解决问题一或者完成中的一些末端的过程是所有的算法的程序上的知识(APK)的原理。

事实被APK 通过工程和分析算法改变。

有效的程序知识(OPK)被用于创造,删除和运输事实。

OPK 节目的例子是有限元素分析、优化和数据库管理系统[1]。

经验法则和共同的实践是评断知识的实例。

启发式,意见,经验,与合情推理中还包括判断的知识。

逻辑和推理的形式原则是基本的判断知识的应用。

控制知识元知识或知识有关知识,知识的其他类型的管理控制知识。

仿造直系活动,意想不到的发展的预期,并且应付不确定性是所有特点控制知识[1]。

3.2.基于知识的工程(KBE)该技术允许一个真正的产品虚拟样机开发被称为基于知识的工程,或KBE。

KBE 是捕捉和对结构设计,其设计过程的知识方法。

知识经济可以用来定义工程方法和程序[2]。

在KBE,产品结构树(拓扑学)是动态的,因此知识经济提供真正的工程自动化,包括应用开发,几何造型,应用程序部署和工具的集成。

基于知识工程是一种编程工具,用于开发一个虚拟原型设计顾问或为一个建立了产品设计,在给定的设计领域。

关于设计类的现有的知识在基于知识的工程学或设计被运用(KBE 或KBD)并且被组织入能用数据库的格式由计算机。

详细设计或虚拟原型,然后迅速开发基于知识的工程(KBE)的设计方法,通过对23 位计算能力来开发数据库,和规则系统。

该产品模型是在KBE 环境下开发的虚拟样机。

虚拟原型,如材料的所有几何特征或属性的产品,以及非几何属性,质量特性,应力和挠度特性等虚拟样机一旦被创建,它可以由设计者使用评估成功或设计配置的优点,然后修改。

该产品模型表示后面的几何设计工程意图。

在产品模型中包含的信息包括物理属性如几何,材料种类和功能限制。

3.3.生成技术有三种KBE 的工具,目前正在探索和发展类型。

这些措施包括:1.诊断方法(专家系统)。

2.创造性的方法(设计顾问)/(设计检查)。

3.生成方法(虚拟样机)。

专家系统是第一种类型的工具发达国家在工程领域的使用,这个工具用于诊断目的,例如分析汽车发动机出现故障。

第二类,设计顾问,更是目前的事态发展之一。

它是用来反映了一个系统的设计过程,并告知约束和规则的基础上违反设计师与设计顾问所载的规则。

设计师在这意见后行动并且做适当的变动。

第三类涉及到建立一个以该模型中的规则为基础的系统模型。

这个模型,一个真正原型,然后起反应对在属性(几何或非几何)和再生原型的一个新的事例上的变化。

这是用于被开发的类KBE 的种类。

KBE 利用生成技术来获取通用产品设计信息,包括几何和拓扑结构,产品结构的发展及制造工艺设计规则。

生成建模地图功能规格,该产品的详细陈述。

一个生成模型的优点是,由于产品需求的变化,外观设计的表述是立即更新,直接影响到所有输出。

因此,KBE 是一种动态的对象模型,其中对外观设计的表述是不断更新。

知识工程的方法设施为迅速生成模型生成新的功能规格设计的工程设计和制造知识获取。

相对于传统的设计工具,KBE 提供真正的设计与自动化设计协助。

在设计过程期间,KBE 是系统的连续的再设计的一种健壮设计技术。

3.4.KBE 的代表性产品当前KBE 软件是基于面向对象非诉讼程序设计语言,比如LISP 语言。

因此,设计资料无须下令在模型正确,因为它会制订该命令本身。

面向对象编程工程对象的概念,用于表示的特点,无论几何和非几何,实际物理对象。

对象不是被动的,但可以反应其他对象。

一个对象可以创建和存储信息和采取行动应对外部刺激。

一个对象可以从另一个信息需求对象,或者将信息发送到另一个对象。

KBE 实现了真正的并行工程攻克了一系列的捐助领域的专门知识在一个组织。

这可以包括代表从设计,工程,模具和其他制造业领域。

KBE 的供应商有一个捕捉行之有效的方法和编纂这种产品信息的范围。

通常情况下,KBE 的开发将与方法顾问学习“知识捕获”进程的第一个发展项目,然后将转让和应用这些技能后续项目。

3.5.KBE 工具有许多不同的软件工具可用于KBE 发展。

当中包括ICAD TM,TKSolver TM,设计Link TM,ProEngineer TM,STONErule TM 和智能Elements TM。

所有这些集成了至少1 现代CAD 系统提供一个当代集成设计系统。

Unigraphics 系统,CATIA TM,支持Engineer TM,IDEAS TM 和自动CAD TM 是一些选择。

这些软件工具用于开发d o m a i n s pe c if i c这两个知识工程的方法设计工具,设计顾问和虚拟样机。

3.6.生成虚拟样机(G V P公司)这种虚拟原型的方法奠定了基础的KBE 描述,是基于对KBE 的智能CAD 软件的使用[5]。

智能CAD 使用为元设计,这是设计工具设计在一个产品模型的形式。

该产品模型是产品结构,工程分析,产品成本,设计标准,管理准则,材料特性,制造约束和进程计划的框架。

它能够输出设计报告,表示该产品的设计状态。

该报告可以包括例如:分析,3 个数据的三维几何模型,材料,成本报告和指示草案。

GVP 公司的捕获和自动化功能设计的规则和方法的理解在工程过程。

在GVP 公司为工程师提供了有效的替代功能选择和操作。

工程师添加他们的判断力,优化设计,最终系统。

阿生成虚拟样机(GVP 公司)是一个系统既是模型的几何和非24 D.尔金斯等。

一个产品(一个对象)的几何属性中嵌入了KBE 的模式。

它存储知识在组成一个产品模型系统设计和制造工程的规则,同时解决几何和非几何的问题。

阿生成虚拟原型是这些设计规则的组合,其中包括对工程指令用于创建的设计,也就是车辆的几何形状。

生成虚拟样机的代表背后的几何设计工程意图。

它可以存储诸如几何和材料规格,以及过程和性能信息产品信息。

生成虚拟样机的范例被定义如下:生成:生成或自动产生这一虚拟原型的实例,以响应输入状态向量。

采取输入规范说明,运用相关的做法并且自动地引起设计。

当要求改变时,设计与所有表现产品一起立刻被更新。

虚拟的影响,虽然没有实际的事实:[1]基于计算机模型原型:原来的模式,或一个具体的例子类型。

3.7.设计规则KBE 是基于知识的设计使用形式的设计规则,设计规则构成了一个对象的核心。

设计规则包括4 种基本类型:1.启发式:包括实验的经验规则和最佳做法。

通常是基于企业文化设计的启发。

这些都是的类型,如果(条件为真),然后(行动推荐)。

2.经验设计规则:这些规则根据从实验性数据被开发的曲线适合的表示。

元模型技术用于开发复杂系统的模型。

3.立法限制:这些都是组成法律或工程的既定规则标准。

4.物理定律:首次原则为基础的分析或数值模式的形式。

也被称为参数的规则。

这些规则通常是使用报表模型解决简单的算法。

设计规则用于合成中的知识基础知识,如何在给定的模型建立知识。

设计规则来定义和涉及双方在知识经济模式的属性。

工程师的方法和过程由这些规则仿造。

设计规则类型包括:.计算.条件句.查寻数据库.固定.变量.引用.执行外部程序.选择.优化。

Knowledge-Based Engineering (KBE) Design MethodologyBACKGROUNDThe development of complex systems requires a sequence of engineering and management decisions which must satisfy many competing requirements. Design is recognized as the primary contributor to the final product form, cost, reliability and market acceptance. The high-level engineering design and analysis process (conceptual design phase) is particularly important since the majority of the life-cycle costs and overall quality of the system are determined during this phase. The major opportunities for cost savings occur in the earliest phases of a product design. Approximately seventy per cent of the life- cycle costs are frozen by the end of the conceptual design phase, Fig. 1. The key to shortening the design cycle is to shorten the conceptual design phase, which will also reduce the amount of engineering in the redesign stage.The engineering trade-off process during conceptual design is undertaken using good estimations and informal heuristics. Current traditional CAD tool support is extremely limited for the conceptual design phase. There is need to rapidly conduct design analyses involving multiple disciplines communicating together (trading off such things as performance, cost, reliability, etc.). Finally, it is necessary to be able to manage a large amount of domain-specific knowledge. The solution is to commit more resources at the conceptual design stage to reduce the cycle time by eliminating redesign.All of these factors argue for an integrated design tool and environment that can help make decisions early in the design synthesis (conceptual design) process. This integrated design tool will enable a diverse and multi-disciplinary team of engineers, designers and stylists to achieve consensus of design intent under complex design requirements and increased design constraints. The design tool should allow the design team to examine more configurations at greater levels of detail. The problem then is to develop an architecture for a design tool that meets all of these requirements.VIRTUAL (DIGITAL) PROTOTYPE MODELWhat is needed is a way to represent the product design process to obtain a true virtual prototype which would allow the early development and evaluation of a product. The virtual prototype would replace traditional physical prototypes and allow the design engineer to examine `what-if' scenarios while iteratively updating their designs. A truevirtual prototype would not only represent the shape and form, i.e. the geometry, it would also represent non-geometric attributes such as weight, material, performance and manufacturing processes. Designers want a design representation that will be an exact representation of a physical prototype with both geometrical and non-geometrical attributes.Product representation has moved from the 2-D orthographic drawing representation of the shape and form of the geometry, to full 3-D model representation of the geometry. The design tool that is needed for the design engineering domain, clearly must have attributes of all of the tools just discussed. It must combine the geometrical representation of the CAD systems, be able to do the engineering analysis of the procedural languages and represent the design knowledge as in an expert system. A true virtual prototype contains this full range of design knowledge.ENABLING TECHNOLOGIES FOR DESIGNTypes of knowledge. Knowledge’, as applied to KBE, can be divided into f our types [1]:. facts,. procedures,. judgments,. control.Formalized knowledge found in handbooks such as material specifications, engineering data,ASTM standards, and equipment specifications is considered factual knowledge. Algorithmic and operative knowledge are the two forms of procedural knowledge. Numeric and non-numeric procedures for solving a problem or accomplishing some end are all elements of algorithmic procedural knowledge (APK). Facts are transformed by APK through engineering and analysis algorithms.Operative procedural knowledge (OPK) is used to create, delete, and transport facts. Examples of OPK programs are finite-element analysis, optimization, and database management systems [1].Rules of thumb and common best-practices are examples of judgment knowledge. Heuristics,observations, experience, and plausible reasoning are also included in judgment knowledge. Logic and the formal principles of reasoning are fundamental to judgmentknowledge application.Control knowledge is metaknowledge or knowledge about knowledge. The other types of knowledge are managed by control knowledge. Pattern directed actions, anticipation of unexpected developments, and dealing with uncertainties are all features of control knowledge [1].Knowledge-based engineering (KBE)The technology that allows the development of a true virtual prototype of a product is known asknowledge-based engineering, or KBE. KBE is the methodology for capturing and structuring knowledge about a design and its design process. KBE may be used to define engineering methods and procedures [2]. In KBE, the product structure tree (topology) is dynamic, so that KBE offers true engineering automation including application development, geometric modeling, application deployment and tools integration. Knowledge-based engineering is a programming tool used to develop a virtual prototype or a design advisor for the design of an established product in a given design domain. Dym, et al. [3] and Gonzalez, et al.[4] provide valuable overviews of KBE.Existing knowledge about a class of designs is utilized in knowledge-based engineering or design (KBE or KBD) and organized into a database format usable by computers. Detailed designs or virtual prototypes are then rapidly developed Knowledge- Based Engineering (KBE) Design Methodology 23 through the use of digital computing power, developed databases, and systems of rules. The product model which is developed in the KBE environment is a virtual prototype. A virtual prototype has all of the geometric characteristics or attributes of the product as well as the non-geometric attributes such as materials, mass properties, stress and deflection characteristics, etc. Once the virtual prototype is created, it can be used by the designers to evaluate the success or merit of the design configuration, and then modify it if desired. The product model represents the engineering intent behind a geometric design. The information contained in a product model includes physical attributes like geometry, material type and functional constrains. Generative technologyThere are three types of KBE tools that are currently being explored and developed. These include:1.Diagnostic approach (expert system).2.Creative approach (design advisor)/(design checking).3.Generative approach (virtual prototype).The expert system was the first type of tool developed for use in the engineering domain.This tool is used for diagnostic purposes such as analyzing a malfunctioning automobile engine.The second type,design advisor,is the one to more current developments.It is used to follow the design process of a system, and advise the designer of constraint and rules violations based on rules contained with the design advisor. The designer then acts on this advice and makes appropriate changes.The third type involves developing a model of the system based on rules contained with the model. This model, a virtual prototype, then reacts to changes in attributes (either geometric or non-geometric), and regenerating a new instance of the prototype. This is the type of KBE that is used in the classes developed.KBE uses generative technology to capture generic product design information, including geometry and topology, product structure development and manufacturing processes as design rules. Generative modeling maps functional specifications to a detailed representation of the product. The advantage of a generative model is that as the product requirements change, the design representation is immediately updated directly affecting all outputs. Thus, KBE is a dynamic object model wherein the representation of the design is continually updated. KBE methodology facilities the capture of engineering and manufacturing knowledge into a generative model by rapidly generating new designs from functional specifications. In contrast to the conventional design tools, KBE offers true design automation vs. design assistance. KBE is a robust design technology for continuous redesign of a system during the design process.KBE product representationCurrent KBE software is based on an object-oriented non-procedural design language such as LISP. As a result, the design information need not be ordered correctly within the model, as it will work out the order itself. Object-oriented programming works on the concept of objects that are used to represent the characteristics, both geometric and non-geometric, of actual physical objects. Objects are not passive, but can react with other objects. An object can create and store information and act in response to external stimuli. An object can demand information from another object, or send information to another object.KBE enables true concurrent engineering by capturing the domain expertise of a range of contributors in an organization. This can include represent atives from design, engineering, tooling and other areas of manufacturing. KBE vendors have a well- established methodology for capturing and codifying this range of product information. Often, KBE developers will collaborate with methodology consultants to learn the`knowledge capture' process on a first development project and then will transfer and apply those skills to follow-on projects.KBE toolsThere are a variety of software tools available for KBE tool development. Included are ICADTM, TKSolverTM, Design LinkTM, ProEngineerTM,STONEruleTM and Smart ElementsTM. All of these are integrated with at least one of the contemporary CAD systems to provide a contemporary integrated design system. Unigraphics,CATIATM, Pro- EngineerTM, IDEASTM and Auto-CADTM are some of the options.These software tools are used to develop domain-specific design tools of the two KBE approaches,design advisor and the virtual prototype.Generative virtual prototype (GVP)The virtual prototype approach forms the basis of the KBE classes described, and is based on the use of the KBE software ICAD [5]. ICAD is used for metadesign, which is the design of design tools in the form of a product model. The product model is the framework for the product structure, engineering analysis, product cost, design standards,regulatory codes, material characteristics, manu-facturing constrains and process plans. It is able to output a design report that represents the design state of the product. This report can include for example:data for analysis, 3-D geometric models,bills of material, cost reports and manufacturing instructions. The GVP captures and automates the functional design rules and understood methodologies of the engineering process. The GVP provides functionally valid alternatives for engineers to select and manipulate. Theengineers add their judgement to optimize final systems designs.A generative virtual prototype (GVP) is a system model that represents both the geometric and non-D. Calkins, et al.24 geometric attributes of a product (an object) which are embedded in the KBE model. It stores knowledge about a system in a product model composed of design and manufacturing engineering rules,which address both geometric and nongeometric issues. A generative virtual prototype is a combination of these design rules and includes a set of engineering instructions used to create the design,that is, the vehicle geometry. The generative virtual prototype represents the engineering intent behind the geometric design. It can store product information such as geometry and material specifications as well as process and performance information.The generative virtual prototype paradigm is defined as follows:Generative:generate or automatically produce an instance of the virtual prototype in response to an input state vector. Take input specifications, apply relevant procedures and generate a design auto-matically. When the requirements change, the design is updated immediately along with all of performance outputs.Virtual:in effect although not in actual fact:a computer based modelPrototype:original model or example of a particular type.Design rulesKBE is based on the use of design knowledge in the form of ‘design rules’. The design rules form the kernel of an object. Design rules comprise four basic categories:1.Heuristics:comprised of experimental rules of thumb and ‘best practices’.Us ually based on corporate culture design heuristics. These are of the type, If (condition is true), then (action recommended).2.Empirical design rules:these rules are based on curve-fitted expressions that are developed from experimental data. Meta-model technology used to develop models of complex systems.3.Legislated constraints:these are comprised of rules established by law or by engineering standards.ws of physics:based on first principles in the form of analytical or numerical models. Also known as parametric rules. These rules are usually simple algorithms thatwould be solved using spreadsheet models.Design rules are used to synthesize the knowledge in the knowledge base and to establish how the knowledge is used in a given model. The design rules are used to both define and relate the attributes in a KBE model. The methods and processes of an engineer are mimicked by these rules. Design rule types include:. calculations. conditionals. look-up databases. fixed. variable. references. execute external programs. selections. optimizations.。

相关文档
最新文档