Black Box testing Exercises. Lecturer: Giuseppe Santucci

Size: px
Start display at page:

Download "Black Box testing Exercises. Lecturer: Giuseppe Santucci"

Transcription

1 Black Box testing Exercises Lecturer: Giuseppe Santucci

2 Exercise 1 A software program for the simulation of scuba diving with special gas mixture gives indication about maximum time of stay on the bottom, based on a) percentage of oxygen present in the mixture and b) the maximum depth. The software takes as input the percentage of oxygen: acceptable values are % maximum depth: acceptable values are meters Gives as output An integer that corresponds to the maximum duration of the immersion at that depth expressed in minutes. Design, based on black-box techniques, test cases for this functionality. Consider that based on the specification document, if the percentage of oxygen is more than 30%, the maximum acceptable depth is 40 meters.

3 Identify equivalent classes Classes have to be listed and each has to be assigned a unique ID Useful criteria for defining the equivalent classes are Intervals of values Number of values Sets of values Constraints Format errors

4 Intervals of values VC1 oxygen interval [21,36] IC2 oxygen <21 IC3 oxygen >36 VC4 depth interval [10,50] IC5 depth <10 IC6 depth >50

5 Number of values VC7 IC8 IC9 2 integers as input < 2 integers as input > 2 integers as input IC10 IC11 format error on the first input data format error on the second input data

6 Constraints VC12 if oxygen > 30 then depth <= 40 IC13 if oxygen > 30 then depth > 40

7 Test cases necessary for covering the equivalent classes Test case Covered classes Oxygen depth Expected result/behavior T1: (VC1, VC4, VC7, VC12) : an integer T2: (IC2 oxygen<21) : oxygen too low T3: (IC3 oxygen>36) : oxygen too high T4: 31 5 (IC5 depth<10) : depth too low T5: (IC6 depth>50) : depth too high T6: 31 (IC8 less than 2 int) : too few input data T7: (IC9 more than 2 int) : too many input data T8: (IC10) : oxygen format error T9: (IC11) : depth format error T10: (IC13 ) : depth too high wrt oxygen

8 Boundary value analysis Intervals of input data Design test cases Equal to the boundary values Immediately above the boundary values Immediately below the boundary values For valid classes (one at a time) T11: ; 21 30; ; ; ; (VC1 oxygen [21,36]) T12: 25 9 ; ; ; ; ; (VC4 depth [10,50])

9 Boundary value analysis Number of input data Design test cases For the minimum number of values For the maximum number of values A number of values immediately below the minimum A number of values immediately above the maximum In this case maximum and minimum coincide (2) and we already tested 1 2 and 3 (T6, T1, T7)

10 Boundary value analysis Constrains Design test cases That satisfy the condition Immediately above Immediately below This activity makes sense only for constraints based on numerical comparisons, e.g. less than If oxygen > 30 then depth <= 40 Minimum value that makes the if condition true: 31 -> 30, 31, and 32 Maximum value that makes the then condition true : 40 -> 39, 40, and ; ; ; ; ; ; Error

11 Boundary value analysis Intervals related to output We don t known what is the rule that relates input with output However, it makes sense to test the minimum value for the two inputs T11: And the maximum values: T12: T13: 30 50

12 Exercise 2 A web application for hotel booking takes as input the number of people that need the room (min 3), the arrival date, the departure date (must be after at most 15 days) and the room type (smoking/non-smoking) Dates must be entered in the dd/mm/yy format Codes for smoking is s, code for non-smoking is ns Design test cases for such functionality based on black box testing technique. Indicate what techniques are used and the identified equivalent classes.

13 Identify equivalent classes Classes have to be listed and each has to be assigned a unique ID Useful criteria for defining the equivalent classes are Intervals of values Number of values Sets of values Constraints

14 Intervals of values VC1 people [3,5] (arbitrary) IC2 people < 3 IC3 people >5

15 Number of values VC4 4 input arguments IC5 less than 4 input arguments IC6 more than 4 input arguments IC7 format error on people data IC8 format error on arrival date IC9 format error on departure date IC10 format error on room type

16 Sets of values VC11 room type = s VC12 room type = ns IC13 room type { s, ns }

17 Constraints VC14 data_out - data_in <= 15 VC15 data_out - data_in > 0 IC16 data_out - data_in >15 IC17 data_out - data_in <= 0

18 Test cases necessary for covering the equivalent classes T1:4,3/10/04, 5/10/04, s (VC1,VC4,VC11,VC14,VC15):OK T2:4,3/10/04, 5/10/04, ns (VC12): OK T3:2,3/10/04, 5/10/04, s (IC2): too few people T4:6,3/10/04, 5/10/04, ns (IC3): too many people T5:4,3/10/04, 5/10/04 (IC5): too few inputs T6:4,3/10/04, 5/10/04, s, 5 (IC6): too many inputs T7:4.0,3/10/04, 5/10/04, s (IC7): format error on people T8:4,3/october/04, 5/10/04, s (IC8): format error data_in T9:4,3/10/04, 5/october/04, s (IC9): format error data_out T10:4,3/10/04, 5/10/04, 1 (IC10, IC13): format err room type T11:4,3/10/04, 5/10/04, veg (IC13): error room type T12:4,3/10/04, 25/10/04, s (IC16): too many days T12:4,3/10/04, 3/10/04, s (IC17): too few days

