基于STM32的数据采集系统英文文献

基于STM32的数据采集系统英文文献
基于STM32的数据采集系统英文文献

Design of the Data Acquisition System Based on STM32

ABSTRACT

Early detection of failures in machinery equipments is one of the most important concerns to industry. In order to monitor effective of rotating machinery, we development a micro-controller uC/OS-II system of signal acquisition system based on STM32 in this paper. we have given the whole design scheme of system and the multi-channel vibration signal in axis X, Y and Z of the rotary shaft can be acquired rapidly and display in real-time. Our system has the character of simple structure, low power consumption, miniaturization.

Keywords:STM32; data acquisition; embedded system;uC/OS-II;

1.1. Introduction

The real-time acquisition of vibration in rotating machinery can effectively predict, assess and diagnose equipment operation state, the industry gets vibration data acquisition Rapidly and analysis in real-time can monitor the rotating machinery state and guarantee the safe running of the equipment. In order to prevent failure, reduce maintenance time, improve the economic efficiency, The purpose of fault diagnosis system can detect these devices through the vibration signal acquisition of rotating machinery, and process the data acquisition, then it will make timely judgment of running state of equipment .While the data acquisition module is the core part of the fault diagnosis system [1-4].The practical application in the industrial field, is the equipment operating parameters will be acquired to monitor equipment operating state. In traditional data acquisition systems, the data from acquisition card are generally send into the computer, and specific software will be developed for the data acquisition. The main contribution of this paper has designed the STM32 platform with ARM technology, that has become a traditional mainstream technology in embedded systems, and the collecting data toward the direction of high real-time, multi-parameter, high-precision, while data storage become large capacity, more

miniaturization and portable, and the development of multicommunication mode and long-distance for data transmission. So as to meet the actual acquisition system multitasking requirements, this article has designed based on STM32 micro-controller uC/OS-II system of signal acquisition system. Therefore, in order to meet the actual acquisition system multitask requirements, this novelty of this article has designed a signal acquisition system in micro-controller uC/OS-II based on STM32.

2.Architecture of data acquisition system

Data acquisition as key technology for monitoring equipment, recently a lot of work has been done on it. An embedded parallel data acquisition system based on FPGA is Optimized designed which will make it reasonable to divide and allocate high-speed and low-speed A/D [5]. Instead, it has use a high-speed A/D converter and Stratix II series of FPGA for data collection and processing, in which the main contribution is used of the Compact Peripheral Component Interconnect, the system has the characters of modularization, sturdiness and scalability [6].But remote control will be needed in Special Conditions, this paper introduce the embedded operating system platform based on Windows CE and uC/OS-II to design a remote acquisition and control system with the GPRS wireless technology [7-8].In order to achieve the data sharing of multi-user, it has build the embedded dynamic website for data acquisition management and dissemination with the ARM9 and Linux operation system [9].A data collection terminal devices is designed based on ARM7 microprocessor LPC2290 and embedded real-time operating system uC/OS-II to solve the real-time acquisition of multichannel small signal and multi-channel transmission[10].On the other hands, two parallel DSP-based system dedicated to the data acquisition on rotating machines, and the inner signal conditioner is used to adapt the sensor output to the input range of the acquisition, and then signal post-processing by the design software, while the most frequently structure is to use DAS and FPGA-based, and such programs are also dependent on the DAS cost.

In order to meet market requirements of low power consumption, low cost, and mobility, Fig.1 in this paper presents the design overall structure diagram of data acquisition system. Through SPI interface, the system gets the data collection with

three axis acceleration sensor into the STM32 controller of inner A/D conversion module with 12-bit, this process is non-interfering parallel acquisition. Our system uses 240x400 LCD and touch screen module real-time to display the collected data in real time.

2.1. STM32 micro-controller

A 32 bit RISC STM32F103VET6, used as the processor in our system, compared with similar products, the STM32F103VET6 work at 72MHZ, with characters of strong performance and low power consumption, real-time and low-cost. The processor includes: 512K FLASH, 64K SRAM, and it will communicate by using five serial ports which contain a CAN bus, a USB2.0 SLA VE mode and a Ethernet interface, what s more two RS232 ports are also included. The system in our paper extend the SST25VF016

