Relational database structures for structural monitoring data

Size: px
Start display at page:

Download "Relational database structures for structural monitoring data"

Transcription

1 Relational database structures for structural monitoring data Daniele Inaudi, Samuel Vurpillot SMARTEC SA Via al Molino 6,CH-6916 GRANCIA, Switzerland Tel: , Fax: Web: ABSTRACT The permanent or regular monitoring of structures with sensors of any type can generate a consistent volume of data. Furthermore, it is often necessary to store additional information that is useful for the analysis of the measurements. Our experience has shown that the use of relational database structures can greatly simplify the handling of this large data-flow. With as appropriate data structure, the measurement data and other related information on the monitoring network, the structure and its environment can be organized in a single file that will follow the structure's life in the years. This paper describes the data-structure that has been developed in the framework of the SOFO project. This database is capable of storing data from multiple types of sensors. It is now used at the unique interface between the data-acquisition (DAQ) software packages (for the different sensor types) and the data-representation and analysis packages (DRA). This approach has the advantage that the addition of new sensor types does generally not require changes in the DRA software and improvements in the DRA software are immediately applicable to all sensor types. The database structure is open, and any DAQ or DRA package can add fields and tables that are specific to its needs. In our experience, the use of relational database structures also greatly simplifies the quality management and can help in the certification of monitoring systems. 1. INTRODUCTION The installation of a permanent monitoring system in a structure brings with it the necessity of managing a large volume of data. Even in a structure with only a few tens of sensors that are measured every hour, the number of data points that are generated can become so large that a manual analysis becomes tedious and very time-consuming. Furthermore, the data acquisition phase is only the first step in a chain of operations that ultimately lead to high-level information useful for the structure s owner. These analysis steps are more-and-more based on the use of software tools that require access to the raw data. This leads to the need for a structured data-storage system that can be accessed by the data acquisition software (DAQ) and by the data representation and analysis packages (DRA). The natural choice for storing data is of course a database. In the last 5 years we have developed and deployed a database structure that proved its usefulness and reliability in more than 100 applications. This relational database is called SDB (for SOFO Data Base) and allows the storage of data from many different types of structures. Furthermore, the structure was designed to be open, so that it is possible to add fields and tables that might be needed for a particular sensor system. Since many research groups and companies worldwide are currently developing DAQ and DRA applications, we feel that a standard core database structure could help making these tools more inter-operable. For this reason we propose the core SDB structure as an open standard for storing structural monitoring data. Page 1 of 7

2 2. DATABASE STRUCTURE As the DB suffix implies, SOFO DB works using the database concept. All data relative to a given Project are stored into a single file called a SOFO database and with a *.SDB file extension. A Project can include all the measurements of a set of Sensors installed in a structure or in a group of correlated structures. The organized database structure permits a rational storage of all measurements and other relevant information. Having all the data in a single and wellstructured file reduces the possibility of accidentally loosing some of the data or mixing data from different Projects or Sensors. SOFO DB is based on Microsoft Jet Engine and accesses it only through standard SQL queries. This means that it can be easily scaled up to other SQL servers (like MS SQL Server or Oracle) if necessary. SOFO DB is organized in different tables as resumed in the following figure: Let's now analyse the different tables and data. Figure 1. SDB Database schematic organization Projects The Project table contains all information relative to a Project: its creation date, its name and description. The Project table should be called Project and contain at least the following fields: ProjectID Long Integer Counter Identifies the project in multi-project DBs ProjectName Text, 30 characters Project name Description Memo Project description, freeform Page 2 of 7

3 DBVersion Text, 30 characters Defines the revision of the DB structure (currently "2.0") CreateDate Date/Time Creation date and time Sensors The Sensor table contains the information relative to a given Sensor. The Sensor properties include the Sensor name and description, its connection properties as well as the definition of the associated sub sensors. Sub-sensors are defined as sensors that are read in a single operation; for example the X, Y and Z displacement of a GPS sensor would be three sub-sensors of a single GPS sensor. In general a sensor will provide a "primary" measurement (for example a resistance) the is successively transformed in a more useful "secondary" unit (for example a temperature). The core-fields of the sensor table (called Sensor ) are: SensorID Long Integer Counter Unique identifier of the sensor ProjectID Long Integer Link to the Project table SensorType Integer Defines the type of sensor (the list of Sensor types is maintained by SMARTEC SA) SensorName Text, 30 characters Sensor name Description Memo Sensor description, freeform The core-fields of the sub-sensor table (called PeakDef ) are: PeakDefID Long Integer Counter Unique identifier of the sub-sensor SensorID Long Integer Link to the Sensor table PeakDefName Text, 20 characters Sub-sensor name Unit Text, 8 characters The unit of the measured quantity Coef0 Double Constant coefficient for secondary unit calculation Coef1 Double Linear coefficient for secondary unit calculation Coef2 Double Quadratic coefficient for secondary unit calculation Coef3 Double Cubic coefficient for secondary unit calculation The secondary unit is calculated with the following formula: 2 SU = Coef 0+ Coef 1PU + Coef 2 PU + Coef 3 PU 3 where SU is the secondary unit and PU is the primary unit. Campaigns The Campaign table contains the information about a measurement Campaign. Under Campaign we understand a set of measurements that relate to a given state of the structure. This could be a particular day when all or some of the installed Sensors are measured or a given load level on a test specimen. The Campaign properties include information about the Campaign creation date, the Operator who performed the measurements and a description. Even if the concept of Campaign might at first seem unnecessary since each measurement is provided with a time-stamp, you will find it very useful at the data analysis stage, when it will enable to correlate measurements of different Sensors taken at the same time. Page 3 of 7

