搜档网
当前位置:搜档网 › 电子信息工程专业英语 嵌入式操作系统翻译

电子信息工程专业英语 嵌入式操作系统翻译

电子信息工程专业英语 嵌入式操作系统翻译
电子信息工程专业英语 嵌入式操作系统翻译

期末作业题目:“Embedded OS”翻译学院:应用技术学院

专业:电子信息工程

班级:081信息方向

学生姓名:王晓文

学号:200811513313

任课教师:张晶

日期:2011-11-30

Embedded OS

Embedded operating systems have some features that distinguish them real-time general-purpose operating systems.But the definition of an“embedded operating system”is probably even more ambiguous than that of an RTOS,and they come in a zillion different forms.But you’ll recognize one when you see one,although the boundary between general-purpose operating systems and embedded operating systems is not sharp,and is even becoming more blurred all the time.

Embedded systems are being installed in tremendous quantities(an order of magnitude more than desktop PCs!):they control lots of functions in modern cars;they show up in household appliances and toys;they control vital medical instrumentation;they make remote controls and GPS(Global Position Systems) work;they make your portable phones work;etc..

The simplest classification between different kinds of embedded operating systems is as follows;

1.High-end embedded systems.These systems are often downsized derivatives of an existing general purpose OS,but with much of the”ballast”removed.Linux has given rise to a large set of such derivatives,because of its highly modular structure and the availability of source code.Examples are:routers,switches,personal digital assistants,set top boxes.

2.Deeply embedded OS.These Oses must be really very small,and need only a handful of basic functions.Therefore,they are mostly designed from the ground up for a particular application.Two typical functions deeply embedded systems(used to)lack are high-performance graphical user interfacing or network communication.Examples are:automotive controls,digtal cameras,portable phones.But also these systems get more graphics and networking capabilities…

The most important features that make an OS into an embedded OS are:

1.Small footprint.Designers are continuously trying to put more computing power in smaller housings,using cheaper CPU in all kinds of small objects.A small embedded

OS also often uses only a couple of kilobytes of RAM and ROM memory.

2.The embedded systems should run for years without manual intervention.This means that the hardware and the software should never fail.Hence,the system should preferably have no mechanical parts,such as floppy drives or hard disks.Not only because mechanical parts are more sensitive to failures,but they also take up more space,need more energy,take longer to communicate with,and have more complex drivers(e.g.,due to motion control of the mechanical parts).

3.Many embedded systems have to control devices that can be dangerous if they don’t work exactly as designed.Therefore,the status of these devices has to be checked regularly.The embedded computer system itself,however,is one of these critical devices,and has to be checked too!Hence,one often sees hardware watchdogs included in embedded systems.These watchdogs are usually retriggerable monostable timers attached to the processor’s reset input.The operating system checks within specified intervals whether everything is working as desired,for example by examining the contents of status registers.It then resets the watchdog.So,if the OS doesn't succeed in resetting the timer,that means that the system is not functioning properly and the timer goes off,forcing the processor to reset.

If something went wrong but the OS is still working(e.g.,a memory protection error in one of the tasks)the OS can activate a software watchdog which is nothing else but an interrupt that schedules a service routine to handle the error.One important job of the software watchdog could be to generate a core dump,to be used for analysis of what situations led to the crash.

4.A long autonomy also implies using as little power as possible:embedded systems often have to live a long time on batteries(e.g.,mobile phones),or are part of a larger system with very limited power resources(e.g.,satellites).

5.If the system does fail despite its designed robustness(e.g.,caused by a memory protection fault),there is usually no user around to take the appropriate actions.Hence, the system itself should reboot autonomously,in a"safe"state,and"instantly"if it is supposed to control other critical https://www.sodocs.net/doc/963656685.html,pare this to the booting of your desktop computer,which needs a minute or more before it can be used,and always comes up

in the same default state.

6.It should be as cheap as possible.Embedded systems are often produced in quantities of several thousands or even millions.Decreasing the unit price even a little bie boils down to enormous savings.

7.Some embedded systems are not physically reachable anymore after they have been started(e.g.,launched satellites)in order to add software updates.However,more and more of them can still be accessed remotely.Therefore,they should support synamic linkong:object code that did not exist at the time of start os uploaded to the system,and linked in the running OS without stopping it.

Some applications require all features of embedded and real-time operating systems.The best-known examples are mobile phones and(speech-operated) handheld computers(“PDA”s):they must be small,consume little power,and yet be able to execute advanced signal processing algorithms,while taking up as little space as possible.

The above-mentioned arguments led embedded OS developers to design systems with the absolute minimum of software and hardware.Roughly speaking,developers of general purpose and real-time operating systems approach their clients with a “Hey,look how much we can do!”marking strategy;while EOS developers say”Hey,look how little we need to do what you want!”Hence,embedded systems often come without a memory management unit(MMU),Multi-tasking,a networking “stack”or file systems.The extreme is one single monolithic program on the bare processor,thus completely eliminating the need for any operating system at all. Taking out more and more features of a fenarol-purpose operating system makes its footprint smaller and its predictability higher.On the other hand,adding more features to an EOS makes it look like a general purpose OS.Most current RTOS and EOS operating systems are expanding their ranges of application,and cover more of the full“feature spectrum”.