B serial memory through the SPI bus interface, that will regard as the temporary storage when collect large number of data, furthermore, we have the A/D converter with 12 bits resolution, and the fastest conversion up to 1us, with 3.6 V full-scale of the system. In addition to design of the system power supply circuit, the reset circuit, RT

C circuit and GPIO port to assurance system needs and

normal operation.

2.2. Data acquisition

The machine state is normal or not is mainly depended on the vibration signal. In this paper, to acquire the vibration data of rotating machinery rotor, we have used vibration acceleration transducers MMA7455L which could collect the data from axis x, y, and z of the company of Free-scale. The kind of vibration acceleration transducers has advantage of low cost and small size, high sensitivity and large dynamic range with small interference. MMA7455L is mainly consists of gravity sensing unit and signal conditioning circuit composition, and this sensor will amplify the tiny data before signal preprocessing. In data acquisition process of our system, the error of sampling stage is mainly caused by quantified, and the error is depended on the bits of the A/D converter ,when we regard the maximum voltage as V max , the AD converter bits is n, and the quantization Q = V max/2n, then, the quantization error is obeyed uniform distribution in [- q / 2, q / 2] [13].

The designed STM32 could built at most three 12-bit parallel ADC in this paper , which theoretical index is 72dB and the actual dynamic range is between 54 to 60dB while 2 or 3 bits is impacted by noise, the dynamic range of measurement can up to 1000 times with 60dB. For the vast majority of the vibration signal, the maximum sampling rate of 10kHZ can meet actual demand, and the higher frequency of collection is generally used in the 8-12 bits AD, therefore one of contribution of this

work is to choose a built-in 12-bit A/D to meet the accuracy of vibration signal acquisition and lower cost in this experiment.

3.Software design

3.1. Transplantation of C/OS

In order to ensure real-time and safety data collection requirements, in this system, a kind of RTOS whose source code is open and small is proposed. It also can be easily to be cut down, repotted and solidified, and its basic functions including task management and resource management, storage management and system management. The RTOS embedded system could support 64 tasks, with at most 56 user tasks, and four tasks of the highest and the lowest priorities will be retained in system. The uC/OS-II assigns priorities of the tasks according to their importance, the operation system executive the task from the priority sequence and each task have independent priority. The operating system kernel is streamlined, and multi-tasking function is well compared with others, it can be transplanted to processors that from 8-bit to 64-bit.The transplant in the system are to modify the three file system structure: OS_CPU_C.H OS_CPU.C, OS_CPU_A.ASM. Main transplantation procedure is as follows:

A. OS_CPU_C.H

It has defined the data types, the length and growth direction of stack in the processor. Because different microprocessors have different word length,so the uC/OS-II transplantation include a series of type definition to ensure its portability, and the revised code as follows:

typedef unsigned char BOOLEAN;

typedef unsigned char INT8U;

typedef signed char INT8S;

typedef unsigned short INT16U;

typedef signed short INT16U;

typedef unsigned int INT32U;

typedef signed int INT32S;

typedef float FP32;

typedef double FP64;

typedef unsigned int OS_STK;

typedef unsigned int OS_CPU_SR;

Cortex-M3 processor defines the OS_ENTER_CRITICAL () and OS_EXIT_CRITICAL () as opening and closing interrupt, and they must set to 32 bit of the stack OS_STK and CPU register length. In addition, that has defined the stack pointer OS_STK_GROWTH stack growth direction from high address to lower address.

B. OS_CPU.C

To modify the function OSTaskStkInit() according to the processor, the nine remaining user interface functions and hook functions can be null without special requirements, they will produce code for these functions only when the OS_CPU_HOOKS_EN is set to 1 in the file of OS_CFG.H. The stack initialization function OSTaskStkInit () return to the new top of the stack pointer.

OS_CPU_A.ASM

Most of the transplant work are completed in these documents, and modify the following functions.

OsStartHighRdy() is used for running the most priority ready task, it will be responsible for stack pointer SP from the highest priority task of TCB control block, and restore the CPU, then the task process created by the user start to control the process.

OSCtxSw () is for task switching, When the current task ready queue have a higher priority task, the CPU will start OSCtxSw () task switching to run the higher priority task and the current task stored in task stack.

OSIntCtxSw () has the similar function with OSIntSw (), in order to ensure real-time performance of the system, it will run the higher priority task directly when the interrupt come, and will not store the current task.

OSTickISR () is use to handle the clock interrupt, which needs interrupt to schedule its implementation when a higher priority task is waiting for the clock signal.