4 The required fields of the campaign table (that must be named Campaign ) are the following: CampaignID Long Integer Counter Unique identifier of the campaign ProjectID Long Integer Link to the Project table StartDate Date/Time Campaign start date and time CampaignName Text, 20 characters Campaign name Description Memo Campaign description, freeform Forget Boolean True if the Campaign and the related measurements should be disregarded in future analysis Measurements The Measurements table (that must be named Measurement ) contains the measurements and the relative data. Each Measurement relates to a single Sensor and a single Campaign. For a given Sensor and Campaign it is possible to have one, multiple or no measurements. A Measurement includes additional information like its time-stamp and information on the DAQ unit used to make the measurement. Required fields in the Measurement table are: MeasurementID Long Integer Counter Unique identifier of the Measurement CampaignID Long Integer Link to the Campaign table SensorID Long Integer Link to the Sensor table DateTime Date/Time Timestamp of the measurement Forget Boolean True if the Measurement should be disregarded in future analysis For each measurement there should be a corresponding entry in the "Peak" table for each entry in the PeakDef table. Required fields in the Peak table are: PeakID Long Integer Counter Unique identifier of the Peak MeasurementID Long Integer Link to the Measurment table PeakDefID Long Integer Link to the PeakDef table Value Double The Measurement value expressed in primary units Forget Boolean True if the Sub-sensor measurement should be disregarded in future analysis Agendas An Agenda is a list of Sensors that have to be measured. Agendas can be used to measure the Sensors automatically or manually. The Agenda properties also contain instruction on how the Sensors should be measured, how the DAQ should interact with the user, whether new Campaigns have to be created and other information relative to the Agenda execution. It is possible to create multiple Agendas containing a different set of Sensors that have to be measured in different situations (e.g. an Agenda for manual measurement of only a few Sensors, one for automatic measurements on all Sensors). An Agenda can contain multiple references to the same Sensors if it has to be measured more than once in each Campaign, for example for statistical reasons. Page 4 of 7

5 The core fields are: For the Agenda table (called Agenda ): AgendaID Long Integer Counter Identifies the Agenda ProjectID Long Integer Link to the Project table AgendaName Text, 30 characters Agenda name Description Memo Agenda description, freeform CloneCampaign Boolean Automatically creates a new campaign on each agenda run Active Boolean Sets the Agenda active for automatic execution CycleEvery Integer Number of minutes between successive Agenda executions AgendaStart Date/Time Defines the start date and time for automatic execution AgendaEnd Date/Time Defines the end date and time for automatic execution For the Agenda entries table (called AgendaItem ): AgendaItemID Long Integer Counter Identifies the Agenda Item AgendaID Long Integer Link to the Agenda table SensorID Long Integer Link to the Sensor table, defines the sensor to be measured Active Boolean Sets the Agenda item active for automatic execution 3. EXTENSIONS This basic set of tables and fields allows to cover most DAQ and DRA functionalities, however each sensor system and software package will probably require additional fields and in some cases even additional tables. These additions should be done respecting the following conventions: - Adding fields and tables should not interfere with the basic functions of the database structure - Each DAQ software can add fields to each table, but can modify the values of these fields only for sensor types that are under its control. Whenever possible the so-called Hungarian naming convention should be used. This avoids that two DAQs tray to add two fields with the same names but different data types. - Each software package must assume that some of the fields that he requires might be missing (and must be added) or have already been added by another program. It is therefore good practice to perform a database check and upgrade when opening a file. - It is suggested, but not required, that software packages requiring additional tables create them in separated databases and link them externally. 4. IMPLEMENTATION EXAMPLES The presented Database structure is the core of SMARTEC's SOFODB software. This software is a DAQ used to measure our SOFO sensors and other compatible instruments (e.g. Advantech's ADAM 4000 Modules). Besides the SOFO DB software we have developed a data visualization package called SOFO View allowing the representation of data from an SDB database, a web interface and a data analysis package called SPADS and dedicated to the analysis of curvature measurements from bridge monitoring projects. These modules are schematically represented in Figure 2. Page 5 of 7

6 SOFO ADAM GPS Cl Distrib. Sensors Conventional Monitoring System SOFO Database SOFO DB Data Acqisition SOFO View Data Display SPADS Bridge Analysis Web SOFO Web data access Figure 2. DAQ and DRA components from SMARTEC SA Figure 3. Implementation example of a DAQ software. The navigation section shows how it is possible to move within different Agendas, Sensors, Campaigns and Measurements. Page 6 of 7

7 5. CONCLUSIONS The use of relational database structures greatly simplifies the management of large data sets generated by automatic monitoring systems. The Database structure can be used as a central node between the data acquisition (DAQ) and the data representation & analysis (DRA) software packages. This allows new measurement systems to be immediately recognised by the existing DRA packages and vice versa. We propose the SDB database structure as an open standard allowing interoperability between DAQ and DRA packages from different producers and developers. REFERENCES D. Inaudi, N. Casanova, P. Kronenberg, S. Vurpillot Embedded and surface mounted sensors for civil structural monitoring, Smart Structures and Materials, San Diego Mars 1997, SPIE Vol S. Vurpillot, D. Inaudi, A. Scano, Mathematical model for the determination of the vertical displacement from internal horizontal measurement of a bridge smart structures and materials, San Diego February 1996, SPIE Volume N. Perregaux, S. Vurpillot, J.-S. Tosco, D. Inaudi, O. Burdet, Vertical Displacement of Bridges using the SOFO System: a Fiber Optic Monitoring Method for Structures, 12 th ASCE Engineering Mechanics. San Diego, La Jolla. May 1998.D. Inaudi, N. Casanova, B. Glisic, P. Kronenberg, S. Lloret, L. Pflug, S. Vurpillot, SOFO: Structural Monitoring with Optical Fiber Deformation Sensors. S. Vurpillot, D. Inaudi, Object-Oriented Concept Classification of Large Measurement Data Sets in Civil Structures, 12 th ASCE Engineering Mechanics. San Diego, La Jolla. May D. Inaudi, N. Casanova, G. Martinola, S. Vurpillot, P. Kronenberg "SOFO: Monitoring of Concrete Structures with Fiber Optic Sensors", 5 th International Workshop on Material Properties and Design, Weimar, October 1998, Aedificatio Publishers, pp Page 7 of 7

