英文技术资料翻译(模版)
科技英语翻译文稿[五篇范例]
![科技英语翻译文稿[五篇范例]](https://img.taocdn.com/s3/m/32d96b2c78563c1ec5da50e2524de518964bd3d8.png)
科技英语翻译文稿[五篇范例]第一篇:科技英语翻译文稿Wireless Network Accurately and Inexpensively MonitorsPatients' Breathing无线网络事实上是廉价地监控着病人的呼吸状况。
A couple years ago we saw wireless technology that would allow us to see through walls.Now,几年以前我们就可以看到无线网络可以让我们看到“墙外的东西”。
现在,来自犹他州州立thesame team of researchers, from the University of Utah, is putting that motion detection大学的同一个技术团队正在把移动式检测技术technology to work monitoring breathing patterns.So not only can the network see through your 运用到检测病人的呼吸状况上因此通过网络不仅可以远程观察病人的现状,它甚至可以听到bedroom wall, it can hear you breathing.Less sinisterly, the system could help doctors keep你的呼吸。
这个系统可以帮助医生更好的监控患者睡眠时的呼吸暂停事件,急救病人或婴儿 better track of patients with sleepapnea, surgery patients or babies at risk for sudden infant 的发生突然猝死危险性就变得更低了。
death syndrome.Team leader Neal Patwari demonstrated the system by lying in a hospital bed surrounded by这个团队的带头人尼尔帕特维尔躺在一家医院的病床上,周围布置了20个工作频率为2.4G 20 wireless transceivers operating at a frequency of 2.4 gigahertz.He timed his breathing to be赫兹的无线电收发器以演示这个监控系统的工作状况。
中英文翻译

附录:英文技术资料翻译英文原文:Microsoft Visual C++ 6.0 and MFC Brief IntroductionThe Visual C 6.0, referred to as VC or VC6.0, Microsoft introduced a C compiler, high-level language the program translated into machine language (low-level language). Visual C is a powerful visualization software development tools. , With its new version come out since 1993, Microsoft introduced the Visual C 1.0, Visual C has become the tool of choice for professional programmers to develop software. Microsoft Visual C NET (Visual C 7.0), but its application has great limitations, applies only to Windows 2000, Windows XP and Windows NT 4.0. Practice, are based more on the Visual C 6.0 as a platform.Features and shortcomingsCharacteristicVisual C, 6.0, developed by Microsoft, it is not only a C compiler, and a Windows operating system, a visual integrated development environment (integrated development environment, IDE). Visual C 6.0 is composed of many components, including editor, debugger, and AppWizard AppWizard, ClassWizard Class Wizard and other development tools. These components are integrated through a component called Developer Studio for the harmonious development environment. Microsoft's main software products. Visual C is a powerful visualization software development tools. , With its new version come out since 1993, Microsoft introduced the Visual C 1.0, Visual C has become the tool of choice for professional programmers to develop software. Microsoft Visual C NET (Visual C 7.0), but the limitations of its application only applies to Windows 2000, Windows XP and Windows NT 4.0. Practice, are based more on the Visual C 6.0 as a platform.Visual C, 6.0 to have syntax highlighting, automatic compiler functions and advanced debugging features known. For example, it allows users to remotely debug a single step. As well as allow the user during debugging to recompile the modified code, without having to restart the program being debugged. Compile and create the precompiled header file (the stdafx.h), the minimum reconstruction function and the cumulative link (link). These features significantly shorten the procedure edit, compile and link time to spend, particularly notable in thelarge-scale software projects.ShortcomingC is developed by C language, and also supports the C language compiler. Version 6.0 is the most used version of the classic. The biggest shortcoming is its relatively poor support for templates. The latest patch for SP6, the recommended installation, or prone to compile-time state of suspended animation. Supports only the Windows operating system. Currently found with windows 7 compatibility is not good, can not open the cpp file of the phenomenon may occur after a successful installation.MFCmfc is the abbreviation of the Microsoft Foundation Class Library, Microsoft implemented a c class library encapsulates most of the Windows API function, vc is the integrated development environment developed byMicrosoft Corporation c / c, the so-called integrated development environment, that is use it you can edit, co mpile, debug, instead of using the rotation operation of a variety of tools, greater flexibility. Sometimes people say vc it also refers to its internal compiler, integrated development environment must have a compiler, kernel, or what, such as DevC which the kernel of a compiler is the gcc. MFC is a class library, outside, or a framework, you should be tried, to create a new MFC project in vc, the development environment will help you automatically generate a lot of files at the same time it uses mfcxx.dll. xx is the version of mfc kernel, so you see less than the original SDK programming in the message loop, and things in your code, because the MFC framework to help you better package, so you can concentrate on consideration of your application logic, and what not each programming must be repeated, but is a common framework, not the best targeted, of course, they also lose some flexibility and efficiency of the MFC package is very shallow, so little loss of efficiency flexibility, although there are many defects, but still a good thing.MFC and Win32The MFC the Object and the Windows the Object of the relationship between MFC package yes encapsulation of the Win32 API, therefore, understand the Windows Object and the MFC the Object (C, + + object, a C, + + class's instance) between the understanding of MFC's key one. The so-called the Windows the Object (the Windows object) is under Win32 use handle, said of the Windows operating system object; so-called the MFC the Object (the MFC object) is C, + + object, is a C + + class's instance, here (within the scope of this book) the MFC the Object is to have a specific meaning, refers to the package of Windows Object C + + Object does not refer to any C + + the Object. MFC Object and Windows Object is not the same, but the two closely linked. Window object, for example: an MFC window object is a C + + CWnd class (or derived class) instance, is a program created directly. Program execution with the window class constructor call generation, disappear with the call to t he destructor. Windows window is an instance of an internal data structure of the Windows system from a window handle identifies the Windows system to create it and give it to allocate system resources. Windows window after the MFC window object is created by the Create member function of CWnd class to create a window handle is stored in the window object's m_hWnd member variable. Windows window can be destroyed, a program can also be destroyed by the actions of users. MFC window objects and Windows window object relationship shown in Figure 2-1. the other Windows Object and the corresponding MFC Object also has a similar relationship.MFC window class CWndOn Windows systems, the attributes of a window in two places to store: one part on the inside of the window class ", as described above is specified in the login window; another part on the Windows Object, such as: the size of the window, the window position (X, Y axis), the window Z-order of the state of the window (ACTIVE, MINIMIZED, MAXMIZED, RESTORED ...), and other window (parent window, child window ...), the window can receive keyboard or mouse message and so on.In order to express the commonality of all these windows, the MFC design a window base class of the CWnd. It is very important, CWnd to provide a standard generic MFC window procedure, all windows in MFC use this window. As for the common window procedure was able to achieve different operation for each window, that the mysteries of the MFC message mapping mechanism and role of theCreate a window object in MFCMFC to create a window object in two steps, first create an MFC window object, and then create a corresponding Windows window. Memory use, the MFC window object on the stack or heap (new creation) to create. The specific formulation is as follows:Create an MFC window object. By the definition of a CWnd or its derived class instance variables or dynamically create an MFC window instance, the former stack space to create an MFC window objects, which create an MFC window objects in the heap space.Calls the appropriate window to create a function to create a Windows window object.The use of the MFC windowMFC provides a window class, its function and purpose vary. The programmer should choose which classes to use, and how to use them?Direct use of the MFC provides a window class, or start with the MFC window class derived a new C + + class and then use it under normal circumstances, these do not require the programmer to provide the registration code of the window. Need to derive the new C + + class, as the MFC window class is already able to meet the requirements. Derived C + + class inherits the characteristics of the base class and to change or extend its functionality, such as increasing or change the news, events, special processing.The main use or inherit the following MFC window class (the hierarchy shown in Figure 1-1):Framework class CFrameWnd, CMdiFrameWnd;Document framework CMdiChildWnd;View CView, and CView derived view of the special features such as: list CListView edit CEditView tree list CTreeView, RTF CRichEditView the dialog-based CFormView and so on.Dialog box, the CDialog.Typically, the window must be from the framework of the application of these classes are derived and depending on the window or dialog box.Toolbar CToolBarStatus bar CStatusBarOther types of control window, such as CList of the list box, the CEdit of the edit box, combo box the CComboBox button Cbutton.Typically, the direct use of these classes.The destruction of the window in MFCThe window object after use, should be destroyed. MFC, a window object is the destruction of the destruction including the destruction of the HWND of the window object and MFC window object. Under normal circumstances, MFC programming framework automatically handle these.(1) of CFrameWnd and CView derived classThe closure of these windows lead to the destruction of the window function DestroyWindow is called. Windows window is destroyed, the last member function is called by the MFC framework the OnNcDestroy function, which is responsible for the Windows clean-up work, and the last call virtual member function of the PostNcDestroy. CFrameWnd and CView, PostNcDestroy call delete this delete their own MFC window object.Therefore, these windows, as mentioned above, should be in the heap (Heap) is allocated, but, do not use the delete operations on these objects.(2) for Windows Control windowIn their destructor will be called DestroyWidnow to destroy the window. If such a window object allocated on the stack beyond the scope of the destructor call, the MFC window object and its Windows window object is destroyed. If the heap (Heap) is allocated, then explicitly call delete operator, resulting in the destruction of the destructor calls and window.Therefore, this type of window should be allocated on the stack, to avoid the extra code to destroy the window. As mentioned earlier the CMainFrame member variables m_wndStatusBar and m_wndToolBar is one such example.(3) For programmers directly derived from CWnd windowProgrammers can be implemented in a derived class to one of these two mechanisms, and then, in the corresponding specification.Device descriptor table summarizes theWhen an application uses GDI functions, you must first load a specific device driver, and then draw the window device context, such as the specified line width and color, brush styles and colors, fonts, clipping region. Unlike other Win32 structure, equipment description table can not be accessed directly, only indirectly through a series of Win32 function operation.中文译文:Microsoft Visual C++ 6.0 和MFC简要介绍Visual C ++ 6.0,简称VC或者VC6.0,是微软推出的一款C 编译器,将“高级语言”翻译为“机器语言(低级语言)”的程序。
优秀翻译模板英文作文