嵌入式操作系统

嵌入式操作系统具有和实时操作系统、通用操作系统不同的一些特点。不过嵌入式操作系统的定义比实时操作系统(RTOS)的定义更加含糊;而且,嵌入式操作系统的具体形式千变万化。尽管嵌入式操作系统和通用操作系统的界线并不分明(甚至不断变的更加模糊),但当你见到嵌入式操作系统的时候就能一眼认出来。

嵌入式系统的数量庞大(超过台式PC机一个数量级);在现代汽车内部,嵌入式系统控制着许多功能;在家用电器和玩具中,也存在着嵌入式系统;关键医疗设备中也存在着嵌入式系统;嵌入式系统也存在于遥控和全球定位设备中;便携电话中也存在嵌入式系统。

嵌入式操作系统的最简分类如下:

1.高端嵌入式操作系统:这类操作系统是从现有通用操作系统简化而来的,去掉了大量“压舱物”。从Linux派生出来的嵌入式操作系统很多;这是因为Linux具有高度模块化的结构以及其源代码可得。采用该类嵌入式操作系统的设备有路由器、交换机、个人数字助理和机顶盒等。

2.深度嵌入式操作系统:这类操作系统非常小,仅需要几项基本功能。所以这类操作系统大多是为了特定应用而从头开始设计的。深度嵌入式操作系统不具备以下二项功能:高性能图形用户界面和网络通信功能。采用该类嵌入式操作系统的设备有汽车控制装置、数码相机和便携式电话。

要成为嵌入式操作系统需具备以下重要特征:

1.尺寸要小:设计者不断努力将更多的计算功能置于更小的硬件内,采用更廉价的CPU 采用板上数字、模拟输入输出设备。设计者想要把这种CPU集成到各类小巧产品之中。一个小型嵌入式操作系统占用的RAM、ROM存储器大小往往只有几KB。

2.能够无需人工干预而正常运行数年。这就是说硬件、软件永远不应出现故障。因此系统最好不应包含软驱、硬盘等机械部件。机械部件不仅容易出现故障,而且占用更多空间、需要更多能量、花费更长的通信时间,拥有更复杂的驱动机构(例如,机械部件的运动控制)。

3.许多嵌入式系统必须控制那些“未按设计工作会出现危险”的设备。因此,这些设备的状态必须定期检查。而嵌入式计算系统本身也是一种“关键”设备,也需检查!因此,需要经常查看嵌入式系统的硬件“看门狗”。“看门狗”通常是连接在处理器“复位”输入端的可重新出发的、单一稳定的定时器。操作系统在指定时间间隔内检查处理器是否正常工作

(例如,通过检查状态寄存器中的内容)。然后,操作系统复位“看门狗”。因此,如果操作系统没有成功复位定时器,这就意味着没有正常工作、定时器“跑飞”,需要强迫处理器复位。假如出现了一些问题而操作系统仍旧工作(例如,某项任务出现了存储器保护错误),操作系统可以启动软件“看门狗”(只是用以调度处理错误服务例程的中断)。软件“看门狗”的一项重要工作是产生“内核堆”(core dump),用以分析导致问题的具体状态。

4.“长期自主运行”也意味着使用尽可能少的能量:嵌入式系统往往要靠电池(如移动电话)工作很长时间,或是作为能源非常有限的大型系统(如卫星)的组成部分。

5.假如系统出现故障(尽管设计得很稳健),比如是由存储器保护保护错误而引起的,通常周围是没有用户来采取恰当措施的。因此,系统自身应当自动瞬间(如果要控制关键设备的话)重启进入“安全”状态。可以将这个过程和台式机的启动过程比较一下。后者需要一分钟或更长的时间才能完成并总是进入相同的缺省状态。

6.尽可能便宜。嵌入式系统的生产量往往是几千、甚至是几百万。单个系统价格下降一小点就会节省大量资金。

7.有的嵌入式系统在投入使用后(例如,已发射的火箭)就再也无法取回进行软件升级了。然而,越来越多的嵌入式系统可以过程访问。因此,需要支持“动态链接”――投入使用时不存在的目标代码可以上载到系统,而且可以在操作系统运行时(无须停止)完成链接。许多应用系统需要嵌入式操作系统和实时操作系统的全部特点。移动电话和掌上电脑(个人数字助理)是其中最有名的例子――尺寸要小、功耗要低、以尽可能少的代码而能完成高级的信号处理算法。

上面提到的几点要求嵌入式操作系统开发人员用最少的软件和硬件来设计系统。大致说来,通用操作系统和实时操作系统的开发人员会对客户这么说:“看看我们的产品多能干!”,

“完成客户要求,我们的产品只需做这么一点点!”而嵌入式操作系统的开发人员会对客户说:

