The Use of Hardware Abstraction Layers in Automated Calibration Software

Size: px
Start display at page:

Download "The Use of Hardware Abstraction Layers in Automated Calibration Software"

Transcription

1 The Use of Hardware Abstraction Layers in Automated Calibration Software Speaker: Logan Kunitz Author: Rishee Bhatt National Instruments N. Mopac Expwy. Austin, TX (512) Abstract Today s automated calibration tests systems depend greatly on interaction between the automation software and the physical instrumentation being controlled. This interaction creates dependencies between the software and the hardware, which can be compromised when an instrument needs to be replaced due to failure, obsolescence, or external calibration. Developing a Hardware Abstraction Layer (HAL) is a proactive method of mitigating the risks of planned or unplanned instrument replacement. A HAL decouples automated test software from the underlying hardware, facilitating instrument interchangeability. This paper will introduce the concept of industry-standard, vendor-defined, and user-defined HALs, describe their benefits and uses, and present a use case for implementing a HAL for a given set of instruments. Learning Objectives This paper will give the reader a basic understanding of what a Hardware Abstraction Layer is and why it is useful in automated calibration systems. The reader will have the knowledge necessary to apply these concepts to a system that they are developing or maintaining. 1. Introduction Calibration routines utilize software in a variety ways. Sometimes software is used simply for data entry and analysis, such as for storage in a database and calculation of measurement uncertainties. Often times, though, calibration routines utilize a full calibration software suite, which serves as a framework for procedure development and execution. Calibration software suites provide an interface for users to execute automated calibration procedures. The software handles all aspects of the calibration, including configuration, user interaction, data management, and report generation. One of the most critical aspects handled by automated calibration software is interfacing with the instruments used to calibrate the device under test.

2 2. Instrument Control In order to interface with the instruments in an automated calibration system, calibration procedures often utilize instrument I/O libraries, or drivers. An instrument driver is written in the Application Development Environment (ADE) of the calibration procedure, and provides an interface for configuring and reading from the instrument. An instrument driver is itself a software abstraction, in that it hides away the low-level implementation details of the communication with the instrument. Depending on the type of instrument being used, these low-level details could include Virtual Instrument Software Architecture (VISA) communication, Standard Commands for Programmable Instruments (SCPI), or calls to a Dynamically Loaded Library (DLL). The instrument driver wraps these lowlevel calls into a an Application Programming Interface (API), or a set of discrete, organized functions, each of which performs a specific task related to the instrument under control. Figure 1 shows the function tree for a benchtop DMM. The API is divided into six general categories based on function type. Each function sends a command to the instrument, receives data from the instrument, or performs some combination of the two. In addition, the function may catch and handle errors associated with the communication. While an instrument driver greatly simplifies instrument control, the driver is usually limited to a specific type of instrument or family of instruments. HALs provide greater instrument flexibility by further decoupling the calibration software from the instrument hardware in the automated calibration system. Their goal is to increase instrument interchangeability, allowing the calibration software to be used with any type of instrument. Figure 1. Instrument driver function tree.

3 3. HALs Instruments in an automated calibration system may need to be replaced at any time. Sometimes these replacements are planned, such as when an instrument must be sent out for external calibration or an instrument becomes obsolete. Other times, these replacements are unexpected, such as when hardware fails. In either case, a contingency plan must be developed for dealing with these situations. There are numerous strategies for dealing with replacement of instruments. Purchasing spare instrumentation ensures that a drop-in replacement is available if the instrument in service ever goes out of commission. While this is a proactive strategy that minimizes downtime, it also entails high upfront capital costs. Purchasing the drop-in replacement at the time of failure is a risk as well, especially if there is a long-lead time associated with the instrument, or there is a possibility that a replacement might not be available at all. Modifying the calibration software to support a readily-available replacement instrument also involves long downtimes, as code migration and validation can be time-consuming tasks. Developing a HAL is a proactive method of mitigating the risks of instrument replacement. A HAL can minimize the downtime required by such replacements by facilitating instrument interchangeability. Most HALs fall into one of three groups: industry-standard, vendor-defined, and user-defined Industry-Standard The most well-know industry-standard HAL is Interchangeable Virtual Instruments (IVI). The IVI standard was developed by an industry consortium in order to provide interchangeability between different instruments in specific sets of instrument classes, including digital multimeters, oscilloscopes, power meters, and more. Interchangeability is achieved by standardizing the API used to communicate with instruments in a given instrument class. If a user wishes to utilize a function that is not supported by the IVI API, though, he or she must use the instrument-specific driver. For instance, the IVI-DMM API provides functionality for setting various triggering and configuration properties, as well as performing common DMM measurements, but does not provide functionality for setting input impedance, which is configurable on many DMM instruments. If an industry-standard HAL meets the needs of a calibration application, it is usually the best option. The design, development, and maintenance of the HAL has already been taken care of, so the user can confidently integrate the HAL into his or her application with little additional effort Vendor-Defined Many instrument vendors create plug-in type drivers that support their full spectrum of instrument types and models. These can be a useful for quickly implementing a HAL in a calibration procedure, but limit the user s ability to troubleshoot source code or add new