优秀翻译模板英文作文英文:As a professional translator, I believe that a good translation should not only convey the meaning of the original text accurately, but also capture the tone and style of the author. To achieve this, it is important to have a deep understanding of both the source and target languages, as well as the cultural context in which the text was written.One key aspect of a good translation is the ability to capture the nuances of the original text. This means not only translating the words themselves, but also the underlying meaning and intent. For example, if a text contains idiomatic expressions or cultural references that may not be familiar to the target audience, the translator should find an equivalent expression or provide a brief explanation to ensure that the meaning is not lost.Another important factor is the tone and style of the author. A good translator should be able to capture the author's voice and convey it in the target language. For example, if the original text is humorous or sarcastic, the translator should strive to maintain that tone in the translation. Similarly, if the text is written in a formal or academic style, the translator should use appropriate language and syntax in the target language.In addition to linguistic and cultural knowledge, a good translator should also have strong research skills. This may involve consulting reference materials, conducting interviews with experts, or doing background research on the topic of the text. By doing so, the translator can ensure that the translation is accurate and reflects the author's intended meaning.Overall, a good translation requires a combination of linguistic, cultural, and research skills. By paying attention to the nuances of the original text and capturing the author's tone and style, a translator can create a translation that is both accurate and engaging.中文:作为一名专业的翻译人员,我认为一个好的翻译不仅要准确传达原文的意思,还要捕捉到作者的语气和风格。
中英互译模板

