ContentServer(俄亥俄大学).pdf.doc

上传人:飞****2 文档编号:60091327 上传时间:2022-11-13 格式:DOC 页数:9 大小:1.16MB
返回 下载 相关 举报
ContentServer(俄亥俄大学).pdf.doc_第1页
第1页 / 共9页
ContentServer(俄亥俄大学).pdf.doc_第2页
第2页 / 共9页
点击查看更多>>
资源描述

《ContentServer(俄亥俄大学).pdf.doc》由会员分享,可在线阅读,更多相关《ContentServer(俄亥俄大学).pdf.doc(9页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、Chem. Eng. Comm., 192: 137144, 2005Copyright # Taylor & Francis Inc.ISSN: 0098-6445 print=1563-5201 onlineDOI: 10.1080=Data Acquisition and Control of a 22 L B. BraunFermenter Using LabVIEWHANJING HUANGTINGYUE GUDepartment of Chemical Engineering,Ohio University,Athens, OhioMURRAY MOO-YOUNGDepartmen

2、t of Chemical Engineering,University of Waterloo,Waterloo, Ontario, CanadaThe flexible and automatic monitoring and control of a 22 L B. Braun Biostat C fermenter using LabVIEW software were achieved by establishing a serial interface between the fermenters control unit and a personal computer. This

3、 setup was also used for the on-line monitoring of the DO change in a custom-made 50 L airlift bioreactor.Keywords: Bioreactor control; Data acquisition; LabVIEW; Airlift bioreactorIntroductionFermentation is a very complicated process, and feedback control of fermentation is a useful strategy to gu

4、arantee a successful run. LabVIEW software is a powerful software program for data acquisition and control with increasing popularity. It sup-ports IEEE488 (GPIB), RS232=422, and VXI, as well as plug-in A=D, D=A, and digital I=O boards (Jamal, 1994). This work utilized LabVIEW to achieve flexible mo

5、nitoring and control of a 22 L (15 L working volume) B. Braun Biostat C fermenter (B. Braun Biotech International, GmbH, Melsungen, Germany).Experimental SetupLabVIEW Software and Personal ComputerThe graphical programming environment LabVIEW (LabVIEW for Windows, Version 4.1, National Instruments,

6、Austin, Tex.) ran on a Pentium personal computer with Microsoft Windows 95 operating system. User-written LabVIEWReceived 6 September 2002; in final form 26 June 2003.Address correspondence to Tingyue Gu, Department of Chemical Engineering, Ohio University, Athens, OH 45701. E-mail: guohio.edu137H.

7、Huang et al.programs are called virtual instruments (VIs). VIs have three main parts: the front panel, block diagram, and icon=connector. The front panel provides the user an interface for data inputs and outputs. The user operates the front panel by using the computers keyboard and mouse. Behind th

8、e front panel is the block diagram that is responsible for the actual data flow between the inputs and outputs. The icon=connector defines data flow between subroutines (Wells, 1994). The LabVIEW programs in this work can also be used in newer versions (such as Version 6) of the LabVIEW software.Fer

9、menter SettingsIn the 22 L B. Braun Biostat C fermenter, pH, stirring speed, temperature, and air-flow rate are controlled by a DFC-2 hardware process control unit equipped with on-off and Proportion integral derivative (PID) controllers. The pO2 is measured by a steam sterilizable electrode. Agitat

10、ion and airflow rates are controlled by inter-nal PID boards, according to the set point values addressed by the pO2 controller. Without additional software and hardware, flexible scheduling of fermentation events and automatic data acquisition cannot be achieved. LabVIEW is an ideal tool in this ca

11、se to improve the situation. The fermenters control unit has to be set up for a computer connection. To do this, the user goes to the MAINTENANCE menu on the control units display and steps down to the HOST setup, and then sets the fol-lowing parameters: ADR 1, SPEED 9600 bd, DATA 7 bit, STOP 1 bit,

12、 PARTY EVEN.Communication Port SettingThe connection between the fermenter and the computer was established through a non-powered RS-232 to RS-422 signal converter (Model 263F, Telebyte, Inc., Greenlawn, N.Y.) connected to the computers serial port 2 (RS-232 port 2). No additional power supply was n

13、eeded for the converter due to the short distance between the fermenter and the computer. Serial port 1 was used for the mouse. The RS-422 interface is not as sensitive to interfering signals as the common RS-232 interface. The RS-232 to RS-422 signal converter is equipped with a nine-pin connector

14、on one end and an RJ-11 phone jack at the other end. A four-wire telephone cable was used to connect the converter and RS-422 connector on the fermenters control unit.The Model 263F non-powered RS-232 to RS-422 signal converter is equipped with a DTE=DCE switch selectable for reversing TD (transmit

15、data) and RD (receive data). It was set to DCE in this work. The assignments of the telephone wires to the corresponding pins of the RS-422 connector on the fermenters control unit are shown in Table I.Results and DiscussionSerial CommunicationThe data are transmitted between the computer and the fe

16、rmenters control unit according to the master-slave principle. The computer can control the data trans-mission to a substation (i.e., the fermenters control unit) via commands in the formData Acquisition and Control of a 22 L B. Braun FermenterTable I Assignments of telephone wires to the correspond

17、ing pins of the 9-pin RS-422 connector on the fermenters control unitPin and functionTelephone wire color and function3T D -Yellow R+4R D -Red T+8T D +Black R-9R D +Green T-of a telegram. A telegram mainly consists of command, value, and checksum. Com-mands are available as:l DR, data request: reque

18、sts for process data from the substation.l DS, data set: sends process data to the substation.l SU, setup: subsystem initialization.Before sending data to the substation or requesting data from it, the host computer must initialize the corresponding substation: the initialization command sends para-

19、meters to the substation and thus adapts the data transmission to the requirements. Without initialization, the substation sends back an error telegram. The interpret-ation of the telegram was given by B. Brauns technical manual entitled Description of Serial Interface between Host and Control Units

20、 of the B. Braun Biotech Inter-national GMBH (Rev. 09=96, Sept. 1996). Calc Chk Sum.VI is given as an example here to calculate the checksum of the telegram. Figures 1 and 2 are the front panel and block diagram of Calc Chk Sum.VI, respectively. Test 1.VI performs bidirec-tional serial communication

21、 using a serial port on the computer. It first initializes the COM 2 port to the specified settings (such as port number, baud rate, data bit, stop bits, parity), then writes a string to the port. It finally performs a read string with timeout. Figures 3 and 4 are the front panel and block diagram o

22、f Test 1.VI, respectively. Below are two more VI examples used in this work.Process Value.VIProcess value.VI provides a more straightforward interface for data request as com-pared to Test 1.VI. On the front panel are the numeric indicators for the correspond-ing process values as shown in Figure 5.

23、 In Figure 6, a conversion of a corresponding process value in data transmission range to true value is performed.Figure 1. Front panel of Calc Chk Sum.VI.H. Huang et al.Figure 2. Block diagram of Calc Chk Sum.VI.DO.VIIn Figure 7, the user can set the time interval (seconds) for each data request, a

24、nd the indicator will show the dissolved oxygen (DO) value for each data req-uest. In the graphs window, x-axis represents the time elapse (seconds), y axis represents the DO (%) value; the x-axis and y-axis are set to autoscale by default, so the graph can autoscale continuously with the change of

25、data. In Figure 8, it displays the DO value in the graph and saves the DO values to a text or spread-sheet file.Figure 3. Front panel of Test 1.VI.Data Acquisition and Control of a 22 L B. Braun FermenterFigure 4. Block diagram of Test 1.VI.kLa Measurement in a 50 L Airlift Bioreactor Using the Dyna

26、mic MethodThe DO probe of a custom-made 50 L (41 L working volume) airlift bioreactor was connected to the B. Braun fermenters control unit, so the Model 4300 dissolved oxy-gen microprocessor transmitter (Mettler-Toledo, Wilmington, Mass.) for the airlift bioreactor was controlled by the B. Braun fe

27、rmenters control unit. The dynamic method of measuring the oxygen transfer coefficient was carried out (Bai et al., 2001). Upon the drop of DO to zero by nitrogen gassing, the DO.VI program startedFigure 5. Front panel of Process value.VI.H. Huang et al.Figure 6. Block diagram of Process value.VI.to

28、 run, and the air was sparged into the airlift reactor. The DO reached saturationstate within minutes. By switching the button of the front panel from on to off position,the file dialog box will pop up to prompt the user to save the DO data to a Microsoft Excel file. This is very convenient and accu

29、rate when DO changes dramatically with time.Figure 9 is an on-line plot of DO change in the 50 L airlift reactor (Bai et al.,2001). The equation for calculating kLa is as follows:From the data stored in the Excel file, a plot of ln(1 - C/C*)versus t was generated to calculate kLa conveniently.Data A

30、cquisition and Control of a 22 L B. Braun FermenterFigure 7. Front panel of DO.VI.ConclusionsA successful serial communication interface between a 22 L B. Braun Biostat C fermenterand a personal computer was achieved using an RS-232 to RS-422 converterand the LabVIEW software. The LabVIEW software w

31、as powerful in fulfilling thedata acquisition and flexible control tasks during fermentation. This automated controlsystem was also applied to monitoring and data logging of DO change in a 50 Lairlift bioreactor. The B. Braun family of fermenters such as the one used in thiswork is very common in ac

32、ademic research and industrial applications. This workhelps users set up the control of a bioreactor with LabVIEW easily by interfacing its existing controller with a personal computer. It allows convenient data loggingFigure 8. Block diagram of DO.VI.H. Huang et al.Figure 9. Real time DO (%) versus

33、 time in the 50 L airlift bioreactor with an airflow rate of2.2 L=min.and flexible scheduling of a complicated fermentation process such as fed-batch fermentation.NomenclatureC dissolved oxygen tension, %C* saturated dissolved oxygen tension, %kLa oxygen mass transfer coefficient, t time, sReferencesBai, F., Wang, L., Huang, H., Xu, J., Caesar, J., Ridgway, D., Gu, T., and Moo-Young, M.(2001). Biotechnol. Lett., 23, 11091113.Jamal, R. (1994). Nucl. Instr. Meth. A, 352, 438441.Wells, L. K. (1994). The LabVIEW Studen Edition: Users Guide, Prentice Hall, Englewood Cliffs, NI.

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 教案示例

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