4 instrument functionality. They also lock the user into using that vendor s platform and instrument offerings User-Defined Building a HAL from the ground up allows a developer to tailor the architecture and design of the HAL to the meet the needs of his or her application. Instrument coverage can be added proactively, and is not limited to only the instruments that are supported by the industry-standard or vendor-defined HAL. The tradeoff for this coverage is that, unlike industry-standard or vendor-defined HALs where instrument interchangeability requires no additional effort other than instrument validation, a user-defined HAL requires some design and development upfront. Taking the time to develop a well-designed HAL will ensure that adding future instrument support will be a simple, pain-free process. 4. HAL Architecture A well-designed HAL decouples the calibration application from the code used to control instrumentation. Figure 2 shows how a HAL fits into the overall architecture of an application. Figure 2. HAL in application architecture.

5 4.1. Application-Separation Layer For most calibration applications, the application-separation layer will be tied to an instrument type or class. This layer will implement various functions commonly associated with the instrument class. For instance, for a calibration procedure which utilizes a DMM, the application-separation layer would be a generic DMM driver that implements many common DMM functions, such as initialization, range configuration, and measurement. This layer would be called from the calibration procedure, so that the calibration procedure would not make any direct calls to device-specific instrument drivers Device-Specific Software Plug-In The device-specific software plug-in contains the driver calls specific to the instrument that is being used in the calibration system. This is the software layer that will be switched out if the instrument under test needs to be replaced by a new instrument type. 5. Decoupling Separating the HAL into two layers facilitates decoupling of the calibration procedure from the instrument driver. The application-separation layer serves as a buffer, ensuring that the procedure-level code does not need to be modified in order for the instrument type to be replaced. This is especially beneficial with large applications, where many calibration procedures are utilizing shared instrument control code. This decoupling also facilitates dynamic interchangeability of instrumentation, where the instrument to be used is selected by the operator at run-time. In this case, a configuration file or user prompt is used to identify the hardware resource to be used. This configuration can be passed to the application-separation layer, which dynamically loads the appropriate instrumentspecific layer to be used with the selected instrument. Figure 3 shows an implementation where the operator can select whether to use DMM1 or DMM2 during the configuration phase. These are two DMM types utilizing different instrument drivers. The application-separation layer calls the appropriate instrument-specific driver dynamically during execution.

6 Figure 3. Dynamic loading of instrument-specific driver. Dynamic loading of the device-specific software layer is achieved using a plug-in software architecture. One very powerful way of implementing software plug-ins is through objectoriented software design. 6. Object-Oriented Design In an object-oriented design, the various entities in the software are implemented as objects, or classes. Each class has certain properties, or data values, associated with, as well as certain methods, or functions, which can be performed on the class to modify its properties. A classic example of an object-oriented design is a card game, which could include classes for the deck of cards, the players, and the table, among others. The player class may contain properties for the player s score, the cards in his or her hand, etc. When the player plays a card from his or hand to the table, a method could be called which removes the card from the hand in the player s properties. In calibration software, each instrument type would be implemented as a different class. There are two key principles of object-oriented design that lend to its effectiveness in a HAL: inheritance and polymorphism Inheritance When a class inherits from another class, it automatically acquires all of its properties and methods. In addition, this subclass can have extended functionality that the base class does not have.

7 In the case of a HAL, our base class could be a generic DMM. It would have a defined set of properties and methods that are common across all types of DMMs. Properties could include range and number of channels, while methods could include functions to get or set these properties, as well as functions to initialize, close, and perform measurements. In addition, it could contain properties related to an instrument s Type A uncertainty, such as absolute accuracy and linearity. This class would serve as the application-separation layer in the HAL, and would be called directly from the calibration procedures. When support is added for a specific type of benchtop DMM, it is created as a subclass that inherits from the DMM base class. It inherits the properties and methods of its parent class, although the values of those properties need not be the same, since range, number of channels, etc. vary between different DMMs. The instrument-specific DMM class can be extended to include properties and methods that are not supported by the base DMM class. For instances, methods could be added to get and set the instrument s input impedance, if it is configurable. Figure 4 shows the class hierarchy for a base DMM class and its instrument-specific child classes. Figure 4. Example DMM class hierarchy.

8 Each of the instrument-specific DMM classes inherits the properties and methods of the generic DMM base class, while extending the functionality by adding their own properties and methods. At run-time, the instrument-control code can be loaded dynamically using the property of polymorphism Polymorphism Polymorphism allows a method to be called by many different types of classes, each applying its own type-specific behavior. In this case, we define three methods in the base class: Initialize(), Set Range(), and Close(). Each child class can override these methods, applying their own specific behavior for when the method is called on them. For instance, the Initialize() method for DMM Type 1 would call the initialization function from its instrument-specific driver. At run-time, when the calibration procedure calls the generic DMM Initialize() method from the application-separation layer, the compiler would determine the class type and run the appropriate Initialize() method for that specific type of instrument. There are different ways to handle methods that are supported by some instruments but not by others. One way of doing this is to add the method to the parent class and all other child classes for instruments of that type. For classes where the method is not supported by all instruments, such as the Set Impedance() method in the example shown, those classes which do not support that method should instead throw an error or exception. This will ensure that an unsupported instrument is never used in a calibration application. 7. Summary Utilizing a HAL is a proactive method for mitigating the inevitable risk of instrument downtime or replacement in an automated calibration system. Industry-standard and vendor-defined HALs provide instrument interchangeability with very little effort on the part of the user, but may be limited in their scope of supported instruments. A user-defined HAL, while requiring initial development and design, has the added benefit of greater adaptability, allowing the user to design the HAL to meet his or her needs, and add support for more instruments as necessary. An object-oriented design is an excellent choice when architecting a user-defined HAL, due to its intrinsic support for inheritance and polymorphism.