因此,嵌入式系统往往没有“存储器管理单元”(MMU)、没有“多任务”、没有“网络栈”,也没有“文件系统”。极端情况是在“裸机”上的一段计算机程序,完全不需要任何操作系统。

从通用操作系统中拿走的功能越多,系统尺寸越小,系统可预测性越高;相反,向嵌入式操作系统中增添的功能越多,它越象通用操作系统。大多数当前的实时操作系统和嵌入式操作系统的应用范围在不断扩大,具备的功能也越来越多。

机械专业外文翻译(中英文翻译)

外文翻译 英文原文 Belt Conveying Systems Development of driving system Among the methods of material conveying employed,belt conveyors play a very important part in the reliable carrying of material over long distances at competitive cost.Conveyor systems have become larger and more complex and drive systems have also been going through a process of evolution and will continue to do so.Nowadays,bigger belts require more power and have brought the need for larger individual drives as well as multiple drives such as 3 drives of 750 kW for one belt(this is the case for the conveyor drives in Chengzhuang Mine).The ability to control drive acceleration torque is critical to belt conveyors’performance.An efficient drive system should be able to provide smooth,soft starts while maintaining belt tensions within the specified safe limits.For load sharing on multiple drives.torque and speed control are also important considerations in the drive system’s design. Due to the advances in conveyor drive control technology,at present many more reliable.Cost-effective and performance-driven conveyor drive systems covering a wide range of power are available for customers’ choices[1]. 1 Analysis on conveyor drive technologies 1.1 Direct drives Full-voltage starters.With a full-voltage starter design,the conveyor head shaft is direct-coupled to the motor through the gear drive.Direct full-voltage starters are adequate for relatively low-power, simple-profile conveyors.With direct fu11-voltage starters.no control is provided for various conveyor loads and.depending on the ratio between fu11-and no-1oad power requirements,empty starting times can be three or four times faster than full load.The maintenance-free starting system is simple,low-cost and very reliable.However, they cannot control starting torque and maximum stall torque;therefore.they are

电气工程及其自动化专业英语第二章课文翻译

第二章第一篇 To say that we live in an age of electronics is an understatement. From the omnipresent integrated circuit to the equally omnipresent digital computer, we encounter electronic devices and systems on a daily basis. In every aspect of our increasingly technological society— whether it is science, engineering, medicine, music, maintenance, or even espionage—the role of electronics is large, and it is growing. 谈论关于我们生活在一个电子学时代的论调是一种空泛的论调。从无处不在的集成电路到同样无处不在的数字计算机,我们在日常活动中总会遇到电子设备和电子系统。在我们日益发展的科技社会的方方面面——无论是在科学、工程、医药、音乐、维修方面甚至是在谍报方面——电子学的作用是巨大的,而且还将不断增强。 In general, all of the tasks with which we shall be concerned can be classified as "signal-processing“tasks. Let us explore the meaning of this term 一般说来,我们将要涉及到的工作被归结为“信号——处理”工作,让我们来探究这个术语的含义吧。 A signal is any physical variable whose magnitude or variation with time contains information. This information might involve speech and music, as in radio broadcasting, a physical quantity such as the temperature of the air in a room, or numerical data, such as the record of stock market transactions. The physical variables that can carry information in an electrical system are voltage and current. When we speak of "signals", therefore, we refer implicitly to voltages or currents. However, most of the concepts we discuss can be applied directly to systems with different information-carrying variables. Thus, the behavior of a mechanical system (in which force and velocity are the variables) or a hydraulic system (in which pressure and flow rate are the variables) can often be modeled or represented by an equivalent electrical system. An understanding of the behavior of electrical systems, therefore, provides a basis for understanding a much broader range of phenomena. 信号就是其与时间有关的量值或变化包含信息的任何物理变量。这种信息或许像无线电广播的演讲和音乐,或许是像室内温度的物理量,或许像股市交易记录的数字数据。在电气系统中能够载有信息的物理变量是电压和电流。因此当我们谈到“信号”,我们不言而喻指的是电压和电流,然而,我们要讨论的大多数概念是可以被直接应用于载有不同信息的变量的系统,因此,一个机械系统(在这个系统中力和速度是其变量)或者液压系统(在这个系统中压力和流速是其变量)的性能通常可以用一个等效的电气系统来模拟或表示。因此,我们对于电气系统性能的理解为理解更宽领域的现象打下了一个基础。 A signal can carry information in two different forms. In an analog signal the continuous variation of the voltage or current with time carries the information. An example, in Fig.2-l, is the voltage produced by a thermocouple pair when the two junctions are at different temperatures. As the temperature difference between the two junctions varies, the magnitude of the voltage across the thermocouple pair also varies. The voltage thus provides an analog representation of the temperature difference. 一个信号可以以两种形式来承载信息。在一个模拟信号中电压或电流随时间而产生的连续变化载有信息。在图2-1中,当一对热电偶的接头处于不同的温度时由热电偶所产生的电压就是一个例子。当两个接头之间的温度差改变时,一对热电偶两端的电压也将改变。于是电压就提供了温度差的模拟表现形式 The other kind of signal is a digital signal. A digital signal is one that can take on values within two discrete ranges. Such signals are used to represent ON-OFF or YES-NO information. An ordinary household thermostat delivers a digital signal tocontrol the furnace. When the