OS_CPU_SR_Save () and OS_CPU_SR_Restore () is completed to switch interrupt while entering and leaving the critical code both functions implement by the critical protection function OS_ENTER_CRITICAL () and OS_EXIT_CRITICAL ().

After the completion ofthe above work,uC/OS-II can run on the processors. 3.2. Software architecture

Fig.2 shows the system software architecture, so as to display the data visualized,uC/GUI3.90 and uC/OS-II is transplanted in the system, our system contains six tasks such data acquisition, data transmission, LCD display, touch screen driver, key-press management and uC/GUI interface.First of all, we should set the task priority and the task scheduling based on the priority. It needs complete the required driver design before the data acquisition, such as A/D driver, touch panel driver and system initialization, while the initializations include: hardware platform initialization, system clock initialization, interrupt source configuration, GPIO port configuration, serial port initialization and parameter configuration, and LCD initialization. The process is that the channel module sent sampling command to the AD channel, then to inform the receiver module it has been sent the sample start command, the receiver module is ready to receive and large data will store in the storage module, after the completion of the first sampling, channel module will send the complete command of sampling to the receiver module, the receiver sends an interrupt request to the storage module to stop the data storing, then the data will display on the LCD touch screen. The data acquisition process shown in Fig.3

4.Experiments

The experiment of the embedded system has been done and data acquisition comes from the acceleration of MMA7455L, which is installed on the bench of rotating machine. The data acquisition have displayed as shown in Fig.4 and Fig.5, the system can select three channels to collect the vibration signal from the three directions of X, Y and Z-axis , and in this paper the sampling frequency is 5KHZ and we have collect the vibration signal from normal state of unbalanced state at the same channel. The result shows that our system can display real-time data acquisition and predict the preliminary diagnosis rapidly.

5.Conclusion

This paper has designed an embedded signal acquisition system for real time according to the mechanical failure occurred with high frequency of in the rotating machines. The system is based on a low cost microcontroller, Vibration signals is picked by the three axis acceleration sensor which has the performance of low cost and high sensitivity, and the acquisition data from axis x, y, and z. We have designed the system hardware structure, and analyses the working principle of data acquisition module. The proposed system of uC/OS-II realize the data task management and scheduling, and it is compacted with structure and low cost, what's more the system collects the vibration signal and analysis in real-time of the rotating machines, and then quickly gives diagnostic results.

Acknowledgements

This work was supported by The National Natural Science Foundation of China

(51175169); China National Key Technology R&D Program(2012BAF02B01); Planned Science and Technology Project of Hunan Province(2009FJ4055);Scientific Research Fund of Hunan Provincial Education Department(10K023). REFERENCES

[1] Cheng, L., Yu, H., Research on intelligent maintenance unit of rotary machine, Computer Integrated Manufacturing Systems, vol. 10, Issue: 10, page 1196-1198, 2004.

[2] Yu, C., Zhong, Ou., Zhen, D., Wei, F., .Design and Implementation of Monitoring and Management Platform in Embedded Fault Diagnosis System, Computer Engineering, vol. 34 , Issue: 8, page 264-266, 2008.

[3]Bi, D., Gui, T., Jun, S., Dynam . Behavior of a High-speed Hybrid Gas Bearing-rotor System for a Rotating ramjet, Journal of Vibration and Shock, vol. 28, Issue: 9, page 79-80, 2009.

[4] Hai, L., Jun, S., Research of Driver Based on Fault Diagnosis System Data Acquisition Module, Machine Tool& Hydraulics, vol. 38 , Issue: 13, page 166-168, 2011.

[5] Hao, W., Qin, W., Xiao, S., Optimized. Design of Embedded Parallel Data Acquisition System, Computer Engineering and Design, vol. 32, Issue: 5, page 1622-1625, 2011.

[6] Lei, S., Ming, N., Design and Implementation of High Speed Data Acquisition System Based on FPGA, Computer Engineering, vol. 37, Issue: 19, page 221-223, 2011.

[7] Chao, T., Jun, Z., Ru, G., Design of remote data acquisition and control system based on Window CE, Microcomputer& Its Applications , vol. 30, Issue: 14, page 21-27, 2011.

[8]Xiao, W., Bin, W., SMS controlled information collection system based on uC/OS-II, Computer Application, vol. 12, Issue: 31, page 29-31, 2011.