9 References 1. Zone.ni.com (2011) How to Mitigate Hardware Obsolescence in Next-Generation Test Systems. [online] Available at: [Accessed: 13 May 2012] 2. Decible.ni.com (2010) Achieve Hardware Independence with an Object-Oriented Hardware Abstraction Layer. Available at: [Accessed: 14 May 2012] 3. Codeproject.com (2011) Introduction to Object Oriented Programming Concepts (OOP) and More. [online] Available at: Object-Oriented-Programming-Concep#OOP [Accessed: 16 May 2012]

Using MCC GPIB Products with LabVIEW

Using MCC GPIB Products with LabVIEW Using Products with LabVIEW * This application note applies to PCI-GPIB-1M, PCI-GPIB-300K, PCM-GPIB, as well as to ISA- and PC104- boards How NI Compatibility Works National Instruments (NI) provides the

More information

Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions

Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions The Need for Integrated Automation and Measurement Manufacturing lines consist of numerous decoupled systems for

More information

Getting Started with IVI Drivers

Getting Started with IVI Drivers Getting Started with IVI Drivers Your Guide to Using IVI with Visual C# and Visual Basic.NET Version 1.1 Copyright IVI Foundation, 2011 All rights reserved The IVI Foundation has full copyright privileges

More information

Building Hybrid Test Systems, Part 1

Building Hybrid Test Systems, Part 1 Building Hybrid Test Systems, Part 1 Laying the groundwork for a successful transition Application Note 1465-32 In the 1990s, GPIB- and VXI-based systems dominated test system architectures. With the introduction

More information

October 21 November 5 November 14 December 12. Washington DC Boston Chicago San Jose. ni.com

October 21 November 5 November 14 December 12. Washington DC Boston Chicago San Jose. ni.com October 21 November 5 November 14 December 12 Washington DC Boston Chicago San Jose 1 Evaluating Software Tools and Architectures to Design Test Systems A Sample Modular Software Architecture

More information

Improving Test Performance through Instrument Driver State Management

Improving Test Performance through Instrument Driver State Management Application Note 122 Improving Test Performance through Instrument Driver State Management Instrument Drivers John Pasquarette With the popularity of test programming tools such as LabVIEW and LabWindows

More information

I D C T E C H N O L O G Y S P O T L I G H T. F l e x i b l e Capacity: A " Z e r o C a p i t a l " Platform w ith On- P r emise Ad va n t a g e s

I D C T E C H N O L O G Y S P O T L I G H T. F l e x i b l e Capacity: A  Z e r o C a p i t a l  Platform w ith On- P r emise Ad va n t a g e s I D C T E C H N O L O G Y S P O T L I G H T F l e x i b l e Capacity: A " Z e r o C a p i t a l " Platform w ith On- P r emise Ad va n t a g e s March 2014 Adapted from Attaching Support Services at the

More information

A White Paper By: Dr. Gaurav Banga SVP, Engineering & CTO, Phoenix Technologies. Bridging BIOS to UEFI

A White Paper By: Dr. Gaurav Banga SVP, Engineering & CTO, Phoenix Technologies. Bridging BIOS to UEFI A White Paper By: Dr. Gaurav Banga SVP, Engineering & CTO, Phoenix Technologies Bridging BIOS to UEFI Copyright Copyright 2007 by Phoenix Technologies Ltd. All rights reserved. No part of this publication

More information

Cisco and VMware Virtualization Planning and Design Service

Cisco and VMware Virtualization Planning and Design Service Cisco and VMware Virtualization Planning and Design Service Create an End-to-End Virtualization Strategy with Combined Services from Cisco and VMware Service Overview A Collaborative Approach to Virtualization

More information

CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS

CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS CACHÉ: FLEXIBLE, HIGH-PERFORMANCE PERSISTENCE FOR JAVA APPLICATIONS A technical white paper by: InterSystems Corporation Introduction Java is indisputably one of the workhorse technologies for application

More information

Integrating the Internet into Your Measurement System. DataSocket Technical Overview

Integrating the Internet into Your Measurement System. DataSocket Technical Overview Integrating the Internet into Your Measurement System DataSocket Technical Overview Introduction The Internet continues to become more integrated into our daily lives. This is particularly true for scientists

More information

Software Service Engineering Architect s Dream or Developer s Nightmare?

Software Service Engineering Architect s Dream or Developer s Nightmare? Software Service Engineering Architect s Dream or Developer s Nightmare? Gregor Hohpe Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043 gregor@hohpe.com Abstract. Architectural principles such

More information

Eight Ways to Increase GPIB System Performance

Eight Ways to Increase GPIB System Performance Application Note 133 Eight Ways to Increase GPIB System Performance Amar Patel Introduction When building an automated measurement system, you can never have too much performance. Increasing performance

More information

Information Technology Career Field Pathways and Course Structure

Information Technology Career Field Pathways and Course Structure Information Technology Career Field Pathways and Course Structure Courses in Information Support and Services (N0) Computer Hardware 2 145025 Computer Software 145030 Networking 2 145035 Network Operating

More information

VIRTUAL INSTRUMENTATION