中英互译模板中英互译是指将中文翻译成英文或将英文翻译成中文的过程。
对于许多人来说,中英互译是一项具有挑战性和困难的任务。
然而,掌握一些基本的中英互译技巧和方法,可以帮助我们更好地完成这项任务。
中英互译模板是一个结构化的指导文件,它可以帮助我们组织我们的思维,确定翻译的主要要点,并确保翻译的准确性和一致性。
下面是一个常用的中英互译模板:1.标题翻译-中文标题:XXXX-英文标题:XXXX2.段落翻译i.原文段落XXXXXXXXiii.翻译说明XXXX(包括使用的翻译方法、工具或参考资料)3.重点句子翻译i.原文句子XXXXii.译文句子XXXXiii.翻译说明XXXX(包括使用的翻译方法、工具或参考资料)4.核心词汇翻译i.原文词汇XXXXXXXXiii.翻译说明XXXX(包括使用的翻译方法、工具或参考资料)5.语法翻译i.原文句子XXXXii.译文句子XXXXiii.翻译说明XXXX(包括使用的翻译方法、工具或参考资料)6.上下文翻译i.原文句子XXXXXXXXiii.翻译说明XXXX(包括使用的翻译方法、工具或参考资料)使用以上中英互译模板可以帮助我们规范翻译的过程,提高翻译的质量和准确性。
此外,还可以根据具体的翻译任务,灵活调整模板的内容和结构。
总结起来,中英互译模板是一种有组织的指导文件,可以帮助我们有效地进行中英互译。
通过使用模板,我们可以更好地组织翻译思路,确定要点,提高翻译质量和准确性。
这是一项非常有用的工具,特别是对于初学者和有需求的人来说。
希望这个中英互译模板对你有所帮助!。
英文翻译模板-毕业证书(新版)

英文翻译模板-毕业证书(新版)毕业证书翻译模板Graduation Certificate Translation Template此证明[学生全名]已经成功完成[学位课程]的要求,获得[学位头衔]。
[学生全名]已经成功完成[学位课程]的要求,获得[学位头衔]。
学生信息Student Information- Name: [Student's Full Name][Student's Full Name]- Date of Birth: [Student's Date of Birth][Student's Date of Birth] - Student ID: [Student's ID] (if applicable)[Student's ID] (if applicable)- 姓名:[学生全名][学生全名]- 出生日期:[学生生日][学生生日]- 学生编号:[学生编号](如果适用)[学生编号](如果适用)课程信息Course Information- Degree Program: [Degree Program][Degree Program]- University Name: [University Name][University Name]- Graduation Date: [Graduation Date][Graduation Date]- 学位课程:[学位课程][学位课程]- 大学名称:[大学名称][大学名称]- 毕业日期:[毕业日期][毕业日期]专业信息Major Information- Major: [Major][Major]- Specialization: [Specialization] (if applicable)[Specialization] (if applicable)- 专业:[专业][专业]- 专长:[专长](如果适用)[专长](如果适用)获得学位信息Degree Awarded Information- Degree Title: [Degree Title][Degree Title]- Date of Degree Conferral: [Degree Conferral Date][Degree Conferral Date]- 学位头衔:[学位头衔][学位头衔]- 颁发学位日期:[颁发学位日期][颁发学位日期]签署部门Signatory Department- Department Name: [Department Name][Department Name] - Department Seal: [Department Seal Image] (if applicable)[Department Seal Image] (if applicable)- 部门名称:[部门名称][部门名称]- 部门印章:[部门印章图片](如果适用)[部门印章图片](如果适用)。
机械毕业设计英文外文翻译97带式运输机