Development of reusable software components for monitoring data management, visualization and analysis

Development of reusable software components for monitoring data management, visualization and analysis SPIE, International Symposium on Smart Structures and Materials, 7-2.3.2002, San Diego, USA Development of reusable software components for monitoring data management, visualization and analysis Daniele

More information

High-speed demodulation of long-gauge fibre optic strain sensors for dynamic structural monitoring

High-speed demodulation of long-gauge fibre optic strain sensors for dynamic structural monitoring High-speed demodulation of long-gauge fibre optic strain sensors for dynamic structural monitoring Daniele Inaudi, Branko Glisic, Daniele Posenato 1 ABSTRACT Long-gauge interferometric SOFO sensors have

More information

Corporate Overview. We will start shortly

Corporate Overview. We will start shortly Corporate Overview We will start shortly Case studies presentation: I-35W Bridge in Minneapolis and Punggol EC26 Building in Singapore Presented by: - Luca Manetti, S&S Manager, SMARTEC SA - Branco Glisic,

More information

MONITORING OF BUILDING COLUMNS DURING CONSTRUCTION

MONITORING OF BUILDING COLUMNS DURING CONSTRUCTION MONITORING OF BUILDING COLUMNS DURING CONSTRUCTION Dr. Branko Glisic 1, Dr. Daniele Inaudi 2, Er. Kee Ching Hoong 3 and Er. Joo Ming Lau 4 1 SMARTEC SA, Via Pobiette 11, 6928 Manno, Switzerland,e-mail:

More information

REMOTE BRIDGE MONITORING SYSTEM WITH OPTICAL FIBER SENSORS

REMOTE BRIDGE MONITORING SYSTEM WITH OPTICAL FIBER SENSORS 13 th World Conference on Earthquake Engineering Vancouver, B.C., Canada August 1-6, 2004 Paper No. 677 REMOTE BRIDGE MONITORING SYSTEM WITH OPTICAL FIBER SENSORS TZU-KANG LIN 1, YUN-BIN LIN 1, KUO-CHUN

More information

Lessons learned in the use of fiber optic sensor for civil. structural monitoring

Lessons learned in the use of fiber optic sensor for civil. structural monitoring Lessons learned in the use of fiber optic sensor for civil structural monitoring Daniele Inaudi 1,2, Nicoletta Casanova 1, Branko Glisic 1 Samuel Vurpillot 1,2, Pascal Kronenberg 2, Sandra LLoret 2 1 SMARTEC

More information

Integrated Structural Health Monitoring Systems for Buildings Daniele Inaudi SMARTEC SA, Manno, Switzerland

Integrated Structural Health Monitoring Systems for Buildings Daniele Inaudi SMARTEC SA, Manno, Switzerland Integrated Structural Health Monitoring Systems for Buildings Daniele Inaudi SMARTEC SA, Manno, Switzerland ABSTRACT 1 When designing a Structural Health Monitoring system, one should always focus on the

More information

Universal PMML Plug-in for EMC Greenplum Database

Universal PMML Plug-in for EMC Greenplum Database Universal PMML Plug-in for EMC Greenplum Database Delivering Massively Parallel Predictions Zementis, Inc. info@zementis.com USA: 6125 Cornerstone Court East, Suite #250, San Diego, CA 92121 T +1(619)

More information

Integrity monitoring of old steel bridge using fiber optic distributed sensors based on Brillouin scattering

Integrity monitoring of old steel bridge using fiber optic distributed sensors based on Brillouin scattering Integrity monitoring of old steel bridge using fiber optic distributed sensors based on Brillouin scattering Branko Glišić *, Daniele Posenato, Daniele Inaudi Smartec SA, Via Pobiette 11, CH-6928 Manno,

More information

The Role of Broadband in Bridge Monitoring in Minnesota. Carol Shield Department of Civil, Environmental, and Geo- Engineering

The Role of Broadband in Bridge Monitoring in Minnesota. Carol Shield Department of Civil, Environmental, and Geo- Engineering The Role of Broadband in Bridge Monitoring in Minnesota Carol Shield Department of Civil, Environmental, and Geo- Engineering March 19, 2015 Presentation Outline A brief history of bridge testing Current

More information

Microsoft Access Glossary of Terms

Microsoft Access Glossary of Terms Microsoft Access Glossary of Terms A Free Document From www.chimpytech.com COPYRIGHT NOTICE This document is copyright chimpytech.com. Please feel free to distribute and give away this document to your

More information

THE NEED TO IMPLEMENT CONSTRUCTION DEFORMATION SPATIAL MONITORING SYSTEMS IN ROMANIA

THE NEED TO IMPLEMENT CONSTRUCTION DEFORMATION SPATIAL MONITORING SYSTEMS IN ROMANIA THE NEED TO IMPLEMENT CONSTRUCTION DEFORMATION SPATIAL MONITORING SYSTEMS IN ROMANIA Cristian ONU, Lecturer PhD. Eng., Technical University Gheorghe Asachi of Iasi, Romania, e-mail: cristi_onu@yahoo.com

More information

MSLC Workshop Series Math 1148 1150 Workshop: Polynomial & Rational Functions

MSLC Workshop Series Math 1148 1150 Workshop: Polynomial & Rational Functions MSLC Workshop Series Math 1148 1150 Workshop: Polynomial & Rational Functions The goal of this workshop is to familiarize you with similarities and differences in both the graphing and expression of polynomial

More information

Real Time Remote Monitoring over Cellular Networks. Wayne Chen Marketing Specialist

Real Time Remote Monitoring over Cellular Networks. Wayne Chen Marketing Specialist Real Time Remote Monitoring over Cellular Networks Wayne Chen Marketing Specialist Introduction For distribution infrastructures located in remote, isolated areas, unmanned monitoring systems have long