VIRTUAL INSTRUMENTATION VIRTUAL INSTRUMENTATION João Paiva dos Santos joao.santos@ipbeja.pt Lab SPEPSI Instituto Politécnico de Beja Beja, 15th May, 2014 Overview What and why Hardware Software Some standards Remote use Example

More information

Chapter 3.2 C++, Java, and Scripting Languages. The major programming languages used in game development.

Chapter 3.2 C++, Java, and Scripting Languages. The major programming languages used in game development. Chapter 3.2 C++, Java, and Scripting Languages The major programming languages used in game development. C++ C used to be the most popular language for games Today, C++ is the language of choice for game

More information

The integrated HMI-PLC

The integrated HMI-PLC Industry Application IA05003001E The integrated HMI-PLC Rich Harwell, Eaton Corporation The heart of a lean automation solution Lean manufacturing is a proven, powerful tool that boosts efficiencies in

More information

OSI Seven Layers Model Explained with Examples

OSI Seven Layers Model Explained with Examples OSI Layer Model describes how information is transmitted between networking devices. In this tutorial I will provide a brief introduction of OSI Layer model including its advantage and services. OSI model

More information

Quotes from Object-Oriented Software Construction

Quotes from Object-Oriented Software Construction Quotes from Object-Oriented Software Construction Bertrand Meyer Prentice-Hall, 1988 Preface, p. xiv We study the object-oriented approach as a set of principles, methods and tools which can be instrumental

More information

The Secrets of RS-485 Half-duplex Communication

The Secrets of RS-485 Half-duplex Communication Communication Casper Yang, Senior Product Manager support@moxa.com RS-485 is a good choice for long distance serial communication since using differential transmission cancels out the vast majority of

More information

Data center transformation: an application focus that breeds success

Data center transformation: an application focus that breeds success White Paper Data center transformation: an application focus that breeds success Introduction Behind any significant data center transformation is often the act of migrating, relocating, upgrading, or

More information

Chapter 13 Configuration Management

Chapter 13 Configuration Management Chapter 13 Configuration Management Using UML, Patterns, and Java Object-Oriented Software Engineering Outline of the Lecture Purpose of Software Configuration Management (SCM)! Motivation: Why software

More information

Frameworx 14.0 Product Conformance Certification Report

Frameworx 14.0 Product Conformance Certification Report Frameworx 14.0 Product Conformance Certification Report Ericsson Adaptive Inventory (Previously Ericsson s Granite Inventory) Version 9.2 Certification Date: April 2015 Document Date: May 2015 1 Version

More information

3 keys to effective service availability management. Visibility. Proactivity. Collaboration.

3 keys to effective service availability management. Visibility. Proactivity. Collaboration. 3 keys to effective service availability management Visibility. Proactivity. Collaboration. Managing service availability without visibility into downtime and data loss risks is like flying at night without

More information

PRAGMA ENGINEERING Srl. Next-Generation ATS (Sistemi ATE di Nuova Generazione)

PRAGMA ENGINEERING Srl. Next-Generation ATS (Sistemi ATE di Nuova Generazione) Rome 30/05/2007 PRAGMA ENGINEERING Srl Next-Generation ATS (Sistemi ATE di Nuova Generazione) Rome 30/05/2007 Mission & Vision Pragma Engineering supplies design and development services, manufacturing

More information

N.K. Srivastava GM-R&M-Engg.Services NTPC- CC/Noida nksrivastava@ntpceoc.co.in

N.K. Srivastava GM-R&M-Engg.Services NTPC- CC/Noida nksrivastava@ntpceoc.co.in N.K. Srivastava GM-R&M-Engg.Services NTPC- CC/Noida nksrivastava@ntpceoc.co.in JULY 2012 ARC- Transforming Industry and Infrastructure through New Processes and Technologies Presentation Road Map Introduction

More information

NI Global Services. Innovate With Confidence Reduce Development Time Minimize Long-Term Maintenance Costs. ni.com/services

NI Global Services. Innovate With Confidence Reduce Development Time Minimize Long-Term Maintenance Costs. ni.com/services NI Global Services Innovate With Confidence Reduce Development Time Minimize Long-Term Maintenance Costs Committed to Your Success National Instruments provides global services and support as part of our

More information

Oracle EBS Service Contracts Extensions for Oracle Endeca

Oracle EBS Service Contracts Extensions for Oracle Endeca Oracle EBS Service Contracts Extensions for Oracle Endeca Amit Jha Project Leader, Product Management Oracle EBS Procurement & Contracts October 02, 2014 Safe Harbor Statement The following is intended

More information

Manage Software Development in LabVIEW with Professional Tools

Manage Software Development in LabVIEW with Professional Tools Manage Software Development in LabVIEW with Professional Tools Introduction For many years, National Instruments LabVIEW software has been known as an easy-to-use development tool for building data acquisition

More information

SERVICES. Designing, deploying and supporting world class communications solutions.

SERVICES. Designing, deploying and supporting world class communications solutions. Designing, deploying and supporting world class communications solutions. DESIGN Expertise, technologies, tools and ideas Business environments, regulation, expansion and obsolescence are drivers that

More information

Engr. M. Fahad Khan Lecturer Software Engineering Department University Of Engineering & Technology Taxila