[9]Ting,Y., Zhong, C., Construction of Data Collection& Release in Embedded System, Computer Engineering, vol. 33, Issue: 19, page 270-272, 2007.

[10]Yong, W., Hao, Z., Peng,D., Design and Realization of Multi-function Data Acquisition System Based on ARM, Process Automation Instrumentation, vol. 32,

Issue: 1, page: 13-16, 2010.

[11] Betta, G., Liguori, C., Paolillo, A., A DSP-Based FFT Analyzer for the Fault Diagnosis of Rotating Machine Based on Vibration Analysis, IEEE Transaction on Instrumentation and Measurement, vol. 51, Issue: 6, 2002.

[12] Contreras-Medina LM., Romero Troncoso RJ., Millan Almarez JR., FPGA Based Multiple-Channel Vibration Analyzer Embedded System for Industrial Application in Automatic Failure Detection, IEEE transactions on International and measurement, vol. 59, Issue: 1, page 63-67, 2008.

[13]Chon, W., Shuang, C., Design and implementation of signal detection system based on ARM for ship borne equipment, Computer Engineering and Design, vol. 32, Issue: 4, page: 1300-1301, 2011.

[14]Miao, L., Tian, W., Hong, W., Real-time Analysis of Embedded CNC System Based on uC/OS-II, Computer Engineering, vol. 32, Issue: 22, page 222-223, 2006.

关于力的外文文献翻译、中英文翻译、外文翻译

五、外文资料翻译 Stress and Strain 1.Introduction to Mechanics of Materials Mechanics of materials is a branch of applied mechanics that deals with the behavior of solid bodies subjected to various types of loading. It is a field of study that i s known by a variety of names, including “strength of materials” and “mechanics of deformable bodies”. The solid bodies considered in this book include axially-loaded bars, shafts, beams, and columns, as well as structures that are assemblies of these components. Usually the objective of our analysis will be the determination of the stresses, strains, and deformations produced by the loads; if these quantities can be found for all values of load up to the failure load, then we will have obtained a complete picture of the mechanics behavior of the body. Theoretical analyses and experimental results have equally important roles in the study of mechanics of materials . On many occasion we will make logical derivations to obtain formulas and equations for predicting mechanics behavior, but at the same time we must recognize that these formulas cannot be used in a realistic way unless certain properties of the been made in the laboratory. Also , many problems of importance in engineering cannot be handled efficiently by theoretical means, and experimental measurements become a practical necessity. The historical development of mechanics of materials is a fascinating blend of both theory and experiment, with experiments pointing the way to useful results in some instances and with theory doing so in others①. Such famous men as Leonardo da Vinci(1452-1519) and Galileo Galilei (1564-1642) made experiments to adequate to determine the strength of wires , bars , and beams , although they did not develop any adequate theo ries (by today’s standards ) to explain their test results . By contrast , the famous mathematician Leonhard Euler(1707-1783) developed the mathematical theory any of columns and calculated the critical load of a column in 1744 , long before any experimental evidence existed to show the significance of his results ②. Thus , Euler’s theoretical results remained unused for many years, although today they form the basis of column theory. The importance of combining theoretical derivations with experimentally determined properties of materials will be evident theoretical derivations with experimentally determined properties of materials will be evident as we proceed with

化工英文文献翻译

Heavy Oil Development Technology of Liaohe Oilfield Han Yun (Scientific Research Information Department Exploration&Development Research Institute,Liaohe Oilfield Company) Liaohe Oilfield,the largest heavy oil production base in China,features in various reservoir types,deep burial,and wide range of crude oil viscosity.For many years,a series of technologies have been developed for different oil products and reservoir types of the oilfield,of which water flooding,foam slug drive,steam stimulation,steam drive,and SAGD are the main technologies. After continuous improvement,they have been further developed and played an important role in the development of heavy oil in the oilfield. Liaohe Oilfield is abundant in heavy oil resources,46%of the total proved reserves of Liaohe Oilfield Company. Horizontally the resources concentrates in the West Depression and the southern plunging belt of the Central Uplift in Liaohe Rift. Vertically,it is mainly distributed in Paleocene Shahejie Formation(ES). The distinctive geological feature of Liaohe 0ilfield is manifested in three aspects:first,the heavy oil reservoirs are deeply buried and 80%of them are buried more than 900m deep;second,the heavy oil viscosity ranges widely.For most of the reservoirs.the dead oil viscosity ranges in 100~100000mPa·s with the maximum 650000mPa·s.Third the reservoir types are various with complicated oil—water relationship,most of the reservoirs are edge water and bosom water reservoirs and there are also edge water reservoirs,top water reservoirs and bosom water reservoirs.For more than 20 years of development,Liaohe Oilfield has developed series of heavy oil development technologies for different oil products and different types of reservoirs,such as water flooding, foam slug drive,steam stimulation steam drive and SAGD.The most difficult issues have been overcome in the development of the super