More information

International Year of Light 2015 Tech-Talks BREGENZ: Mehmet Arik Well-Being in Office Applications Light Measurement & Quality Parameters

International Year of Light 2015 Tech-Talks BREGENZ: Mehmet Arik Well-Being in Office Applications Light Measurement & Quality Parameters www.led-professional.com ISSN 1993-890X Trends & Technologies for Future Lighting Solutions ReviewJan/Feb 2015 Issue LpR 47 International Year of Light 2015 Tech-Talks BREGENZ: Mehmet Arik Well-Being in

More information

RMS - Remote Monitoring System: GPS application on an Harbour Structure

RMS - Remote Monitoring System: GPS application on an Harbour Structure Ingenieurvermessung 2004 14th International Conference on Engineering Surveying Zürich, 15. 19. März 2004 RMS - Remote Monitoring System: GPS application on an Harbour Structure Luca Manetti GEODEV SA

More information

Time series IoT data ingestion into Cassandra using Kaa

Time series IoT data ingestion into Cassandra using Kaa Time series IoT data ingestion into Cassandra using Kaa Andrew Shvayka ashvayka@cybervisiontech.com Agenda Data ingestion challenges Why Kaa? Why Cassandra? Reference architecture overview Hands-on Sandbox

More information

Numerical Analysis of the Moving Formwork Bracket Stress during Construction of a Curved Continuous Box Girder Bridge with Variable Width

Numerical Analysis of the Moving Formwork Bracket Stress during Construction of a Curved Continuous Box Girder Bridge with Variable Width Modern Applied Science; Vol. 9, No. 6; 2015 ISSN 1913-1844 E-ISSN 1913-1852 Published by Canadian Center of Science and Education Numerical Analysis of the Moving Formwork Bracket Stress during Construction

More information

Cloud Powered Mobile Apps with Azure

Cloud Powered Mobile Apps with Azure Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage

More information

TECHNIQUES FOR OPTIMIZING THE RELATIONSHIP BETWEEN DATA STORAGE SPACE AND DATA RETRIEVAL TIME FOR LARGE DATABASES

TECHNIQUES FOR OPTIMIZING THE RELATIONSHIP BETWEEN DATA STORAGE SPACE AND DATA RETRIEVAL TIME FOR LARGE DATABASES Techniques For Optimizing The Relationship Between Data Storage Space And Data Retrieval Time For Large Databases TECHNIQUES FOR OPTIMIZING THE RELATIONSHIP BETWEEN DATA STORAGE SPACE AND DATA RETRIEVAL

More information

OpenText Actuate Big Data Analytics 5.2

OpenText Actuate Big Data Analytics 5.2 OpenText Actuate Big Data Analytics 5.2 OpenText Actuate Big Data Analytics 5.2 introduces several improvements that make the product more useful, powerful and flexible for end users. A new data loading

More information

Modularized and Multi-Functional Power Distribution for Cabinets 3.01

Modularized and Multi-Functional Power Distribution for Cabinets 3.01 Modularized and Multi-Functional Power Distribution for Cabinets 3.01 1 1 Intelligent Data Center Solutions for Networks of the Future Hexatronic offers reliable, high quality data center solutions designed

More information

General Improvements for Version 7.6. New module: Enterprise Dashboard

General Improvements for Version 7.6. New module: Enterprise Dashboard Page 1 of 10 General Improvements for Version 7.6 For more information on the improvements in this release see the following topics: New module: Enterprise Dashboard GainSeeker now compatible with Windows

More information

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued)

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued) Conventional Files versus the Database Files versus Database File a collection of similar records. Files are unrelated to each other except in the code of an application program. Data storage is built

More information

Database Licensing Analysis

Database Licensing Analysis Technical Memorandum SunGuide Software System Version 1.0 March 7, 2013 Prepared for: Florida Department of Transportation Intelligent Transportation Systems Program 605 Suwannee Street, M.S. 90 Tallahassee,

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

From Business Intelligence to Location Intelligence with the Lily Library

From Business Intelligence to Location Intelligence with the Lily Library From Business Intelligence to Location Intelligence with the Lily Library Matteo Golfarelli Stefano Rizzi Marco Mantovani Federico Ravaldi Agenda Location Intelligence State of the art Lily Features Architecture

More information

Using Databases With LabVIEW

Using Databases With LabVIEW Using Databases With LabVIEW LabVIEW User Group Meeting December 2007 Charles Spitaleri ALE System Integration PO Box 832 Melville, NY 11747-0832 +1 (631) 421-1198 ALE System Integration http://www.aleconsultants.com

More information

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 A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools Dong-Joo Kang and Sunju Park Yonsei University unlimit0909@hotmail.com, boxenju@yonsei.ac.kr Abstract

More information

Software MANAGEMENT, CONTROL AND DATA CAPTURE IN PRODUCTION PLANT PRODUCTION QUALITY SCHEDULING MAINTENANCE Powering your Process PRODUCTION QUALITY SCHEDULING MAINTENANCE We present the state-of-the-art

More information

Ulyxes automatic deformation monitoring system

Ulyxes automatic deformation monitoring system Ulyxes automatic deformation monitoring system Dániel Moka, Szonja Zemkó (Hungary) The CLGE Students Contest 2012 2013 Category: GIS and Mapping and Cadastre 1. Summary We live in a dynamic world. Buildings,

More information

Fides Health Care Management System in the Netherlands

Fides Health Care Management System in the Netherlands CASE STUDY Fides Fides Health Care Management System in the Netherlands DevLogic designed and developed a Healthcare Management System web portal for Systicon. Fides is developed to support work of the

More information

ESTIMATION AND PLANNING TOOL FOR INDUSTRIAL CONSTRUCTION SCAFFOLDING. *C. Kumar, S. M. AbouRizk, and Y. Mohamed