Engr. M. Fahad Khan Lecturer Software Engineering Department University Of Engineering & Technology Taxila Engr. M. Fahad Khan Lecturer Software Engineering Department University Of Engineering & Technology Taxila Application Architectures Ref: Chapter 13 Software Engineering By Ian Sommerville, 7th Edition

More information

Certified Lead System Architect

Certified Lead System Architect White Paper Certified Lead System Architect EXAM BLUEPRINT Copyright 2016 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain

More information

Everything you need to know about Hosted Contact Centre Solutions

Everything you need to know about Hosted Contact Centre Solutions Everything you need to know about Hosted Contact Centre Solutions Reference: A Global Speech Networks Whitepaper Version: 1.1 Global Speech Networks Pty Ltd Level 8, 636 St Kilda Road Melbourne, Victoria

More information

Product. LoanLaunch TM Single-Platform Loan Origination Processing with a Holistic View of Borrower Transactions across All Products and Channels

Product. LoanLaunch TM Single-Platform Loan Origination Processing with a Holistic View of Borrower Transactions across All Products and Channels Product LoanLaunch TM Single-Platform Loan Origination Processing with a Holistic View of Borrower Transactions across All Products and Channels Product LoanLaunch TM from Fiserv, a single-platform solution

More information

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines

Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines Operating System Concepts 3.1 Common System Components

More information

Smarter Balanced Assessment Consortium. Recommendation

Smarter Balanced Assessment Consortium. Recommendation Smarter Balanced Assessment Consortium Recommendation Smarter Balanced Quality Assurance Approach Recommendation for the Smarter Balanced Assessment Consortium 20 July 2012 Summary When this document was

More information

Could a Managed Services Agreement Save Your Company Tens of Thousands of Dollars Each Year?

Could a Managed Services Agreement Save Your Company Tens of Thousands of Dollars Each Year? MANAGED IT SERVICES Could a Managed Services Agreement Save Your Company Tens of Thousands of Dollars Each Year? A lot of business owners, executives, and managers have a love-hate relationship with managed

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Your Guide to Getting Started with IVI Drivers Revision 1.0 Contents Chapter 1 Introduction............................................. 9 Purpose.................................................

More information

Development Hints and Best Practices for Using Instrument Drivers

Development Hints and Best Practices for Using Instrument Drivers Application Note Juergen Engelbrecht 17-Jan-13-1MA153_11e Development Hints and Best Practices for Using Instrument Drivers Application Note Products: Instrument Drivers This document answers frequently

More information

ni.com/services NI Services

ni.com/services NI Services ni.com/services NI Services Service You Can Trust Success You Can Measure NI delivers services as part of its commitment to your success in efficiently designing, developing, and maintaining high-quality

More information

a. Inheritance b. Abstraction 1. Explain the following OOPS concepts with an example

a. Inheritance b. Abstraction 1. Explain the following OOPS concepts with an example 1. Explain the following OOPS concepts with an example a. Inheritance It is the ability to create new classes that contain all the methods and properties of a parent class and additional methods and properties.

More information

Open networks: Turning the vision into reality

Open networks: Turning the vision into reality Open networks: Turning the vision into reality Today s growing ecosystem of open networking technologies helps IT leaders deliver exceptional agility, scalability and manageability to their data center

More information

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 3, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts

More information

Manjrasoft Market Oriented Cloud Computing Platform

Manjrasoft Market Oriented Cloud Computing Platform Manjrasoft Market Oriented Cloud Computing Platform Innovative Solutions for 3D Rendering Aneka is a market oriented Cloud development and management platform with rapid application development and workload

More information

Japan Communication India Skill Development Center

Japan Communication India Skill Development Center Japan Communication India Skill Development Center Java Application System Developer Course Detail Track 3 Java Application Software Developer: Phase1 SQL Overview 70 Querying & Updating Data (Review)

More information

Database Toolkit: Portable and Cost Effective Software

Database Toolkit: Portable and Cost Effective Software Database Toolkit: Portable and Cost Effective Software By Katherine Ye Recursion Software, Inc. TABLE OF CONTENTS Abstract...2 Why using ODBC...2 Disadvantage of ODBC...3 Programming with Database Toolkit...4

More information

LAN extensions for Instrumentation

LAN extensions for Instrumentation LAN extensions for Instrumentation LXI: It s About Your Time It took years for Ethernet and the Web to transform the way we work. Now it s time for both to transform test systems. That s why leading test

More information

Development Hints and Best Practices for Using Instrument Drivers

Development Hints and Best Practices for Using Instrument Drivers Application Note Juergen Engelbrecht 12-Jan-15-1MA153_14e Development Hints and Best Practices for Using Instrument Drivers Application Note Products: Instrument Drivers This document answers frequently

More information

GSAW 2010. C2 System Advantages Sought, Lessons Learned, and Product Philosophies. Ryan Telkamp. Presenter name Presenter Title

GSAW 2010. C2 System Advantages Sought, Lessons Learned, and Product Philosophies. Ryan Telkamp. Presenter name Presenter Title GSAW 2010 Evolution of a Service Oriented Architecture t (SOA) C2 System Advantages Sought, Lessons Learned, and Product Philosophies Ryan Telkamp Presenter name Presenter Title BOEING is a trademark of

More information

Philosophy of GIMnet

Philosophy of GIMnet Philosophy of GIMnet Software Modularity and Reusability through Service Oriented Architecture and Hardware Abstraction Introduction GIMnet MaCI GIMnet = tcphub + GIMI Enables communication between distributed

