搜档网
当前位置:搜档网 › 常见电子专业术语中英文对照

常见电子专业术语中英文对照

常见电子专业术语中英文对照
常见电子专业术语中英文对照

常见电子专业术语中英文对照

常见电子专业术语中英文对照

常见英文缩写解释(按字母顺序排列):

ASIC: Application Specific Integrated Circuit. 专用IC

CPLD: Complex Programmable Logic Device. 复杂可编程逻辑器件

EDA: Electronic Design Automation. 电子设计自动化

FPGA: Field Programmable Gate Array. 现场可编程门阵列

GAL: Generic Array Logic. 通用阵列逻辑HDL: Hardware Description Language. 硬件描述语言

IP: Intelligent Property. 智能模块

PAL: Programmable Array Logic. 可编程阵列逻辑

RTL: Register Transfer Level. 寄存器传输级描述)

SOC: System On a Chip. 片上系统

SLIC: System Level IC. 系统级IC

VHDL: Very high speed integrated circuit Hardware Description Language. 超高速集成电路硬件描述语言

A

ASIC(专用集成电路)

Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip.

专用集成电路。一个在一个芯片上定制设计的硬件。

address bus (地址总线)

A set of electrical lines connected to the processor and all of the peripher als withwhich itcommunicates. The address bus is used by the processor to select aspecific memory location or register within a particular peripheral. If the address bus contains n electrical lines, the processor can uniquely address up to 2^n such locations.

一个连接处理器与所有外设的,用来通讯的电

子线路集。地址总线被处理器用来选择在特定外设中的存储器地址或寄存器。如果地址总线有n 条电子线路,处理器能唯一寻址高达2^n的地址空间。

application software(应用软件)

Describes software modules specific to a particular embedded project. The application software is unlikely to be reusable across embedded platforms, simply because each embedded system has a different application.

用来描述一个特定的嵌入式项目中的某一软件模块。应用软件不象可重用的交叉嵌入式平台,只因为每一个嵌入式系统有不同的应用软件。

assembler(汇编编译器)

A software development tool that translates human-readable assembly language programs into machine-language instructions that the processor can understandand execute.

一个能把可读的汇编语言程序转换到处理器

可理解和运行的机器指令的软件开发工具。

assembly language(汇编语言)

A human-readable form of a processor"s instruction set. Most processor-specific functions must be written in assembly language.

一种人可读的处理器指令集的形式。大多数处理器相关的功能必须用汇编语言编写。

B

BSP(板卡支持包)

See board support package.

见board support package。

binary semaphore(二元信号)

A type of semaphore with just two states. Also called a mutex.

一种只有两种状态的信号。也叫互斥信号。

board support package(板卡支持包)

Part of a software package that is processor or platform-dependent. Typically,

sample source code for the board support package is provided by the package developer. The sample code must be modified as necessary, compiled, and linked with the remainder of the software package.

软件包的具有平台依赖性的那一部分。典型地,板卡支持包的样例源程序由包开发者提供。样例源程序必须能在需要时被修改、编译并与软件包的剩下的部分连接起来。

bond-out processor (外合处理器)

A special version of a processor that has some of the internal signals brought out to external pins. A bond-out processor is most often found within an emulator and is never intended to be used in a production system.

一种特殊版本的处理器,它有一些,内部的信号能传达到外置的针脚上。一个外合处理器绝大多数情况下只用在模拟器上,从来不会被特意用在产品系统上。

Breakpoint (断点)

A location in a program at which execution is to be stopped and control of the processor switched to the debugger. Mechanisms for creating and removing breakpoints are provided by most debugging tools.

一个在程序中的地址,在那里程序的执行被停止,并且处理器的控制转换到了除错程序。大多数除错工具提供增加与删除一个断点的机制。

C

CISC(复杂指令集计算机)

Complex Instruction Set Computer. Describes the architecture of a processor family. CISC processors generally feature variable -length instructions, multiple addressing formats, and contain only a small number of general –purpose registers. Intel"s 80x86 family is the quintessential example of CISC. Contrast with RISC.

复杂指令集计算机。对一种处理器架构的描述。CISC处理器一般产生变的指令,多种地址格式,并且仅仅有少量的通用寄存器。Intel的

80x86家族是是典型的CISC处理器。相对于RISC而言。

CPU(中央处理器)

Central Processing Unit. The part of a processor that executes instructions.

中央处理器。处理器中执行指令的那一部分。

Compiler(编译器)

A software development tool that translates high- level language programs into the machine-language instructions that a particular processor can understand and execute.

把高级编程语言程序转换到只有特定的处理器能了解和执行的机器指令的一种软件开发包。

context (上下文)

The current state of the processor"s registers and flags.

处理器当前的状态和标志。

context switch(上下文切换)

The process of switching from one task to another in a multitasking operating system. A context switch involves saving the context of the running ask and restoring the previously-saved context of the other. The piece of code that does this is necessarily processor-specific.

在多任务操作系统中我一个任务切换到另一个的过程。上下文切换包括保存正在运行的任务的上下文和恢复早先保存的另一个任务的上下文。做这个工作的一段代码必须具有处理器特权。

counting semaphore(计数信号)