ESTIMATION AND PLANNING TOOL FOR INDUSTRIAL CONSTRUCTION SCAFFOLDING. *C. Kumar, S. M. AbouRizk, and Y. Mohamed ESTIMATION AND PLANNING TOOL FOR INDUSTRIAL CONSTRUCTION SCAFFOLDING *C. Kumar, S. M. AbouRizk, and Y. Mohamed Department of Civil and Environmental Engineering University of Alberta Edmonton, AB, Canada,

More information

PRODUCT MODEL BASED QUALITY MANAGEMENT SYSTEM

PRODUCT MODEL BASED QUALITY MANAGEMENT SYSTEM PRODUCT MODEL BASED QUALITY MANAGEMENT SYSTEM Danijel Rebolj, Igor Pšunder ABSTRACT: The idea of our research project was to build an integrated computer-aided quality management system of building projects.

More information

Figure 1. Basic Petri net Elements

Figure 1. Basic Petri net Elements ABCM Symposium Series in Mechatronics - Vol. 3 - pp.653-658 Copyright c 2008 by ABCM A REAL OBJECT CONTROL SYSTEM FOR USE IN MANUFACTURING TELEPRESENCE ENVIRONMENTS. Claiton de Oliveira Department of Mechanical

More information

Course Syllabus For Operations Management. Management Information Systems

Course Syllabus For Operations Management. Management Information Systems For Operations Management and Management Information Systems Department School Year First Year First Year First Year Second year Second year Second year Third year Third year Third year Third year Third

More information

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 10, 2015 ISSN (online): 2321-0613

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 10, 2015 ISSN (online): 2321-0613 IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 10, 2015 ISSN (online): 2321-0613 Planning, Scheduling and Resource Optimization for A Villa by using Ms-Project 2010 Mr.

More information

A Software Architecture for a Photonic Network Planning Tool

A Software Architecture for a Photonic Network Planning Tool A Software Architecture for a Photonic Network Planning Tool Volker Feil, Jan Späth University of Stuttgart, Institute of Communication Networks and Computer Engineering Pfaffenwaldring 47, D-70569 Stuttgart

More information

Introduction to MRP-Link

Introduction to MRP-Link Introduction to MRP-Link Agenda Introduction to MRP-Link Available Modules Modules in detail MRP-Link - middleware or host Summary and Conclusions www.cskl.de Page 2 MRPLINK Overview Current Status: Development

More information

Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management

Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management Quality Assurance for Hydrometric Network Data as a Basis for Integrated River Basin Management FRANK SCHLAEGER 1, MICHAEL NATSCHKE 1 & DANIEL WITHAM 2 1 Kisters AG, Charlottenburger Allee 5, 52068 Aachen,

More information

Factoring Polynomials

Factoring Polynomials Factoring Polynomials 4-1-2014 The opposite of multiplying polynomials is factoring. Why would you want to factor a polynomial? Let p(x) be a polynomial. p(c) = 0 is equivalent to x c dividing p(x). Recall

More information

2014 Software Global Client Conference

2014 Software Global Client Conference WW INFO-04 Rapid Value-add For InTouch With Wonderware Historian Ray Norman NASC Agenda Historian 101 It s Important! Wonderware Historian/Client Overview InTouch Trend/HistData Review Commissioning Wonderware

More information

risks in the software projects [10,52], discussion platform, and COCOMO

risks in the software projects [10,52], discussion platform, and COCOMO CHAPTER-1 INTRODUCTION TO PROJECT MANAGEMENT SOFTWARE AND SERVICE ORIENTED ARCHITECTURE 1.1 Overview of the system Service Oriented Architecture for Collaborative WBPMS is a Service based project management

More information

edoc Document Generation Suite

edoc Document Generation Suite e Doc Suite is a set of Microsoft Office add-ins for Word, Excel & PowerPoint that lets you use your data in MS Office with ease. Creating simple flat tables from data sources is possible in MS Office,

More information

More power for your processes ELO Business Logic Provider for Microsoft Dynamics NAV

More power for your processes ELO Business Logic Provider for Microsoft Dynamics NAV >> ELO Business Logic Provider for ELO Business Solution for Microsoft Dynamics NAV More power for your processes ELO Business Logic Provider for Microsoft Dynamics NAV The ELO Business Logic Provider

More information

CM23: File Cabinet - Scanning. May 10, 2014

CM23: File Cabinet - Scanning. May 10, 2014 CM23: File Cabinet - Scanning May 10, 2014 Release# or Date CR# or Incident # CR361 CR361 CR402, CR423 Change History Change Description Author(s) Section Modified Added new view of Out of County Services

More information

More power for your processes

More power for your processes >> ELO business solution for ERP applications More power for your processes - the integration module for ERP-oriented process solutions The (BLP) enables the efficient linking of different ERP systems

More information

Data in seismology: networks, instruments, current problems