More information

Agilent N2717A Service Software Performance Verification and Adjustment Software for the Agilent ESA Spectrum Analyzers Product Overview

Agilent N2717A Service Software Performance Verification and Adjustment Software for the Agilent ESA Spectrum Analyzers Product Overview Agilent N2717A Service Software Performance Verification and Adjustment Software for the Agilent ESA Spectrum Analyzers Product Overview Reduce your cost of ownership by minimizing time to calibrate and

More information

GO LIVE, ON TIME, ON BUDGET

GO LIVE, ON TIME, ON BUDGET GO LIVE, ON TIME, ON BUDGET HOW TO OPTIMISE SAP Implementations AND UPGRADES THE PROBLEM IT leaders are familiar with demands-juggling ; a skill that reflects the success of IT. Business software systems

More information

TranScend. Next Level Payment Processing. Product Overview

TranScend. Next Level Payment Processing. Product Overview TranScend Next Level Payment Processing Product Overview Product Functions & Features TranScend is the newest, most powerful, and most flexible electronics payment system from INTRIX Technology, Inc. It

More information

Hands-On: Introduction to Object-Oriented Programming in LabVIEW

Hands-On: Introduction to Object-Oriented Programming in LabVIEW Version 13.11 1 Hr Hands-On: Introduction to Object-Oriented Programming in LabVIEW Please do not remove this manual. You will be sent an email which will enable you to download the presentations and an

More information

How to Measure Network Performance by Using NGNs

How to Measure Network Performance by Using NGNs Speech Quality Measurement Tools for Dynamic Network Management Simon Broom, Mike Hollier Psytechnics, 23 Museum Street, Ipswich, Suffolk, UK IP1 1HN Phone +44 (0)1473 261800, Fax +44 (0)1473 261880 simon.broom@psytechnics.com

More information

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing www.imcfamos.com imc FAMOS at a glance Four editions to Optimize

More information

Johannes Sametinger. C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria

Johannes Sametinger. C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria OBJECT-ORIENTED DOCUMENTATION C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria Abstract Object-oriented programming improves the reusability of software

More information

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs MS-40074: Microsoft SQL Server 2014 for Oracle DBAs Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills and experience as an Oracle

More information

Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area

Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area Seminar in Software and Service Engineering: Software Ecosystems and Infrastructures Lecture 1: Background to the topic area Kari Smolander kari.smolander@aalto.fi Course details Topic area Objectives

More information

Rapid Game Development Using Cocos2D-JS

Rapid Game Development Using Cocos2D-JS Rapid Game Development Using Cocos2D-JS An End-To-End Guide to 2D Game Development using Javascript Hemanthkumar and Abdul Rahman This book is for sale at http://leanpub.com/cocos2d This version was published

More information

ni.com/sts NI Semiconductor Test Systems

ni.com/sts NI Semiconductor Test Systems ni.com/sts NI Semiconductor Test Systems Lower the Cost of Test With Semiconductor Test Systems The Semiconductor Test System (STS) series features fully production-ready test systems that use NI technology

More information

Fundamentals of Java Programming

Fundamentals of Java Programming Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors

More information

Application Centric Infrastructure Object-Oriented Data Model: Gain Advanced Network Control and Programmability

Application Centric Infrastructure Object-Oriented Data Model: Gain Advanced Network Control and Programmability White Paper Application Centric Infrastructure Object-Oriented Data Model: Gain Advanced Network Control and Programmability What You Will Learn This document discusses application centric infrastructure

More information

OSA-RTS 2 2015. 2 0 2 1 0 5 1 5 SPHE H RE R A A

OSA-RTS 2 2015. 2 0 2 1 0 5 1 5 SPHE H RE R A A SPHEREA Technology National Instruments Automated Test Summit 2 July 2015. Presentation: Tools Overview OSA-RTS Module Presenter: Chris Gorringe. SPHEREA: A GLOBAL COMPANY SPECIALISING IN TEST SYSTEMS

More information

GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS

GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS Embedded Systems White Paper GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS September 2009 ABSTRACT Android is an open source platform built by Google that includes an operating system,

More information

Structured Products. Designing a modern portfolio

Structured Products. Designing a modern portfolio ab Structured Products Designing a modern portfolio Achieving your personal goals is the driving motivation for how and why you invest. Whether your goal is to grow and preserve wealth, save for your children

More information

Achieve greater efficiency in asset management by managing all your asset types on a single platform.

Achieve greater efficiency in asset management by managing all your asset types on a single platform. Asset solutions To support your business objectives Achieve greater efficiency in asset by managing all your asset types on a single platform. Obtain an entirely new level of asset awareness Every company

More information

SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION

SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION 1 SIGNAL GENERATORS and OSCILLOSCOPE CALIBRATION By Lannes S. Purnell FLUKE CORPORATION 2 This paper shows how standard signal generators can be used as leveled sine wave sources for calibrating oscilloscopes.

More information

Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture

Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture Review from last time CS 537 Lecture 3 OS Structure What HW structures are used by the OS? What is a system call? Michael Swift Remzi Arpaci-Dussea, Michael Swift 1 Remzi Arpaci-Dussea, Michael Swift 2

More information

Analysis of Native and Cross-Platform Methods for Mobile Application Development. [ Whitepaper] Praveen Kumar S