A type of semaphore that is used to track multiple resources of the same type. An attempt to take a counting semaphore is blocked only if all of the available resources are in use. Contrast with binary semaphore.

一种用来跟踪多个相同类型资源的信号灯。仅仅在所有可用的资源都被用完了时才阻塞。相对二元信号而言。

critical section(临界段)

A block of code that must be executed in sequence and without interruption to guarantee correct operation of the software. See also race condition.

一段必须按次序执行的代码,并且不能被中断,否则不能保证软件正确地操作。参照:竞争状况。

cross-compiler(交叉编译器)

A compiler that runs on a different platform than the one for which it produces object code. A cross-compiler runs on a host computer and produces object code for the target.

一个运行在不同的平台上的编译器,其中之一能产生目标代码。交叉编译器在主机上运行并且产生目标机的目标代码。

D

DMA(直接内存访问)

Direct Memory Access. A technique for transferring data directly between two peripherals (usually memory and an I/O device) with only minimal intervention by the processor. DMA transfers are managed by a third peripheral called a DMA controller.

直接内存访问。一种直接在两个外设(通常是内存和I/O设备)之间进行数据传输的技术,它只要处理器最少的介入。DMA传输由叫DMA 控制器的第三方外设进行管理。

DRAM(动态随机访问存储器)

Dynamic Random- Access Memory. A type of RAM that maintains its contents only as long as the data stored in the device is refreshed at regular intervals. The refresh cycles are usually performed by a peripheral called a DRAM controller.

动态随机访问存储器。一种RAM,存储在其设备中的数据被定期刷新时才能保存它的内容。刷新周期一般由一个叫DRAM控制器的外设完成。

Data bus(数据总线)

A set of electrical lines connected to the processor and all of the peripherals with which it communicates. When the processor wants to read (write) the contents of a memory location or register within a particular peripheral, it sets the address bus pins appropriately and receives (transmits) the contents on the data bus.

连接处理器与所有外设进行通讯的电子线路集。当一个处理器想去写(读)某一特定外设中的存储器地址或寄存器中的内容时,处理器设置地址总线并在数据总线上接收(传输)内容。

Deadline(死线)

The time at which a particular set of computations must be completed. See also real-time system.

一个特定计算必须被完成的时间。请看实时系统。

Deadlock(死锁)

An unwanted software situation in which an entire set of tasks is blocked, waiting for an event that only a task within the same set can cause. If a deadlock occurs, the only solution is to reset the hardware. However, it is usually possible to prevent deadlocks altogether by following certain software design practices.

一种不希望出现的软件状态,在这个状态下,所有的任务因为等待一个只有在这些被阻塞任务之一才能产生的事件而被阻塞。如果死锁发生,唯一解决的方法是重启动硬件。但是,通过可靠的软件设计实践活动通常可以防止死锁的发生。

debug monitor(除错监视程序)

A piece of embedded software that has been designed specifically for use as a debugging tool. It usually resides in ROM and communicates with a debugger via a serial port or network connection. The debug monitor provides a set of primitive commands to view and modify memory locations and registers,

create and remove breakpoints, and execute your program. The debugger combines these primitives to fulfill higher-level requests like program download and single-step.

嵌入式软件被特殊设计来作为除错工具的一部分。它一般被放在ROM中,通过串口或网络与除错器进行通讯。除错监视程序提供一个简单的命令集来显示和内存地址和寄存器、建立和移除断点,并且运行你的程序。除错监视器组合这些简单的命令去实现象程序下载各单步调试等高端的请求。

Debugger(除错器)

A software development tool used to test and debug embedded software. The debugger runs on a host computer and connects to the target through a serial port or network connection. Using a debugger you can download software to the target for immediate execution. You can also set breakpoints and examine the contents of specific memory locations and registers.

一个软件开发工具,被用来对嵌入式软件进行测试和除错。除错器在宿主机上运行并且通过串口或网络连接到目标机上。你能使用除错器下载软件到目标机并直接运行。你也可以设置断点并检查特定内存地址或寄存器的内容。

device driver(设备驱动程序)

A software module that hides the details of a particular peripheral and provides a high-level programming interface to it.

一个软件模块,它隐藏特定外设的细节并提供高级的外设编程接口。

device programmer(设备编程器)

A tool for programming non- volatile memories and other electrically-programmable devices. Typically, the programmable device is inserted into a socket on the device programmer and the contents of a memory buffer are then transferred into it.

一种用来对不挥发内存和其他电可编程设备进行编程的工具。典型地,可编程设备被插到设

备编程器的接口上,接着内存缓存器中的内容被传送到它里面。

digital signal processor(数字信号处理器)

A device that is similar to a microprocessor, except that the internal CPU has been optimized for use in applications involving discrete -time signal processing. In addition to standard microprocessor instructions, DSPs usually support a set of complex instructions to perform common signal -processing computations https://www.sodocs.net/doc/3e2564270.html,mon DSP families are TI"s 320Cxx and Motorola"s 5600x series.

一种类似于微处理器的的设备,不同的是它内部的CPU被优化,用于特定的应用,如离散信号处理。除了标准的微处理器指令外,DSP 常常支持复杂指令集去非常快地完成通用的信号处理计算。通用DSP家庭是TI的320Cxx和Motorola的5600x系列。