19 Boundary value analysis Intervals related to input data people [3,5]--> 2,3,4 & 4,5,6 Design test cases Equal to the boundary values Immediately above the boundary values Immediately below the boundary values For valid classes (one at a time) Error T13: 2,3/10/04, 5/10/04, s 3,3/10/04, 5/10/04, s 4,3/10/04, 5/10/04, s 4,3/10/04, 5/10/04, s 5,3/10/04, 5/10/04, s 6,3/10/04, 5/10/04, s

20 Boundary value analysis Number of input data Design test cases For the minimum number of values For the maximum number of values A number of values immediately below the minimum A number of values immediately above the maximum In this case maximum and minimum coincide (4) and we already tested 3 4 and 5 (T5, T1, T6)

21 Boundary value analysis Constrains Design test cases That satisfy the condition Immediately above Immediately below data_out - data_in <= 15 : maximum value making the condition true: 15 data_out - data_in = 14 data_out - data_in = 15 data_out - data_in = 16 T14: 4, 3/10/04, 17/10/04, s T15: 4, 3/10/04, 18/10/04, s T16: 4, 3/10/04, 19/10/04, s Error

22 Boundary value analysis Constrains Design test cases That satisfy the condition Immediately above Immediately below data_out-data_in > 0 data_out - data_in = -1 (additional case for negative values) data_out - data_in = 0 data_out - data_in = 1 data_out - data_in = 2 T17: 4, 3/10/04, 2/10/04, s T18: 4, 3/10/04, 3/10/04, s T19: 4, 3/10/04, 4/10/04, s T20: 4, 3/10/04, 5/10/04, s Error

Performance Task # 1

Performance Task # 1 Performance Task # 1 Goal: Arrange integers in order. Role: You are a analyzing a Julie Brown Anderson s dive. Audience: Reader of article. Situation: You are interviewing for a job at a sports magazine.

More information

Applying Rational Number Operations