管理信息系统MIS(Management Information System)

MIS(Management Information System) the term in the interest of the administration. In the wake of the development of MIS, much business sit up the decentralized message concentration to establish the information system ministry of directly under director, and the chief of information system ministry is ordinarily in the interest of assistant manager’s grade. After the authority of business is centralized up high-quality administration personnel staff’s hand, as if causing much sections office work decrease, hence someone prophesy, middle layer management shall vanish. In reality, the reappearance phase employed layer management among the information system queen not merely not to decrease, on the contrary there being the increase a bit. This is for, although the middle layer management personnel staff getting off exonerate out through loaded down with trivial details daily routine, yet needs them to analyses researching work in the way of even more energy, lift further admonishing the decision of strategic importance level. In the wake of the development of MIS, the business continuously adds to the demand of high technique a talented person, but the scarce thing of capability shall be washed out gradually. This compels people by means of study and cultivating, and continuously lifts individual’s quality. In The wake of the news dispatch and electric network and file transmission system development, business staff member is on duty in many being living incomparably either the home. Having caused that corporation save the expenses enormously, the work efficiency obviously moves upward American Rank Zeros corporation the office system on the net, in the interest of the creativity of raise office personnel staff was produced the advantageous term. At the moment many countries are fermenting one kind of more well-developed manufacturing industry strategy, and become quickly manufacturing the business. It completely on the basis of the user requirement organization design together with manufacture, may carry on the large-scale cooperation in the interest of identical produce by means of the business that the flow was shifted the distinct districts, and by means of the once more programming to the machinery with to the resources and the reorganization of personnel staff , constituted a fresh affrication system, and causes that manufacturing cost together with lot nearly have nothing to do with. Quickly manufacturing the business establishes a whole completely new strategy dependence relation against consumer, and is able to arouse the structure of production once more revolution. The management information system is towards the self-adoption and Self-learning orientation development, the decision procedure of imitation man who is be able to be better. Some entrepreneurs of the west vainly hope that consummate MIS is encircles the magic drug to govern the business all kinds of diseases; Yet also someone says, and what it is too many is dependent on the defeat that MIS be able to cause on the administration. It is adaptable each other to comprehend the effect to the business of MIS, and is favor of us to be living in development and the research work, and causes the business organization and administer the better development against MIS of system and administration means , and establish more valid MIS. 英文翻译文章的出处:Russ Basiura, Mike Batongbacal 管理信息系统: 管理信息系统就是我们常说的MIS(Management Information System), 在强调管理,

10kV小区供配电英文文献及中文翻译