Data in seismology: networks, instruments, current problems Data in seismology: networks, instruments, current problems Seismic networks, data centres, instruments Seismic Observables and their interrelations Seismic data acquisition parameters (sampling rates,

More information

Case Study: Real-time Analytics With Druid. Salil Kalia, Tech Lead, TO THE NEW Digital

Case Study: Real-time Analytics With Druid. Salil Kalia, Tech Lead, TO THE NEW Digital Case Study: Real-time Analytics With Druid Salil Kalia, Tech Lead, TO THE NEW Digital Agenda Understanding the use-case Ad workflow Our use case Experiments with technologies Redis Cassandra Introduction

More information

Load Testing Analysis Services Gerhard Brückl

Load Testing Analysis Services Gerhard Brückl Load Testing Analysis Services Gerhard Brückl About Me Gerhard Brückl Working with Microsoft BI since 2006 Mainly focused on Analytics and Reporting Analysis Services / Reporting Services Power BI / O365

More information

Responsibilities of Engineering Surveyors under ISO 9000 in Hong Kong Construction Industry

Responsibilities of Engineering Surveyors under ISO 9000 in Hong Kong Construction Industry Responsibilities of Engineering Surveyors under ISO 9000 in Hong Kong Construction Industry Steve Y. W. Lam and Conrad H. W. Tang Department of Land Surveying & Geo-Informatics Hong Kong Polytechnic University,

More information

Digital Content Framework

Digital Content Framework Digital Content Framework Digital Content Framework Lim Kin Chew Chairman of Singapore s Learning Standards Technical Committee Senior Lecturer / Research Fellow School of Science & Technology SIM University

More information

Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area

Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area Konstantinos LAKAKIS, Paraskevas SAVVAIDIS, Ioannis M. IFADIS and Ioannis D. DOUKAS, Greece Key words:

More information

secure intelligence collection and assessment system Your business technologists. Powering progress

secure intelligence collection and assessment system Your business technologists. Powering progress secure intelligence collection and assessment system Your business technologists. Powering progress The decisive advantage for intelligence services The rising mass of data items from multiple sources

More information

Datasheet. FUJITSU Storage ETERNUS SF Storage Cruiser V16.0 ETERNUS SF AdvancedCopy Manager V16.0 ETERNUS SF Express V16.0

Datasheet. FUJITSU Storage ETERNUS SF Storage Cruiser V16.0 ETERNUS SF AdvancedCopy Manager V16.0 ETERNUS SF Express V16.0 Datasheet FUJITSU Storage ETERNUS SF Storage Cruiser V16.0 ETERNUS SF AdvancedCopy Manager V16.0 ETERNUS SF Express V16.0 Central console and advanced management functions for ETERNUS DX storage environments..

More information

INSTALLING AND MANAGING DATABASES WITH PRIMAVERA P6 PRO RELEASE 8.2

INSTALLING AND MANAGING DATABASES WITH PRIMAVERA P6 PRO RELEASE 8.2 April 2013 Primavera P6 Version 8.2 INSTALLING AND MANAGING DATABASES WITH PRIMAVERA P6 PRO RELEASE 8.2 1. Go to edelivery.oracle.com These tech tips are offered free of charge in the spirit of sharing

More information

Excel & Visual Basic for Applications (VBA)

Excel & Visual Basic for Applications (VBA) Excel & Visual Basic for Applications (VBA) Object-oriented programming (OOP) Procedures: Subs and Functions, layout VBA: data types, variables, assignment 1 Traits of Engineers Florman s Engineering View

More information

Innovation in bills of quantities for engineering practice by using a hierarchical structural database with multilanguage data

Innovation in bills of quantities for engineering practice by using a hierarchical structural database with multilanguage data Vol. 4(4), pp. 123-133, April, 2013 DOI 10.5897/JCECT2013.0254 ISSN 1996-0816 2013 Academic Journals http://www.academicjournals.org/jcect Journal of Civil Engineering and Construction Technology Full

More information

The degree of a polynomial function is equal to the highest exponent found on the independent variables.

The degree of a polynomial function is equal to the highest exponent found on the independent variables. DETAILED SOLUTIONS AND CONCEPTS - POLYNOMIAL FUNCTIONS Prepared by Ingrid Stewart, Ph.D., College of Southern Nevada Please Send Questions and Comments to ingrid.stewart@csn.edu. Thank you! PLEASE NOTE

More information

Sage ERP Accpac Version 6.0

Sage ERP Accpac Version 6.0 Sage ERP Accpac Version 6.0 Web-Enabled ERP for the Mid-Market Unparalleled Freedom of Choice The multi-tier architecture of Sage ERP Accpac Version 6.0 provides customers with the FREEDOM to choose operating

More information

A Monitored Student Testing Application Using Cloud Computing

A Monitored Student Testing Application Using Cloud Computing A Monitored Student Testing Application Using Cloud Computing R. Mullapudi and G. Hsieh Department of Computer Science, Norfolk State University, Norfolk, Virginia, USA r.mullapudi@spartans.nsu.edu, ghsieh@nsu.edu

More information

End the Microsoft Access Chaos - Your simplified path to Oracle Application Express

End the Microsoft Access Chaos - Your simplified path to Oracle Application Express End the Microsoft Access Chaos - Your simplified path to Oracle Application Express Donal Daly Senior Director, Database Tools Agenda Why Migrate from Microsoft Access? What is Oracle

More information

In Memory Accelerator for MongoDB

In Memory Accelerator for MongoDB In Memory Accelerator for MongoDB Yakov Zhdanov, Director R&D GridGain Systems GridGain: In Memory Computing Leader 5 years in production 100s of customers & users Starts every 10 secs worldwide Over 15,000,000

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

FACULTY OF COMPUTER SCIENCE AND INFORMATION TECHNOLOGY AUTUMN 2016 BACHELOR COURSES

FACULTY OF COMPUTER SCIENCE AND INFORMATION TECHNOLOGY AUTUMN 2016 BACHELOR COURSES FACULTY OF COMPUTER SCIENCE AND INFORMATION TECHNOLOGY Please note! This is a preliminary list of courses for the study year 2016/2017. Changes may occur! AUTUMN 2016 BACHELOR COURSES DIP217 Applied Software

More information

Best Practices. Integration of Salesforce and Microsoft Dynamics GP

Best Practices. Integration of Salesforce and Microsoft Dynamics GP Best Practices Integration of Salesforce and Microsoft Dynamics GP Best Practices: Integration of Salesforce and Microsoft Dynamics GP Introduction Customer Relationship Management (CRM) is mainly used

More information

Report Data Management in the Cloud: Limitations and Opportunities

Report Data Management in the Cloud: Limitations and Opportunities Report Data Management in the Cloud: Limitations and Opportunities Article by Daniel J. Abadi [1] Report by Lukas Probst January 4, 2013 In this report I want to summarize Daniel J. Abadi's article [1]

More information

Presentation: May 15 th 2013 Location: Saskatoon Speaker: Robert Picard. Airport Expertise. Holistic Approach to IT Solutions Automation Intelligence

Presentation: May 15 th 2013 Location: Saskatoon Speaker: Robert Picard. Airport Expertise. Holistic Approach to IT Solutions Automation Intelligence Presentation: May 15 th 2013 Location: Saskatoon Speaker: Robert Picard Airport Expertise Holistic Approach to IT Solutions Automation Intelligence Agenda Automation Intelligence (AI) Concept Responding

More information

Mobile 2D Barcode/BIM-based Facilities Maintaining Management System

Mobile 2D Barcode/BIM-based Facilities Maintaining Management System Mobile 2D Barcode/BIM-based Facilities Maintaining Management System Yu-Cheng Lin, Yu-Chih Su, Yen-Pei Chen Department of Civil Engineering, National Taipei University of Technology, No.1.Chung-Hsiao E.

More information

Migration Manager v6. User Guide. Version 1.0.5.0

Migration Manager v6. User Guide. Version 1.0.5.0 Migration Manager v6 User Guide Version 1.0.5.0 Revision 1. February 2013 Content Introduction... 3 Requirements... 3 Installation and license... 4 Basic Imports... 4 Workspace... 4 1. Menu... 4 2. Explorer...

More information

ADVANTAGES OF RFID FOR WARRANTY MANAGEMENT AND/OR MAINTENANCE

ADVANTAGES OF RFID FOR WARRANTY MANAGEMENT AND/OR MAINTENANCE 9 8 7 6 ADVANTAGES OF RFID FOR WARRANTY MANAGEMENT AND/OR MAINTENANCE J.-D. Chatelain RFID 2 3 5 4 RLS-3 3-2 CONTRINEX AG Industrial Electronics Route André Piller 5 CH-762 Givisiez Switzerland Tel: +4

More information

ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES

ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES ABSTRACT Chris Gordon 1, Burcu Akinci 2, Frank Boukamp 3, and

More information

APPLICATION OF DATA MINING TECHNIQUES FOR BUILDING SIMULATION PERFORMANCE PREDICTION ANALYSIS. email paul@esru.strath.ac.uk

APPLICATION OF DATA MINING TECHNIQUES FOR BUILDING SIMULATION PERFORMANCE PREDICTION ANALYSIS. email paul@esru.strath.ac.uk Eighth International IBPSA Conference Eindhoven, Netherlands August -4, 2003 APPLICATION OF DATA MINING TECHNIQUES FOR BUILDING SIMULATION PERFORMANCE PREDICTION Christoph Morbitzer, Paul Strachan 2 and

More information

Applying RFID in traffic junction monitoring

Applying RFID in traffic junction monitoring Second Conference of Junior Researchers in Civil Engineering 11 Applying RFID in traffic junction monitoring Nikol Krausz BME Department of Photogrammerty and Geoinformatics, e-mail: krausz@mail.bme.hu

More information

SANS Technology Institute Group Discussion/Written Project. The Rapid Implementation of IPv6 at GIAC Enterprises

SANS Technology Institute Group Discussion/Written Project. The Rapid Implementation of IPv6 at GIAC Enterprises SANS Technology Institute Group Discussion/Written Project The Rapid Implementation of IPv6 at GIAC Enterprises 12/9/2010 Stacy Jordan Beth Binde Glen Roberts Table of Contents Executive Summary 3 Background

More information

Sage ERP Accpac Version 6.0. Web-Enabled ERP for the Mid-Market

Sage ERP Accpac Version 6.0. Web-Enabled ERP for the Mid-Market Sage ERP Accpac Version 6.0 Web-Enabled ERP for the Mid-Market Unparalleled Freedom of Choice The multi-tier architecture of Sage ERP Accpac Version 6.0 provides customers with the FREEDOM to choose operating

More information

Server Back-up Online. Application Support Module Microsoft SQL Server Gebruikershandleiding

Server Back-up Online. Application Support Module Microsoft SQL Server Gebruikershandleiding Server Back-up Online Application Support Module Microsoft SQL Server Gebruikershandleiding Inhoudsopga ve 1 Product Overview...3 1.1 System Requirements...3 1.2 Hot Backup...3 2 Installation and Configuration...4

More information

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes

Tennessee Mathematics Standards 2009-2010 Implementation. Grade Six Mathematics. Standard 1 Mathematical Processes Tennessee Mathematics Standards 2009-2010 Implementation Grade Six Mathematics Standard 1 Mathematical Processes GLE 0606.1.1 Use mathematical language, symbols, and definitions while developing mathematical

More information

Redundant Data Removal Technique for Efficient Big Data Search Processing

Redundant Data Removal Technique for Efficient Big Data Search Processing Redundant Data Removal Technique for Efficient Big Data Search Processing Seungwoo Jeon 1, Bonghee Hong 1, Joonho Kwon 2, Yoon-sik Kwak 3 and Seok-il Song 3 1 Dept. of Computer Engineering, Pusan National

More information

Keywords: Programming, planning, linear work, civil engineering, time chainage, 4D, virtual reality.

Keywords: Programming, planning, linear work, civil engineering, time chainage, 4D, virtual reality. Abstract The technique for the representation of the information based on the time chainage diagrams (usually denoted as T.C.D.) is the most common approach, compared to more traditional systems such as

More information

CHAPTER 8 CIVIL DESIGN

CHAPTER 8 CIVIL DESIGN CHAPTER 8 CIVIL DESIGN A. GENERAL This Chapter includes standards and design considerations for other civil engineering design in structural, drainage and utilities. Design considerations for electrical

More information

Yuan Fan Arcsight. Advance SQL Injection Detection by Join Force of Database Auditing and Anomaly Intrusion Detection

Yuan Fan Arcsight. Advance SQL Injection Detection by Join Force of Database Auditing and Anomaly Intrusion Detection Yuan Fan, CISSP, has worked in the network security area for more than 7 years. He currently works for ArcSight as a Software Engineer. He holds a Master of Computer Engineering degree from San Jose State

More information

Advanced SQL. Jim Mason. www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353. jemason@ebt-now.

Advanced SQL. Jim Mason. www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353. jemason@ebt-now. Advanced SQL Jim Mason jemason@ebt-now.com www.ebt-now.com Web solutions for iseries engineer, build, deploy, support, train 508-728-4353 What We ll Cover SQL and Database environments Managing Database

More information

A J2EE based server for Muon Spectrometer Alignment monitoring in the ATLAS detector Journal of Physics: Conference Series

A J2EE based server for Muon Spectrometer Alignment monitoring in the ATLAS detector Journal of Physics: Conference Series A J2EE based server for Muon Spectrometer Alignment monitoring in the ATLAS detector Journal of Physics: Conference Series Andrea Formica, Pierre-François Giraud, Frederic Chateau and Florian Bauer, on

More information

AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping

AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping 3.1.1 Constants, variables and data types Understand what is mean by terms data and information Be able to describe the difference

More information

RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague

RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague course: Database Applications (NDBI026) WS2015/16 RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague student duties final DB

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER

EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER White Paper EMC DOCUMENTUM xplore 1.1 DISASTER RECOVERY USING EMC NETWORKER Abstract The objective of this white paper is to describe the architecture of and procedure for configuring EMC Documentum xplore

More information

Cloud Computing and Advanced Relationship Analytics

Cloud Computing and Advanced Relationship Analytics Cloud Computing and Advanced Relationship Analytics Using Objectivity/DB to Discover the Relationships in your Data By Brian Clark Vice President, Product Management Objectivity, Inc. 408 992 7136 brian.clark@objectivity.com

More information

65 Fig. 1: Integration of sensing technologies into a single database / user interface

65 Fig. 1: Integration of sensing technologies into a single database / user interface Integrated Structural Health Monitoring Systems for Buildings D. Inaudi a,b,.r. Walder a a SMARTEC SA, Via Pobiette 11, 6928 Manno, Switzerland b ROCTEST Ltd., 665 Pine Avenue, Saint-Lambert, Quebec, Canada

More information

Software Operations Manual

Software Operations Manual Software Operations Manual Version 5.0 BinMaster 7201 North 98th Street Lincoln, NE 68507 Phone: 402-434-9102 / Fax: 402-434-9133 info@binmaster.com - www.binmaster.com System Requirements PC with 1GHz

More information

A Study on Integrated Operation of Monitoring Systems using a Water Management Scenario

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

More information

Databases in Engineering / Lab-1 (MS-Access/SQL)

Databases in Engineering / Lab-1 (MS-Access/SQL) COVER PAGE Databases in Engineering / Lab-1 (MS-Access/SQL) ITU - Geomatics 2014 2015 Fall 1 Table of Contents COVER PAGE... 0 1. INTRODUCTION... 3 1.1 Fundamentals... 3 1.2 How To Create a Database File

More information

Ultrasonic Detection Algorithm Research on the Damage Depth of Concrete after Fire Jiangtao Yu 1,a, Yuan Liu 1,b, Zhoudao Lu 1,c, Peng Zhao 2,d

Ultrasonic Detection Algorithm Research on the Damage Depth of Concrete after Fire Jiangtao Yu 1,a, Yuan Liu 1,b, Zhoudao Lu 1,c, Peng Zhao 2,d Advanced Materials Research Vols. 368-373 (2012) pp 2229-2234 Online available since 2011/Oct/24 at www.scientific.net (2012) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amr.368-373.2229

More information

Realization of Inventory Databases and Object-Relational Mapping for the Common Information Model

Realization of Inventory Databases and Object-Relational Mapping for the Common Information Model Realization of Inventory Databases and Object-Relational Mapping for the Common Information Model Department of Physics and Technology, University of Bergen. November 8, 2011 Systems and Virtualization

More information

WEB APPLICATION FOR TIMETABLE PLANNING IN THE HIGHER TECHNICAL COLLEGE OF INDUSTRIAL AND TELECOMMUNICATIONS ENGINEERING

WEB APPLICATION FOR TIMETABLE PLANNING IN THE HIGHER TECHNICAL COLLEGE OF INDUSTRIAL AND TELECOMMUNICATIONS ENGINEERING WEB APPLICATION FOR TIMETABLE PLANNING IN THE HIGHER TECHNICAL COLLEGE OF INDUSTRIAL AND TELE ENGINEERING Dra. Marta E. Zorrilla Pantaleón Dpto. Applied Mathematics and Computer Science Avda. Los Castros

More information

Structural monitoring using engineer computer interaction

Structural monitoring using engineer computer interaction Artificial Intelligence for Engineering Design, Analysis and Manufacturing ~2002!, 16, 203 218. Printed in the USA. Copyright 2002 Cambridge University Press 0890-0604002 $12.50 DOI: 10.1017.S0890060402163062

More information

15 th International Conference on Experimental Mechanics

15 th International Conference on Experimental Mechanics PAPER REF: 3762 LABORATORY TESTS OF COMPRESSIVE CREEP IN CONCRETE SAMPLES: DEVELOPMENT OF SOLUTIONS FOR PROBLEMS OF ACTUATION, MEASUREMENT, DATA ACQUISITION AND LOAD BALANCING João Palma (*), Paulo Morais,

More information

Scalable Web-Based Data Management System in Long Term Structure Health Monitoring

Scalable Web-Based Data Management System in Long Term Structure Health Monitoring Scalable Web-Based Data Management System in Long Term Structure Health Monitoring Ping Lu Iowa State University 2901 S.Loop Dr.,Suite 3100 Ames, IA 50010 515-296-6686 luping@iastate.edu [Abstract] Recently,

More information