《土木工程专业英语》段兵延第二版全书文章翻译精编版

第一课 土木工程学土木工程学作为最老的工程技术学科,是指规划,设计,施工及对建筑环境的管理。此处的环境包括建筑符合科学规范的所有结构,从灌溉和排水系统到火箭发射设施。 土木工程师建造道路,桥梁,管道,大坝,海港,发电厂,给排水系统,医院,学校,公共交通和其他现代社会和大量人口集中地区的基础公共设施。他们也建造私有设施,比如飞机场,铁路,管线,摩天大楼,以及其他设计用作工业,商业和住宅途径的大型结构。此外,土木工程师还规划设计及建造完整的城市和乡镇,并且最近一直在规划设计容纳设施齐全的社区的空间平台。 土木一词来源于拉丁文词“公民”。在1782年,英国人John Smeaton为了把他的非军事工程工作区别于当时占优势地位的军事工程师的工作而采用的名词。自从那时起,土木工程学被用于提及从事公共设施建设的工程师,尽管其包含的领域更为广阔。 领域。因为包含范围太广,土木工程学又被细分为大量的技术专业。不同类型的工程需要多种不同土木工程专业技术。一个项目开始的时候,土木工程师要对场地进行测绘,定位有用的布置,如地下水水位,下水道,和电力线。岩土工程专家则进行土力学试验以确定土壤能否承受工程荷载。环境工程专家研究工程对当地的影响,包括对空气和地下水的可能污染,对当地动植物生活的影响,以及如何让工程设计满足政府针对环境保护的需要。交通工程专家确定必需的不同种类设施以减轻由整个工程造成的对当地公路和其他交通网络的负担。同时,结构工程专家利用初步数据对工程作详细规划,设计和说明。从项目开始到结束,对这些土木工程专家的工作进行监督和调配的则是施工管理专家。根据其他专家所提供的信息,施工管理专家计算材料和人工的数量和花费,所有工作的进度表,订购工作所需要的材料和设备,雇佣承包商和分包商,还要做些额外的监督工作以确保工程能按时按质完成。 贯穿任何给定项目,土木工程师都需要大量使用计算机。计算机用于设计工程中使用的多数元件(即计算机辅助设计,或者CAD)并对其进行管理。计算机成为了现代土木工程师的必备品,因为它使得工程师能有效地掌控所需的大量数据从而确定建造一项工程的最佳方法。 结构工程学。在这一专业领域,土木工程师规划设计各种类型的结构,包括桥梁,大坝,发电厂,设备支撑,海面上的特殊结构,美国太空计划,发射塔,庞大的天文和无线电望远镜,以及许多其他种类的项目。结构工程师应用计算机确定一个结构必须承受的力:自重,风荷载和飓风荷载,建筑材料温度变化引起的胀缩,以及地震荷载。他们也需确定不同种材料如钢筋,混凝土,塑料,石头,沥青,砖,铝或其他建筑材料等的复合作用。 水利工程学。土木工程师在这一领域主要处理水的物理控制方面的种种问题。他们的项目用于帮助预防洪水灾害,提供城市用水和灌溉用水,管理控制河流和水流物,维护河滩及其他滨水设施。此外,他们设计和维护海港,运河与水闸,建造大型水利大坝与小型坝,以及各种类型的围堰,帮助设计海上结构并且确定结构的位置对航行影响。 岩土工程学。专业于这个领域的土木工程师对支撑结构并影响结构行为的土壤和岩石的特性进行分析。他们计算建筑和其他结构由于自重压力可能引起的沉降,并采取措施使之减少到最小。他们也需计算并确定如何加强斜坡和填充物的稳定性以及如何保护结构免受地震和地下水的影响。 环境工程学。在这一工程学分支中,土木工程师设计,建造并监视系统以提供安全的饮用水,同时预防和控制地表和地下水资源供给的污染。他们也设计,建造并监视工程以控制甚至消除对土地和空气的污染。他们建造供水和废水处理厂,设计空气净化器和其他设备以最小化甚至消除由工业加工、焚化及其他产烟生产活动引起的空气污染。他们也采用建造特殊倾倒地点或使用有毒有害物中和剂的措施来控制有毒有害废弃物。此外,工程师还对垃圾掩埋进行设计和管理以预防其对周围环境造成污染。

机械专业英文翻译

机械专业英文翻译 Company number:【WTUT-WT88Y-W8BBGB-BWYTT-19998】

