Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer

Size: px
Start display at page:

Download "Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer"

Transcription

1 An Introduction to NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by y Teerwat Issariyakul

2 Outline Overview Installation An Example Incorporate C++ Modules into NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by y Teerwat Issariyakul

3 Overview: Network Simulation 3 Simulation i Main Steps 1. Design Things to simulate Assumptions Performance measure 2. Simulation by y Network Configuration Phase Simulation Phase 3. Result Compilation i Debugging and Tracing Compute performance meaures Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Teerwat Issariyakul 3

4 Overview: NS2 Architecturectur NS2 = Network Simulator 2 Consists of C++: Internal mechanism OTcl: User interface TclCL: Connecting C++ to OTcl y Teerwat Issariyakul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Pre

5 Overview: NS2 Invocation Syntax >> ns [<filename>] [<args>] No argument: Enter NS2 environment <filename> = Tcl simulation script; Use OTcl programming lauguage In the Tcl file, <args> is stores in the internal variable ( $argv ). Example >> ns myfirst_ns.tcl To retrieve the second input argument (2), execute ( lindex $argv 1 ) Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer ed by y Teerwat Issariyakul

6 Outline Overview Installation An Example Incorporate C++ Modules into NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by y Teerwat Issariyakul

7 Installation: NS2 1. Go to NS2 web page: NS2 Webpage: /nsnam Download Link: build.html#allinone1. l# ll 2. Get all-in-one package NS2, Tcl/Tk, OTcl, TclCL NAM, Zlib, Xgraph 3. Unzip all the files 4. Use the installation tio package./install /i Follow the instruction yi NS2 is designed for Unix For windows, also install Cygwin by Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepar edd Teerwat Issariya yakul

8 Installation: Cygwin Cygwin = Linux emulation for windows 1. Go to Cygwin Webpage: 2. Get the package 3. Install the basic package 4. Install the following owing additional packages: Teerwat Issariya yakul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prep

9 Outline Overview Installation An Example Incorporate C++ Modules into NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by y Teerwat Issariyakul

10 A Network Simulation Example sarimp ssa akul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepa

11 Tcl Simulation Script Filename myfirst_ns.tcl Create a simulator Create trace objects Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prep ed y Teerwat Issariya tyakul

12 A Network Simulation Example Define a finish proceduer sarimp t Issa akul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prep

13 A Network Simulation Example Create nodes sarimp at Issa akul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer

14 A Network Simulation Example sarimp eerw ssa akul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepa

15 A Network Simulation Example sarimp Connect node with duplex links at Issa akul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer

16 A Network Simulation Example Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Preparee sarimp by eerw ssa akul

17 A Network Simulation Example Create a flow from n0 to n3 Create a UDP flow sarimp wat Issa akul Attach a CBR source to the UDP flow Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by

18 A Network Simulation Example Create a flow from n1 to n4 Create a TCP flow sarimp wat Issa akul by Attach a FTP source to the TCP flow repa Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer af

19 A Network Simulation Example Schedule Events by y Start simulation Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer sarimp Te at Issa akul