附录二:外文技术资料及中文翻译1、英文技术资料Belt ConveyorFIELD OF THE INVENTIONThe present invention relates to a belt conveyor having a circulating conveying belt, having carrying rollers, which are arranged between the top strand and the bottom strand of the conveying belt, and having a drive device and a force-transmission device for moving the conveying belt.BACKGROUND OF THE INVENTIONIt is known from practice for force to be transmitted from the drive device to the conveying belt of a belt conveyor via friction fitting. The friction between a driven carrying roller and the conveying belt, for example, may even be sufficient for this purpose. The rest of the carrying rollers are mounted in a movable manner and rotate along.DE 42 44 170 C2 discloses a belt conveyor having an endless conveying belt, the latter being driven by means of a force-transmission device which is present in the form of a friction wheel. A drive shaft extends beneath the bottom strand of the conveying belt. On the inner radius of the belt curve, a motor is connected as a drive device to the drive shaft and, in the region of the outer radius, a friction wheel is seated on the drive shaft and is in contact with the outer surface of the conveying belt. In this case, the friction wheel interacts with a carrying roller functioning as counterpressure roller. The drive shaft is mounted such that it can be moved at an angle both in the region of the outer radius and in the region of the inner radius of the belt curve. The movable-angle mounting of the drive shaft allows adaptation of the extent to which the friction wheel is pressed against the conveying belt in proportion to the actual load. In this way, the wear is reduced if, in part-load operation, the conveying belt is only subjected to the contact-pressure force which is necessary for this purpose.Although the belt conveyor known from DE 42 44 170 C2 reduces the wear of the conveying belt, it cannot rule it out altogether. The task of conveying foodstuffs or other goods which are to be kept clean involves, in addition to the mechanical damage to the conveying belt, the aspect of hygiene and of keeping goods clean. The abraded surface particles of the conveying belt could have a considerable adverse effect on the quality of the goods which are to be conveyed. Moreover, the known belt conveyor requires an extremely high level of structural outlay as far as the movable mounting of the separate drive shaft is concerned. SUMMARY OF THE INVENTIONTaking as departure point the belt conveyor known from DE 42 44 170 C2, the object of the invention is to specify a belt conveyor of the type in question which largely rules out any adverse effect to the surface of the conveying belt of the belt conveyor by the force-transmission device. According to a particularly preferred configuration, the belt conveyor is intended to require just a low level of structural outlay.The above object is achieved by the features of Patent claim 1. According to the latter, a belt conveyor of the type in question is configured such that a pair of elements which interact with one another with a form fit is provided for force-transmission purposes, and that one element is assigned to the force-transmission device and the other element is assigned to the conveying belt.According to the invention, it has been found that the surface of the conveying belt is not adversely affected as a result of the action of the force-transmission device if a separate pair of elements is providedin order to realize force transmission. It has also been found that the use of a pair of movement-converting elements which are known per se and interact with one another with a form fit largely eliminates the disadvantages which are known in the case of friction-fitting movement conversion, in particular wear and abrasion.According to a preferred exemplary embodiment of the belt conveyor according to the invention, the pair of elements could be present as toothed ring and toothed belt, the tooth flanks of the toothed ring and of the toothed belt interacting with one another. It would be possible for the toothed ring to be assigned to the force-transmission device and for the toothed belt to be assigned to the conveying belt.As far as a particularly low level of structural outlay is concerned, a preferred configuration of the abovementioned exemplary embodiment provides that the toothed ring is assigned to a carrying roller, and the latter thus simultaneously assumes the role of the force-transmission device. Via a journal projecting from the carrying roller, the drive takes place by means of a motor. The toothed ring could be plugged onto the carrying roller and fixed releasably—for example via a shaft/hub connection or a feather key—to the same. In the case of a plugged-on toothed ring, it is advantageous that it is possible to use carrying rollers which are already present. It is particularly advantageous for each carrying roller to be assigned at least one toothed ring. Over the entire running path of the conveying belt, it would then be the case that the toothed belt and the toothed rings interengage and move the conveying belt in a dimensionally stable manner. Corresponding to the toothed ring or rings which is/are arranged between the top and bottom strands and belongs/belong to the preferred configuration mentioned above, the toothed belt is arranged on the underside of the conveying belt, and extends in the running direction of the same. Arranging the toothed belt on the underside of the conveying belt once again ensures that the top side of the conveying belt, which is charged if appropriate with goods which are to be kept clean, is not subject to any force transmission, mechanical damage or production of abrasion particles or other contaminants.An expedient development of the preferred configuration of the belt conveyor according to the invention makes provision for the toothed ring to be arranged at the end of the carrying roller. As a result, on the one hand, straightforward maintenance of the force-transmission device is made possible and, on the other hand, this arrangement is also more cost-effective than a, for example, central arrangement. Direct force transmission over a short distance is achieved by a journal for the connection of the drive device projecting from that end of the carrying roller which is provided with the toothed ring.It is particularly advantageous if the toothed belt extends in the region of the side border of the conveying belt. As a result, on the one hand, straightforward production of the conveying belt with the toothed belt is made possible by the direct relationship to the border region and, on the other hand, a role is also played here by the accessibility to the pair of elements for maintenance purposes and, of course, by the coordination between the toothed belt and the arrangement of the toothed ring.In addition to toothed belts and toothed rings with normal toothing, it would also be possible to realize multisplining. This further reduces undesired sliding and thus wear, heating and noise development. In order to absorb high tensile forces, it would be possible for Kevlar filaments to be incorporated in the toothed belt, which usually consists of plastic. It would be possible for the conveying belt to be produced with the toothed belt by welding, vulcanizing or adhesive bonding.According to a particularly preferred configuration, it would be possible for the toothed belt to be a constituent part of a toothed- belt component which is of essentially U-shaped design in the transverse direction of the toothed belt. The U-shape makes it possible for the toothed- belt component simply to be plugged onto the border of the conveying belt until the border region has come into contact with the base part between the U-legs. The inner surface of the toothed- belt component may have been provided with adhesive beforehand. As a result of its shaping and of being produced in this way, the toothed- beltcomponent engages around the side-border region of the conveying belt.While the toothed belt of the conveying belt is subjected to compressive force by the toothed ring, and this largely rules out detachment of the toothed- belt component on the underside of the conveying belt, a counterpressure device could be provided in order to secure that region of the toothed- belt component which extends on the top side of the conveying belt. In design terms, the counterpressure device could be present in the form of an arm which acts on the U-leg of the toothed- belt component on the top side and thus constantly presses the same onto the top side of the conveying belt.As far as reliable guidance is concerned, it would be possible for the toothed belt or the toothed- belt component containing the toothed belt to form a bead. A bead ridge is thus produced over the length of the conveying belt. In the case of a U-shaped toothed- belt component, the bead ridge extends in each case at the free ends of the U-legs, at a distance from the border of the conveying belt, the distance depending essentially on the width of the toothed belt. As an alternative to a bead ridge, it would be possible for the toothed- belt component or for the straightforward toothed belt also to have at least one beveled free end. The guidance measure taken on the toothed belt or on the specific toothed- belt component is provided in order that a guide roller or a pair of guide rollers acts on the beveled surface or on the bead or bead ridge. The guidance measure explained above could be taken equally well in the case of belt curves and straight belt lines and of belt S-shapes bridging different heights.In the case of belt curves, the force acting on the conveying belt is directed toward the inner radius of the belt curve, with the result that the guide rollers, in an advantageous manner which is known per se, could have inclined running surfaces. Correspondingly angled retaining arms as a constituent part of retaining structures for the guide rollers could be arranged in each case in the region of a carrying roller. The guide rollers could be arranged in pairs on the top strand and on the bottom strand of the conveying belt.It should be emphasized at this point that, with the abovementioned configuration of the belt conveyor according to the invention having the bead or beveled free ends, two functions are combined in the pair of form-fitting elements. Not only the force transmission, but also the guidance of the conveying belt, takes place. The dimensional stability of the conveying belt is advantageously increased by the pair of form-fitting elements with the specific configuration of the toothed belt or of the toothed- belt component for action of the guide rollers thereon.In the case of the already cited design of the belt conveyor in the form of a belt curve, the carrying rollers are of conical design and the toothed ring is arranged at the larger-diameter end of the respective carrying roller, that is to say on the outer radius of the belt curve. The drive device is present as a motor and is assigned to the first carrying roller of the belt curve. The form-fitting interengagement of the toothed wheel and toothed belt takes place in the region of each carrying roller, the form fit, in relation to the first, motor-driven carrying roller, serving for force-transmission purposes and, in relation to the rest of the rollers, serving for guiding the conveying belt.The previously explained principle of force transmission via a pair of elements which interact with one another with a form fit could also be used in the case of a straight belt line or in the case of a height-changing belt S-shape. Here, the carrying rollers are of a cylindrical design and the force transmission takes place—as with the belt curve—at a first carrying roller, while the following carrying rollers, likewise equipped with the pair of form-fitting elements, serve for guiding the conveying belt. In contrast to the belt curve, however, it would be possible, in the case of the straight belt line or in the case of the belt S-shape, for the pair of elements to be arranged at the two free ends of the respective carrying roller and on the two border regions of the conveying belt. It would thus be possible specifically for the two border regions of the conveying belt to have a toothed belt or a toothed- belt component which interacts with the toothed rings at the two free ends of each carrying roller. Furthermore, it would also be possible, with these types of construction of the belt conveyor according to the invention, to provideguide rollers.A further advantage of the preferred embodiment of the belt conveyor according to the invention, the toothed ring and toothed belt interacting, consists in the improved capacity for controlling the belt speed in accordance with the current loading. It would be possible to provide a control device which senses a change in the speed by corresponding measuring sensors and adjusts the power of the drive device in line with the safety regulations.In comparison with the force transmission realized by friction fitting, the belt conveyor according to the invention not only has the advantage of better capacity for control, but also has the advantage that the conveying belt has a high level of dimensional stability as a result of the guidance by means of the pair of form-fitting elements and by means of the pairs of guide rollers and can be subjected to higher torques. Overall, it is possible to achieve an increased level of drive power during start-up. In the case of the belt conveyor according to the invention being designed in the form of a belt curve with an inner radius of 400 mm, the carrying rollers rotate at 230 rpm at a maximum speed of 1.5 m/sec.2、中文翻译带式运输机一、领域的发明本发明涉及一种具有循环带式输送机输送带,有托辊,这是链之间的顶部和底部的传送带链排列,有一个传动装置和一个移动传送带力传动装置。
技术资料翻译