启动轴 starting axle 启动齿轮starting gear 启动棘轮 starting ratchet wheel 复位弹簧 restoring, pull back spring 弹簧座 spring seating 摩擦簧friction spring 推力垫圈 thrust washer 轴挡圈axle bumper ring 下料 filling 切断 cut 滚齿机 gear-hobbing machine 剪料机 material-shearing machine 车床 lathe 拉床 broaching machine 垂直度 verticality, vertical extent 平行度 parallelism同 心度 homocentricity 位置度 position 拉伤 pulling damage 碰伤 bumping damage 缺陷 deficiency 严重缺陷 severe deficiency 摩擦力 friction 扭距 twist 滑动 glide 滚动 roll 打滑 skid 脱不开 can’t seperate 不复位 can’t restore 直径 diameter M值 = 跨棒距 test rod span 公法线 common normal line 弹性 elasticity 频率特性 frequency characteristic 误差 error 响应 response 定位 allocation 机床夹具 jig 动力学 dynamic 运动学 kinematic 静力学 static 分析力学 analyse mechanics 拉伸 pulling 压缩 hitting 机床 machine tool 刀具 cutter 摩擦 friction 联结 link 传动 drive/transmission 轴 shaft 剪切 shear 扭转 twist 弯曲应力 bending stress 三相交流电 three-phase AC 磁路 magnetic circles 变压器 transformer 异步电动机 asynchronous motor 几何形状 geometrical 精度 precision 正弦形的 sinusoid 交流电路 AC circuit 机械加工余量 machining allowance 变形力 deforming force 变形 deformation 电路 circuit 半导体元件 semiconductor element 拉孔 broaching 装配 assembling 加工 machining 液压 hydraulic pressure 切线 tangent 机电一体化 mechanotronics mechanical-electrical integration 稳定性 stability 介质 medium 液压驱动泵 fluid clutch 液压泵 hydraulic pump 阀门 valve 失效 invalidation 强度 intensity 载荷 load 应力 stress 安全系数 safty factor 可靠性 reliability 螺纹 thread 螺旋 helix 键 spline 销 pin 滚动轴承 rolling bearing 滑动轴承 sliding bearing 弹簧 spring 制动器 arrester brake 十字结联轴节 crosshead 联轴器 coupling 链 chain 皮带 strap 精加工 finish machining 粗加工 rough machining 变速箱体 gearbox casing 腐蚀 rust 氧化 oxidation 磨损 wear 耐用度 durability 机械制图 Mechanical drawing 投影 projection 视图 view 剖视图 profile chart 标准件 standard component 零件图 part drawing 装配图 assembly drawing 尺寸标注 size marking 技术要求 technical requirements 刚度 rigidity 内力 internal force 位移 displacement 截面 section 疲劳极限 fatigue limit 断裂 fracture 塑性变形 plastic distortion 脆性材料 brittleness material 刚度准则 rigidity criterion 垫圈 washer 垫片 spacer 直齿圆柱齿轮 straight toothed spur gear 斜齿圆柱齿轮 helical-spur gear 直齿锥齿轮 straight bevel gear 运动简图 kinematic sketch 齿轮齿条 pinion and rack 蜗杆蜗轮 worm and worm gear 虚约束 passive constraint 曲柄 crank 摇杆 racker 凸轮 cams 反馈 feedback 发生器 generator

电气工程及其自动化专业英语第五章课文翻译

Most people can formulate a mental picture of a computer, but computers do so many things and come in such a variety of shapes and sizes that it might seem difficult to distill their common characteristics into an all-purpose definition. At its core, a computer is a device that accepts input, processes data, stores data, and produces output, all according to a series of stored instructions. Computer input is whatever is put into a computer system. Input can be supplied by a person, by the environment, or by another computer. Examples of the kinds of input that a computer can accept include the words and symbols in a document, numbers for a calculation, pictures, temperatures from a thermostat, audio signals from a microphone, and instructions from a computer program. An input device, such as a keyboard or mouse, gathers input and transforms it into a series of electronic signals for the computer. In the context of computing, data refers to the symbols that represent facts, objects, and ideas. Computers manipulate data in many ways, and we call this manipulation processing. The series of instructions that tell a computer how to carry out processing tasks is referred to as a computer program, or simply a "program." These programs form the software that sets up a computer to do a specific task. In a computer, most processing takes place in a component called the central processing unit (CPU), which is sometimes described as the"brain" of the computer. A computer stores data so that it will be available for processing. Most computers have more than one location for storing data, depending on how the data is being used. Memory is an area of a computer that temporarily holds data that is waiting to be processed, stored, or output. Storage is the area where data can be left on a permanent basis when it is not immediately needed for processing. Output is the results produced by a computer. Some examples of computer output include reports, documents, music, graphs, and pictures. An output device displays, prints, or transmits the results of processing. Computers are versatile machines, which are able to perform a truly amazing assortment of tasks, but some types of computer are better suited to certain tasks than other types of computers. Computers can be categorized as personal computer, handheld computers, workstations, mainframes, supercomputers , and servers. 大多数人可以制订一个电脑精神的图片,但电脑做很多事情,出现这样的形状和大小不同,它似乎难以提炼成一个全能的定义,它们的共同特点。在其核心,一台计算机是一种装置,它接受输入,处理数据,存储数据,并产生输出,根据对所有存储一系列指示。 什么是计算机输入到计算机系统的压力。输入可提供的一人,由环境,或由另一台计算机。对输入的各种例子,一个计算机可以接受包括文字和符号的文件,规定计算,图片,从恒温器的温度数字,音频信号从一个麦克风,从电脑程序指令。一个输入设备,如键盘或鼠标,集输和转换成一个电子信号的计算机的一系列。 在计算中,数据是指以符号代表的事实,对象和想法。计算机操作在很多方面的数据,我们称之为操作处理。一系列的指令,告诉计算机如何进行处理任务,被称为一个计算机程序,或只是一个“程序”。这些方案形成了软件,建立了计算机做特定的任务。在计算机中,大部分处理发生在一个组件的地方称为中央处理单元(CPU),有时为“大脑的计算机”来形容。 计算机存储数据,以便它会被用作处理可用。大多数计算机有多个用于存储数据的位置,这取决于数据如何被使用。内存是计算机的一个领域,数据是暂时持有等待处理,存储或输出。在数据存储,是可以在一个地区长期离开时,没有立即处理所需。 输出是由电脑产生的结果。电脑输出的一些例子包括报告,文件,音乐,图形,图片。输出设备显示,打印,或传送的处理结果。 电脑是多功能机,它能够执行各种各样的任务十分惊人,但某些类型的计算机更适合比其他类型的计算机的某些任务。计算机可以被归类为个人电脑,掌上电脑,工作站,大型机,超级计算机和服务器。