Applying Rational Number Operations ? LESSON 3.6 Applying Rational Number Operations ESSENTIAL QUESTION 7.EE.3 Solve problems with positive and negative rational numbers in any form using tools strategically. (For the full text of the standard,

More information

FISH 415 LIMNOLOGY UI Moscow

FISH 415 LIMNOLOGY UI Moscow Sampling Equipment Lab FISH 415 LIMNOLOGY UI Moscow Purpose: - to familiarize you with limnological sampling equipment - to use some of the equipment to obtain profiles of temperature, dissolved oxygen,

More information

Instruction and Maintenance Manual

Instruction and Maintenance Manual Instruction and Maintenance Manual GRYF OXY Z 02/100/2 E Contact GRYF HB, spol. s r.o. Cechova 314 Havlickuv Brod 580 01 tel.: +420 569 426 627 fax: +420 569 426 627 Czech Republic www.gryf.eu Technical

More information

Instruction and Maintenance Manual

Instruction and Maintenance Manual Instruction and Maintenance Manual GRYF OXY ZM 02/100/2 E Contact GRYF HB, spol. s r.o. Cechova 314 Havlickuv Brod 580 01 tel.: +420 569 426 627 fax: +420 569 426 627 www.gryf.eu ver.: 11.2.2015 OEM module

More information

Chapter 20. Planning Accelerated Life Tests. William Q. Meeker and Luis A. Escobar Iowa State University and Louisiana State University

Chapter 20. Planning Accelerated Life Tests. William Q. Meeker and Luis A. Escobar Iowa State University and Louisiana State University Chapter 20 Planning Accelerated Life Tests William Q. Meeker and Luis A. Escobar Iowa State University and Louisiana State University Copyright 1998-2008 W. Q. Meeker and L. A. Escobar. Based on the authors

More information

ITTC Recommended Procedures and Guidelines

ITTC Recommended Procedures and Guidelines Page 1 of 6 Table of Contents 1. PURPOSE...2 2. PARAMETERS...2 2.1 General Considerations...2 3 DESCRIPTION OF PROCEDURE...2 3.1 Model Design and Construction...2 3.2 Measurements...3 3.5 Execution of

More information

Readiness: Scuba Diving

Readiness: Scuba Diving Readiness: Scuba Diving AUTHOR INTENT Scuba diving is a real-world activity where each diver has to be responsible for their own safety. The safety of the divers relies on mathematics. The math reviewed

More information

Player Pathway. Player Movement Process. Playing Time

Player Pathway. Player Movement Process. Playing Time Player Pathway Player Movement Process Playing Time Player Pathway RFC fully supports the BC Soccer Player Pathway and strongly believes in order for players to truly fulfill their potential and to be

More information

Datasheet: K-30 ASCII Sensor

Datasheet: K-30 ASCII Sensor Datasheet: K-30 ASCII Sensor The K30 ASCII sensor is a low cost, infrared and maintenance free transmitter module intended to be built into different host devices that require CO2 monitoring data. The

More information

20. Semi-Closed Circuit Rebreather Instructor, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH

20. Semi-Closed Circuit Rebreather Instructor, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH 20. Semi-Closed Circuit Rebreather Instructor, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH 20.1 Introduction This is the entry-level certification course for instructors wishing to

More information

Technical Data Sheet MF010-O-LC

Technical Data Sheet MF010-O-LC Technical Data Sheet MF010-O-LC - 1 - 1. Properties The oxygen measuring system MF010-O-LC determines the oxygen content in gas mixtures up to a temperature of 250 C. It is particularly suitable for the

More information

PROVISION OF SERVICES IN RELATION TO AN INVESTIGATION ON THE COASTAL SUBSURFACE GROUNDWATER DISCHARGE FLOW DYNAMICS

PROVISION OF SERVICES IN RELATION TO AN INVESTIGATION ON THE COASTAL SUBSURFACE GROUNDWATER DISCHARGE FLOW DYNAMICS Closing Date: Tuesday, 7 th August 2012 at 10:00am Quotation Reference: MRA/133/2012 Call for Quotations Issued on 31 st July 2012 PROVISION OF SERVICES IN RELATION TO AN INVESTIGATION ON THE COASTAL SUBSURFACE

More information

Modeling of Oxygen Injection Experiment in Savannah Harbor

Modeling of Oxygen Injection Experiment in Savannah Harbor 593 Modeling of Oxygen Injection Experiment in Savannah Harbor S. Davie 1, H. Moorer 2, H. Rodriguez 1, Y. Plis 1 1 Tetra Tech, Inc., 2110 Powers Ferry Road, Suite 202, Atlanta, GA 30339, PH (770) 850-0949;

More information

3D Inversion in GM-SYS 3D Modelling

3D Inversion in GM-SYS 3D Modelling 3D Inversion in GM-SYS 3D Modelling GM-SYS 3D provides a wide range of inversion options including inversion for both layer structure and physical properties for gravity and magnetic data. There is an

More information

Lecture 04 ( ) Hazard Analysis. Systeme hoher Qualität und Sicherheit Universität Bremen WS 2015/2016

Lecture 04 ( ) Hazard Analysis. Systeme hoher Qualität und Sicherheit Universität Bremen WS 2015/2016 Systeme hoher Qualität und Sicherheit Universität Bremen WS 2015/2016 Lecture 04 (02.11.2015) Hazard Analysis Christoph Lüth Jan Peleska Dieter Hutter Where are we? 01: Concepts of Quality 02: Legal Requirements:

More information

Water Search Certification Evaluation

Water Search Certification Evaluation Water Search Certification Evaluation Purpose The purpose of the Water Search Certification Evaluation is to accurately and uniformly assess a canine team s ability to effectively search for and locate

More information

7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017

7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017 7 th International Conference on Wind Turbine Noise Rotterdam 2 nd to 5 th May 2017 Sound power level measurements 3.0 ir. L.M. Eilders, Peutz bv: l.eilders@peutz.nl ing. E.H.A. de Beer, Peutz bv: e.debeer@peutz.nl

More information

PHYS Tutorial 7: Random Walks & Monte Carlo Integration

PHYS Tutorial 7: Random Walks & Monte Carlo Integration PHYS 410 - Tutorial 7: Random Walks & Monte Carlo Integration The goal of this tutorial is to model a random walk in two dimensions and observe a phase transition as parameters are varied. Additionally,

More information

Team Blue Immersion. TecRec Overview. Technical Instructor Course

Team Blue Immersion. TecRec Overview. Technical Instructor Course Team Blue Immersion TecRec 40-45-50 Overview Technical Instructor Course Contents DSAT Tec 40, 45 & 50 DSAT Tec 40, 45 & 50 Standards... 1 Discover Tec Prerequisites... 1 Tec 40 Prerequisites... 1 Tec

More information

Hands- on Activity 5: Data Quality Control & Assurance

Hands- on Activity 5: Data Quality Control & Assurance Hands- on Activity 5: Data Quality Control & Assurance Associated DataONE Lecture: Lesson 5: Data Quality Control and Assurance (Note that instructors and students should have reviewed Lesson 4: Data Entry

More information

Ascent to Altitude After Diving

Ascent to Altitude After Diving Ascent to Altitude After Diving On many occasions, divers have a need to ascend to a higher altitude after diving, and they need guidance on how long they need to wait before doing so. The reason they

More information

Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions

Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions Iteration: while, for, do while, Reading Input with Sentinels and User-defined Functions This programming assignment uses many of the ideas presented in sections 6 and 7 of the course notes. You are advised

More information

MIKE NET AND RELNET: WHICH APPROACH TO RELIABILITY ANALYSIS IS BETTER?

MIKE NET AND RELNET: WHICH APPROACH TO RELIABILITY ANALYSIS IS BETTER? MIKE NET AND RELNET: WIC APPROAC TO RELIABILITY ANALYSIS IS BETTER? Alexandr Andrianov Water and Environmental Engineering, Department of Chemical Engineering, Lund University P.O. Box 124, SE-221 00 Lund,

More information

In my left hand I hold 15 Argentine pesos. In my right, I hold 100 Chilean

In my left hand I hold 15 Argentine pesos. In my right, I hold 100 Chilean Chapter 6 Meeting Standards and Standings In This Chapter How to standardize scores Making comparisons Ranks in files Rolling in the percentiles In my left hand I hold 15 Argentine pesos. In my right,

More information

D-Case Modeling Guide for Target System

D-Case Modeling Guide for Target System D-Case Modeling Guide for Target System 1/32 Table of Contents 1 Scope...4 2 Overview of D-Case and SysML Modeling Guide...4 2.1 Background and Purpose...4 2.2 Target System of Modeling Guide...5 2.3 Constitution

More information

FIG: 27.1 Tool String

FIG: 27.1 Tool String Bring up Radioactive Tracer service. Click Acquisition Box - Edit - Tool String Edit the tool string as necessary to reflect the tool string being run. This is important to insure proper offsets, filters,

More information

Working with Object- Orientation

Working with Object- Orientation HOUR 3 Working with Object- Orientation What You ll Learn in This Hour:. How to model a class. How to show a class s features, responsibilities, and constraints. How to discover classes Now it s time to

More information

Special Purpose Specification NFQ Level 6. Surface Supplied Diving Operations. Draft for Consultation. Teideal as Gaeilge. Level 6.

Special Purpose Specification NFQ Level 6. Surface Supplied Diving Operations. Draft for Consultation. Teideal as Gaeilge. Level 6. Special Purpose Specification NFQ Level 6 Surface Supplied Diving Operations 1. Certificate Details Title Teideal as Gaeilge Award Type Code Surface Supplied Diving Operations TBC Special Purpose TBC Level

More information

DIVING PHYSICS EXAMPLE QUESTIONS

DIVING PHYSICS EXAMPLE QUESTIONS DIVING PHYSICS EXAMPLE QUESTIONS PLEASE NOTE: 1 bar = 10 Meter in Salt water 1 bar = 10.2 Meter in Fresh water. Will be GIVEN to you for calculations. 10m in Salt water = 1 bar 10m in Fresh water = 0.98

More information

11. TDI Semi-Closed Circuit Rebreather Diver Course, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH

11. TDI Semi-Closed Circuit Rebreather Diver Course, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH 11. TDI Semi-Closed Circuit Rebreather Diver Course, Unit Specific- DOLPHIN, RAY, Atlantis, SUBMATIX ST100 & AZIMUTH 11.1 Introduction This is the entry-level certification course for recreational divers

More information

SECTION B of Declaration of Blood Pressure Measuring Device Equivalence

SECTION B of Declaration of Blood Pressure Measuring Device Equivalence SECTION B of Declaration of Blood Pressure Measuring Device Equivalence Model Name or Number Existing Validated Device TMB-1491 Device applied for Validation easyrapid Casing Display Carrying/ Mounting

More information

Sanction Requirements and Considerations

Sanction Requirements and Considerations Sanction Requirements and Considerations Title of the Meet: This should start with the year and UT, then the Meet name. This format helps keep data entry into SWIMS uniform. Logo: The meet template has

More information

Apnea Commission CMAS Pool Diver Courses Standards & Outlines Version 2017/02

Apnea Commission CMAS Pool Diver Courses Standards & Outlines Version 2017/02 Apnea Commission CMAS Pool Diver Courses Standards & Outlines Version 2017/02 6/23/17 DISCOVERY POOL DIVER Definition: : Discovery pool diver is a trained free diver who has completed the theoretical and

More information

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher Mini-project 3 Tennis ball launcher Mini-Project 3 requires you to use MATLAB to model the trajectory of a tennis ball being shot from a tennis ball launcher to a player. The tennis ball trajectory model

More information

Safety Manual VEGAVIB series 60

Safety Manual VEGAVIB series 60 Safety Manual VEGAVIB series 60 NAMUR Document ID: 32005 Contents Contents 1 Functional safety... 3 1.1 General information... 3 1.2 Planning... 4 1.3 Adjustment instructions... 6 1.4 Setup... 6 1.5 Reaction

More information

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski MEETPLANNER DESIGN DOCUMENT IDENTIFICATION Project Name: MeetPlanner Project Manager: Peter Grabowski OVERVIEW Swim coaches are often faced with a dilemma while planning swim meets. On the one hand, they

More information

Modeling of Hydraulic Hose Paths

Modeling of Hydraulic Hose Paths Mechanical Engineering Conference Presentations, Papers, and Proceedings Mechanical Engineering 9-2002 Modeling of Hydraulic Hose Paths Kurt A. Chipperfield Iowa State University Judy M. Vance Iowa State

More information

Webinar: Exploring Pedestrian Responsive Traffic Signal Timing Strategies in Urban Areas

Webinar: Exploring Pedestrian Responsive Traffic Signal Timing Strategies in Urban Areas Portland State University PDXScholar TREC Webinar Series Transportation Research and Education Center (TREC) 1-29-2015 Webinar: Exploring Pedestrian Responsive Traffic Signal Timing Strategies in Urban

More information

7. TDI Advanced Wreck Diver Course

7. TDI Advanced Wreck Diver Course 7. TDI Advanced Wreck Diver Course 7.1 Introduction This course provides training and experience to competently conduct advanced wreck dives. This program includes penetration skills and techniques. Depths

More information

PHED 1116 Advanced Swimming (1 credit)

PHED 1116 Advanced Swimming (1 credit) Bemidji State University Department of Physical Education, Health & Sport PHED 1116 Advanced Swimming (1 credit) Instructor Information Instructor: Spring Semester 2012 Christina Kippenhan, Ph.D., Professor

More information

Automating Injection Molding Simulation using Autonomous Optimization

Automating Injection Molding Simulation using Autonomous Optimization Automating Injection Molding Simulation using Autonomous Optimization Matt Proske, Rodrigo Gutierrez, & Gabriel Geyne SIGMASOFT Virtual Molding Autonomous optimization is coupled to injection molding simulation

More information

Irish Underwater Council CMAS Equivalence Guide & Application Form

Irish Underwater Council CMAS Equivalence Guide & Application Form Irish Underwater Council CMAS Equivalence Guide & Application Form DOCUMENT NAME VERSION REFERENCE DOCUMENT AUTHOR APPROVED BY DIVER EQUIVALENCE GUIDE V4 TECHNICAL COMMISSION TECHNICAL COMMISSION DATE

More information

Marine Conservation and Research Expedition Training, Examination and Certification Summary

Marine Conservation and Research Expedition Training, Examination and Certification Summary Marine Conservation and Research Expedition Training, Examination and Certification Summary Introduction This document summarizes the current training schedule and materials being used at the two Marine

More information

Course 2 Unit 1 Practice

Course 2 Unit 1 Practice Course Unit 1 Practice Lesson 1-1 1. Estimate each sum or difference to the nearest unit. $8.56 1 $.35 $3.95. Find each sum or difference. 7.8 1 15.6 1 9.509 b. 0.37 1.083 b. 13.65.5 c. 8 0.057 d. 8.97

More information

Apnea Commission. CMAS Apnea Diver. Courses. Standards & Outlines 6/23/17

Apnea Commission. CMAS Apnea Diver. Courses. Standards & Outlines 6/23/17 Apnea Commission CMAS Apnea Diver Courses Standards & Outlines Version 2017 / 0 2 6/23/17 DISCOVERY APNEA DIVER Definition: : Discovery Apnea diver is a trained free diver who has completed the theoretical

More information

PROTOCOL FOR COMPRESSED AIR PROFICIENCY TESTING (CAPT) PROGRAM SAMPLE ANALYSIS

PROTOCOL FOR COMPRESSED AIR PROFICIENCY TESTING (CAPT) PROGRAM SAMPLE ANALYSIS Contact Information: PROTOCOL FOR COMPRESSED AIR PROFICIENCY TESTING (CAPT) PROGRAM SAMPLE ANALYSIS No formal enrollment is required to participate in the CAPT program. To get added to the email notifications

More information

Understood, Inc. User Guide SCUBA Solutions Version 1.7

Understood, Inc. User Guide SCUBA Solutions Version 1.7 Understood, Inc. User Guide SCUBA Solutions Version 1.7 Table of Contents Revision History... 4 Introduction... 5 Purpose... 5 Scope... 5 Home... 5 Today s Dive Trips [Display]:... 6 Next Dive Trip [Display]:...

More information

ScienceDirect. Microscopic Simulation on the Design and Operational Performance of Diverging Diamond Interchange

ScienceDirect. Microscopic Simulation on the Design and Operational Performance of Diverging Diamond Interchange Available online at www.sciencedirect.com ScienceDirect Transportation Research Procedia 6 (2015 ) 198 212 4th International Symposium of Transport Simulation-ISTS 14, 1-4 June 2014, Corsica, France Microscopic

More information

Pegas 4000 MF Gas Mixer InstructionManual Columbus Instruments

Pegas 4000 MF Gas Mixer InstructionManual Columbus Instruments Pegas 4000 MF Gas Mixer InstructionManual Contents I Table of Contents Foreword Part I Introduction 1 2 1 System overview... 2 2 Specifications... 3 Part II Installation 4 1 Rear panel connections...

More information

JAR-23 Normal, Utility, Aerobatic, and Commuter Category Aeroplanes \ Issued 11 March 1994 \ Section 1- Requirements \ Subpart C - Structure \ General

JAR-23 Normal, Utility, Aerobatic, and Commuter Category Aeroplanes \ Issued 11 March 1994 \ Section 1- Requirements \ Subpart C - Structure \ General JAR 23.301 Loads \ JAR 23.301 Loads (a) Strength requirements are specified in terms of limit loads (the maximum loads to be expected in service) and ultimate loads (limit loads multiplied by prescribed

More information

Verification and Validation Pathfinder

Verification and Validation Pathfinder 403 Poyntz Avenue, Suite B Manhattan, KS 66502 USA +1.785.770.8511 www.thunderheadeng.com Verification and Validation Pathfinder 2015.1 Release 0504 x64 Disclaimer Thunderhead Engineering makes no warranty,

More information

Evaluation of Three New Fit Test Protocols for Use with the TSI PortaCount

Evaluation of Three New Fit Test Protocols for Use with the TSI PortaCount Evaluation of Three New Fit Test Protocols for Use with the TSI PortaCount by Roy T. McKay, Ph.D. Jeff Bradley, RRT Occupational Pulmonary Services Department of Environmental Health University of Cincinnati

More information

Measuring Relative Achievements: Percentile rank and Percentile point

Measuring Relative Achievements: Percentile rank and Percentile point Measuring Relative Achievements: Percentile rank and Percentile point Consider an example where you receive the same grade on a test in two different classes. In which class did you do better? Why do we

More information

TASK 4.2.1: "HAMILTON'S ROBOT" ==============================

TASK 4.2.1: HAMILTON'S ROBOT ============================== TASK 4.2.1: "HAMILTON'S ROBOT" ============================== On a plane there are given N positions P1, P2,..., PN with integer coordinates (X1,Y1), (X2,Y2),..., (XN,YN). A robot should move through all

More information

Operational Ranking of Intersections: A Novel Prioritization Methodology

Operational Ranking of Intersections: A Novel Prioritization Methodology Operational Ranking of Intersections: A Novel Prioritization Methodology Reza Omrani, Ph.D. Transportation Engineer CIMA+ 3027 Harvester Road, Suite 400 Burlington, ON L7N 3G7 Reza.Omrani@cima.ca Pedram

More information

Introducing the erdp

Introducing the erdp Introducing the erdp The Next Generation Dive Planner [NOTE TO PRESENTER: Use this presentation to introduce the erdp to new divers, experienced divers and dive professionals.] Introducing the erdp - The

More information

Taking Your Class for a Walk, Randomly

Taking Your Class for a Walk, Randomly Taking Your Class for a Walk, Randomly Daniel Kaplan Macalester College Oct. 27, 2009 Overview of the Activity You are going to turn your students into an ensemble of random walkers. They will start at

More information

Hydrostatics Physics Lab XI

Hydrostatics Physics Lab XI Hydrostatics Physics Lab XI Objective Students will discover the basic principles of buoyancy in a fluid. Students will also quantitatively demonstrate the variance of pressure with immersion depth in

More information

Number Sense Performance Task: Par The Mini-Golf Way! LEVEL 1 Anchor

Number Sense Performance Task: Par The Mini-Golf Way! LEVEL 1 Anchor Number Sense Performance Task: Par The Mini-Golf Way! LEVEL 1 Anchor Knowledge and Understanding demonstrates some understanding of how to represent the score compared to par for each round using positive

More information

Locating Tournament Results

Locating Tournament Results Locating Tournament Results Smile or frown it s exciting to see the results of a tournament in which you have just played! After you finish your last board in a tournament, other tables of players may

More information

Aladin ONE (Matrix) User Manual

Aladin ONE (Matrix) User Manual Aladin ONE (Matrix) User Manual ALADIN ONE DIVING COMPUTER - DESIGNED BY DIVING ENGINEERS Welcome to SCUBAPRO dive computers and thank you for purchasing the Aladin One. You are now the owner of an extraordinary

More information

Setting up group models Part 1 NITP, 2011

Setting up group models Part 1 NITP, 2011 Setting up group models Part 1 NITP, 2011 What is coming up Crash course in setting up models 1-sample and 2-sample t-tests Paired t-tests ANOVA! Mean centering covariates Identifying rank deficient matrices

More information

Investigation of the Impacts of Ramp Metering on Traffic Flow With and Without Diversion

Investigation of the Impacts of Ramp Metering on Traffic Flow With and Without Diversion 116 TRANSPORTATION RESEARCH RECORD 1365 Investigation of the Impacts of Ramp Metering on Traffic Flow With and Without Diversion SALAMEH A. NsouR, S. L. CoHEN, J. EDWIN CLARK, AND A. J. SANTIAGO The effect

More information

Specific Accreditation Criteria Calibration ISO IEC Annex. Mass and related quantities

Specific Accreditation Criteria Calibration ISO IEC Annex. Mass and related quantities Specific Accreditation Criteria Calibration ISO IEC 17025 Annex Mass and related quantities January 2018 Copyright National Association of Testing Authorities, Australia 2014 This publication is protected

More information

SECTION B of Declaration of Blood Pressure Measuring Device Equivalence

SECTION B of Declaration of Blood Pressure Measuring Device Equivalence SECTION B of Declaration of Blood Pressure Measuring Device Equivalence Model Name or Number Existing Validated Device TMB-1491 Device applied for Validation CARDIO maxi Casing Display Carrying/ Mounting

More information

GA-300 Gas Analyzer. Technical Note. Overview. Front Panel. iworx Systems, Inc. GA-300

GA-300 Gas Analyzer. Technical Note. Overview. Front Panel. iworx Systems, Inc. GA-300 Technical Note GA-300 Overview The GA-300 CO2 and O2 Gas Analyzer is easy to use, robust, and adaptable to human, animal, and plant applications. The GA-300 has two analog outputs to allow recording and

More information

Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control

Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control Digital Level Control One and Two Loops Proportional and Integral Control Single-Loop and Cascade Control Introduction This experiment offers a look into the broad field of process control. This area of

More information

Diving Operations Procedure

Diving Operations Procedure Diving Operations Procedure UNIVERSITY OF PORTSMOUTH Diving Operations Procedure 1 Document title Diving Operations Procedure Document author and department Laura Sayers Health & Safety Office Corporate

More information

SPECIFIC FACTORS THAT MAY AFFECT PROFILES

SPECIFIC FACTORS THAT MAY AFFECT PROFILES 58 CHAPTER 4 SPECIFIC FACTORS THAT MAY AFFECT PROFILES 4.1 INTRODUCTION In reviewing the Phase I study results, the panel members raised various concerns, such as the accuracy needed for the transverse

More information

SSO 700 Integrated Watershed Action Plan: Continuous Calibration of a Model

SSO 700 Integrated Watershed Action Plan: Continuous Calibration of a Model SSO 700 Integrated Watershed Action Plan: Continuous Calibration of a Model 5 Cities Plus August 16, 2017 Presented by Matt Spidare, P.E MSDGC Victoria Berry, P.E. CH2M Overview of Presentation Project

More information

Autodesk Moldflow Communicator Process settings

Autodesk Moldflow Communicator Process settings Autodesk Moldflow Communicator 212 Process settings Revision 1, 3 March 211. Contents Chapter 1 Process settings....................................... 1 Profiles.................................................

More information

CORESTA RECOMMENDED METHOD N 6

CORESTA RECOMMENDED METHOD N 6 CORESTA RECOMMENDED METHOD N 6 DETERMINATION OF VENTILATION DEFINITIONS AND MEASUREMENT PRINCIPLES (2015 Revision September 2016) 1. SCOPE This CORESTA Recommended Method specifies a method for the determination

More information

Continuous Gas Analysis In situ laser gas analyzers TÜV and MCERTS add-on for LDS 6 operating instructions Compact Operating Instructions

Continuous Gas Analysis In situ laser gas analyzers TÜV and MCERTS add-on for LDS 6 operating instructions Compact Operating Instructions Continuous Gas Analysis In situ laser gas analyzers Compact Operating Instructions 1 LDS 6 TÜV/MCERTS certified analyzers for NH3/H2O, NH3 and H2O 1.1 Operation requirements Please observe the following:

More information

The impact of freediving on psychomotor performance and blood catecholamine concentration

The impact of freediving on psychomotor performance and blood catecholamine concentration The impact of freediving on psychomotor performance and blood catecholamine concentration Jan Chmura 1, Adam Kawczyński 1, Marek Mędraś 2, Paweł Jóźków 2, Bartosz Morawiec 1 1 University School of Physical

More information

Triad Trickery: Playing with Sport and Games. Strategy

Triad Trickery: Playing with Sport and Games. Strategy Triad Trickery: Playing with Sport and Games Meier 1 Strategy To define games, sports, and play To distinguish his definitions from Suits's definitions 2 Importance of Clear Definitions Meier acknowledges

More information

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or CS 341 Computer Architecture and Organization Lecturer: Bob Wilson Cell Phone: 508-577-9895 Email: robert.wilson@umb.edu or bobw@cs.umb.edu 1 Welcome to CS341 This course teaches computer architecture

More information

Road Conversion Study Plumas Street

Road Conversion Study Plumas Street Plumas Street Phase I Submitted to The Regional Transportation Commission of Washoe County Submitted by Zong Tian, Ph.D., P.E. Saeedeh Farivar Haiyuan Li, Ph.D. Center for Advanced Transportation Education

More information

Constructing Task: Water Balloon Fun!

Constructing Task: Water Balloon Fun! Constructing Task: Water Balloon Fun! STANDARDS FOR MATHEMATICAL CONTENT MCC4.MD.1. Know relative sizes of measurement units within one system of units including km, m, cm; kg, g; lb, oz.; l, ml; hr, min,

More information

Blackwave Dive Table Creator User Guide

Blackwave Dive Table Creator User Guide Blackwave Dive Table Creator User Guide Copyright 2002-2009 Blackwave. All rights reserved. These materials (including without limitation all articles, text, images, logos, compilation, and design) are

More information

SUBPART C - STRUCTURE

SUBPART C - STRUCTURE SUBPART C - STRUCTURE GENERAL CS 23.301 Loads (a) Strength requirements are specified in terms of limit loads (the maximum loads to be expected in service) and ultimate loads (limit loads multiplied by

More information

Level 2 Onscreen Functional Skills Mathematics. Sample Assessment Material. Mark Scheme. November 2010

Level 2 Onscreen Functional Skills Mathematics. Sample Assessment Material. Mark Scheme. November 2010 Level 2 nscreen Functional Skills Mathematics Sample Assessment Material Mark Scheme November 2010 Q1a C R1 C8 shows process to convert between units C A1 C2 Finds wheel size to nearest inch 1 or 71 2.54

More information

Every things under control High-Integrity Pressure Protection System (HIPPS)

Every things under control High-Integrity Pressure Protection System (HIPPS) Every things under control www.adico.co info@adico.co Table Of Contents 1. Introduction... 2 2. Standards... 3 3. HIPPS vs Emergency Shut Down... 4 4. Safety Requirement Specification... 4 5. Device Integrity

More information

Divers Alert Network 2007 Internship Final Report

Divers Alert Network 2007 Internship Final Report Divers Alert Network 2007 Internship Final Report Erin K. Zeigler 2007 DAN Intern Acknowledgements: I would like to thank Our World Underwater Scholarship Society for giving me this opportunity and allowing

More information

Exercise 8. Closed-Loop Pressure Control, Proportional-Plus-Integral Mode EXERCISE OBJECTIVE

Exercise 8. Closed-Loop Pressure Control, Proportional-Plus-Integral Mode EXERCISE OBJECTIVE Exercise 8 Closed-Loop Pressure Control, EXERCISE OBJECTIVE To understand open and closed-loop pressure control; To learn how to sense the pressure in a pneumatic circuit; To control the pressure in a

More information

Lecture 10. Support Vector Machines (cont.)

Lecture 10. Support Vector Machines (cont.) Lecture 10. Support Vector Machines (cont.) COMP90051 Statistical Machine Learning Semester 2, 2017 Lecturer: Andrey Kan Copyright: University of Melbourne This lecture Soft margin SVM Intuition and problem

More information

Track B: Particle Methods Part 2 PRACE Spring School 2012

Track B: Particle Methods Part 2 PRACE Spring School 2012 Track B: Particle Methods Part 2 PRACE Spring School 2012 Maciej Cytowski (ICM UW) PART2: Load-balancing and migration Zoltan set-up ~ 15 min. Load-balancing in Zoltan ~ 15 min. Hands-on exercises ~ 20

More information

Lab 2: Probability. Hot Hands. Template for lab report. Saving your code

Lab 2: Probability. Hot Hands. Template for lab report. Saving your code Lab 2: Probability Hot Hands Basketball players who make several baskets in succession are described as having a hot hand. Fans and players have long believed in the hot hand phenomenon, which refutes

More information

Technical Bulletin, Meter Factor Linearization

Technical Bulletin, Meter Factor Linearization Last Updated: 06-April-2009 TB-970803B Technical Bulletin, OMNI FLOW COMPUTERS, INC. 12620 West Airport Boulevard, Suite 100 Sugar Land, Texas 77478 United States of America Phone-281.240.6161 Fax: 281.240.6162

More information

SoundCast Design Intro

SoundCast Design Intro SoundCast Design Intro Basic Design SoundCast and Daysim 3 Land use attributes Households & Individuals SoundCast DaySim Travel demand simulator Trips and Households, Excel Summary Sheets, EMME network

More information

Well Integrity Log Interpretation (Magnetic Thickness Detector and 56-Arm Multi-Finger Caliper)

Well Integrity Log Interpretation (Magnetic Thickness Detector and 56-Arm Multi-Finger Caliper) Well Integrity Log Interpretation (Magnetic Thickness Detector and 56-Arm Multi-Finger Caliper) Company: Well: Field: Province: Alberta Country: Canada License: UWI: Logging Date: 21-Mar-2015 Report Date:

More information

Lesson 22: Average Rate of Change

Lesson 22: Average Rate of Change Student Outcomes Students know how to compute the average rate of change in the height of water level when water is poured into a conical container at a constant rate. MP.1 Lesson Notes This lesson focuses

More information

UNIVERSITY OF WATERLOO

UNIVERSITY OF WATERLOO UNIVERSITY OF WATERLOO Department of Chemical Engineering ChE 524 Process Control Laboratory Instruction Manual January, 2001 Revised: May, 2009 1 Experiment # 2 - Double Pipe Heat Exchanger Experimental

More information

Semi-Closed (SC-) Rebreather Advanced SC Rebreather STANDARDS AND REQUIREMENTS TRAINING PROGRAM ( VERSION 2000/00 )

Semi-Closed (SC-) Rebreather Advanced SC Rebreather STANDARDS AND REQUIREMENTS TRAINING PROGRAM ( VERSION 2000/00 ) Semi-Closed (SC-) Rebreather Advanced SC Rebreather STANDARDS AND REQUIREMENTS TRAINING PROGRAM ( VERSION 2000/00 ) Table of Contents : 1. CMAS Semi Closed Rebreather Diver Part 1: Standards & Requirements

More information

Basic STPA Tutorial. John Thomas

Basic STPA Tutorial. John Thomas Basic STPA Tutorial John Thomas How is STAMP different? STAMP Model (Leveson, 2003); (Leveson, 2011) Accidents are more than a chain of events, they involve complex dynamic processes. Treat accidents as

More information

Welcome to the Bollard Pull Calculator for Barges!

Welcome to the Bollard Pull Calculator for Barges! Welcome to the Bollard Pull Calculator for Barges! What does this Excel Sheet do? This Excel sheet helps you calculate the Required Bollard pull of a Tug used for towing a Ba How is the Excel Sheet Organised?

More information

Tension Cracks. Topics Covered. Tension crack boundaries Tension crack depth Query slice data Thrust line Sensitivity analysis.

Tension Cracks. Topics Covered. Tension crack boundaries Tension crack depth Query slice data Thrust line Sensitivity analysis. Tension Cracks 16-1 Tension Cracks In slope stability analyses with cohesive soils, tension forces may be observed in the upper part of the slope. In general, soils cannot support tension so the results

More information

Sconser Quarry, Caol Mor

Sconser Quarry, Caol Mor Sconser Quarry, Caol Mor AUTODEPOMOD MODELLIN G REPORT 4.2017 Registered in Scotland No. 138843 Registered Office, 1st Floor, Admiralty Park, Admiralty Road, Rosyth, FIFE, KY11 2YW Marine Harvest ( Scotland)

More information

Evaluation and Improvement of the Roundabouts

Evaluation and Improvement of the Roundabouts The 2nd Conference on Traffic and Transportation Engineering, 2016, *, ** Published Online **** 2016 in SciRes. http://www.scirp.org/journal/wjet http://dx.doi.org/10.4236/wjet.2014.***** Evaluation and

More information

Review for MA098 Real Numbers and Variables

Review for MA098 Real Numbers and Variables Review for MA098 Real Numbers and Variables 1) Ben lost $235 on each of 6 consecutive days in the stock market. If he had $15,150 before his loss, how much does he have after his loss? 1) 2) -187 - (-58.9)

More information