steam which is admitted to a cold engine cylinder is liable to partially condensed by contact with the cylinder walls.进入冷气缸的蒸汽容易由于接触到气缸壁而被部分的冷凝。
that part of the steam nearest to the walls is cooled condenses as a film of the water.这部分的蒸汽会依附在气缸壁上形成水膜the volume of steam in the cylinder is thereby considerably reduced,这导致缸内的蒸汽的体积出现明显减少and more steam must be admitted in order that the pressure is sufficiently high to drive the piston along the cylinder,而由于蒸汽需要足够大的压力来推动活塞在缸内运动,所以又需要进更多的蒸汽condenstion in a cylinder therefor raises the steam consumption of the engine and thereby lowers its efficiency.因此气缸的冷凝作用加大了蒸汽的消耗,降低了自身的效率it is therefore necessary to devise means of getting rid of this condensation as for as possible,正由于这样,我们才需要尽可能的使用一些装置来消除这种冷凝and in moderm recip-rocating steam engines,在现代的往复式蒸汽机上condensation problems have been practically eliminated冷凝作用已经几乎被消除this is effected by superneating(superheating???) the steam in the boiler and also by fitting steam jackets round the cylinder.这是在锅炉里面使用高温处理蒸汽和给气缸增设蒸汽套共同作用的结果。
技术说明书英文翻译