土木工程专业英语正文课文翻译

第一课土木工程学 土木工程学作为最老的工程技术学科,是指规划,设计,施工及对建筑环境的管理。此处的环境包括建筑符合科学规范的所有结构,从灌溉和排水系统到火箭发射设施。 土木工程师建造道路,桥梁,管道,大坝,海港,发电厂,给排水系统,医院,学校,公共交通和其他现代社会和大量人口集中地区的基础公共设施。他们也建造私有设施,比如飞机场,铁路,管线,摩天大楼,以及其他设计用作工业,商业和住宅途径的大型结构。此外,土木工程师还规划设计及建造完整的城市和乡镇,并且最近一直在规划设计容纳设施齐全的社区的空间平台。 土木一词来源于拉丁文词“公民”。在1782年,英国人John Smeaton为了把他的非军事工程工作区别于当时占优势地位的军事工程师的工作而采用的名词。自从那时起,土木工程学被用于提及从事公共设施建设的工程师,尽管其包含的领域更为广阔。 领域。因为包含范围太广,土木工程学又被细分为大量的技术专业。不同类型的工程需要多种不同土木工程专业技术。一个项目开始的时候,土木工程师要对场地进行测绘,定位有用的布置,如地下水水位,下水道,和电力线。岩土工程专家则进行土力学试验以确定土壤能否承受工程荷载。环境工程专家研究工程对当地的影响,包括对空气和地下水的可能污染,对当地动植物生活的影响,以及如何让工程设计满足政府针对环境保护的需要。交通工程专家确定必需的不同种类设施以减轻由整个工程造成的对当地公路和其他交通网络的负担。同时,结构工程专家利用初步数据对工程作详细规划,设计和说明。从项目开始到结束,对这些土木工程专家的工作进行监督和调配的则是施工管理专家。根据其他专家所提供的信息,施工管理专家计算材料和人工的数量和花费,所有工作的进度表,订购工作所需要的材料和设备,雇佣承包商和分包商,还要做些额外的监督工作以确保工程能按时按质完成。 贯穿任何给定项目,土木工程师都需要大量使用计算机。计算机用于设计工程中使用的多数元件(即计算机辅助设计,或者CAD)并对其进行管理。计算机成为了现代土木工程师的必备品,因为它使得工程师能有效地掌控所需的大量数据从而确定建造一项工程的最佳方法。 结构工程学。在这一专业领域,土木工程师规划设计各种类型的结构,包括桥梁,大坝,发电厂,设备支撑,海面上的特殊结构,美国太空计划,发射塔,庞大的天文和无线电望远镜,以及许多其他种类的项目。结构工程师应用计算机确定一个结构必须承受的力:自重,风荷载和飓风荷载,建筑材料温度变化引起的胀缩,以及地震荷载。他们也需确定不同种材料如钢筋,混凝土,塑料,石头,沥青,砖,铝或其他建筑材料等的复合作用。 水利工程学。土木工程师在这一领域主要处理水的物理控制方面的种种问题。他们的项目用于帮助预防洪水灾害,提供城市用水和灌溉用水,管理控制河流和水流物,维护河滩及其他滨水设施。此外,他们设计和维护海港,运河与水闸,建造大型水利大坝与小型坝,以及各种类型的围堰,帮助设计海上结构并且确定结构的位置对航行影响。 岩土工程学。专业于这个领域的土木工程师对支撑结构并影响结构行为的土壤和岩石的特性进行分析。他们计算建筑和其他结构由于自重压力可能引起的沉降,并采取措施使之减少到最小。他们也需计算并确定如何加强斜坡和填充物的稳定性以及如何保护结构免受地震和地下水的影响。 环境工程学。在这一工程学分支中,土木工程师设计,建造并监视系统以提供安全的饮用水,同时预防和控制地表和地下水资源供给的污染。他们也设计,建造并监视工程以控制甚至消除对土地和空气的污染。