E

EEPROM(电可擦的,可编程的只读存储器)

Electrically Erasable, Programmable Read-Only Memory. (Pronounced"Double-E"-PROM.) A type of ROM that can be erased electronically.

电可擦的,可编程的只读存储器。一种ROM 能被电擦除。

EPROM(可擦的,可编程的只读存储器)Erasable, Programmable Read- Only Memory. A type of ROM that can be erased by exposing it to ultraviolet light. Once erased, an EPROM can be reprogrammed with the help of a device programmer.

一种可用紫外线擦除的存储器。一次擦除后,EPROM可以在设备编程器的帮助下被重编程。

embedded system(嵌入式系统)

A combination of computer hardware and software, and perhaps additional mechanical or other parts, designed to perform a dedicated

function. In some cases, embedded systems are part of a larger system or product, as is the case of an anti-lock braking system in a car. Contrast with general-purpose computer.

计算机硬件和软件的结合体,或许还加上机械等其他部分,被设计来完成专门的功能。在一些情况下,嵌入式系统是一个大的系统或产品的一部分,就象汽车上的防抱死装置。与通用计算机相对。

Emulator(仿真器)

Short for In-Circuit Emulator (ICE). A debugging tool that takes the place of emulates the processor on your target board. Emulators frequently incorporate a special "bond -out" version of the target processor that allows you to observe and record its internal state as your program is executing.

在线仿真器的简写。一个在你的目标板上放置仿真的处理器的调试工具。仿真器经常和一目标处理器的一种“外合”版本合在一起,这个版本的的处理器充许你运行程序时观察和记录它的

内部状态。

Executable(可执行的)

A file containing object code that is ready for execution on the target. All that remains is to place the object code into a ROM or download it via a de bugging tool.

一个包含准备在目标机上运行的目标代码的文件。放置目标代码到ROM中或通过调试工具下载。

F

Firmware(固件)

Embedded software that is stored as object code within a ROM. This name is most common among the users of digital signal processors.

是作为目标代码存贮在ROM中的嵌入式软件。这个名字在数字信号处理器的用户中相当流行。

flash memory (闪存)

A RAM- ROM hybrid that can be erased and rewritten under software control. Such devices are divided into blocks, called sectors, that are individually-erasable. Flash memory is common in systems that require nonvolatile data storage at very low cost. In some cases, a large fash memory may even be used instead of a disk-drive.

一种RAM-ROM的混血儿,它能在软件的控制下被擦除和重写。一些设备被分成叫段组的块,能个别地可擦。闪存用在需要很便宜的非易失数据存贮器的地方,一个大容量的闪存甚至被用作磁盘驱动器。

G

general-purpose computer(通用计算机)

A combination of computer hardware and software that serves as a general-purpose computing platform. For example, a personal computer. Contrast with embedded system.

当作通用计算平台的计算机硬件与软件的组

财务专业术语中英文对照表

财务专业术语中英文对照表 英文中文说明 Account Accounting system 会计系统 American Accounting Association 美国会计协会 American Institute of CPAs 美国注册会计师协会 Audit 审计 Balance sheet 资产负债表 Bookkeepking 簿记 Cash flow prospects 现金流量预测 Certificate in Internal Auditing 部审计证书 Certificate in Management Accounting 管理会计证书 Certificate Public Accountant注册会计师 Cost accounting 成本会计 External users 外部使用者 Financial accounting 财务会计 Financial Accounting Standards Board 财务会计准则委员会 Financial forecast 财务预测 Generally accepted accounting principles 公认会计原则 General-purpose information 通用目的信息 Government Accounting Office 政府会计办公室 Income statement 损益表 Institute of Internal Auditors 部审计师协会 Institute of Management Accountants 管理会计师协会 Integrity 整合性 Internal auditing 部审计 Internal control structure 部控制结构 Internal Revenue Service 国收入署 Internal users部使用者 Management accounting 管理会计 Return of investment 投资回报 Return on investment 投资报酬 Securities and Exchange Commission 证券交易委员会

电子生产术语中英文对照表

电子生产术语中英文对照表

生产术语中英文对照表 PRODUCTION FLOOR TECHNICAL TERMINOLOGY TRAINIG 中文名称英文名称中文名 称 英文名称 部门: SMT&REF LOW-SOL DERING 箱子Bins 锡膏Solder paste IC脚 共面 coplanarity 锡膏印刷机Solder paste printer 激光传 感器 Laser sensor 钢网Stencil 监视器Monitor 冰箱Refridgera tor 印刷板Printed circuit board(PCB) 手工印刷Manual printing 印刷板Printed wiring board(PWB) 自动印刷Automatic 印制板PCB

printing 装配assembly(PC BA) 钢网清洁Stencil-clea ning 印制板 装配 Printed wiring assembly 加锡膏Solder paste top-up 氮气回 流炉 N2 reflow 刮刀Squeegee 水准测 试 leveling 刮刀压力Squeegee pressure 锡膏搅 拌器 Solder paste mixer 刮刀角度Squeegee angle 线形贴 片机 Linear mounter 刮刀Spatula 旋转形贴片机Turret-type mounter 罐子Jar 热电偶Thermocoupl e 管子Tube 锡膏厚度测量Solder paste height measurement 红胶水Epoxy adhensive 贴装过程Pick&