Analysis of Native and Cross-Platform Methods for Mobile Application Development. [ Whitepaper] Praveen Kumar S [ Whitepaper] Analysis of Native and Cross-Platform Methods for Mobile Application Development Praveen Kumar S Abstract Brands today use smartphones and tablets to reach out to consumers. However, it is

More information

Obsolescence Management for Industrial Assets. Don Ogwude President Creative Systems International

Obsolescence Management for Industrial Assets. Don Ogwude President Creative Systems International Obsolescence Management for Industrial Assets Don Ogwude President Creative Systems International Presented by Don Ogwude Mr. Don A. Ogwude is president and CEO of Creative Systems International. He has

More information

Object Oriented Databases. OOAD Fall 2012 Arjun Gopalakrishna Bhavya Udayashankar

Object Oriented Databases. OOAD Fall 2012 Arjun Gopalakrishna Bhavya Udayashankar Object Oriented Databases OOAD Fall 2012 Arjun Gopalakrishna Bhavya Udayashankar Executive Summary The presentation on Object Oriented Databases gives a basic introduction to the concepts governing OODBs

More information

Wait-Time Analysis Method: New Best Practice for Performance Management

Wait-Time Analysis Method: New Best Practice for Performance Management WHITE PAPER Wait-Time Analysis Method: New Best Practice for Performance Management September 2006 Confio Software www.confio.com +1-303-938-8282 SUMMARY: Wait-Time analysis allows IT to ALWAYS find the

More information

Visionet IT Modernization Empowering Change

Visionet IT Modernization Empowering Change Visionet IT Modernization A Visionet Systems White Paper September 2009 Visionet Systems Inc. 3 Cedar Brook Dr. Cranbury, NJ 08512 Tel: 609 360-0501 Table of Contents 1 Executive Summary... 4 2 Introduction...

More information

Operating System Components

Operating System Components Lecture Overview Operating system software introduction OS components OS services OS structure Operating Systems - April 24, 2001 Operating System Components Process management Memory management Secondary

More information

TOP TEN CONSIDERATIONS

TOP TEN CONSIDERATIONS White Paper TOP TEN CONSIDERATIONS FOR CHOOSING A SERVER VIRTUALIZATION TECHNOLOGY Learn more at www.swsoft.com/virtuozzo Published: July 2006 Revised: July 2006 Table of Contents Introduction... 3 Technology

More information

Quareo ICM Server Software

Quareo ICM Server Software The Quareo Infrastructure Configuration Manager (ICM) is a server software application designed to document and administer both passive and active network connectivity infrastructure. ICM enables management

More information

Assessing the Business Value of SDN Datacenter Security Solutions

Assessing the Business Value of SDN Datacenter Security Solutions IDC SOLUTION BRIEF Assessing the Business Value of SDN Datacenter Security Solutions Sponsored by: Cisco Pete Lindstrom Matthew Marden May 2015 Richard L. Villars Overview CTOs, CIOs, and application architects

More information

Long-term data storage in the media and entertainment industry: StrongBox LTFS NAS archive delivers 84% reduction in TCO

Long-term data storage in the media and entertainment industry: StrongBox LTFS NAS archive delivers 84% reduction in TCO Long-term data storage in the media and entertainment industry: StrongBox LTFS NAS archive delivers 84% reduction in TCO Lowering Long-term Archive Storage Costs with Crossroads Systems StrongBox, Brad

More information

VBLOCK SOLUTION FOR SAP: SIMPLIFIED PROVISIONING FOR OPERATIONAL EFFICIENCY

VBLOCK SOLUTION FOR SAP: SIMPLIFIED PROVISIONING FOR OPERATIONAL EFFICIENCY VBLOCK SOLUTION FOR SAP: SIMPLIFIED PROVISIONING FOR OPERATIONAL EFFICIENCY August 2011 2011 VCE Company, LLC. All rights reserved. 1 Table of Contents Introduction... 3 Purpose... 3 Audience... 3 Scope...

More information

JavaPOS TM Introduction: 1

JavaPOS TM Introduction: 1 JavaPOS TM Introduction: 1 It was recognized early on that the emergence of the Java language on the computing scene offered several major advantages to the developers of retail applications. The JavaPOS

More information

Customer Support Policy

Customer Support Policy Customer Support Policy This Customer Support Policy ( Policy ) describes the Support that Invenias provides to Customers that have paid all applicable fees and that are using Licensed Software in a Supported

More information

MAESTRO 7. Multichannel Analyzer (MCA) Application Software

MAESTRO 7. Multichannel Analyzer (MCA) Application Software 7 Multichannel Analyzer (MCA) Application Software Advanced Features Windows 7 (32-bit and 64-bit) and Windows XP (32-bit) compatible. ORTEC CONNECTIONS 32- and 64-bit network connectivity: local and remote

More information

ENZO UNIFIED SOLVES THE CHALLENGES OF REAL-TIME DATA INTEGRATION

ENZO UNIFIED SOLVES THE CHALLENGES OF REAL-TIME DATA INTEGRATION ENZO UNIFIED SOLVES THE CHALLENGES OF REAL-TIME DATA INTEGRATION Enzo Unified Solves Real-Time Data Integration Challenges that Increase Business Agility and Reduce Operational Complexities CHALLENGES

More information

Select the right configuration management database to establish a platform for effective service management.