土木工程专业英语词汇(整理版)

第一部分必须掌握,第二部分尽量掌握 第一部分: 1 Finite Element Method 有限单元法 2 专业英语Specialty English 3 水利工程Hydraulic Engineering 4 土木工程Civil Engineering 5 地下工程Underground Engineering 6 岩土工程Geotechnical Engineering 7 道路工程Road (Highway) Engineering 8 桥梁工程Bridge Engineering 9 隧道工程Tunnel Engineering 10 工程力学Engineering Mechanics 11 交通工程Traffic Engineering 12 港口工程Port Engineering 13 安全性safety 17木结构timber structure 18 砌体结构masonry structure 19 混凝土结构concrete structure 20 钢结构steelstructure 21 钢-混凝土复合结构steel and concrete composite structure 22 素混凝土plain concrete 23 钢筋混凝土reinforced concrete 24 钢筋rebar 25 预应力混凝土pre-stressed concrete 26 静定结构statically determinate structure 27 超静定结构statically indeterminate structure 28 桁架结构truss structure 29 空间网架结构spatial grid structure 30 近海工程offshore engineering 31 静力学statics 32运动学kinematics 33 动力学dynamics 34 简支梁simply supported beam 35 固定支座fixed bearing 36弹性力学elasticity 37 塑性力学plasticity 38 弹塑性力学elaso-plasticity 39 断裂力学fracture Mechanics 40 土力学soil mechanics 41 水力学hydraulics 42 流体力学fluid mechanics 43 固体力学solid mechanics 44 集中力concentrated force 45 压力pressure 46 静水压力hydrostatic pressure 47 均布压力uniform pressure 48 体力body force 49 重力gravity 50 线荷载line load 51 弯矩bending moment 52 torque 扭矩53 应力stress 54 应变stain 55 正应力normal stress 56 剪应力shearing stress 57 主应力principal stress 58 变形deformation 59 内力internal force 60 偏移量挠度deflection 61 settlement 沉降 62 屈曲失稳buckle 63 轴力axial force 64 允许应力allowable stress 65 疲劳分析fatigue analysis 66 梁beam 67 壳shell 68 板plate 69 桥bridge 70 桩pile 71 主动土压力active earth pressure 72 被动土压力passive earth pressure 73 承载力load-bearing capacity 74 水位water Height 75 位移displacement 76 结构力学structural mechanics 77 材料力学material mechanics 78 经纬仪altometer 79 水准仪level 80 学科discipline 81 子学科sub-discipline 82 期刊journal ,periodical 83文献literature 84 ISSN International Standard Serial Number 国际标准刊号 85 ISBN International Standard Book Number 国际标准书号 86 卷volume 87 期number 88 专着monograph 89 会议论文集Proceeding 90 学位论文thesis, dissertation 91 专利patent 92 档案档案室archive 93 国际学术会议conference 94 导师advisor 95 学位论文答辩defense of thesis 96 博士研究生doctorate student 97 研究生postgraduate 98 EI Engineering Index 工程索引 99 SCI Science Citation Index 科学引文索引 100ISTP Index to Science and Technology Proceedings 科学技术会议论文集索引 101 题目title 102 摘要abstract 103 全文full-text 104 参考文献reference 105 联络单位、所属单位affiliation 106 主题词Subject 107 关键字keyword 108 ASCE American Society of Civil Engineers 美国土木工程师协会 109 FHWA Federal Highway Administration 联邦公路总署

机械工程专业英语 翻译