在广州甚至广东的住宅小区电气设计中,一般都会涉及到小区的高低压供配电系统的设计.如10kV高压配电系统图,低压配电系统图等等图纸一大堆.然而在真正实施过程中,供电部门(尤其是供电公司指定的所谓电力设计小公司)根本将这些图纸作为一回事,按其电脑里原有的电子档图纸将数据稍作改动以及断路器按其所好换个厂家名称便美其名曰设计(可笑不?),拿出来的图纸根本无法满足电气设计的设计意图,致使严重存在以下问题:(也不知道是职业道德问题还是根本一窍不通) 1.跟原设计的电气系统货不对板,存在与低压开关柜后出线回路严重冲突,对实际施工造成严重阻碍,经常要求设计单位改动原有电气系统图才能满足它的要求(垄断的没话说). 2.对消防负荷和非消防负荷的供电(主要在高层建筑里)应严格分回路(从母线段)都不清楚,将消防负荷和非消防负荷按一个回路出线(尤其是将电梯和消防电梯,地下室的动力合在一起等等,有的甚至将楼顶消防风机和梯间照明合在一个回路,以一个表计量). 3.系统接地保护接地型式由原设计的TN-S系统竟曲解成"TN-S-C-S"系统(室内的还需要做TN-C,好玩吧?),严格的按照所谓的"三相四线制"再做重复接地来实施,导致后续施工中存在重复浪费资源以及安全隐患等等问题.. ............................(违反建筑电气设计规范等等问题实在不好意思一一例举,给那帮人留点混饭吃的面子算了) 总之吧,在通过图纸审查后的电气设计图纸在这帮人的眼里根本不知何物,经常是完工后的高低压供配电系统已是面目全非了,能有百分之五十的保留已经是谢天谢地了. 所以.我觉得:住宅建筑电气设计,让供电部门走!大不了留点位置,让他供几个必需回路的电,爱怎么折腾让他自个怎么折腾去.. Guangzhou, Guangdong, even in the electrical design of residential quarters, generally involving high-low cell power supply system design. 10kV power distribution systems, such as maps, drawings, etc. low-voltage distribution system map a lot. But in the real implementation of the process, the power sector (especially the so-called power supply design company appointed a small company) did these drawings for one thing, according to computer drawings of the original electronic file data to make a little change, and circuit breakers by their the name of another manufacturer will be sounding good design (ridiculously?), drawing out the design simply can not meet the electrical design intent, resulting in a serious following problems: (do not know or not know nothing about ethical issues) 1. With the original design of the electrical system not meeting board, the existence and low voltage switchgear circuit after qualifying serious conflicts seriously hinder the actual construction, often require changes to the original design unit plans to meet its electrical system requirements (monopoly impress ). 2. On the fire load and fire load of non-supply (mainly in high-rise building in) should be strictly sub-loop (from the bus segment) are not clear, the fire load and fire load of non-qualifying press of a circuit (especially the elevator and fire elevator, basement, etc.

石油和天然气勘探中英文对照外文翻译文献

中英文对照外文翻译文献 (文档含英文原文和中文翻译) OIL UNDER ICE DETECTION: WHAT IS THE STATE-OF-THE-ART? Abstract. Since the exploration for oil and gas in the Canadian and US arctic commenced in the early 1970s, a need has been identified to develop technology to detect oil under ice. Both electromagnetic and acoustic sensors have been tried, but a practical field instrument has not been identified. Most proposed systems require that the equipment be operated from the ice surface in order to get adequate coupling and, for some systems, the snow must be removed from the ice. For many ice

situations, surface access is difficult and poses a severe safety issue. Two recent spills in Alberta used “high technology” ice augers to detect the presence of oil under the ice. Some potential new techniques are discussed and the basic principles of their operation described. Keywords: arctic, oil spill response, oil in ice, detection 1. Introduction The detection of oil under continuous ice cover has presented one of the most difficult challenges to the oil-spill technological community for the past two decades and there is still no operationally proven system available. Dickins (2000) under the sponsorship of the US Minerals Management Service conducted an excellent review of the status of oil-under-ice detection and this paper complements this review with a more detailed analysis of some systems. Dickins identified many false start concepts, which will not be discussed in this paper. In order to determine the design of a suitable oil-under-ice detector, the various situations under which oil may be found under a continuous ice sheet need to be considered. The oil must come from a sub-surface release since any surface release would either be on the ice surface or in a lead or other opening in the ice. Potential sources of sub-surface oil are a leak in a pipeline, the leakage from a submerged tank or vessel or a natural seep. Oil when trapped under ice does not spread rapidly or cover a large area due to natural

管理信息系统中英文翻译资料

Managemengt Information Systems By a management information system,we propose the follow alternate definition: an integrated uer/machine system (usually computerized) for providing information to support decision making in an enterprise. The key elements of this definition are —An integrated uer/machine system —For proving information —To support decision making —In an enterprise A management information system utilizes —Computer hardware and software —Manual procedures —Models for analysis —A database Just as there is a logical flow of materials in the creation of a product, there is logical flow of information in a management information system.In manufacturing,raw materials move through a process that transforms the raw materials into usable products. In a similar fashion, in an information system,data are supplied to a system(input), the data are manipulated(processed),and they are transformed into information(output).In its simplest form ,a management information systemed may be depicted by an input-process-output(IPO) model

英文论文及中文翻译

International Journal of Minerals, Metallurgy and Materials Volume 17, Number 4, August 2010, Page 500 DOI: 10.1007/s12613-010-0348-y Corresponding author: Zhuan Li E-mail: li_zhuan@https://www.360docs.net/doc/0518968158.html, ? University of Science and Technology Beijing and Springer-Verlag Berlin Heidelberg 2010 Preparation and properties of C/C-SiC brake composites fabricated by warm compacted-in situ reaction Zhuan Li, Peng Xiao, and Xiang Xiong State Key Laboratory of Powder Metallurgy, Central South University, Changsha 410083, China (Received: 12 August 2009; revised: 28 August 2009; accepted: 2 September 2009) Abstract: Carbon fibre reinforced carbon and silicon carbide dual matrix composites (C/C-SiC) were fabricated by the warm compacted-in situ reaction. The microstructure, mechanical properties, tribological properties, and wear mechanism of C/C-SiC composites at different brake speeds were investigated. The results indicate that the composites are composed of 58wt% C, 37wt% SiC, and 5wt% Si. The density and open porosity are 2.0 g·cm–3 and 10%, respectively. The C/C-SiC brake composites exhibit good mechanical properties. The flexural strength can reach up to 160 MPa, and the impact strength can reach 2.5 kJ·m–2. The C/C-SiC brake composites show excellent tribological performances. The friction coefficient is between 0.57 and 0.67 at the brake speeds from 8 to 24 m·s?1. The brake is stable, and the wear rate is less than 2.02×10?6 cm3·J?1. These results show that the C/C-SiC brake composites are the promising candidates for advanced brake and clutch systems. Keywords: C/C-SiC; ceramic matrix composites; tribological properties; microstructure [This work was financially supported by the National High-Tech Research and Development Program of China (No.2006AA03Z560) and the Graduate Degree Thesis Innovation Foundation of Central South University (No.2008yb019).] 温压-原位反应法制备C / C-SiC刹车复合材料的工艺和性能 李专,肖鹏,熊翔 粉末冶金国家重点实验室,中南大学,湖南长沙410083,中国(收稿日期:2009年8月12日修订:2009年8月28日;接受日期:2009年9月2日) 摘要:采用温压?原位反应法制备炭纤维增强炭和碳化硅双基体(C/C-SiC)复合材

英文文献翻译

中等分辨率制备分离的 快速色谱技术 W. Clark Still,* Michael K a h n , and Abhijit Mitra Departm(7nt o/ Chemistry, Columbia Uniuersity,1Veu York, Neu; York 10027 ReceiLied January 26, 1978 我们希望找到一种简单的吸附色谱技术用于有机化合物的常规净化。这种技术是适于传统的有机物大规模制备分离,该技术需使用长柱色谱法。尽管这种技术得到的效果非常好,但是其需要消耗大量的时间,并且由于频带拖尾经常出现低复原率。当分离的样本剂量大于1或者2g时,这些问题显得更加突出。近年来,几种制备系统已经进行了改进,能将分离时间减少到1-3h,并允许各成分的分辨率ΔR f≥(使用薄层色谱分析进行分析)。在这些方法中,在我们的实验室中,媒介压力色谱法1和短柱色谱法2是最成功的。最近,我们发现一种可以将分离速度大幅度提升的技术,可用于反应产物的常规提纯,我们将这种技术称为急骤色谱法。虽然这种技术的分辨率只是中等(ΔR f≥),而且构建这个系统花费非常低,并且能在10-15min内分离重量在的样本。4 急骤色谱法是以空气压力驱动的混合介质压力以及短柱色谱法为基础,专门针对快速分离,介质压力以及短柱色谱已经进行了优化。优化实验是在一组标准条件5下进行的,优化实验使用苯甲醇作为样本,放在一个20mm*5in.的硅胶柱60内,使用Tracor 970紫外检测器监测圆柱的输出。分辨率通过持续时间(r)和峰宽(w,w/2)的比率进行测定的(Figure 1),结果如图2-4所示,图2-4分别放映分辨率随着硅胶颗粒大小、洗脱液流速和样本大小的变化。

房地产信息管理系统的设计与实现 外文翻译

本科毕业设计(论文)外文翻译 译文: ASP ASP介绍 你是否对静态HTML网页感到厌倦呢?你是否想要创建动态网页呢?你是否想 要你的网页能够数据库存储呢?如果你回答:“是”,ASP可能会帮你解决。在2002年5月,微软预计世界上的ASP开发者将超过80万。你可能会有一个疑问什么是ASP。不用着急,等你读完这些,你讲会知道ASP是什么,ASP如何工作以及它能为我们做 什么。你准备好了吗?让我们一起去了解ASP。 什么是ASP? ASP为动态服务器网页。微软在1996年12月推出动态服务器网页,版本是3.0。微软公司的正式定义为:“动态服务器网页是一个开放的、编辑自由的应用环境,你可以将HTML、脚本、可重用的元件来创建动态的以及强大的网络基础业务方案。动态服务器网页服务器端脚本,IIS能够以支持Jscript和VBScript。”(2)。换句话说,ASP是微软技术开发的,能使您可以通过脚本如VBScript Jscript的帮助创建动态网站。微软的网站服务器都支持ASP技术并且是免费的。如果你有Window NT4.0服务器安装,你可以下载IIS(互联网信息服务器)3.0或4.0。如果你正在使用的Windows2000,IIS 5.0是它的一个免费的组件。如果你是Windows95/98,你可以下载(个人网络服务器(PWS),这是比IIS小的一个版本,可以从Windows95/98CD中安装,你也可以从微软的网站上免费下载这些产品。 好了,您已经学会了什么是ASP技术,接下来,您将学习ASP文件。它和HTML文 件相同吗?让我们开始研究它吧。 什么是ASP文件? 一个ASP文件和一个HTML文件非常相似,它包含文本,HTML标签以及脚本,这些都在服务器中,广泛用在ASP网页上的脚本语言有2种,分别是VBScript和Jscript,VBScript与Visual Basic非常相似,而Jscript是微软JavaScript的版本。尽管如此,VBScript是ASP默认的脚本语言。另外,这两种脚本语言,只要你安装了ActiveX脚本引擎,你可以使用任意一个,例如PerlScript。 HTML文件和ASP文件的不同点是ASP文件有“.Asp”扩展名。此外,HTML标签和ASP代码的脚本分隔符也不同。一个脚本分隔符,标志着一个单位的开始和结束。HTML标签以小于号(<)开始(>)结束,而ASP以<%开始,%>结束,两者之间是服务端脚本。

英文文献及中文翻译

毕业设计说明书 英文文献及中文翻译 学院:专 2011年6月 电子与计算机科学技术软件工程

https://www.360docs.net/doc/0518968158.html, Overview https://www.360docs.net/doc/0518968158.html, is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of https://www.360docs.net/doc/0518968158.html, is part of https://www.360docs.net/doc/0518968158.html, Framework,and when coding https://www.360docs.net/doc/0518968158.html, applications you have access to classes in https://www.360docs.net/doc/0518968158.html, Framework.You can code your applications in any language compatible with the common language runtime(CLR), including Microsoft Visual Basic and C#.These languages enable you to develop https://www.360docs.net/doc/0518968158.html, applications that benefit from the common language runtime,type safety, inheritance,and so on. If you want to try https://www.360docs.net/doc/0518968158.html,,you can install Visual Web Developer Express using the Microsoft Web Platform Installer,which is a free tool that makes it simple to download,install,and service components of the Microsoft Web Platform.These components include Visual Web Developer Express,Internet Information Services (IIS),SQL Server Express,and https://www.360docs.net/doc/0518968158.html, Framework.All of these are tools that you use to create https://www.360docs.net/doc/0518968158.html, Web applications.You can also use the Microsoft Web Platform Installer to install open-source https://www.360docs.net/doc/0518968158.html, and PHP Web applications. Visual Web Developer Visual Web Developer is a full-featured development environment for creating https://www.360docs.net/doc/0518968158.html, Web applications.Visual Web Developer provides an ideal environment in which to build Web sites and then publish them to a hosting https://www.360docs.net/doc/0518968158.html,ing the development tools in Visual Web Developer,you can develop https://www.360docs.net/doc/0518968158.html, Web pages on your own computer.Visual Web Developer includes a local Web server that provides all the features you need to test and debug https://www.360docs.net/doc/0518968158.html, Web pages,without requiring Internet Information Services(IIS)to be installed. Visual Web Developer provides an ideal environment in which to build Web sites and then publish them to a hosting https://www.360docs.net/doc/0518968158.html,ing the development tools in Visual Web Developer,you can develop https://www.360docs.net/doc/0518968158.html, Web pages on your own computer.

相关文档
最新文档