Select the right configuration management database to establish a platform for effective service management. Service management solutions Buyer s guide: purchasing criteria Select the right configuration management database to establish a platform for effective service management. All business activities rely

More information

Building Your EDI Modernization Roadmap

Building Your EDI Modernization Roadmap Simplify and Accelerate e-business Integration Building Your EDI Modernization Roadmap Background EDI Modernization Drivers Lost revenue due to missing capabilities or poor scorecard ratings High error

More information

Configuring and Managing Microsoft System Center Essentials 2010

Configuring and Managing Microsoft System Center Essentials 2010 Configuring and Managing Microsoft System Center Essentials 2010 50373: Configuring and Managing Microsoft System Center Essentials 2010 (2 Days) About this Course This two-day instructor-led course provides

More information

Input/Output Subsystem in Singularity Operating System

Input/Output Subsystem in Singularity Operating System University of Warsaw Faculty of Mathematics, Computer Science and Mechanics Marek Dzikiewicz Student no. 234040 Input/Output Subsystem in Singularity Operating System Master s Thesis in COMPUTER SCIENCE

More information

Reducing Configuration Complexity with Next Gen IoT Networks

Reducing Configuration Complexity with Next Gen IoT Networks Reducing Configuration Complexity with Next Gen IoT Networks Orama Inc. November, 2015 1 Network Lighting Controls Low Penetration - Why? Commissioning is very time-consuming & expensive Network configuration

More information

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper

Parsing Technology and its role in Legacy Modernization. A Metaware White Paper Parsing Technology and its role in Legacy Modernization A Metaware White Paper 1 INTRODUCTION In the two last decades there has been an explosion of interest in software tools that can automate key tasks

More information

GPIB TUTORIAL BACKGROUND INTRODUCTION

GPIB TUTORIAL BACKGROUND INTRODUCTION Pagina 1 di 13 GPIB TUTORIAL BACKGROUND Instrumentation has always leveraged off widely used electronics technology to drive its innovation. The jeweled movement of the clock was first used to build analog

More information

Swirl. Multiplayer Gaming Simplified. CS4512 Systems Analysis and Design. Assignment 1 2010. Marque Browne 0814547. Manuel Honegger - 0837997

Swirl. Multiplayer Gaming Simplified. CS4512 Systems Analysis and Design. Assignment 1 2010. Marque Browne 0814547. Manuel Honegger - 0837997 1 Swirl Multiplayer Gaming Simplified CS4512 Systems Analysis and Design Assignment 1 2010 Marque Browne 0814547 Manuel Honegger - 0837997 Kieran O' Brien 0866946 2 BLANK MARKING SCHEME 3 TABLE OF CONTENTS

More information

Enterprise Data Fabric: A Critical Foundation for Risk Management

Enterprise Data Fabric: A Critical Foundation for Risk Management THE ENTERPRISE DATA FABRIC Enterprise Data Fabric: A Critical Foundation for Risk Management EXECUTIVE SUMMARY Enterprise Risk Management (ERM) is an increasingly important initiative for financial service

More information

Borland Delphi 6 Product Certification. Study Guide. Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved.

Borland Delphi 6 Product Certification. Study Guide. Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved. Borland Delphi 6 Product Certification Study Guide Version 1.0 Copyright 2001 Borland Software Corporation. All Rights Reserved. Introduction This study guide is designed to walk you through requisite

More information

www.repstor.com Maximise your Microsoft investment to provide Legal Matter Management

www.repstor.com Maximise your Microsoft investment to provide Legal Matter Management www.repstor.com Maximise your Microsoft investment to provide Legal Matter Management Maximise your Microsoft investment to provide Legal Matter Management custodian for legal extends the powerful document

More information

Line of Business Solutions Complement Large Scale Postmodern ERP Deployment Strategies by Cultura Technologies

Line of Business Solutions Complement Large Scale Postmodern ERP Deployment Strategies by Cultura Technologies Line of Business Solutions Complement Large Scale Postmodern ERP Deployment Strategies by Cultura Technologies Executive Summary Highly specialized Line of Business (LOB) solutions, such as AGRIS and CINCH,

More information

ENTERPRISE ARCHITECTUE OFFICE

ENTERPRISE ARCHITECTUE OFFICE ENTERPRISE ARCHITECTUE OFFICE Date: 12/8/2010 Enterprise Architecture Guiding Principles 1 Global Architecture Principles 1.1 GA1: Statewide Focus 1.1.1 Principle Architecture decisions will be made based

More information

ALTIRIS Deployment Solution 6.8 PXE Overview

ALTIRIS Deployment Solution 6.8 PXE Overview ALTIRIS Deployment Solution 6.8 PXE Overview Notice Altiris AAA Document 2006 Altiris, Inc. All rights reserved. Document Date: October 3, 2006 Altiris, Inc. is a pioneer of IT lifecycle management software

More information

Enhance Production in 6 Steps Using Preventive Maintenance

Enhance Production in 6 Steps Using Preventive Maintenance Enhance Production in 6 Steps Using Preventive Maintenance 1 Enhance Production in 6 Steps Using Preventive Maintenance Preventive Maintenance (PM) is 30% less expensive than reactive approaches Using

More information

Configuring Microsoft Project Server

Configuring Microsoft Project Server Configuring Microsoft Project Server for Microsoft Project 2013 Length: 1 Day Course Overview After attending this course you will be able to Understand Project Server s capabilities and know how to set

More information