2、应力和应变 在任何工程结构中独立的部件或构件将承受来自于部件的使用状况或工作的外部环境的外力作用。如果组件就处于平衡状态,由此而来的各种外力将会为零,但尽管如此,它们共同作用部件的载荷易于使部件变形同时在材料里面产生相应的内力。 有很多不同负载可以应用于构件的方式。负荷根据相应时间的不同可分为: (a)静态负荷是一种在相对较短的时间内逐步达到平衡的应用载荷。 (b)持续负载是一种在很长一段时间为一个常数的载荷, 例如结构的重量。这种类型的载荷以相同的方式作为一个静态负荷; 然而,对一些材料与温度和压力的条件下,短时间的载荷和长时间的载荷抵抗失效的能力可能是不同的。 (c)冲击载荷是一种快速载荷(一种能量载荷)。振动通常导致一个冲击载荷, 一般平衡是不能建立的直到通过自然的阻尼力的作用使振动停止的时候。 (d)重复载荷是一种被应用和去除千万次的载荷。 (e)疲劳载荷或交变载荷是一种大小和设计随时间不断变化的载荷。 上面已经提到,作用于物体的外力与在材料里面产生的相应内力平衡。因此,如果一个杆受到一个均匀的拉伸和压缩,也就是说, 一个力,均匀分布于一截面,那么产生的内力也均匀分布并且可以说杆是受到一个均匀的正常应力,应力被定义为 应力==负载 P /压力 A, 因此根据载荷的性质应力是可以压缩或拉伸的,并被度量为牛顿每平方米或它的倍数。 如果一个杆受到轴向载荷,即是应力,那么杆的长度会改变。如果杆的初始长度L和改变量△L已知,产生的应力定义如下: 应力==改变长△L /初始长 L 因此应力是一个测量材料变形和无量纲的物理量 ,即它没有单位;它只是两个相同单位的物理量的比值。 一般来说,在实践中,在荷载作用下材料的延伸是非常小的, 测量的应力以*10-6的形式是方便的, 即微应变, 使用的符号也相应成为ue。 从某种意义上说,拉伸应力与应变被认为是正的。压缩应力与应变被认为是负的。因此负应力使长度减小。 当负载移除时,如果材料回复到初始的,无负载时的尺寸时,我们就说它是具有弹性的。一特定形式的适用于大范围的工程材料至少工程材料受载荷的大部分的弹性, 产生正比于负载的变形。由于载荷正比于载荷所产生的压力并且变形正比于应变, 这也说明,当材料是弹性的时候, 应力与应变成正比。因此胡克定律陈述, 应力正比于应变。 这定律服从于大部分铁合金在特定的范围内, 甚至以其合理的准确性可以假定适用于其他工程材料比如混凝土,木材,非铁合金。 当一个材料是弹性的时候,当载荷消除之后,任何负载所产生的变形可以完全恢复,没有永久的变形。

电气工程及其自动化专业英语第一章课文翻译

第一章第一篇sectiong Two variables u(t) and i(t) are the most basic concepts in an electric circuit, they characterize the various relationships in an electric circuitu(t)和i(t)这两个变量是电路中最基本的两个变量,它们刻划了电路的各种关系。 Charge and Current The concept of electric charge is the underlying principle for explaining all electrical phenomena. Also, the most basic quantity in an electric circuit is the electric charge. Charge is an electrical property of the atomic particles of which matter consists, measured in coulombs (C). 电荷和电流电荷的概念是用来解释所有电气现象的基本概念。也即,电路中最基本的量是电荷。电荷是构成物质的原子微粒的电气属性,它是以库仑为单位来度量的。 We know from elementary physics that all matter is made of fundamental building blocks known as atoms and that each atom consists of electrons, protons, and neutrons. We also know that the charge e on an electron is negative and equal in magnitude to 1.60210×10-19C, while a proton carries a positive charge of the same magnitude as the electron. The presence of equal numbers of protons and electrons leaves an atom neutrally charged. 我们从基础物理得知一切物质是由被称为原子的基本构造

土木工程专业英语课文原文及对照翻译

土木工程专业英语课文原 文及对照翻译 Newly compiled on November 23, 2020

Civil Engineering Civil engineering, the oldest of the engineering specialties, is the planning, design, construction, and management of the built environment. This environment includes all structures built according to scientific principles, from irrigation and drainage systems to rocket-launching facilities. 土木工程学作为最老的工程技术学科,是指规划,设计,施工及对建筑环境的管理。此处的环境包括建筑符合科学规范的所有结构,从灌溉和排水系统到火箭发射设施。 Civil engineers build roads, bridges, tunnels, dams, harbors, power plants, water and sewage systems, hospitals, schools, mass transit, and other public facilities essential to modern society and large population concentrations. They also build privately owned facilities such as airports, railroads, pipelines, skyscrapers, and other large structures designed for industrial, commercial, or residential use. In addition, civil engineers plan, design, and build complete cities and towns, and more recently have been planning and designing space platforms to house self-contained communities. 土木工程师建造道路,桥梁,管道,大坝,海港,发电厂,给排水系统,医院,学校,公共交通和其他现代社会和大量人口集中地区的基础公共设施。他们也建造私有设施,比如飞机场,铁路,管线,摩天大楼,以及其他设计用作工业,商业和住宅途径的大型结构。此外,土木工程师还规划设计及建造完整的城市和乡镇,并且最近一直在规划设计容纳设施齐全的社区的空间平台。 The word civil derives from the Latin for citizen. In 1782, Englishman John Smeaton used the term to differentiate his nonmilitary engineering work from that of the military engineers who predominated at the time. Since then, the term civil engineering has often been used to refer to engineers who build public facilities, although the field is much broader 土木一词来源于拉丁文词“公民”。在1782年,英国人John Smeaton为了把他的非军事工程工作区别于当时占优势地位的军事工程师的工作而采用的名词。自从那时起,土木工程学被用于提及从事公共设施建设的工程师,尽管其包含的领域更为广阔。 Scope. Because it is so broad, civil engineering is subdivided into a number of technical specialties. Depending on the type of project, the skills of many kinds of civil engineer specialists may be needed. When a project begins, the site is surveyed and mapped by civil engineers who locate utility placement—water, sewer, and power lines. Geotechnical specialists perform soil experiments to determine if the earth can bear the weight of the project. Environmental specialists study the project’s impact on the local area: the potential for air and

相关主题