Technical Manual English TranslationIntroductionThe purpose of this document is to provide a comprehensive English translation of the technical manual. The manual provides detailed instructions and information on the use and maintenance of a particular product or technology. This translation aims to facilitate understanding and accessibility for English-speaking users.Important Safety InstructionsBefore using the product, it is crucial to read and understand the safety instructions outlined in this section. These instructions are designed to ensure the safe and proper use of the product, and failure to follow them may result in injuries or accidents.General Safety Precautions•Always read the manual carefully before operating the product.•Keep the product away from children and unauthorized personnel.•Avoid using the product in wet or damp environments.•Do not modify or tamper with the product without proper authorization.•Follow all applicable laws and regulations when operating the product.Electrical Safety•Make sure the product is properly grounded.•Do not use the product if the power cord is damaged.•Avoid using the product near water or other liquids.•Unplug the product during thunderstorms or when not in use.Product DescriptionThis section provides a detailed description of the product, including its specifications, features, and components. It is important to familiarize yourself with this information to effectively operate and maintain the product.Specifications•Dimensions:•Weight:•Power Requirements:•Operating Temperature:•Storage Temperature:Features•Feature 1:•Feature 2:•Feature 3:Components•Component 1:•Component 2:•Component 3:InstallationThis section provides step-by-step instructions on how to install and set up the product. It is important to follow these instructions carefully to ensure the product is installed correctly and functions as intended.Step 1: Unpacking•Open the packaging box and remove all components.•Inspect the components for any signs of damage.Step 2: Assembly•Attach component A to component B using the provided screws.•Connect component C to the main unit using the provided cable.Step 3: Power On•Connect the power cord to the product and plug it into a power outlet.•Press the power button to turn on the product.OperationThis section provides instructions on how to operate and use the product. It includes information on the controls, user interface, and various functionalities of the product. Familiarize yourself with this section to maximize the product’s capabilities.Control PanelThe control panel consists of the following buttons and indicators: - Button A: - Button B: - Indicator 1:User InterfaceThe user interface is designed to provide a user-friendly experience and easy navigation. It includes a menu system, icons, and status indicators. Refer to the manual for a detailed explanation of the user interface.FunctionalityThe product offers several functions and features to enhance its usability. These include: - Function 1: - Function 2: - Function 3:MaintenanceRegular maintenance is essential to prolong the product’s lifespan and ensure optimal performance. This section provides guidelines on how to maintain and clean the product.Cleaning•Use a soft, lint-free cloth to clean the exterior of the product.•Avoid using harsh chemicals or abrasive materials that may damage the surface.TroubleshootingIn the event of a problem or malfunction, refer to this section for troubleshooting tips and solutions. It provides a list of common issues and recommended actions to resolve them.Warranty and SupportThis section includes information on the product’s warranty coverage and support services provided by the manufacturer. It is important to familiarize yourself with the terms and conditions of the warranty and the available support channels.Warranty Coverage•Duration:•Terms and Conditions:Support Services•Phone:•Email:•Website:ConclusionThis English translation of the technical manual aims to provide clear and concise instructions and information for English-speaking users. It includes important safety instructions, product description, installation procedures, operation guidelines, maintenance instructions, troubleshooting tips, and warranty information. By following this manual, users can effectively and safely operate and maintain the product.。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
附录:英文技术资料翻译英文原文:An Overview of Servlet and JSP Technology1.1 A Servlet's JobServlets are Java programs that run on Web or application servers, acting as a middle layer between requests coming from Web browsers or other HTTP clients and databases or applications on the HTTP server. Their job is to perform the following tasks, as illustrated in Figure 1-1.Figure 1-11.Read the explicit data sent by the client.The end user normally enters this data in an HTML form on a Web page. However, the data could also come from an applet or a custom HTTP client program.2.Read the implicit HTTP request data sent by the browser.Figure 1-1 shows a single arrow going from the client to the Web server (the layer where servlets and JSP execute), but there are really two varieties of data: the explicit data that the end user enters in a form and the behind-the-scenes HTTP information. Both varieties are critical. The HTTP information includes cookies, information about media types and compression schemes the browser understands, and so on.3.Generate the results.This process may require talking to a database, executing anRMI or EJB call, invoking a Web service, or computing the response directly. Your real data may be in a relational database. Fine. But your database probably doesn't speak HTTP or return results in HTML, so the Web browser can't talk directly to the database. Even if it could, for security reasons, you probably would not want it to. The same argument applies to most other applications. You need the Web middle layer to extract the incoming data from the HTTP stream, talk to the application, and embed the results inside a document.4.Send the explicit data (i.e., the document) to the client.This document can be sent in a variety of formats, including text (HTML or XML), binary (GIF images), or even a compressed format like gzip that is layered on top of some other underlying format. But, HTML is by far the most common format, so an important servlet/JSP task is to wrap the results inside of HTML.5.Send the implicit HTTP response data.Figure 1-1 shows a single arrow going from the Web middle layer (the servlet or JSP page) to the client. But, there are really two varieties of data sent: the document itself and the behind-the-scenes HTTP information. Again, both varieties are critical to effective development. Sending HTTP response data involves telling the browser or other client what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks.1.2 Why Build Web Pages Dynamically?Many client requests can be satisfied by prebuilt documents, and the server would handle these requests without invoking servlets. In many cases, however, a static result is not sufficient, and a page needs to be generated for each request. There are a number of reasons why Web pages need to be built on-the-fly:1. The Web page is based on data sent by the client.For instance, the results page from search engines and order-confirmation pages at online stores are specific to particular user requests. You don't know what to display until you read the data that the user submits. Just remember that the user submits two kinds of data: explicit (i.e., HTML form data) and implicit (i.e., HTTP request headers). Either kind of input can be used to build the output page. In particular, it is quite common to build a user-specific page based on a cookie value.2.The Web page is derived from data that changes frequently.If the page changes for every request, then you certainly need to build the response at request time. If it changes only periodically, however, you could do it two ways: you could periodically build a new Web page on the server (independently of client requests), or you could wait and only build the page when the user requests it. The right approach depends on the situation, but sometimes it is more convenient to do the latter: wait for the user request. For example, a weather report or news headlines site might build the pages dynamically, perhaps returning a previously built page if that page is still up to date.3.The Web page uses information from corporate databases or other server-side sources.If the information is in a database, you need server-side processing even if the client is using dynamic Web content such as an applet. Imagine using an applet by itself for a search engine site:"Downloading 50 terabyte applet, please wait!" Obviously, that is silly; you need to talk to the database. Going from the client to the Web tier to the database (a three-tier approach) instead of from an applet directly to a database (a two-tier approach) provides increased flexibility and security with little or no performance penalty. After all, the database call is usually the rate-limitingstep, so going through the Web server does not slow things down. In fact, a three-tier approach is often faster because the middle tier can perform caching and connection pooling.In principle, servlets are not restricted to Web or application servers that handle HTTP requests but can be used for other types of servers as well. For example, servlets could be embedded in FTP or mail servers to extend their functionality. And, a servlet API for SIP (Session Initiation Protocol) servers was recently standardized (see /en/jsr/detail?id=116). In practice, however, this use of servlets has not caught on, and we'll only be discussing HTTP servlets.1.3 The Advantages of Servlets Over "Traditional" CGIJava servlets are more efficient, easier to use, more powerful, more portable, safer, and cheaper than traditional CGI and many alternative CGI-like technologies.1.EfficientWith traditional CGI, a new process is started for each HTTP request. If the CGI program itself is relatively short, the overhead of starting the process can dominate the execution time. With servlets, the Java virtual machine stays running and handles each request with a lightweight Java thread, not a heavyweight operating system process. Similarly, in traditional CGI, if there are N requests to the same CGI program, the code for the CGI program is loaded into memory N times. With servlets, however, there would be N threads, but only a single copy of the servlet class would be loaded. This approach reduces server memory requirements and saves time by instantiating fewer objects. Finally, when a CGI program finishes handling a request, the program terminates. This approach makes it difficult to cache computations, keep database connections open, and perform other optimizations that rely on persistent data.Servlets, however, remain in memory even after they complete a response, so it is straightforward to store arbitrarily complex data between client requests.2.ConvenientServlets have an extensive infrastructure for automatically parsing and decoding HTML form data, reading and setting HTTP headers, handling cookies, tracking sessions, and many other such high-level utilities. In CGI, you have to do much of this yourself. Besides, if you already know the Java programming language, why learn Perl too? You're already convinced that Java technology makes for more reliable and reusable code than does Visual Basic, VBScript, or C++. Why go back to those languages for server-side programming?3.PowerfulServlets support several capabilities that are difficult or impossible to accomplish with regular CGI. Servlets can talk directly to the Web server, whereas regular CGI programs cannot, at least not without using a server-specific API. Communicating with the Web server makes it easier to translate relative URLs into concrete path names, for instance. Multiple servlets can also share data, making it easy to implement database connection pooling and similar resource-sharing optimizations. Servlets can also maintain information from request to request, simplifying techniques like session tracking and caching of previous computations.4.PortableServlets are written in the Java programming language and follow a standard API. Servlets are supported directly or by a plugin on virtually every major Web server. Consequently, servlets written for, say, Macromedia JRun can run virtually unchanged on Apache Tomcat, Microsoft Internet Information Server (with a separate plugin), IBM WebSphere, iPlanet Enterprise Server, Oracle9i AS, or StarNine WebStar. They are part of the Java 2 Platform, EnterpriseEdition, so industry support for servlets is becoming even more pervasive.5.InexpensiveA number of free or very inexpensive Web servers are good for development use or deployment of low- or medium-volume Web sites. Thus, with servlets and JSP you can start with a free or inexpensive server and migrate to more expensive servers with high-performance capabilities or advanced administration utilities only after your project meets initial success. This is in contrast to many of the other CGI alternatives, which require a significant initial investment for the purchase of a proprietary package.Price and portability are somewhat connected. For example, Marty tries to keep track of the countries of readers that send him questions by email. India was near the top of the list, probably #2 behind the U.S. Marty also taught one of his JSP and servlet training courses (see /) in Manila, and there was great interest in servlet and JSP technology there.Now, why are India and the Philippines both so interested? We surmise that the answer is twofold. First, both countries have large pools of well-educated software developers. Second, both countries have (or had, at that time) highly unfavorable currency exchange rates against the U.S. dollar. So, buying a special-purpose Web server from a U.S. company consumed a large part of early project funds.But, with servlets and JSP, they could start with a free server: Apache Tomcat (either standalone, embedded in the regular Apache Web server, or embedded in Microsoft IIS). Once the project starts to become successful, they could move to a server like Caucho Resin that had higher performance and easier administration but that is not free. But none of their servlets or JSP pages have to be rewritten. If their project becomes even larger, they might want to move toa distributed (clustered) environment. No problem: they could move to Macromedia JRun Professional, which supports distributed applications (Web farms). Again, none of their servlets or JSP pages have to be rewritten. If the project becomes quite large and complex, they might want to use Enterprise JavaBeans (EJB) to encapsulate their business logic. So, they might switch to BEA WebLogic or Oracle9i AS. Again, none of their servlets or JSP pages have to be rewritten. Finally, if their project becomes even bigger, they might move it off of their Linux box and onto an IBM mainframe running IBM WebSphere. But once again, none of their servlets or JSP pages have to be rewritten.6.SecureOne of the main sources of vulnerabilities in traditional CGI stems from the fact that the programs are often executed by general-purpose operating system shells. So, the CGI programmer must be careful to filter out characters such as backquotes and semicolons that are treated specially by the shell. Implementing this precaution is harder than one might think, and weaknesses stemming from this problem are constantly being uncovered in widely used CGI libraries.A second source of problems is the fact that some CGI programs are processed by languages that do not automatically check array or string bounds. For example, in C and C++ it is perfectly legal to allocate a 100-element array and then write into the 999th "element," which is really some random part of program memory. So, programmers who forget to perform this check open up their system to deliberate or accidental buffer overflow attacks.Servlets suffer from neither of these problems. Even if a servlet executes a system call (e.g., with Runtime.exec or JNI) to invoke a program on the local operating system, it does not use a shell to do so. And, of course, array bounds checking and othermemory protection features are a central part of the Java programming language.7.MainstreamThere are a lot of good technologies out there. But if vendors don't support them and developers don't know how to use them, what good are they? Servlet and JSP technology is supported by servers from Apache, Oracle, IBM, Sybase, BEA, Macromedia, Caucho, Sun/iPlanet, New Atlanta, ATG, Fujitsu, Lutris, Silverstream, the World Wide Web Consortium (W3C), and many others. Several low-cost plugins add support to Microsoft IIS and Zeus as well. They run on Windows, Unix/Linux, MacOS, VMS, and IBM mainframe operating systems. They are the single most popular application of the Java programming language. They are arguably the most popular choice for developing medium to large Web applications. They are used by the airline industry (most United Airlines and Delta Airlines Web sites), e-commerce (), online banking (First USA Bank, Banco Popular de Puerto Rico), Web search engines/portals (), large financial sites (American Century Investments), and hundreds of other sites that you visit every day.Of course, popularity alone is no proof of good technology. Numerous counter-examples abound. But our point is that you are not experimenting with a new and unproven technology when you work with server-side Java.注:本文来源于中文译文:Servlet和JSP技术简述1.1 Servlet的功能Servlets是运行在Web或应用服务器上的Java程序,它是一个中间层,负责连接来自Web浏览器或其他HTTP客户程序的请求和HTTP服务器上的数据库或应用程序。