生态学专业术语英汉对照2

h Ecology 生态学individuals 个体population 种群communities 群落ecosystems 生态系统 behavioral ecology 行为生态学physiological ecology 生理生态学evolutionary ecology 进化生态学molecular ecology 分子生态学fitness 适合度 natural selection 自然选择adaptation 适应genotype 基因型phenotype 表型 phenotypic plasticity 表型可塑性offspring 后代genes 基因 nongenetic factors 非遗传因素not inherited 不遗传conditions 条件resources 资源 environmental variation 环境变异internal regulation 内调节homeostasis 稳态 negative feedback 负反馈tolerance 耐受性temperature 温度 not depletable 不能耗掉solar radiation 太阳辐射decouple 退耦niche 生态位habitat 栖息地 multidimensional niche space 多维生态位空间 Fundamental niche 基础生态位Realized niche 实际生态位Prey 猎物Foraging 觅食Dimension 轴或维 Global wind pattern 地球的风型The circulation of oceans 洋流Rain 降雨 Havoc ['h?v?k] 灾害 Hurricane 飓风Latitude 纬度 Irradiance [i'reidi?ns,-si] 辐射度 Summer solstice 夏至Winter solstice 冬至 Adiabatic cooling 绝热冷却Scale 尺度 Coriolis effect 科里奥利效应 Intertropical convergence zone 热带辐合带 Jet streams 急流Albedo 反照率 Gulf stream 墨西哥湾流Lee of a continent 背风面Upwelling 上涌流 Adiabatic lapse rate 绝热温度递减率 Inversion 逆温 Heat of condensation 凝结热Heat 热 Temperature profiles 温度剖面Relative humidity 相对湿度Saturated water 饱和水water vapor 水蒸汽microclimate 微气候 thermal ['θ?:m?l]conductivity 热传导 chemical properties of water 水的化学特性 penetration of light through water 光线穿透水 Energy transfer and water phases 能量转化和水相Deplete 耗竭Ions 离子 Electropositive 正电性的Electronegative 负电性的Beer’s law 比尔定律Heat capacity 热容量Maximum density 最大密度Latent heat of vaporization 增发潜热

(完整版)放疗专业术语中英文对照表

Chemntherapeutic agents 化学疗法 thus xue fiao fa) Chemothcrjipy 化学疔,Z (hija xue Aaa fa) hns the goal of killing or stopping rhe development nf rapidly dividing cells. Examples are Cisplatin, Carboplat in, Bkomycin I 博来霉嗪1 (ftd l3f Sg S-fltinrncjrao 5 氟尿瞪喘(ft/ HiAO m dfinfl), mrthotrExate 甲員媒时{Jia 的 did /ioffk Vincristine fifr chun xJTj/a^, Vinblastine 衣祚碱 (chang chun ;ian}. Taxol and Tawiuvirtn .木戟题(SSfi ben 阳ng 钠* Since the sanK nicchanism (hat kilh malignant cdl or blocks de vela pment of a malignant cell cm have similar effects on a nnrnuil, rap idly dividing celt any of LhcNt agents ciin hax r c btid side clfccts. Some terms of cancer ircitLcd with chemcthera 卩、may cjus,e ihe cancer (o "disappear

进出口贸易专业术语中英文对照

银行英语: 出口信贷 export credit 出口津贴 export subsidy 商品倾销 dumping 外汇倾销 exchange dumping 优惠关税 special preferences 保税仓库 bonded warehouse 贸易顺差 favorable balance of trade 贸易逆差 unfavorable balance of trade 进口配额制 import quotas 自由贸易区 free trade zone 对外贸易值 value of foreign trade 国际贸易值 value of international trade 普遍优惠制 generalized system of preferences-GSP 最惠国待遇 most-favored nation treatment-MFNT -------------------价格条件 ---------------------- 价格术语trade term (price term) 运费freight 单价 price 码头费wharfage 总值 total value 卸货费landing charges 金额 amount 关税customs duty 净价 net price 印花税stamp duty 含佣价price including commission 港口税portdues 回佣return commission 装运港portof shipment 折扣discount,allowance 卸货港port of discharge 批发价 wholesale price 目的港portof destination 零售价 retail price 进口许口证inportlicence 现货价格spot price 出口许口证exportlicence 期货价格forward price 现行价格(时价)current price prevailingprice 国际市场价格 world (International)Marketprice 离岸价(船上交货价)FOB-free on board 成本加运费价(离岸加运费价) C&F-cost and freight 到岸价(成本加运费、保险费价) CIF-cost,insurance and freight --------------------交货条件 ---------------------- 交货delivery 轮船steamship(缩写S.S) 装运、装船shipment 租船charter (the chartered shep) 交货时间 time of delivery

SMD专业术语 中英文对照电子类知识宝典

SMD常用术语 微组装技术﹕MPT/MicroelectronicPackagingechnology 混装技术﹕MixedComponentMountingTechnology 封装﹕Package 贴片﹕PickandPlace 拆焊﹕Desoldering 再流﹕Reflow 浸焊﹕DipSoldering 拖焊﹕Dragsoldering 印制电路﹕PrintedCircuit 印制线路﹕PrintedWiring 印制电路板﹕printedcircuitboard 印制线路板﹕printedwiringboard 层压板﹕laminate 覆铜薄层压板﹕copper-cladlaminate 基材﹕basematerial 成品板﹕productionboard 印刷﹕printing 导电图形﹕conductivepattern 印制组件﹕printedcomponent

单面印制板﹕single-sidedprintedboard 双面印制板﹕double-sidedprintedboard 多层印制板﹕multilayerprintedboard 电烙铁﹕Iron 热风嘴﹕hotairreflowingnoozle 吸锡带﹕solderingwick 吸锡器﹕tinextractor 焊后检验﹕post-solderinginspection 目视检验﹕visualinspection 机器检验﹕machineinspection 焊点质量﹕solderingjointquality 焊电缺陷﹕solderingjontdefect 错焊﹕solderwrong 漏焊﹕solderskips 虚焊﹕pseudosoldering 冷焊﹕coldsoldering 桥焊﹕solderbridge 脱焊﹕opensoldering 焊点剥离﹕solderoff 不润湿焊点﹕solderingnonwetting 锡珠﹕solderball

金属加工专业术语中英对照

金属加工专业术语中英对照 砂带磨削,用研磨带磨光 abrasive belt grinding n. 砂带 abrasive belt n. 砂轮切断机 abrasive cut-off machine n. 砂轮修整轮 abrasive dressing wheel n. 磨料粒度 abrasive grain n. 研磨用磨料,铁粒 abrasive grit n. 磨料研磨轮 abrasive lapping wheel n. 位置精度 accuracy of position n. 形状精度 accuracy to shape n. 主切削刃 active cutting edge n. 连接器法兰盘 adapter flange n. 共軛齿廓 adjointing flanks n. 找中(心),找正,对中,对准,找平,调直,校直,调整,调准 align n. 角铣刀 angle milling cutter n. 斜面磨削,斜磨法 angular grinding n. 斜面铣削 angular milling n. 斜向切入磨削 angular plunge grinding n. 斜面车削 angular turning n. 刀杆,心轴,柄轴,轴,辊轴 arbour n. 附件,附件机构,联结,固接,联结法 attachment n. 棒料自动车床 automatic bar machine n. 自动镗床 automatic boring machine n. 自动仿形车床 automatic copying lathe n. 自动双轴铣床 automatic double-head milling machine n. 自动车床 automatic lathe n. 自动转塔车床 automatic turret lathe n. 砂带磨床 belt grinding machine n. 台式车床 bench lathe n. 锥齿轮切削机床 bevel gear cutting machine n. 锥齿轮系,锥齿轮传动系统 bevel gear tooth system n. 斜角,斜面,倾斜,斜切,斜角规,万能角尺,圆锥的,倾斜的,斜边,伞齿轮,锥齿轮 bevel n. 镗孔,镗出的孔,钻眼 borehole n. 镗孔夹具 boring fixture n. 镗床 boring machine n. 镗孔,钻孔,穿孔 boring n. 镗刀 boring tool n. 镗铣床 boring, drilling and milling machine n. 拉床,铰孔机,剥孔机 broaching machine n.

专业术语中英文对照表

语文课程与教学论 名词术语中英文对照表 the Chinese Course and Teaching and Learning Theory in Chinese and English Teaching materials editing teaching materials /Chinese Teaching Materials /edit teaching materials /Uniformed Chinese Teaching Materials /Experimental Teaching Materials /Mother Tongue Teaching Materials /Teaching Materials of the New Course *textbook *reading book *teaching reference book *exercises book *studying plan Technology /Educational Technology /Modern Educational Technology /Educational Technology in Chinese Teaching /multi-media technology /net technology /cloud serving technology *white board *net meeting *chat room *blog Teaching Basic Theory of the Teaching teaching aim teaching task teaching objective teaching model teaching tactics teaching principle teaching program teaching reform teaching case Courseware teaching resources teaching experiment /mother tongue teaching A Term List of 1. 教材( JC ) 教材编写 /语文教材 /编写教材 / 统编教材 /实验教材 /母语教材 /新课程教材 * 课本 * 读本 * 教学参考书(教参) * 练习册 *学案 2. 技术( JS ) / 教育技术 /现代 教育技术 /语文 教育技术 /多媒 体技术 / 网络 技术 /云服务技 术 * 白板 *网 络会议 *聊天室 * 博克 3. 教学 (JX ) 教学基本理论 教学目的 教学 任务 教学目标 教学模式 教学 策略 教学原则 教学大纲 教学 改革 教学案例 教学课件 教学 资源 教学实验 /母语教学

半导体一些术语的中英文对照

离子注入机 ion implanter LSS理论 Lindhand Scharff and Schiott theory 又称“林汉德-斯卡夫-斯高特理论”。 沟道效应 channeling effect 射程分布 range distribution 深度分布 depth distribution 投影射程 projected range 阻止距离 stopping distance 阻止本领 stopping power 标准阻止截面 standard stopping cross section 退火 annealing 激活能 activation energy 等温退火 isothermal annealing 激光退火 laser annealing 应力感生缺陷 stress-induced defect 择优取向 preferred orientation

制版工艺 mask-making technology 图形畸变 pattern distortion 初缩 first minification 精缩 final minification 母版 master mask 铬版 chromium plate 干版 dry plate 乳胶版 emulsion plate 透明版 see-through plate 高分辨率版 high resolution plate, HRP 超微粒干版 plate for ultra-microminiaturization 掩模 mask 掩模对准 mask alignment 对准精度 alignment precision 光刻胶 photoresist 又称“光致抗蚀剂”。 负性光刻胶 negative photoresist

建筑专业词汇中英对照(精心整理版)

1DESIGN BASIS 设计依据 计划建议书planning proposals 设计任务书design order 标准规范standards and codes 条件图information drawing 设计基础资料basic data for design 工艺流程图process flowchart 工程地质资料engineering geological data 原始资料original data 设计进度schedule of design 2STAGE OF DESIGN 设计阶段 方案scheme, draft 草图sketch 会谈纪要summary of discussion 谈判negotiation 可行性研究feasibility study 初步设计preliminary design 基础设计basic design 详细设计detail design 询价图enquiry drawing 施工图working drawing, construction drawing 竣工图as built drawing 3CLIMATE CONDITION 气象条件 日照sunshine 风玫瑰wind rose 主导风向prevailing wind direction 最大(平均)风速maximum (mean) wind velocity 风荷载wind load 最大(平均)降雨量maximum (mean) rainfall 雷击及闪电thunder and lightning 飓风hurricane 台风typhoon 旋风cyclone 降雨强度rainfall intensity 年降雨量annual rainfall 湿球温度wet bulb temperature 干球温度dry bulb temperature 冰冻期frost period

各种专业名称英语词汇中英文对照表

各种专业名称英语词汇中英文对照表

————————————————————————————————作者: ————————————————————————————————日期: ?

各种专业名称英语词汇中英文对照表 哲学Philosophy 马克思主义哲学Philosophy of Marxism 中国哲学ChinesePhilosophy 外国哲学ForeignPhilosophies ?逻辑学Logic?伦理学Ethics 美学Aesthetics 宗教学Science of Religion?科学技术哲学Philosophy of Science andTechnology?经济学Economics?理论经济学Theoretical Economics ?政治经济学PoliticalEconomy ?经济思想史History ofEconomic Thought ?经济史History of Economic 西方经济学WesternEconomics?世界经济World Economics ?人口、资源与环境经济学Population,Resources andEnvironmentalEconomics 应用经济学Applied Economics 国民经济学National Economics?区域经济学Regional Economics ?财政学(含税收学)Public Finance (includingTaxation) 金融学(含保险学) Finance (including Insurance)?产业经济学Industrial Economics ?国际贸易学International Trade 劳动经济学Labor Economics ?统计学Statistics ?数量经济学Quantita tive Economics ?中文学科、专业名称英文学科、专业名称 国防经济学National Defense Economics?法学Law 法学Science of Law ?法学理论Jurisprudence?法律史Legal History ?宪法学与行政法学Constitutional Law and Administrative Law 刑法学Criminal Jurisprudence 民商法学(含劳动法学、社会保障法学)Civil Law and Commercial Law (i ncluding Science of LabourLawand Science ofSocial Sec urityLaw)?诉讼法学Science of ProcedureLaws ?经济法学Sc ience ofEconomic Law ?环境与资源保护法学Science ofEnvironment andNatural Resources Protection Law 国际法学(含国际公法学、国际私法学、国际经济法学、)Internationallaw (including International Public law, International PrivateLaw a

飞机专业术语(英汉对照)

1、the airframe 机身,结构 2、The front (fore) part 前部 3、The rear (aft) part 后部 4、port 左旋(舵) 5、starboard 右旋(舵) 6、the inboard engine or inboards 内侧发动机 7、the outboard engine or outboards 外侧发动机 8、the nose 机头 9、the belly 腹部 10、the skin 蒙皮 11、the windscreen or windshield 风挡 12、the wing 机翼 13、the trailing edge 机翼后缘 14、the leading edge 机翼前缘 15、the wing tip 翼尖 16、the control surface 操纵面 17、ailerons 副翼 18、flaps (inboard flap,outboard flap,leading edge flaps) 襟翼(内侧襟翼,外侧襟翼,前缘缝翼) 19、spoilers (inboard\outboard spoiler)(spoiler down\up) 阻力板,扰流板(内、外侧扰流板)(扰流板放下、打开) 20、slats 缝翼 21、elevators (elevator control tab) 升降舵(升降舵操纵片) 22、rudder (rudder control tab) 方向舵(方向舵操纵片)

23、flap angle 襟翼角 24、flap setting 襟翼调整 25、the full flap position 全襟翼位置 26、a flapless landing 无襟翼着陆 27、the landing gear 起落架 28、stabilizer 安定面 29、the nose wheel 前轮 30、gear locked 起落架锁定 31、the wheel well 起落架舱 32、the wheel door 起落架舱门 33、a tyre 轮胎 34、to burst 爆破 35、a deflated tyre 放了气的轮胎 36、a flat tyre 走了气的轮胎 37、a puncture 轮胎被扎破 38、to extend the flaps (to retract the flaps) 放下襟翼(收上襟翼) 39、gear extention (gear retraction) 起落架放下(起落架收上) 40、The gear is jammed. 起落架被卡死。 41、The flaps are jammed. 襟翼被卡死。 42、the emergency extention system 应急放下系统 43、to crank the gear down 摆动放下起落架 44、the brakes 刹车

(完整版)汽车电子技术常见术语中英文对照

汽车电子技术常见术语中英文对照(Ⅰ) 随着电子技术在汽车领域的广泛应用,出现了大量的专业术语,特别是出现了大量的英文专业缩略术语,参考了大量资料的基础上,经整理、分类将汽车电子技术中常见术语进行了中英文对照。为便于查找,将各种缩略语划为微电脑部分、车身底盘部分、发动机部分及其它部分等共4个部分(表1~表4)。 1微电脑部分常见术语(表1) 表1微电脑部分常见术语 英文缩略语中文全称英文全称 A/D模拟/数字AnalogtoDigital AB地址总线AddressBus ADC模拟/数字转换器 Analogto Digital Converter ALU算术逻辑运算器 Arithmetic and Logic Unit CB控制总线ControlBus CD光盘CompactDisk CD-ROM光盘CompactDiskROM CPU中央处理器 Central Processing Unit D/A数字/模拟DigitaltoAnalog DB数据总线DataBus ECM电子控制模块 Electronic Control Model ECU电子控制器 Electronic Control Unit EEPROM电可擦除只读存储器 Electronic Erasable Programmable ROM EPROM可擦可编程只读存储器 Erasable Programmable RO FET场效应管 Field Effect Transistor I/O输入/输出Input/Output IC集成电路IntegratedCircuit IC集中控制IntegratedControl LSI大规模集成电路 Large Scale Integration MOS金属氧化物半导体 Metal Oxide Semiconductor P-MOSP型MOS D-MOSD型MOS C-MOSC型MOS PCU泵控制单元PumpControlUnit PROM可编程只读存储器ProgrammableROM RAM随机存储器 Random Access Memory ROM只读存储器ReadOnlyMemory SCI微型计算机接口 Small Computer Interface VCD视频高密光盘VisualCompactDisk VCU车辆控制单元VehicleControlUnit VLSI超大规模集成电路 Very Large Scale Integratioa 2车身底盘部分常见术语(表2)

半导体物理--专业术语英汉对照-复习版

__________________________________________________ 1 acceptor 受主 2 allowed energy band允带 3 binary semiconductor 二元半导体 4 charge neutrality condition 电中性条件 5 compensated semiconductor 补偿半导体 6 conduction band and valence band 导带和价带 7 effective mass 有效质量 8 density of states function状态密度函数 9 diamond structure金刚石结构 10 diffusion coefficient扩散系数 11 donor施主 12 drift velocity 漂移速度 13 electron and hole电子和空穴 14 elemental semiconductor 元素半导体 15 equilibrium carrier concentration热平衡载流子浓度 16 expitaxy外延 17 extrinsic semiconductor非本征半导体 18 Fermi energy (or level)费米能级 19 Forbidden energy band禁带 20 indirect bandbap semiconductor非直接带隙半导体 21 intrinsic semiconductor本征半导体 22 majority carrier多数载流子 23 MBE分子束外延 24 Miller indices密勒指数 25 minority carrier少数载流子 26 mobility迁移率 27 MOCVD金属有机气相沉积 28 nondegenerate semiconductor非简并半导体 29 n-type material n型材料 30 Pauli exclusion principle 泡利不相容原理 31 phonon声子 32 photon光子 33 primitive cell原胞 34 quantum state量子态 35 quaternary semiconductor四元半导体 36 scattering散射 37 substrate衬底 38 thermal motion热运动 39 unit cell单胞 40 wave-particle duality波粒二相性 41 continuity equations连续性方程 42 diffusion length扩散长度 43 diffusion coefficient扩散系数 44 Einstein relationship爱因斯坦关系 45 p-n junction p-n结 46 built-in voltage 内建电势差 47 carrier lifetime 载流子寿命

常见电子专业术语中英文对照

常见电子专业术语中英文对照

常见电子专业术语中英文对照 常见英文缩写解释(按字母顺序排列): ASIC: Application Specific Integrated Circuit. 专用IC CPLD: Complex Programmable Logic Device. 复杂可编程逻辑器件 EDA: Electronic Design Automation. 电子设计自动化 FPGA: Field Programmable Gate Array. 现场可编程门阵列 GAL: Generic Array Logic. 通用阵列逻辑HDL: Hardware Description Language. 硬件描述语言 IP: Intelligent Property. 智能模块 PAL: Programmable Array Logic. 可编程阵列逻辑 RTL: Register Transfer Level. 寄存器传输级描述) SOC: System On a Chip. 片上系统

SLIC: System Level IC. 系统级IC VHDL: Very high speed integrated circuit Hardware Description Language. 超高速集成电路硬件描述语言 A ASIC(专用集成电路) Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip. 专用集成电路。一个在一个芯片上定制设计的硬件。 address bus (地址总线) A set of electrical lines connected to the processor and all of the peripher als withwhich itcommunicates. The address bus is used by the processor to select aspecific memory location or register within a particular peripheral. If the address bus contains n electrical lines, the processor can uniquely address up to 2^n such locations. 一个连接处理器与所有外设的,用来通讯的电

制药行业术语中英文对照

术语表 Acceptance Criteria–接受标准:接受测试结果的数字限度、范围或其他合适的量度标准。Active Pharmaceutical Ingredient(API)(or Drug Substance)-活性要用成分(原料药)旨在用于药品制造中的任何一种物质或物质的混合物,而且在用于制药时,成为药品的一种活性成分。此种物质在疾病的诊断,治疗,症状缓解,处理或疾病的预防中有药理活性或其他直接作用,或者能影响机体的功能和结构。 API Starting Material–原料药的起始物料:用在原料药生产中的,以主要结构单元被并入该原料药的原料、中间体或原料药。原料药的起始物料可能是在市场上有售,能够根据合同或商业协议从一个或多个供应商处购得,或者自己生产。原料药的起始物料通常有特定的化学特性和结构。 Batch(or Lot)-批:有一个或一系列工艺过程生产的一定数量的物料,因此在规定的限度内是均一的。在连续生产中,一批可能对应与生产的某以特定部分。其批量可规定为一个固定数量,或在固定时间间隔内生产的数量。 Batch Number(or Lot Number)-批号用于标识一批的一个数字、字母和/或符号的唯一组合,从中可确定生产和销售的历史。 Bioburden–生物负载:可能存在与原料、原料药的起始物料、中间体或原料药中的微生物的水平和种类(例如,治病的或不治病的)。生物负载不应当当作污染,除非含量超标,或者测得治病生物。 Calibration–校验:证明某个仪器或装置在一适当的量程范围内测得的结果与一参照物,或可追溯的标准相比在规定限度内。 Computer System–计算机系统:设计安装用于执行某一项或一组功能的一组硬件元件和关联的软件。 Computerized System–计算机化系统与计算机系统整合的一个工艺或操作。Contamination–污染:在生产、取样、包装或重新包装、贮存或运输过程中,具化学或微生物性质的杂质或外来物质进入或沾染原料、中间体或原料药。 Contract Manufacturer–协议制造商:代表原制造商进行部分制造的制造商。 Critical–决定性的:用来描述为了确保原料药符合规格标准,必须控制在预定范围内的工艺步骤、工艺条件、测试要求或其他有关参数或项目。 Cross-Contamination–交叉污染:一种物料或产品对另一种物料或产品的污染。 Deviation–偏差:对批准的指令或规定的标准的偏离。 Drug(Medicinal)Product–药品:经最后包装准备销售的制剂(参见Q1A) Drug Substance–药物见原料药 Expiry Date(or Expiration Date)-有效期:原料药容器/标签上注明的日期,在此规定时间内,该原料药在规定条件下贮存时,仍符合规格标准,超过这以期限则不应当使用。 Impurity–杂质:存在与中间体或原料药中,任何不希望得到的成分。 Impurity Profile–杂质概况:对存在于一种原料药中的已知和未知杂质的描述。 In-Process Control(or Process Control)-中间控制:生产过程中为监测,在必要时调节工艺和/或保证中间体或原料药符合其规格而进行的检查。 Intermediate–中间体:原料药工艺步骤中生产的、必须经过进一步分子变化或精制才能成为原料药的一种物料。中间体可以分离或不分离。 Manufacture–制造:物料的接收、原料药的生产、包装、重新包装、贴签、重新贴签、质量控制、放行、贮存和分发以及相关控制的所有操作。 Material–物料:原料(起始物料,试剂,溶剂),工艺辅助用品,中间体,原料药和包装及贴签材料的统称。

工程专业术语中英文对照

工程专业术语中英文对照

CDB工程专业术语中英文对照(二) 添加时间:2013-4-24 节流截止放空阀 2011-08-10 16:50:46| 分类:English | 标签:|字号大中小订阅 六、仪表及自动控制 通用描述 COMMON DESCRIPTION 设备名称Equipment Name 缩写 ABB. 分散控制系统Distributed Control System DCS 安全仪表系统Safety Instrumentation System SIS 紧急切断系统Emergency Shutdown system ESD 火气系统Fire and Gas system F&G 监视控制和数据采集系统 Supervisory Control and Data Acquisition SCADA 可编程逻辑控制器Programmed Logic Controller PLC 远程终端单元Remote Terminal Unit RTU 站控系统Station Control System SCS 中央控制室Central Control Room CCR 操作间Operation room 机柜间Equipment room/ Cabinet room 大屏显示系统Large Screen Display system LSD 流量类仪表 FLOW INSTRUMENT 设备名称Equipment Name 孔板Orifice Plate 文丘里流量计Venturi Flowmeter 均速管流量计Averaging Pitot Tube 阀式孔板节流装置 Orifice Plate in quick change fitting 涡轮流量计Turbine Flowmeter

相关主题