How To Test A Robot Platform And Its Components
|
|
|
- Theodora Cunningham
- 5 years ago
- Views:
Transcription
1 An Automated Test Method for Robot Platform and Its Components Jae-Hee Lim 1, Suk-Hoon Song 1, Jung-Rye Son 1, Tae-Yong Kuc 2, Hong-Seong Park 3, Hong-Seok Kim 4 1,2 School of Information and Communication, Sung Kyun Kwan University, Suwon Korea 3 Department of Electronic and Telecommunication Engineering, Kangwon National University 4 Korea Institute of Industrial Technology, Ansan Korea 1 [email protected], 2 [email protected] Abstract This paper presents a hierarchical test model and automated test framework for robot software components of RTC(Robot Technology Component) combined with hardware module. The hierarchical test model consists of three levels of testing based on V-model : unit test, integration test, and system test. The automated test framework incorporates four components of test data generation, test manager, test execution, and test monitoring. The proposed testing model and its automation framework is proven to be efficient for testing of developed robotic software components in terms of time and cost. The feasibility and effectiveness of proposed architecture for robot components testing are illustrated through an application example along with embedded robotic testbed equipped with range sensor hardware and its software component modeled as an RTC. Keywords: Robot Software Component Testing, Robot Hardware Testing, Hierarchical Test Model, Automated Testing System, Robotics. 1. Introduction As robotic systems are getting more complicated and their application area broaden, the researches on development and standardization of robotic software platform has been reported recently. The standardization of robot software platform is aiming at more efficient customization and manufacturing of robotic products than without. To this end, the component based development approach has been used for generation of RTC(Robot Technology Component) and OPRoS(Open Platform for Robotic Services)[1,2]. However, for the component based robotic software and its platform to be applicable in common, the reliability on performance of software components and their conformity with and portability to different robotic systems have to be insured. In order to achieve these requirements, it is essential that the usability and operability of robot software components are tested during their development process. Nevertheless, few research results on testing of robotic software components have been reported so far. In view of this, a hierarchical test model and automated test framework is proposed for robot software components of RTC(Robot Technology Component) combined with hardware modules. Based on V-model, the hierarchical test model consists of three levels of testing: unit test, integration test, and system test. The automated test framework incorporates four components of test data generation, test manager, test execution, and test monitoring. The framework allows us to more easily perform robot component test by applying an available 9
2 testing technique corresponding to its test object and test level defined. Together with the proposed test model, it also provides user interface, test engine, test resource repository, etc. This paper implements a test-bed for testing of the proposed system and verifies its efficacy through a series of experiments. 2. Test Model and Test Framework 2.1. Test Model Structure Test model is based on RTC, the standard robot software component of OMG. Fig. 1 shows the structure of test model in conformity with RTC and its application example to an ultrasonic range finder sensor. Figure 1. Test Model Structure(left) and Its Application Example(right) The overall robot software test system is composed of robot software platform, robot software component, robot hardware API, robot hardware module, and simulator. Robot hardware module is hardware part of robot and simulator is a virtual robot hardware platform which can accommodate robot hardware API in place of robot hardware module. Robot hardware API provides common parts of robot hardware modules in the form of prototype function. The body of robot hardware API is defined as library or DLL in accordance with robot hardware module. Fig.2 shows an implementation of test model for range finder sensor component conformed with the standard robot software component RTC. Figure 2. Robot Software Component Test Model for Range Sensor 10
3 Robot software components complying with RTC standard communicate with each other through ports. In Fig.2, the range finder sensor component possesses 1 data port for range data output and 3 service ports for transmission of internally executed functions to other component. Three internal functions include GetDistance for distance value and setprofile/getprofile for transmission of component profile Outline of Hierarchical Testing Procedure Since robot software component operates tightly coupled with its corresponding robot hardware module, robot component testing procedure needs to accommodate hardware and its interface as well as robot software component. In view of this, a hierarchical testing procedure is set up in this paper for testing of robot component conformed to RTC. Fig. 3 shows the proposed hierarchical testing procedure model which includes three levels of testing : unit testing, integration testing, and system testing for robot component. The three testing levels correspond to hardware testing, hardware API testing, and composite software component testing, respectively. That is, in Fig. 3, hardware module is considered as a basic unit for hierarchical testing of robotic software component. Figure 3. Hierarchical Testing Procedure for Robot Software Component After unit testing for validation of hardware module, the interoperability of hardware module and software component is checked by performing integration testing. In this step, robot hardware API is tested for performance index of functionality by using test cases derived from black box testing techniques such as boundary value analysis, equal partitioning test, decision table testing, etc. The performance index of functionality includes completeness of function realization, correctness of data, compatibility of data, etc. In the final step of system testing, a series of operations are tested for software component which are specified in the document of software component requirement. The performance index for system testing consists of functionality(compatibility of document, exactness of state transition, correctness of data), maintenance(comprehensibility of cause of defect), portability(functional alternativeness), etc. The testing techniques of boundary value analysis, equal partitioning testing, state transition testing, etc. are used for system testing of robot software component. 11
4 2.3. Testing Automation Framework Although robotic software testing is crucial for development and application of standard robotic software platform and its components, lack of manpower and resources and insufficient time induces difficulty in provision of systematic testing process during robotic software development and application. In order to reduce time and cost for testing of robotic software, it is important to develop standard test model and automatic testing framework which provides systematic testing procedure. To this end, a testing automation framework is designed for testing of robotic software component based on the hierarchical test model presented in the previous subsection. Fig. 4 shows the proposed testing framework consisting of user interface, test engine, and test resource repository. User interface implements three levels of testing hierarchy : robot hardware module test UI for document and performance test, API test UI for interface test, and robot software component UI for functional test. Test engine includes test manager, test data generation unit, test execution unit, and test monitoring unit. Test resource repository provides materials necessary for execution of test process to test engine such as test code, test plan, test case, metrics of performance measurement, etc. It is also illustrated in Fig. 4 that test engine can operate linked with robot hardware testbed or robotic simulator provided. Figure 4. Shcematic of Testing Automation Framework Fig. 5 demonstrates the operation of test engine by showing the interplay between function blocks of inner and outer parts. Figure 5. Operation Flow of Test Engine 2.4. An Application Example 12
5 The proposed test model and its test framework are applied for testing of range sensor component mounted on a robot hardware testbed. Fig. 6 shows the details of test environment operating coupled with the test framework in Fig. 7. Figure 6. Testbed for Evaluation of Range Sensor Component Testbed system hardware consists of wireless communication station(1), ultrasonic range sensor module(2), motor drive unit(3), and target object carrier(4). The wireless communication station connects testbed system to the main PC of robot test engine which controls the ultrasonic sensor and motor drive unit for synchronization of testing procedure. Fig. 7 shows the block diagram of overall experimental setup including the main PC working as test agency. Figure 7. Block Diagram of Overall Testing System 13
6 Figure 8.UI of Overall Testing System Fig. 8 shows user interface for testing framework implemented using MFC. In the figure, testing framework supports test case generation along with testing target, test execution, test result display, etc. Test case refers to performance indices shown in Fig. 9, where range sensor example is given. Boundary value analysis and equivalent division methods are used for the derived test cases shown in Table 1 and 2. Figure 9. Performance Indices for Evaluation of Range Sensor Module Table 1. The Test Case for Data Correctness of Range Sensor Module by Equivalent Division Method test case distance value range distance < 3 3 <=distance<= 300 distance > 300 expected result Timeout distance value Timeout 14
7 (unmeasurable) (unmeasurable) Table 2. Test Case for Data Correctness of Range Sensor Module by Boundary Value Method test case distance value expected result Timeout Timeout distance valuedistance value (unmeasurable) (unmeasurable) Fig. 10 demonstrates experiment result for correctness test of range sensor data by using ultrasonic sensor module SRF-04. Similarly, Fig. 11 shows the experiment result for fault tolerance test of range sensor data by using the same ultrasonic sensor module. Figure 10. Correctness of Data for Ultrasonic Sensor Module(SRF-04) Figure 11. Fault Tolerance of Data for Ultrasonic Sensor Module(SRF-04) The ultrasonic sensor module used in the experiment covers a wide range of 3cm ~ 300cm. Fig. 10 plots the analyzed data correctness of ultrasonic sensor based on experiment result. In the figure, data correctness was defined as equation(1). number of test success Data Correctness = 100 number of trials (1) 15
8 Where test success means the case that its measurement value remains within normalized error bound. In the graph, it is found that the ultrasonic sensor SRF-04 module operates correctly in the range 100~280 cm. On the other hand, data correctness decreases notably at the distance less than 80cm or larger than 290cm. The experiment results show that performance of ultrasonic sensor module SRF-04 does not agree with the product specification for operation range of 3cm~300cm. Fig. 11 plots fault tolerance rate of ultrasonic sensor tested. In the figure, fault tolerance is defined as the % rate of data within permissible error bound among data corresponding to test success. Fault tolerance rate is computed by using the following equation. number of fault tolerance data Fault Tolerance = 100 number of test success Where fault is defined as the test result whose measurement value does not agree with the expected one. Similarly, the number of fault tolerance is defined as among the faults the number of faults within allowable error bound. Hence, the fault tolerance provides a reliability measure of sensor data for successful test. In this experiment, a series of tests and its results has been generated demonstrating the effectiveness of proposed test model and automatic test framework for robot software component of range sensor module. Experiment verifies that the use of hierarchical test model and automatic test framework supports efficient testing of robotic software components in terms of time and cost by generating various test cases in systematic way. 3. Conclusion and Further Research As personal robot system and robotic apparatus spread fast in various fields, the higher functionality and better performance are in great demand nowadays. In addition, the guaranteed reliability of interactive robot is of special importance in user's real life, since its defects might cause fatal damage to man and economic loss. In this respect, the performance and safety test of robotic software component together with robot hardware module is crucial for stable robotic interaction with human and its working environment. Considering the importance of robotic software validation, a hierarchical testing model and its testing automation framework are developed for RTC compatible robotic software components. The effectiveness of proposed testing model is demonstrated through a series of real experiments for an embedded robotic testbed equipped with ultrasonic sensor module as range finder. Experiment results show that the proposed hierarchical testing model and testing automation framework provide an efficient way of robotic software testing in terms of time and cost. It is expected that the developed testing model and its automation framework is applicable to various standard robotic software components in real life as well as in development stage. Acknowledgments (2) 16
9 This work was supported by Knowledge and Economics Department of Korea Government through OPRoS(Open Platform for Robotic Services) project and NRHP(National Robot Hardware Platform) Technology project. References [1] OMG, The Robotic Technology Component Specification, [2] OPRoS, Open Platform for Robotic Services Specification, [3] W. Kwon etc., Software Testing Service for Developer, STA, 2008(in Korean). [4] S. Hong, Embedded Software Testing, SW Insight Report, 2008(in Korean) [5] TTA S/W Test Center, S/W Quality Test System and Technology Survey, 2004(in Korean). [6] ITEA, Guideline for V&V Real-Time Embedded Software Systems(DESS), 2001 [7] ETRI, Construction of Embedded System Development Framework, 2006(in Korean). [8] OASIS, ebxml Test Framework Committee Specification V1.0, March [9] The Open Group, TETware White Paper. [10] STA, TPMS Product Instruction Manual, [11] H. Martin and L.du Bousquet, "Automatic Test Generation for Java-Card Applets", Lecture notes in computer science, Vol 2041, 2001, pp [12] Tan L., Kim J., Sokolsky O., and Lee I., "Model-based Testing and Monitoring for Hybrid Embedded Systems", Information Reuse and Integration, 2004, pp [13] Jervan G., Eles P., Peng Z., "A Hierarchical Test Generation Technique for Embedded Systems", Proc. Electronic Circuits and Systems Conference, 1999, pp [14] Chanhyun Baek, Joongsoon Jang, Gihyun Jung, Kyunghee choi, and Seungkyu Park, "A Case Study of Black-Box Testing for Embedded Software using Test Automation Tool", Journal of Computer Science, 2007, pp [15] ISO/IEC TR 9126, Software Engineering-Product Quality-Part 1,2,3,4, Authors Jae-Hee Lim received the B.S. degree in Computer Science from DanKook University, Korea in 2007 and the M.S. degree in the Department of Electrical and Computer Engineering from SungKyunKwan University, Korea in Since June 2009, she has been working at Obigo Korea, where she is currently a Test Engineer. Her research interests include test automation, test methodology, widget, web-platform. Suk-Hoon Song received the B.S. degree in Computer Engineering from Kyungwon University, Korea in 2008 and the M.S. degrees from Sung Kyun Kwan University of Electrical and Computer Engineering, Korea in His research interests include Robot Vision, software-hardware testing, and mobile robot navigation. 17
10 Jung-Rye Son received the B.S. degree in Computer Engineering from Seokyeong University, Korea in She is currently working toward the M.S. degree at the Department of Electrical and Computer Engineering, Sung Kyun Kwan University, Suwon, Korea. Her research interests include robot vision, intelligent control and robotics, robot software platform. Tae-Yong Kuc received the B.S. degree in Control and Instrumentation Engineering from Seoul National University, Korea in 1988 and the M.S. and Ph.D. degrees from Pohang University of Science and Technology, Korea in 1990 and 1993, respectively. From April to August 1993, he worked as Chief Research Engineer at Precision Machinery Institute of Samsung Aerospace Company and from September 1993 to February 1995 as Senior Lecturer in the Department of Electrical Engineering, Mokpo National University, Korea. Since March 1995, he has been with the School of Information and Communication Engineering at Sung Kyun Kwan University, Suwon, Korea, where he is currently a Professor. His research interests include intelligent robotics, adaptive and learning control, intelligent character animation, and sensor-data fusion for computer-aided control systems. Hong-Seong Park was born in Korea in He received the B.S., M.S., and Ph.D. degrees from Seoul National University, Seoul, Korea, in 1983, 1986, and 1992, respectively. Since 1992, he has been with Department of Electrical and Electronics Engineering, Kangwon National University, Korea. His research interests include performance analysis of communication networks and mobile networks, networkbased control systems, and SW engineering including testing. Hong-Seok Kim received B.S., M.S. and Ph.D. degrees in Electrical Engineering from Seoul National University in 1980, 1983 and 1990, respectively. He has been with the Korea Institute of Industrial Technology (KITECH) since April 1991, as a Chief Research Engineer. He was in charge of managing the Nextgeneration Growth Engines national R&D program in robotics industry, as the Managing Director of the Center for Intelligent Robot (October 2006~June 2009) and is currently the Senior Director of the Division for Technology Convergence Research at KITECH since May His interests include controller design, robot hardware platform technology, and Services Science focused on service robotics. 18
Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System
, pp.97-108 http://dx.doi.org/10.14257/ijseia.2014.8.6.08 Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System Suk Hwan Moon and Cheol sick Lee Department
Development of a Service Robot System for a Remote Child Monitoring Platform
, pp.153-162 http://dx.doi.org/10.14257/ijsh.2014.8.5.14 Development of a Service Robot System for a Remote Child Monitoring Platform Taewoo Han 1 and Yong-Ho Seo 2, * 1 Department of Game and Multimedia,
A Study on Integrated Operation of Monitoring Systems using a Water Management Scenario
, pp. 55-64 http://dx.doi.org/10.14257/ijseia.2015.9.9.06 A Study on Integrated Operation of Monitoring Systems using a Water Management Scenario Yong-Hyeon Gwon 1, Seung-Kwon Jung 2, Su-Won Lee 2 and
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Ryu HyunKi, Moon ChangSoo, Yeo ChangSub, and Lee HaengSuk Abstract In this paper,
Business Process Management of Telecommunication Companies: Fulfillment and Operations Support and Readiness Cases
Business Process of Telecommunication Companies: Fulfillment and Operations Support and Readiness Cases Byeong-Yun Chang School of Business Administration, Ajou University [email protected] Abstract In
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course Yong Cheon Kim, Dai Young Kwon, and Won Gyu Lee Abstract Computational thinking is a fundamental skill for
Analysis on the Balanced Class-E Power Amplifier for the Load Mismatch Condition
Analysis on the Class-E Power Amplifier for the Load Mismatch Condition Inoh Jung 1,1, Mincheol Seo 1, Jeongbae Jeon 1, Hyungchul Kim 1, Minwoo Cho 1, Hwiseob Lee 1 and Youngoo Yang 1 Sungkyunkwan University,
Smart Integrated Multiple Tracking System Development for IOT based Target-oriented Logistics Location and Resource Service
, pp. 195-204 http://dx.doi.org/10.14257/ijsh.2015.9.5.19 Smart Integrated Multiple Tracking System Development for IOT based Target-oriented Logistics Location and Resource Service Ju-Su Kim, Hak-Jun
Design and Implementation of a Voice Based Navigation for Visually Impaired Persons
Design and Implementation of a Voice Based Navigation for Visually Impaired Persons Jae Sung Cha, Dong Kyun Lim and Yong-Nyuo Shin Dept. Of Computer Science, Hanyang Cyber University, Seoul,133-791, Korea
Developing Safety Management Systems for Track Workers Using Smart Phone GPS
, pp.137-148 http://dx.doi.org/10.14257/ijca.2013.6.5.13 Developing Safety Management Systems for Track Workers Using Smart Phone GPS Jin-Hee Ku 1 and Duk-Kyu Park 2 1 Dept of Liberal Education and 2 Dept
DEVELOPING THE KNOWLEDGE MANAGEMENT SYSTEM BASED ON BUSINESS PROCESS
DEVELOPING THE KNOWLEDGE MANAGEMENT SYSTEM BASED ON BUSINESS PROCESS Sung Ho Jung 1, Ki Seok Lee 1, Young Woong Song 2, Hyoung Chul Lim 3, and Yoon Ki Choi 4 * 1 Ph.D., Candidate, Department of Architectural
A Surveillance Robot with Climbing Capabilities for Home Security
Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 2, Issue. 11, November 2013,
Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards
, pp. 143-150 http://dx.doi.org/10.14257/ijseia.2015.9.7.15 Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards Ryu HyunKi 1, Yeo ChangSub 1, Jeonghyun
Design of automatic testing tool for railway signalling systems software safety assessment
Risk Analysis VI 513 Design of automatic testing tool for railway signalling systems software safety assessment J.-G. Hwang 1, H.-J. Jo 1 & H.-S. Kim 2 1 Train Control Research Team, Korea Railroad Research
The SPES Methodology Modeling- and Analysis Techniques
The SPES Methodology Modeling- and Analysis Techniques Dr. Wolfgang Böhm Technische Universität München [email protected] Agenda SPES_XT Project Overview Some Basic Notions The SPES Methodology SPES_XT
An Agent-Based Concept for Problem Management Systems to Enhance Reliability
An Agent-Based Concept for Problem Management Systems to Enhance Reliability H. Wang, N. Jazdi, P. Goehner A defective component in an industrial automation system affects only a limited number of sub
Effective Interface Design Using Face Detection for Augmented Reality Interaction of Smart Phone
Effective Interface Design Using Face Detection for Augmented Reality Interaction of Smart Phone Young Jae Lee Dept. of Multimedia, Jeonju University #45, Backma-Gil, Wansan-Gu,Jeonju, Jeonbul, 560-759,
Original Research Articles
Original Research Articles Researchers Mr.Ramchandra K. Gurav, Prof. Mahesh S. Kumbhar Department of Electronics & Telecommunication, Rajarambapu Institute of Technology, Sakharale, M.S., INDIA Email-
Personal Health Care Management System Developed under ISO/IEEE 11073 with Bluetooth HDP
Vol.8, No.3 (2014), pp.191-196 http://dx.doi.org/10.14257/ijsh.2014.8.3.18 Personal Health Care Management System Developed under ISO/IEEE 11073 with Bluetooth HDP Am suk Oh 1, Doo Heon Song 2 and Gwan
Semantic Concept Based Retrieval of Software Bug Report with Feedback
Semantic Concept Based Retrieval of Software Bug Report with Feedback Tao Zhang, Byungjeong Lee, Hanjoon Kim, Jaeho Lee, Sooyong Kang, and Ilhoon Shin Abstract Mining software bugs provides a way to develop
A Case Retrieval Method for Knowledge-Based Software Process Tailoring Using Structural Similarity
A Case Retrieval Method for Knowledge-Based Software Process Tailoring Using Structural Similarity Dongwon Kang 1, In-Gwon Song 1, Seunghun Park 1, Doo-Hwan Bae 1, Hoon-Kyu Kim 2, and Nobok Lee 2 1 Department
Department of Information and Computer Engineering
Department of Information and Computer Engineering Agenda College of Information Technology Department of Information and Computer Engineering Global IT Track 2 Departments, Students, Faculty Members Departments
Development of Performance Testing Tool for Railway Signaling System Software
Vol. 10, No. 2, pp. 16-20, December 2011 Development of Performance Testing Tool for Railway Signaling System Software Jong-Gyu Hwang* and Hyun-Jeong Jo Korea Railroad Research Institute, Uiwang-si 437-757,
Fast Device Discovery for Remote Device Management in Lighting Control Networks
J Inf Process Syst, Vol.11, No.1, pp.125~133, March 2015 http://dx.doi.org/10.3745/jips.03.0011 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Fast Device Discovery for Remote Device Management in
A Study on Design of Virtual Desktop Infrastructure (VDI) System Model for Cloud Computing BIM Service
A Study on Design of Virtual Desktop Infrastructure (VDI) System Model for Cloud Computing BIM Service K.H. Lee a and S.W. Kwon b and J.H. Shin c and G.S. Choi d a Department of Convergence Engineering
Adaptive MAC Protocol for Emergency Data Transmission in Wireless Body Sensor Networks
, pp. 205-216 http://dx.doi.org/10.14257/ijseia.2015.9.9.18 Adaptive MAC Protocol for Emergency Data Transmission in Wireless Body Sensor Networks Rae Hyun Kim and Jeong Gon Kim 1 Department of Electronic
Advanced Electronic Platform Technologies Supporting Development of Complicated Vehicle Control Software
133 Hitachi Review Vol. 63 (2014), No. 2 Advanced Electronic Platform Technologies Supporting Development of Complicated Vehicle Control Software Yoshinobu Fukano, Dr. Sci. Kosei Goto Masahiro Matsubara
Compliance Risk Assessment Measures of Financial Information Security using System Dynamics
Compliance Risk Assessment Measures of Financial Information Security using System Dynamics Ae Chan Kim 1, Su Mi Lee 2 and Dong Hoon Lee 3 1, 3 Graduate School of Information Security, Korea University
A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools
A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools Dong-Joo Kang and Sunju Park Yonsei University [email protected], [email protected] Abstract
A Study of Key management Protocol for Secure Communication in Personal Cloud Environment
, pp.51-58 http://dx.doi.org/10.14257/ijsia.2014.8.4.05 A Study of Key management Protocol for Secure Communication in Personal Cloud Environment ByungWook Jin 1 and Keun-Wang Lee 2,* 1 Dept. of Computer
Remote Monitoring and Controlling System Based on ZigBee Networks
Remote Monitoring and Controlling System Based on ZigBee Networks Soyoung Hwang and Donghui Yu* Department of Multimedia Engineering, Catholic University of Pusan, South Korea {soyoung, dhyu}@cup.ac.kr
Design of Media measurement and monitoring system based on Internet of Things
Design of Media measurement and monitoring system based on Internet of Things Hyunjoong Kang 1, Marie Kim 1, MyungNam Bae 1, Hyo-Chan Bang 1, 1 Electronics and Telecommunications Research Institute, 138
A Study on IP Exposure Notification System for IoT Devices Using IP Search Engine Shodan
, pp.61-66 http://dx.doi.org/10.14257/ijmue.2015.10.12.07 A Study on IP Exposure Notification System for IoT Devices Using IP Search Engine Shodan Yun-Seong Ko 1, Il-Kyeun Ra 2 and Chang-Soo Kim 1* 1 Department
Design of an Easy-to-Use Bluetooth Library for. Wireless Sensor Network on Android
Contemporary Engineering Sciences, Vol. 7, 2014, no. 16, 801 805 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4694 Design of an Easy-to-Use Bluetooth Library for Wireless Sensor Network
Software Certification and Software Certificate Management Systems
Software Certification and Software Certificate Management Systems (Position Paper) Ewen Denney and Bernd Fischer USRA/RIACS, NASA Ames Research Center, Moffett Field, CA 94035, USA {edenney,fisch}@email.arc.nasa.gov
Effective Use of Android Sensors Based on Visualization of Sensor Information
, pp.299-308 http://dx.doi.org/10.14257/ijmue.2015.10.9.31 Effective Use of Android Sensors Based on Visualization of Sensor Information Young Jae Lee Faculty of Smartmedia, Jeonju University, 303 Cheonjam-ro,
A Study on Quantitative Analysis for New Product Development Strategy
A Study on Quantitative Analysis for New Product Development Strategy Junseok Lee 1, Hyun woo Kim 1, Jongchan Kim 1, Joonhyuck Lee 1, Sangsung Park 2, Dongsik Jang 1 1 Department of Industrial Management
V&V and QA throughout the M&S Life Cycle
Introduction to Modeling and Simulation and throughout the M&S Life Cycle Osman Balci Professor Department of Computer Science Virginia Polytechnic Institute and State University (Virginia Tech) Blacksburg,
The Design and Implementation of the Integrated Model of the Advertisement and Remote Control System for an Elevator
Vol.8, No.3 (2014), pp.107-118 http://dx.doi.org/10.14257/ijsh.2014.8.3.10 The Design and Implementation of the Integrated Model of the Advertisement and Remote Control System for an Elevator Woon-Yong
A Log Analysis System with REST Web Services for Desktop Grids and its Application to Resource Group-based Task Scheduling
Journal of Information Processing Systems, Vol.7, No.4, December 2011 http://dx.doi.org/10.3745/jips.2011.7.4.707 A Log Analysis System with REST Web Services for Desktop Grids and its Application to Resource
Validating the Software Process Assessment Model for Korean Military Software Industry
, pp.95-112 http://dx.doi.org/10.14257/ijseia.2014.8.2.11 Validating the Software Process Assessment Model for Korean Military Software Industry Il-Lo Lee 1, SunTae Kim 2,* and Soojin Park 3 1 Defense
A Study on Intelligent Video Security Surveillance System with Active Tracking Technology in Multiple Objects Environment
Vol. 6, No., April, 01 A Stud on Intelligent Video Securit Surveillance Sstem with Active Tracking Technolog in Multiple Objects Environment Juhun Park 1, Jeonghun Choi 1, 1, Moungheum Park, Sukwon Hong
Development of IaaS-based Cloud Co-location and Management System using Open Source Cloud Stack
Development of IaaS-based Cloud Co-location and Management System using Open Source Cloud Stack Chil-Su Kim, HyunKi Ryu, Myung-Jin Jang and Chang-Hyeon Park Abstract The weakness of server-based hosting
Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control
보안공학연구논문지 (Journal of Security Engineering), 제 8권 제 3호 2011년 6월 Design of Multi-camera Based Acts Monitoring System for Effective Remote Monitoring Control Ji-Hoon Lim 1), Seoksoo Kim 2) Abstract With
An Efficient Application Virtualization Mechanism using Separated Software Execution System
An Efficient Application Virtualization Mechanism using Separated Software Execution System Su-Min Jang, Won-Hyuk Choi and Won-Young Kim Cloud Computing Research Department, Electronics and Telecommunications
VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune
VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is
Development of CEP System based on Big Data Analysis Techniques and Its Application
, pp.26-30 http://dx.doi.org/10.14257/astl.2015.98.07 Development of CEP System based on Big Data Analysis Techniques and Its Application Mi-Jin Kim 1, Yun-Sik Yu 1 1 Convergence of IT Devices Institute
Rapid Modular Software Integration (RMSI)
Rapid Modular Software Integration (RMSI) Adam Grimm [email protected] Overview RMSI Overview Future Airborne Compatibility Environment (FACE ) Analog Computer Rehost Integration of Modular Components
Design of Expanded Assessment Management System for Open-Source Moodle LMS Module
2012 3rd International Conference on e-education, e-business, e-management and e-learning IPEDR vol.27 (2012) (2012) IACSIT Press, Singapore Design of Expanded Assessment Management System for Open-Source
Scheme to Secure Communication of SCADA Master Station and Remote HMI s through Smart Phones
보안공학연구논문지 (Journal of Security Engineering), 제 8권 제 3호 2011년 6월 Scheme to Secure Communication of SCADA Master Station and Remote HMI s through Smart Phones Rosslin John Robles 1) and Tai-hoon Kim 2) Abstract
A Study on Design of Health Device for U-Health System
, pp.79-86 http://dx.doi.org/10.14257/ijbsbt.2015.7.2.08 A Study on Design of Health Device for U-Health System Am-Suk Oh Dept. of Media Engineering, Tongmyong University, Busan, Korea [email protected] Abstract
The Study of Copper Resource Management System and Process for Effectively Operation
The Study of Copper Resource Management System and Process for Effectively Operation Sungmo Jung, Yangsok Kim, Seoksoo Kim Department of multimedia, Hannam University, Korea School of Computing, University
A Design of Mobile Convergence Architecture for U-healthcare
, pp. 253-260 http://dx.doi.org/10.14257/ijseia.2015.9.1.22 A Design of Mobile Convergence Architecture for U-healthcare Regin Joy Conejar 1 and Haeng-Kon Kim 1* 1 School of Information Technology Catholic
Home Appliance Control and Monitoring System Model Based on Cloud Computing Technology
Home Appliance Control and Monitoring System Model Based on Cloud Computing Technology Yun Cui 1, Myoungjin Kim 1, Seung-woo Kum 3, Jong-jin Jung 3, Tae-Beom Lim 3, Hanku Lee 2, *, and Okkyung Choi 2 1
The Role of Information Technology Studies in Software Product Quality Improvement
The Role of Information Technology Studies in Software Product Quality Improvement RUDITE CEVERE, Dr.sc.comp., Professor Faculty of Information Technologies SANDRA SPROGE, Dr.sc.ing., Head of Department
Development of Docking System for Mobile Robots Using Cheap Infrared Sensors
Development of Docking System for Mobile Robots Using Cheap Infrared Sensors K. H. Kim a, H. D. Choi a, S. Yoon a, K. W. Lee a, H. S. Ryu b, C. K. Woo b, and Y. K. Kwak a, * a Department of Mechanical
An Architecture for Home-Oriented IPTV Service Platform on Residential Gateway
J Inf Process Syst, Vol.9, No.3, September 2013 pissn 1976-913X eissn 2092-805X http://dx.doi.org/10.3745/jips.2013.9.3.425 An Architecture for Home-Oriented IPTV Service Platform on Residential Gateway
Cyber Forensic for Hadoop based Cloud System
Cyber Forensic for Hadoop based Cloud System ChaeHo Cho 1, SungHo Chin 2 and * Kwang Sik Chung 3 1 Korea National Open University graduate school Dept. of Computer Science 2 LG Electronics CTO Division
A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval
, pp.175-186 http://dx.doi.org/10.14257/ijsh.2014.8.1.19 A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval Kil-sung Park and Sun-Hyung Kim Department of Information & Communication
Model-Driven Software Development for Robotics: an overview
Model-Driven Software Development for Robotics: an overview IEEE-ICRA2011 Workshop on Software Development and Integration in Robotics Jan F. Broenink, Maarten M. Bezemer Control Engineering, University
Performance-Centric Business Activity Monitoring Framework for Continuous Process Improvement
Performance-Centric Business Activity Monitoring Framework for Continuous Process Improvement KWAN HEE HAN *1, SANG HYUN CHOI *2, JIN GU KANG **, GEON LEE *3 Department of Industrial & Systems Engineering,
Open-Source-based Visualization of Flight Waypoint Tracking Using Flight Manipulation System
Open-Source-based Visualization of Flight Waypoint Tracking Using Flight Manipulation System Myeong-Chul Park a, Hyeon-Gab Shin b, Yong Ho Moon b, Seok-Wun Ha b*, a Dept. of Biomedical Electronics, Songho
INTRODUCTION OF CONSTRUCTION MANAGEMENT INTEGRATED SYSTEM USING BIM IN THE HONAM HIGH-SPEED RAILWAY LOT NO. 4-2
INTRODUCTION OF CONSTRUCTION MANAGEMENT INTEGRATED SYSTEM USING BIM IN THE HONAM HIGH-SPEED RAILWAY LOT NO. 4-2 Hyun Cho 1, Ki Hwan Lee 1, Song Hyon Lee 1, Ta Lee 1, Hyun Jun Cho 1, Sung Hoon Kim 2 and
A Digital Door Lock System for the Internet of Things with Improved Security and Usability
, pp.33-38 http://dx.doi.org/10.14257/astl.2015.109.08 A Digital Door Lock System for the Internet of Things with Improved Security and Usability Ohsung Doh 1, Ilkyu Ha 1 1 Kyungil University, Gyeongsan,
GUIDE Gentle User Interfaces for Elderly People
GUIDE Gentle User Interfaces for Elderly People Christoph Jung, Fraunhofer IGD [email protected] GUIDE project in a nutshell GUIDE develops a software framework and toolbox for integration
Trends in Embedded Software Development in Europe. Dr. Dirk Muthig [email protected]
Trends in Embedded Software Development in Europe Dr. Dirk Muthig [email protected] Problems A software project exceeds the budget by 90% and the project time by 120% in average Project Management
Module 1. Introduction to Software Engineering. Version 2 CSE IIT, Kharagpur
Module 1 Introduction to Software Engineering Lesson 2 Structured Programming Specific Instructional Objectives At the end of this lesson the student will be able to: Identify the important features of
Dong-Joo Kang* Dong-Kyun Kang** Balho H. Kim***
Visualization Issues of Mass Data for Efficient HMI Design on Control System in Electric Power Industry Visualization in Computerized Operation & Simulation Tools Dong-Joo Kang* Dong-Kyun Kang** Balho
Exchange of Data for Big Data in Hybrid Cloud Environment
, pp. 67-72 http://dx.doi.org/10.14257/ijseia.2015.9.4.08 Exchange of Data for Big Data in Hybrid Cloud Environment Chi-gon Hwang 1, Chang-Pyo Yoon 2 and Daesung Lee 3 1 Dept of Internet Information, Kyungmin
Wireless Sensor Network apply for the Blind U-bus System
Wireless Sensor Network apply for the Blind U-bus System Trung Pham Quoc 1, Min Chul Kim 1, Hyn Kwan Lee 2, Ki Hwan Eom 1 Electronic Engineering 1Dongguk University: 26, Pil-dong 3-ga jung-gu Seol, Korea
Educational Requirement Analysis for Information Security Professionals in Korea
Educational Requirement Analysis for Information Security Professionals in Korea Sehun Kim Dept. of Industrial Engineering, KAIST, 373-1, Kusong-dong, Yusong-gu, Taejon, 305-701, Korea [email protected]
A Multi-agent based Facility Maintenance Planning and Monitoring System: A Case Study
A Multi-agent based Facility Maintenance Planning and Monitoring System: A Case Study JaeHoon Lee 1, MyungSoo Lee 2, SangHoon Lee 2, SeGhok Oh 2, and JoongSoon Jang 3 1 Department of Biomedical Informatics,
Review of Mobile Applications Testing with Automated Techniques
Review of Mobile Testing with Automated Techniques Anureet Kaur Asst Prof, Guru Nanak Dev University, Amritsar, Punjab Abstract: As the mobile applications and mobile consumers are rising swiftly, it is
Test Driven Mobile Applications Development
, 23-25 October, 2013, San Francisco, USA Test Driven Mobile Applications Development Haeng Kon Kim Abstract Mobile applications testing is the most important factor in its software development. Mobile
Implementation of Wireless Gateway for Smart Home
Communications and Network, 2013, 5, 16-20 doi:10.4236/cn.2013.51b005 Published Online February 2013 (http://www.scirp.org/journal/cn) Implementation of Wireless Gateway for Smart Home Yepeng Ni 1, Fang
A Framework for Personalized Healthcare Service Recommendation
A Framework for Personalized Healthcare Service Recommendation Choon-oh Lee, Minkyu Lee, Dongsoo Han School of Engineering Information and Communications University (ICU) Daejeon, Korea {lcol, niklaus,
Force/position control of a robotic system for transcranial magnetic stimulation
Force/position control of a robotic system for transcranial magnetic stimulation W.N. Wan Zakaria School of Mechanical and System Engineering Newcastle University Abstract To develop a force control scheme
Principles and Software Realization of a Multimedia Course on Theoretical Electrical Engineering Based on Enterprise Technology
SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 1, No. 1, November 2003, 81-87 Principles and Software Realization of a Multimedia Course on Theoretical Electrical Engineering Based on Enterprise Technology
Quality Management. Lecture 12 Software quality management
Quality Management Lecture 12 Software quality management doc.dr.sc. Marko Jurčević prof.dr.sc. Roman Malarić University of Zagreb Faculty of Electrical Engineering and Computing Department of Fundamentals
The Application Method of CRM as Big Data: Focused on the Car Maintenance Industry
, pp.93-97 http://dx.doi.org/10.14257/astl.2015.84.19 The Application Method of CRM as Big Data: Focused on the Car Maintenance Industry Dae-Hyun Jung 1, Lee-Sang Jung 2 {San 30, Jangjeon-dong, Geumjeonggu,
Layered Approach to Development of OO War Game Models Using DEVS Framework
Layered Approach to Development of OO War Game Models Using DEVS Framework Chang Ho Sung*, Su-Youn Hong**, and Tag Gon Kim*** Department of EECS KAIST 373-1 Kusong-dong, Yusong-gu Taejeon, Korea 305-701