20 A Network Simulation Example We are in step two of network simulation Step 1 = ( Design ) Step 3 = ( Result Compilation ) Sub-Step The part of the code by y 1. (Network Configuration) (the rest of the codes ) 2. (Simulation( ) ($ns( run ) 3. ( ) ( ) Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer sarimp Teerwat Issa akul

21 A Network Simulation Example Results? (files out.tr and out.nam ) {enque(+),deque( deque(-) ),receive(r),drop(d)} Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepare d b ssariyakul 21

22 Outline Overview Installation An Example Incorporate C++ Modules into NS2 Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by y Teerwat Issariyakul

23 New Modules NS2 Modules: C++ and OTcl Directories: i ~ns ~tclcl See Also: htm Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer by Teerw erwat Issariyakul 23

24 New Modules New Modules Need to recompile and links all NEW modules Use make utility byy Make contains a set of things that will be done ewhen make is executed from the command prompt. Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer ed t Teerwa sariyakul Issa

25 Make Utility Make usage >> make [-f <filename>] e>] Executed what specified in <filename> <filename> is called a file descriptor No file is given use file Makefile File descriptor Syntax <target1> [<target2> ] : [<dep1> <dep2> ] <command> Targets are remade if any of the dependency is changed The change is specified in the command. by y Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Teerwat Issariyakul

26 Example Make Utility cc-o channel main.o, fade.o, model.o Execute ( ) if ( ) is changed main.o, fade.o, and/or model.o Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepare wa ssa sariyakul

27 Make Utility Example: Use variables OBJS and COM ssariya yakul Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer

28 Makefile for NS2 Located in ~ns Key components: INCLUDES = : Directory OBJ_CC = : All NS2 object files NS_TCL_LIB B= : All NS2 OTcl files by y Put your files in these three components parents Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prepa d Teerwat Issariyakul

29 Makefile for NS2: Example Use *.o erw ssariyakul Use \ to separate lines Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer P d Prep

30 NS2 consists of Summary OTcl( user interface ) and C++ ( internal mechanism m ) Installation: NS2 + Cygwin An Example Make utility INCLUDE: Directory OBJ_CC: C++ Modules NS_TCL_LIB: OTcl Modules Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Prep pared by y Teerwat Issariya yakul

Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer

Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer Part I: NS2 Basics Textbook: T. Issariyakul and E. Hossain, Introduction to Network Simulator NS2, Springer 2008. 1 Prepared by y Teerwat Issariyakul The Basics Part I: Outline Simulation of computer networks

More information

VMMC Installation Guide (Windows NT) Version 2.0

VMMC Installation Guide (Windows NT) Version 2.0 VMMC Installation Guide (Windows NT) Version 2.0 The Shrimp Project Department of Computer Science Princeton University February 1999 About this Document Welcome to VMMC! This document describes how to

More information

Run Time Tester Requirements Document

Run Time Tester Requirements Document Run Time Tester Requirements Document P. Sherwood 7 March 2004 Version: 0.4 Status: Draft After review 2 March 2004 Contents 1 Introduction 2 1.1 Scope of the Requirements Document.....................

More information

Installing and Testing JMonkeyEngine (jme)

Installing and Testing JMonkeyEngine (jme) Installing and Testing JMonkeyEngine (jme) Andrew Davison, ad@fivedots.coe.psu.ac.th July 31st 2014 This document is to help students in 242-515 Animation and Game Development (AGD) install the jmonkeyengine

More information

Getting Started for Windows

Getting Started for Windows ViSP 2.9.0: Visual Servoing Platform Getting Started for Windows Lagadic project http://www.irisa.fr/lagadic February 18, 2014 François Chaumette Eric Marchand Nicolas Melchior Fabien Spindler 2 CONTENTS

More information

Customer Guide to ShoreTel TAPI- VoIP Integrations. March

Customer Guide to ShoreTel TAPI- VoIP Integrations. March Customer Guide to ShoreTel TAPI- VoIP Integrations March 2017 www.incontact.com Introduction Customer Guide to ShoreTel TAPI-VoIP Integrations Version: This guide should be used with NICE Uptivity (formerly

More information

Dosimeter Setting Device

Dosimeter Setting Device Instruction Manual Dosimeter Setting Device For Electronic Personal Dosimeter Dose-i (Unit:Sv, Version:1.05 English) WTA529748 a 1 / 38 Foreword Thank you for purchasing the Dosimeter Setting Device; a

More information

Intro to R. Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014

Intro to R. Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014 Intro to R Professor Clayton Nall h/t Thomas Leeper, Ph.D. (University of Aarhus) and Teppei Yamamoto, Ph.D. (MIT) June 26, 2014 Nall Intro to R 1 / 44 Nall Intro to R 2 / 44 1 Opportunities 2 Challenges

More information

LING/C SC 581: Advanced Computational Linguistics. Lecture 7 Jan 31 st

LING/C SC 581: Advanced Computational Linguistics. Lecture 7 Jan 31 st LING/C SC 581: Advanced Computational Linguistics Lecture 7 Jan 31 st Administrivia 1. There is no lecture 6. This lecture 7 replaces both 6 and 7. 2. Today's topic: WordNet 3. Today's homework (HW 6):

More information

GridMAT-MD: A Grid-based Membrane Analysis Tool for use with Molecular Dynamics

GridMAT-MD: A Grid-based Membrane Analysis Tool for use with Molecular Dynamics GridMAT-MD: A Grid-based Membrane Analysis Tool for use with Molecular Dynamics William J. Allen, Justin A. Lemkul, and David R. Bevan Department of Biochemistry, Virginia Tech User s Guide Version 1.0.2

More information

Problem 3: Simulated Rheumatoid Arthritis Data

Problem 3: Simulated Rheumatoid Arthritis Data Problem 3: Simulated Rheumatoid Arthritis Data Michael B Miller Michael Li Gregg Lind Soon-Young Jang The plan

More information

Cortex Gateway 2.0. Administrator Guide. September Document Version C

Cortex Gateway 2.0. Administrator Guide. September Document Version C Cortex Gateway 2.0 Administrator Guide September 2015 Document Version C Version C of the Cortex Gateway 2.0 Administrator Guide had been updated with editing changes. Contents Preface... 1 About Cortex

More information

LING 581: Advanced Computational Linguistics. Lecture Notes March 20th

LING 581: Advanced Computational Linguistics. Lecture Notes March 20th LING 581: Advanced Computational Linguistics Lecture Notes March 20th Today's Topics EVALB Graph WordNet Homework 7 Review Thanks for the PTB WSJ EVALB graphs so far Don't forget to run data points and

More information

Instructions for Use Audiometric Data Interface

Instructions for Use Audiometric Data Interface Instructions for Use Audiometric Data Interface D-0107046-B 2018/03 Table of Contents 1 Introduction... 1 1.1 About this Manual... 1 1.2 The ADI overview... 1 1.3 Implementation... 1 2 License... 2 3 Supported

More information

Visualization tools & demos and the ICSI Realization group

Visualization tools & demos and the ICSI Realization group Visualization tools & demos and the ICSI Realization group Dan Ellis International Computer Science Institute, Berkeley CA Outline 1 2 3 4 Visualization: Goals and philosophy Tour

More information

USER GUIDE FOR MATLAB BASED HEARING TEST SIMULATOR GUI FOR CLINICAL TESTING

USER GUIDE FOR MATLAB BASED HEARING TEST SIMULATOR GUI FOR CLINICAL TESTING 1 USER GUIDE FOR MATLAB BASED HEARING TEST SIMULATOR GUI FOR CLINICAL TESTING Serkan Tokgoz, Issa Panahi STATISTICAL SIGNAL PROCESSING LABORATORY (SSPRL) UNIVERSITY OF TEXAS AT DALLAS APRIL 2018 This work

More information

Getting Started for Unix platforms

Getting Started for Unix platforms ViSP 2.9.0: Visual Servoing Platform Getting Started for Unix platforms Lagadic project http://www.irisa.fr/lagadic February 18, 2014 Manikandan Bakthavatchalam François Chaumette Eric Marchand Nicolas

More information

CUCM Mixed Mode with Tokenless CTL

CUCM Mixed Mode with Tokenless CTL CUCM Mixed Mode with Tokenless CTL Document ID: 118893 Contributed by Milosz Zajac, Michal Myszor, and Leszek Wojnarski, Cisco TAC Engineers. Apr 08, 2015 Contents Introduction Prerequisites Requirements

More information

EHS QUICKSTART GUIDE RTLAB / CPU SECTION EFPGASIM TOOLBOX.

EHS QUICKSTART GUIDE RTLAB / CPU SECTION EFPGASIM TOOLBOX. EHS QUICKSTART GUIDE EFPGASIM TOOLBOX RTLAB / CPU SECTION www.opal-rt.com 1751 Richardson, suite 2525 Montréal (Québec) Canada H3K 1G6 www.opal-rt.com 2017 All rights reserved Printed in Canada Contents

More information

A Quick-Start Guide for rseqdiff

A Quick-Start Guide for rseqdiff A Quick-Start Guide for rseqdiff Yang Shi (email: shyboy@umich.edu) and Hui Jiang (email: jianghui@umich.edu) 09/05/2013 Introduction rseqdiff is an R package that can detect differential gene and isoform

More information

For Electric Personal Dosimete Dose-i

For Electric Personal Dosimete Dose-i Instruction Manual Dosime eter Setting Device For Electric Personal Dosimete er Dose-i (Unit:rem, Version:1.05 English) Issued on March 2015 WTA529893 1 / 38 Foreword Thank you for purchasing the Dosimeter

More information

TMWSuite. DAT Interactive interface

TMWSuite. DAT Interactive interface TMWSuite DAT Interactive interface DAT Interactive interface Using the DAT Interactive interface Using the DAT Interactive interface... 1 Setting up the system to use the DAT Interactive interface... 1

More information

Qualys PC/SCAP Auditor

Qualys PC/SCAP Auditor Qualys PC/SCAP Auditor Getting Started Guide November 15, 2017 COPYRIGHT 2011-2017 BY QUALYS, INC. ALL RIGHTS RESERVED. QUALYS AND THE QUALYS LOGO ARE REGISTERED TRADEMARKS OF QUALYS, INC. ALL OTHER TRADEMARKS

More information

P-B-54.30/141. Instrument Cluster SCN Coding for Component Replacement or Dealer Installed Accessories:

P-B-54.30/141. Instrument Cluster SCN Coding for Component Replacement or Dealer Installed Accessories: Date: August 2005 Order No.: Supersedes: Group: 54 P-B-54.30/141 SUBJECT: Model 171.454/456/473 All Model Years A. Introduction Instrument Cluster SCN Coding for Component Replacement or Dealer Installed

More information

Growing Flight Software Hands-On Experience: cfs and Educational Outreach

Growing Flight Software Hands-On Experience: cfs and Educational Outreach Growing Flight Software Hands-On Experience: cfs and Educational Outreach Allen Brown, Mathew Benson Flight Software California Institute of Technology Pasadena, CA Company Background Odyssey Space Research

More information

Clay Tablet Connector for hybris. User Guide. Version 1.5.0

Clay Tablet Connector for hybris. User Guide. Version 1.5.0 Clay Tablet Connector for hybris User Guide Version 1.5.0 August 4, 2016 Copyright Copyright 2005-2016 Clay Tablet Technologies Inc. All rights reserved. All rights reserved. This document and its content

More information

Lionbridge Connector for Hybris. User Guide

Lionbridge Connector for Hybris. User Guide Lionbridge Connector for Hybris User Guide Version 2.1.0 November 24, 2017 Copyright Copyright 2017 Lionbridge Technologies, Inc. All rights reserved. Published in the USA. March, 2016. Lionbridge and

More information

QuantiPhi for RL78 and MICON Racing RL78

QuantiPhi for RL78 and MICON Racing RL78 QuantiPhi for RL78 and MICON Racing RL78 Description: Using cutting-edge model-based design tools, you will design a strategy for a Renesas MICON car, a miniature, autonomous electric vehicle. You will

More information

CSDplotter user guide Klas H. Pettersen

CSDplotter user guide Klas H. Pettersen CSDplotter user guide Klas H. Pettersen [CSDplotter user guide] [0.1.1] [version: 23/05-2006] 1 Table of Contents Copyright...3 Feedback... 3 Overview... 3 Downloading and installation...3 Pre-processing

More information

Using ddd with postgres on the instructional computers

Using ddd with postgres on the instructional computers Using ddd with postgres on the instructional computers Sailesh Krishnamurthy University of California at Berkeley sailesh+cs186@cs.berkeley.edu January 31, 2003 1 Assumptions For the purpose of this document

More information

Implementation Guide for the DoseControl Dosimetry System

Implementation Guide for the DoseControl Dosimetry System 1.0 SCOPE The GEX DoseControl System is intended for use as a single dosimetry system solution, specifically developed to satisfy the generic dosimetry needs of radiation sterilization application users

More information

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42

Chapter 3 Software Packages to Install How to Set Up Python Eclipse How to Set Up Eclipse... 42 Table of Contents Preface..... 21 About the Authors... 23 Acknowledgments... 24 How This Book is Organized... 24 Who Should Buy This Book?... 24 Where to Find Answers to Review Questions and Exercises...

More information

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S.

Benchmark Dose Modeling Cancer Models. Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. Benchmark Dose Modeling Cancer Models Allen Davis, MSPH Jeff Gift, Ph.D. Jay Zhao, Ph.D. National Center for Environmental Assessment, U.S. EPA Disclaimer The views expressed in this presentation are those

More information

PSA-3002 Compact PowerSync Analyzer IEEE 802.3at Power over Ethernet

PSA-3002 Compact PowerSync Analyzer IEEE 802.3at Power over Ethernet Compact IEEE 802.3at Power over Ethernet Product Overview PSA-3000 LLDP Trace April 23 2010 11:13 AM PSE Port Trace Type Requested Allocated Echo Time Alloc Time Init. Time Time To Live PSA Address: 192.168.221.106

More information

Using ddd with postgres on the instructional computers

Using ddd with postgres on the instructional computers Using ddd with postgres on the instructional computers CS186 Staff University of California at Berkeley September 6, 2005 1 Assumptions For the purpose of this document I will assume that we are working

More information

Review Questions in Introductory Knowledge... 37

Review Questions in Introductory Knowledge... 37 Table of Contents Preface..... 17 About the Authors... 19 How This Book is Organized... 20 Who Should Buy This Book?... 20 Where to Find Answers to Review Questions and Exercises... 20 How to Report Errata...

More information

Author : admin. In this post, I will shortly explain how a picture of a command running in console or terminal in GNU / Linux can be made

Author : admin. In this post, I will shortly explain how a picture of a command running in console or terminal in GNU / Linux can be made How to make screenshot in /dev/tty console on GNU / Linux - Taking picture JPEG / PNG snapshot of text console in systems without graphical environment Author : admin I'm used to making picture screenshots

More information

POST INSTALLATION STEPS FOR SHORETEL CONNECT, SHORETEL COMMUNICATOR AND FAQ

POST INSTALLATION STEPS FOR SHORETEL CONNECT, SHORETEL COMMUNICATOR AND FAQ POST INSTALLATION STEPS FOR SHORETEL CONNECT, SHORETEL COMMUNICATOR AND FAQ POST INSTALLATION STEPS SHORETEL CONNECT: If you are using ShoreTel Connect with Jabra Direct then you need to follow the below

More information

Comparing heritability estimates for twin studies + : & Mary Ellen Koran. Tricia Thornton-Wells. Bennett Landman

Comparing heritability estimates for twin studies + : & Mary Ellen Koran. Tricia Thornton-Wells. Bennett Landman Comparing heritability estimates for twin studies + : & Mary Ellen Koran Tricia Thornton-Wells Bennett Landman January 20, 2014 Outline Motivation Software for performing heritability analysis Simulations

More information

Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets

Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets Instructions for the ECN201 Project on Least-Cost Nutritionally-Adequate Diets John P. Burkett October 15, 2015 1 Overview For this project, each student should (a) determine her or his nutritional needs,

More information

SAP Hybris Academy. Public. February March 2017

SAP Hybris Academy. Public. February March 2017 SAP Hybris Academy Public February March 2017 Agenda Introduction SAP Hybris Academy Overview Java Knowledge Needed for SAP Hybris Development HY200 SAP Hybris Commerce Functional Analyst: Course Content

More information

NFT User Guide Release Date 01/09/2018

NFT User Guide Release Date 01/09/2018 NFT User Guide Release Date 01/09/2018 Center for Information Management, Inc. Table of Contents NFT List... 4 NFT Process Overview and Features... 10 NFT Process Steps... 12 Step 1: Agent clicks [Add]

More information

I. Setup. - Note that: autohgpec_v1.0 can work on Windows, Ubuntu and Mac OS.

I. Setup. - Note that: autohgpec_v1.0 can work on Windows, Ubuntu and Mac OS. autohgpec: Automated prediction of novel disease-gene and diseasedisease associations and evidence collection based on a random walk on heterogeneous network Duc-Hau Le 1,*, Trang T.H. Tran 1 1 School

More information

Development of an Expert System for Distinguishing Headaches from Migraines

Development of an Expert System for Distinguishing Headaches from Migraines Development of an Expert System for Distinguishing Headaches from Migraines By D. KOPEC*, G. SHAGAS*, J. SELMAN**, D. REINHARTH**, S. TAMANG* * Department of Computer and Information Science, Brooklyn

More information

DICOM Tractography Converter

DICOM Tractography Converter DICOM Tractography Converter Ye Wu 1,2, Fan Zhang 1, Isaiah Norton 1, Lauren J. O'Donnell 1 1 Brigham and Women s Hospital, Harvard Medical School, USA 2 Zhejiang University of Technology, China Learning

More information

OECD QSAR Toolbox v.4.2. An example illustrating RAAF scenario 6 and related assessment elements

OECD QSAR Toolbox v.4.2. An example illustrating RAAF scenario 6 and related assessment elements OECD QSAR Toolbox v.4.2 An example illustrating RAAF scenario 6 and related assessment elements Outlook Background Objectives Specific Aims Read Across Assessment Framework (RAAF) The exercise Workflow

More information

Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model

Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model Paulette Acheson, Cihan Dagli Engineering Management & Systems Engineering Department

More information

Lab 4: Compartmental Model of Binaural Coincidence Detector Neurons

Lab 4: Compartmental Model of Binaural Coincidence Detector Neurons Lab 4: Compartmental Model of Binaural Coincidence Detector Neurons Introduction The purpose of this laboratory exercise is to give you hands-on experience with a compartmental model of a neuron. Compartmental

More information

Mitglied der Helmholtz-Gemeinschaft. Advanced System Monitoring in PTP

Mitglied der Helmholtz-Gemeinschaft. Advanced System Monitoring in PTP Mitglied der Helmholtz-Gemeinschaft Advanced System Monitoring in PTP November 19, 2013 Wolfgang Frings and Carsten Karbach Content 1 PTP System Monitoring status quo 2 Short term enhancements 3 Long term

More information

Medtech32 Diabetes Get Checked II Advanced Form Release Notes

Medtech32 Diabetes Get Checked II Advanced Form Release Notes Medtech32 Diabetes Get Checked II Advanced Form Release Notes These Release Notes contain important information for all Medtech32 Users. Please ensure that they are circulated amongst all your staff. We

More information

Bangor University Laboratory Exercise 1, June 2008

Bangor University Laboratory Exercise 1, June 2008 Laboratory Exercise, June 2008 Classroom Exercise A forest land owner measures the outside bark diameters at.30 m above ground (called diameter at breast height or dbh) and total tree height from ground

More information

Research Methodology. Introduction 10/18/2016. Introduction. User name: cp6691 Password: stats.

Research Methodology. Introduction 10/18/2016. Introduction.   User name: cp6691 Password: stats. Research Methodology 1 http://spectrum.troy.edu/drsmall/ Web Page User name: cp6691 Password: stats 2 Pieces of the Puzzle Chapter 2 Literature Review Chapter 1 Chapter 3 Methodology No Data Collection

More information

ImageJ plugin for semiautomatic measurement of roentgenological attachment level

ImageJ plugin for semiautomatic measurement of roentgenological attachment level ImageJ plugin for semiautomatic measurement of roentgenological attachment level User manual and installation instructions v. 1.1, June 2015 The plugin is written by Gerald R. Torgersen 1 based on the

More information

PSA-3048 RackPack PowerSync Analyzer IEEE 802.3at Power over Ethernet

PSA-3048 RackPack PowerSync Analyzer IEEE 802.3at Power over Ethernet RackPack PowerSync Analyzer IEEE 802.3at Power over Ethernet Product Overview Watts Watts Seconds Seconds Seconds Seconds PSA-3000 LLDP Trace April 23 2010 11:13 AM PSE Port Trace Type Requested Allocated

More information

PSA-3048 RackPack PowerSync Analyzer IEEE 802.3at Power over Ethernet

PSA-3048 RackPack PowerSync Analyzer IEEE 802.3at Power over Ethernet RackPack IEEE 802.3at Power over Ethernet Product Overview Key Features 48 Port Bundled Reduced Cost / Port Continuous PSE Loading > 42 Watts Per Test Port Continuous 4-Pair PSE Loading to 95 Watts Per

More information

Process Mining to enhance security of Web information systems

Process Mining to enhance security of Web information systems Process Mining to enhance security of Web information systems Simona Bernardi, Raúl Piracés Alastuey, and Raquel Trillo Lado Paris, 29th April 2017 Simona Bernardi, Raúl Piracés Alastuey, and Raquel Trillo

More information

SAGE. Nick Beard Vice President, IDX Systems Corp.

SAGE. Nick Beard Vice President, IDX Systems Corp. SAGE Nick Beard Vice President, IDX Systems Corp. Sharable Active Guideline Environment An R&D consortium to develop the technology infrastructure to enable computable clinical guidelines, that will be

More information

Introduction to Experiment Design

Introduction to Experiment Design Performance Evaluation: Introduction to Experiment Design Hongwei Zhang http://www.cs.wayne.edu/~hzhang The first ninety percent of the task takes ten percent of the time, and the last ten percent takes

More information

CDT 6.0 Galileo Release Review. Doug Schaefer CDT Project Lead

CDT 6.0 Galileo Release Review. Doug Schaefer CDT Project Lead CDT 6.0 Galileo Release Review Doug Schaefer CDT Project Lead Features N&N: http://wiki.eclipse.org/cdt/user/newin60 The Debug Services Framework has completed move to CDT and is a new component of CDT

More information

Wimba Classroom Captioner Guide

Wimba Classroom Captioner Guide Wimba Classroom Captioner Guide Wimba Classroom Captioner Guide 1 Background 1 Best Practices 1 Enabling Closed Captioning 2 Captioning a Live Presentation 2 Using the Wimba Classroom Interface 2 Using

More information

Activant Acclaim. Using smit and p21adm. AIX suite: course 3 of 3

Activant Acclaim. Using smit and p21adm. AIX suite: course 3 of 3 Activant Acclaim Using smit and p21adm AIX suite: course 3 of 3 Objectives Use smit p21 Including specific menus and their operation Access p21adm SMIT An acronym for System Management Interface Tools

More information

Assignment Question Paper I. 1. What is the external and internal commands and write 5 commands for each with result?

Assignment Question Paper I. 1. What is the external and internal commands and write 5 commands for each with result? Subject:- INFORMATION TECHNOLOGY Max Marks -30 kvksa esa gy djuk vfuok;z gsa 1. What is the external and internal commands and write 5 commands for each with result? 2. Writes the features of UNIX Operating

More information

NMR. Sample preparation. and Analysis

NMR. Sample preparation. and Analysis NMR Sample preparation and Analysis Preparing the NMR Sample The NMR solvent is Chloroform-d ( CDCl 3 ) The solvent is stored in the fridge, please return after use The 5mm NMR tubes and caps are at a

More information

Sleep Apnea Therapy Software User Manual

Sleep Apnea Therapy Software User Manual Sleep Apnea Therapy Software User Manual Page ii Notices Revised Notice Trademark Copyright 103392 Rev B Published February 8, 2013 and supersedes all previous versions. The information contained in this

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Administration in SAP Hybris Commerce. 17 August 2018 (04:00 BST) Einsteiger

COURSE LISTING. Courses Listed. Training for Database & Technology with Administration in SAP Hybris Commerce. 17 August 2018 (04:00 BST) Einsteiger Training for Database & Technology with Administration in SAP Hybris Commerce Courses Listed Einsteiger HY100 - SAP Hybris Commerce Product Overview HY100E - SAP Hybris Commerce Essentials Online Grundlagen

More information

PSA-3000 PowerSync Analyzer IEEE 802.3at Power over Ethernet

PSA-3000 PowerSync Analyzer IEEE 802.3at Power over Ethernet PowerSync Analyzer IEEE 802.3at Power over Ethernet Product Overview LLDP Trace April 23 2010 11:13 AM PSE Port Trace Type Requested Allocated Echo Time Alloc Time Init. Time Time To Live PSA Address:

More information

PROFIBUS Products Overview P PROFIBUS Converter/Repeater P PROFIBUS Gateway P6-3-1

PROFIBUS Products Overview P PROFIBUS Converter/Repeater P PROFIBUS Gateway P6-3-1 .1. Overview P-1-1.2. PROFIBUS Converter/Repeater P-2-1.3. PROFIBUS Gateway P-3-1.4. PROFIBUS Remote I/O Modules P-4-1.5. PROFIBUS I/O Unit P-5-1 Overview.1. Overview PROFIBUS (Process Field Bus) is a

More information

Photic Output control using BrainMaster Atlantis

Photic Output control using BrainMaster Atlantis Photic Output control using BrainMaster Atlantis Software version 3.5 (and later) December 17, 2009 December 17, 2009 Page 1 of 20 Table of Contents Introduction...3 Autonomous/Immersive Mode...5 PC Controlled

More information

COURSE LISTING. Courses Listed. Training for Cloud with SAP Hybris in Commerce for System Administrators. 26 September 2018 (22:37 BST) Einsteiger

COURSE LISTING. Courses Listed. Training for Cloud with SAP Hybris in Commerce for System Administrators. 26 September 2018 (22:37 BST) Einsteiger Training for Cloud with SAP Hybris in Commerce for System Administrators Courses Listed Einsteiger HY100 - SAP Hybris Commerce Product Overview HY100E - SAP Hybris Commerce Essentials Online Grundlagen

More information

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview Cisco Unity Connection supports various shortcut s and features that provides

More information

OpenCount 100 Call Data Recording in the OpenCom 100 Communications System

OpenCount 100 Call Data Recording in the OpenCom 100 Communications System OpenCount 100 Call Data Recording in the OpenCom 100 Communications System User Guide Welcome to DeTeWe Thank you for choosing this DeTeWe product. Our product meets the strictest requirements with regard

More information

Assurance Cases for Model-based Development of Medical Devices. Anaheed Ayoub, BaekGyu Kim, Insup Lee, Oleg Sokolsky. Outline

Assurance Cases for Model-based Development of Medical Devices. Anaheed Ayoub, BaekGyu Kim, Insup Lee, Oleg Sokolsky. Outline Assurance Cases for Model-based Development of Medical Devices Anaheed Ayoub, BaekGyu Kim, Insup Lee, Oleg Sokolsky Outline Introduction State of the art in regulatory activities Evidence-based certification

More information

Anticoagulation Manager - Getting Started

Anticoagulation Manager - Getting Started Vision 3 Anticoagulation Manager - Getting Started Copyright INPS Ltd 2014 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100 W: www.inps.co.uk

More information

SCHAU AUF DIE WELT (LOOK AT THE WORLD): VOCAL SCORE (SHEET MUSIC)(ENGLISH / GERMAN) - COMMON BY BY (COMPOSER) JOHN RUTTER

SCHAU AUF DIE WELT (LOOK AT THE WORLD): VOCAL SCORE (SHEET MUSIC)(ENGLISH / GERMAN) - COMMON BY BY (COMPOSER) JOHN RUTTER Read Online and Download Ebook SCHAU AUF DIE WELT (LOOK AT THE WORLD): VOCAL SCORE (SHEET MUSIC)(ENGLISH / GERMAN) - COMMON BY BY (COMPOSER) JOHN RUTTER DOWNLOAD EBOOK : SCHAU AUF DIE WELT (LOOK AT THE

More information

Web Feature Services Tutorial

Web Feature Services Tutorial Southeast Alaska GIS Library Web Feature Services Tutorial Prepared By Mike Plivelich Version 0.2 Status Draft Updates Continual Release Date June 2010 1 TABLE OF CONTENTS Page # INTRODUCTION...3 PURPOSE:...

More information

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients

User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients User Guide for Classification of Diabetes: A search tool for identifying miscoded, misclassified or misdiagnosed patients For use with isoft Premiere Synergy Produced by André Ring 1 Table of Contents

More information

IBRIDGE 1.0 USER MANUAL

IBRIDGE 1.0 USER MANUAL IBRIDGE 1.0 USER MANUAL Jaromir Krizek CONTENTS 1 INTRODUCTION... 3 2 INSTALLATION... 4 2.1 SYSTEM REQUIREMENTS... 5 2.2 STARTING IBRIDGE 1.0... 5 3 MAIN MENU... 6 3.1 MENU FILE... 6 3.2 MENU SETTINGS...

More information

SANAKO Lab 100 STS USER GUIDE

SANAKO Lab 100 STS USER GUIDE SANAKO Lab 100 STS USER GUIDE Copyright 2008 SANAKO Corporation. All rights reserved. Microsoft is a registered trademark. Microsoft Windows 2000 and Windows XP are trademarks of Microsoft Corporation.

More information

SHORETEL APPLICATION NOTE

SHORETEL APPLICATION NOTE SHORETEL APPLICATION NOTE for DuVoice DV2000 Hospitality Date: June 29, 2017 App Note Number: For use with: Product: TC-17036 DuVoice DV2000 Hospitality ShoreTel Connect ONSITE System: ST Connect 21.82.2128.0

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development BLE Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : BLE Guide Document revision 2.0 Document release date 17.08.17 Document number Workbench

More information

PSA-3248 RackPack PowerSync Analyzer IEEE 802.3at & bt Power over Ethernet

PSA-3248 RackPack PowerSync Analyzer IEEE 802.3at & bt Power over Ethernet RackPack PowerSync Analyzer IEEE 802.3at & bt Power over Ethernet Product Overview Key Features 48 Port Bundled PowerSync Analyzer Reduced Cost / Port Industry Leading IEEE 802.3at PoE PSE Conformance

More information

PSA-3000 PowerSync Analyzer IEEE 802.3at & 802.3bt Power over Ethernet

PSA-3000 PowerSync Analyzer IEEE 802.3at & 802.3bt Power over Ethernet PowerSync Analyzer IEEE 802.3at & 802.3bt Power over Ethernet Product Overview Key Features Industry Leading IEEE 802.3at PoE PSE Conformance Tests Unique, Fully Automated Multi-Port PSE System Analysis

More information

PSA-3000 PowerSync Analyzer IEEE 802.3at & 802.3bt Power over Ethernet

PSA-3000 PowerSync Analyzer IEEE 802.3at & 802.3bt Power over Ethernet IEEE 802.3at & 802.3bt Power over Ethernet Product Overview Key Features Industry Leading IEEE 802.3at PoE PSE Conformance Tests Unique, Fully Automated Multi-Port PSE System Analysis for 802.3at Continuous

More information

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in SAP Hybris Commerce. 29 November 2017 (11:16 GMT) Beginner

COURSE LISTING. Courses Listed. Training for Database & Technology with Development in SAP Hybris Commerce. 29 November 2017 (11:16 GMT) Beginner Training for Database & Technology with Development in SAP Hybris Commerce Courses Listed Beginner HY100 - SAP Hybris Commerce Product Overview HY100E - SAP Hybris Commerce Essentials Online Advanced HY410

More information

UHDAS and CODAS: Raising the Profile of Ocean Currents

UHDAS and CODAS: Raising the Profile of Ocean Currents UHDAS and CODAS: Raising the Profile of Ocean Currents Dr. Julia Hummon, University of Hawaii INMARTECH meeting, Bergen Norway, Oct. 2016 ADCP: Acoustic Doppler Current Profiler CODAS: (refers to ADCP

More information

Proteome Discoverer Version 1.3

Proteome Discoverer Version 1.3 Xcalibur Proteome Discoverer Version 1.3 Installation Guide XCALI-97359 Revision A May 2011 2011 Thermo Fisher Scientific Inc. All rights reserved. Xcalibur is a registered trademark of Thermo Fisher Scientific

More information

Symantec ESM Agent for IBM AS/400 Installation Guide. Version: 6.5

Symantec ESM Agent for IBM AS/400 Installation Guide. Version: 6.5 Symantec ESM Agent for IBM AS/400 Installation Guide Version: 6.5 Symantec ESM Agent for IBM AS/400 Installation Guide The software described in this book is furnished under a license agreement and may

More information

Sleep Apnea Therapy Software Clinician Manual

Sleep Apnea Therapy Software Clinician Manual Sleep Apnea Therapy Software Clinician Manual Page ii Sleep Apnea Therapy Software Clinician Manual Notices Revised Notice Trademark Copyright Sleep Apnea Therapy Software Clinician Manual 103391 Rev A

More information

E SERIES. Contents CALIBRATION PROCEDURE. Version 2.0

E SERIES. Contents CALIBRATION PROCEDURE. Version 2.0 CALIBRATION PROCEDURE E SERIES Version 2.0 Contents Introduction Document Scope... 2 Calibration Overview... 3 What Is Calibration?... 3 Why Calibrate?... 3 How Often Should You Calibrate?... 3 What Can

More information

Real-Time Hardware Implementation of Telephone Speech Enhancement Algorithm

Real-Time Hardware Implementation of Telephone Speech Enhancement Algorithm Real-Time Hardware Implementation of Telephone Speech Enhancement Algorithm A Thesis Presented in Partial Fulfillment of the Requirements for the Degree Bachelor of Science with Honors Research Distinction

More information

Chapter 9. Tests, Procedures, and Diagnosis Codes The McGraw-Hill Companies, Inc. All rights reserved.

Chapter 9. Tests, Procedures, and Diagnosis Codes The McGraw-Hill Companies, Inc. All rights reserved. Chapter 9 Tests, Procedures, and Diagnosis Codes Chapter 9 Content: Overview Ordering A Test SpringLabsTM & Reference Lab Results Managing and Charting Tests Creating A New Test Documenting and Activating

More information

StateTrace: An R Package for State-Trace Analysis

StateTrace: An R Package for State-Trace Analysis StateTrace: An R Package for State-Trace Analysis Melissa Prince, Guy Hawkins, Jonathon Love & Andrew Heathcote School of Psychology, The University of Newcastle, Australia Abstract This introduction to

More information

TRI + Digital Solutions 3SHAPE MANUAL

TRI + Digital Solutions 3SHAPE MANUAL TRI + Digital Solutions 3SHAPE MANUAL V1.3_2018-02-12 NOTE TRI + represents the interface between the TRI dental implant system and the 3Shape CADCAM system. The following instructions are intended only

More information

DICOM Conformance Statement

DICOM Conformance Statement DICOM Conformance Statement Document Version 2.0 Revision Summary Date Revision Changes 30 th December 2016 2.0 Update to OrthoView 7.0 Specification 20 October 2005 1.0 Release of OrthoView 3.1 WK3 build

More information

Knowledge Resource Centers: An overview

Knowledge Resource Centers: An overview Koha@CSIR Knowledge Resource Centers: An overview Presented by K.P.S.Sengar, PhD Senior Library Officer CSIR-Institute of Microbial Technology, Chandigarh Co-Author(s): Rajesh Kumar Lohiya, In-Charge,

More information

glite Information System

glite Information System glite Information System Dr. Marco Fargetta Marco.Fargetta@ct.infn.it INFN, Italy EUAsiaGrid BioWorkshop NUS, Singapore 2010 Outline 1 Introduction 2 Background GLUE Schema LDAP 3 BDII 4 Monitoring 5 Conclusions

More information

RDCONT A system for diabetes blood glucose data management

RDCONT A system for diabetes blood glucose data management Proceedings of the 7 th International Conference on Applied Informatics Eger, Hungary, January 28 31, 2007. Vol. 1. pp. 303 309. RDCONT A system for diabetes blood glucose data management Béla Almási,

More information

Dosimeter Setting Device System NRZ

Dosimeter Setting Device System NRZ User s Manual Dosimeter Setting Device System NRZ For Dosimeter NRF series (Units: msv Version:0.26 English) TA5C0903 b 1 / 50 Preface Thank you for purchasing the Dosimeter Setting Device; a product by

More information