Snails Home Supplementary Electronic Material

Size: px
Start display at page:

Download "Snails Home Supplementary Electronic Material"

Transcription

1 Snails Home Supplementary Electronic Material D.J. Dunstan and D.J. Hodgson This consists of the 2001 and 2002 data file (Excel spreadsheet supplied separately), and also the text below, explaining the Monte Carlo programme and the maximum likelihood code. Monte Carlo: Initialisation Set parameter values nres=200; Number of resident snails, with homing instinct nvis=500; Number of non-resident snails, without homing instinct probout=0.75; Relative probability for snails to leave the garden probvisin=0.025; Relative probability for non-residents to enter the garden probresin=0.25; Relative probability for residents to enter the garden probbirth=0.3; Probability of a birth per unit time (per capture) probdeath=0; Probability of a death per unit time (per capture) probbres=nres/(nres+nvis); Probability of a birth being a resident mixing=30 Mixing rate factor Note the relative probabilities are set to give a quarter of the residents and a thirtieth of the nonresidentsto be in the garden at equilibrium, about 70 snails Create empty lists for record-keeping res={}; vis={}; garden={}; out={}; waste={}; live={}; born={}; recruited to the trial) died={}; the trial) List of resident snails List of non-resident snails List of snails in the garden List of snails outside the garden List of snails in the landing-zone List of snails that are currently alive List of snails that have been born (or List of snails that have died (or left

2 No21={}; the garden of No. 21 List of snails taken to Create table for storing results results=table[0,{i,20},{j,1950}]; Table of lists suitable for plotting as Fig3 Note 20 is more than the expected maximum number of spots; 1950 is the number of captures in the simulations Create the list of 700 snails with three properties snails=table[{0,0,0},{sn,nres+nvis}]; Do[snail[[sn,1]]=1; Make the first batch residents by setting the first property to 1 res=join[res,{sn}],{sn,nres}]; and put them in the list of residents ( isn t used in Mathematica but is included here for clarity) Do[vis=Join[vis,{sn+nres}], {sn,nvis}]; and put the rest in the list of non-residents live=join[res,vis]; Put them all in the list of live snails Note that the first property snail[[sn,1]] indicates non-resident (0) or non-resident (1). The second property indicates where it is: out (0), garden (1), No.21 (3), The third property is the number of spots. The lists res and vis are updated by joining the snail number sn as a list {sn} Allocate residents and non-residents to the garden or out Do[sn=res[[i]]; We do the list of residents prob=probresin/probout If[RandomReal[]<prob, using the random number generator snail[[sn,2]]=1; to allocate at random to the garden (1) garden=join[garden,{sn}], and update the list garden ( isn t used in Mathematica) snail[[sn,2]]=0; or else to allocate to outside the garden (0) out=join[out,{sn}]], and update the list out ( isn t used in Mathematica) {i,length[res]}]; iterating i over the whole list res Note it is not necessary to use the list res, but this code illustrates its use. The variable sn is the snail number. RandomReal[] is a random number equally distributed over the range 0 to 1 Do[prob=probvissin/probout; If[RandomReal[]<prob, We do the list of non-residents

3 snail[[i,2]]=1; Here we take the i th snail directly garden=join[garden,{i}], and put it in the garden... snail[[i,2]]=0;... or out, according to the random number out=join[out,{i}]], {i,nres+1,nres+nvis}]; and iterate over the known non-resident snails Note this code is more compact and faster, but is less easy to read and debug than the code used above for the residents. It does exactly the same thing. Do a single capture to start the results table off i=randominteger[{1,length[garden]}];pick a snail in the garden at random sn=garden[[i]]; use the garden list to get its number sn snail[[sn,2]]=0; give it the property of being out (0) snail[[sn,3]]=1; and give it one spot (third property) garden=drop[garden,{i}]; updating the garden list out=join[out,{sn}]; and the out list results[[1,1]]=1; and make the first entry in the results table Now we iterate over 1949 more captures n=2; done While[n<1951, until n=1950 Capture ng=length[garden]; If[ng>0, empty k=randominteger[{1,ng}]; random sn=garden[[k]]; snail[[s,3]]++; a Tippex spot on it) If[n<1386 Or EvenQ[sn], protocol changed out=join[out,{sn}]; snail[[sn,2]]=0, First capture (n=1) has already been The following code will be iterated Get number ng in the garden Capture can t be done if garden is Pick a snail from the garden at sn is its number increment its spot property (i.e. make n>1385 is the year 2002 when the put it in the out list update its site property

4 No21=Join[No21,{sn}]; put it in the No21 list (2002 and odd-numbered snail snail[[sn,2]]=3]; update its site property (3 for No. 21) garden=drop[garden,{k}]; update the garden list Do[ Update the results list (i.e. fill in the n th column) If[j==snail[[sn,3]], If j is the number of spots the snail now has results[[j,n]]=results[[j,n-1]]+1, increment the value in the previous column results[[j,n]]=results[[j,n-1]]], otherwise copy the previous value {j,length[results]}]]; iterating over the 20 columns n++]; Now increment n as we have made a capture Births If[(n<750 Or n>1385) summer And RandomReal[]<probbirth, capture) < 1 snail=join[snail,{{0,0,0}}]; snail sn=length[snail]; of the list If[RandomReal[]<probbres; or outside garden=join[garden,{sn}]; res=join[res,{sn}]; snail[[sn,1]]=1; snail[[sn,2]]=1; out=join[out,{sn}]; vis=join[vis,{sn}]; snail[[sn,1]]=0; snail[[sn,2]]=0; Births only in the first part of the with a probability (births per Join a new snail to the end of the list its number sn is then the new length Make a random allocation to garden update garden update res set property of being a resident and in garden update out update vis set property of being a non-resident and being out of garden

5 born=join[born,{sn}]]; update list born live=join[live,{sn}]]; update list live Note that we make the rate of births of residents and non-residents proportional to the initial populations and the place of birth is the garden and outside respectively. Deaths These happen at random throughout, and also while overwintering If[RandomReal[]<probdeath, nlive=length[live]; nlive is the number of live snails, in garden and out k=randominteger[{1,nlive}]; so we pick one at random sn=live[[k]]; find its number live=drop[live,{k}]; delete it from the live list died=join[died,{sn}]; add it to the died list If[snail[[sn,2]]0, If the snail in the out list pos=position[out,sn][[1]]; find position in out list out=drop[out,pos]], and delete it If[snail[[sn,2]]1, If the snail is in the garden list pos=position[garden,sn][[1]]; find position in garden list garden=drop[garden,pos]], and delete it If[snail[[sn,2]], If the snail is in the No21 list pos=position[no21,sn][[1]]; find position in No21 list No21=Drop[No21,pos]]; and delete it snail[[sn,2]]=4; set its site property to 4 (dead) pos=position[garden,sn]; Note all snails in garden and outside have the same risk of dying Overwintering deaths If[n==1386, We have just finished 2001 and the next capture will be in 2002 kill=length[born]-length[died]; The number we need to kill to restore the initial population If[kill>0, fkill=kill/length[live]]; The fraction to die is fkill Do[sn=live[[k]]; pick each snail in live in turn If[RandomReal[]<fkill, if it draws the short straw died=join[died,{sn}]; add to died list live=drop[live,{k}]; remove from live list If[snail[[sn,2]]==0, If it is in the out list pos=position[out,sn][[1]]; find its position out=drop[out,pos], and remove it

6 garden list pos=position[garden,sn][[1]];find its position in the garden=drop[garden,pos]];and remove it snail[[sn,2]]=4], set property 2 (place) to 4 (graveyard) {k,length[live],1,-1}]]; iterate over all live snails Mixing Residents go out, and non-residents come visiting ngo=length[garden] probout/mixing;number of snails expected to leave in unit time ngo=integerpart[ngo]+if[random[]<fractionalpart[ngo],1,0]; Make ngo integer Do[k=RandomInteger[{1,Length[garden]}]; sn=garden[[k]]; Pick a snail at random snail[[sn,2]]=0; Set its site to out out=join[out,{sn}]; Add it to the out list garden=drop[garden,{k}], Remove it from the garden list {k,ngo}] Iterate until ngo snails have left Do[sn=out[[j]]; Now look for snails to enter If[snail[[sn,1]]==1, If a resident, prob=probresin, it has the probability probresin to enter prob=probvisin, it has the probability probvisin to enter If[RandomReal[]<prob, garden=join[garden,{sn}]; Add it to the garden list snail[[sn,2]]=1; Set its site to garden out=drop[out,{j}]], Remove it from the out list {j,length[out],1,-mixing}]]]; Repeat until Length[out]/mixing have been looked at End While This is the end of the iteration over 1949 captures

7 Now we plot the results plotresults=table[results[[i]],{i,length[results]}]; fig6a=show[ ListPlot[plotresults, PlotRange->All, Joined->True, PlotStyle->{Blue,Red,Green,Black}], pdata, Graphics[Line[{{1385,600},{1385,0}}]]]

8 SUPPLEMENTARY INFORMATION 2 R Code to re-create the maximum likelihood analyses in R ###Requires library Rcapture library(rcapture) #enter simplified histogram of frequency of number of recaptures observed<-c(136,61,41,56,37,22,24,15,3,3,4,4,2) #enter sequence of number of spots nbcap<-seq(1,13) #create simple recapture matrix snail.cmr<-cbind(nbcap,observed) #fit the homogeneous (Poisson) model snail.closed.mhpoisson<-closedpci.0(snail.cmr, dfreq=true, dtype="nbcap", t=62, t0=13,m="m0", h="poisson") #fit the heterogeneous (Chao) model snail.closed.mhchao<-closedpci.0(snail.cmr, dfreq=true, dtype="nbcap", t=62, t0=13,m="mh", h="chao") #display results, giving estimated population sizes, confidence intervals and AIC snail.closed.mhpoisson snail.closed.mhchao #plot the residuals, allowing inference of surfeit/deficit of snails with s spots plot(snail.closed.mhpoisson) plot(snail.closed.mhchao)

BeST Completely Randomised Two Factor Design Demo with R Demonstration as a Case Study Factorial ANOVA and Data compilation

BeST Completely Randomised Two Factor Design Demo with R Demonstration as a Case Study Factorial ANOVA and Data compilation Demonstration as a Case Study Factorial ANOVA and Data compilation All experiments begin with a Research Question, we are not focusing on that in this demonstration. The figures show the R code and output.

More information

presentations the week of the final exams. Anyone who misses the appointment will receive a grade of zero.

presentations the week of the final exams. Anyone who misses the appointment will receive a grade of zero. CS 116 Section 4 PROJECT Spring 2016 Grade: Up to 12 points. Rules: To be worked on individually. Must be presented to the instructor in person in order to be graded. Similar projects will both receive

More information

Reported Fires in High-Rise Structures in Selected Occupancies with and without Automatic Extinguishing Systems by Extent of Smoke Damage

Reported Fires in High-Rise Structures in Selected Occupancies with and without Automatic Extinguishing Systems by Extent of Smoke Damage Reported Fires in High-Rise Structures in Selected Occupancies with and without Automatic Extinguishing Systems by Extent of Smoke Damage Marty Ahrens Fire Analysis and Research Division National Fire

More information

Standard ECMA th Edition - December Declared Noise Emission Values of Information Technology and Telecommunications Equipment

Standard ECMA th Edition - December Declared Noise Emission Values of Information Technology and Telecommunications Equipment Standard ECMA-109 4 th Edition - December 1996 Standardizing Information and Communication Systems Declared Noise Emission Values of Information Technology and Telecommunications Equipment Phone: +41 22

More information

Ecography. Supplementary material

Ecography. Supplementary material Ecography E7519 García, D., Martínez, D., Herrera, J. M. and Morales, J. M. 2012. Functional heterogeneity in a plant frugivore assemblage enhances seed dispersal resilience to habitat loss. Ecography

More information

AnthropologischeGesellschaftWien. Model Building. Gabriel Wurzer, Vienna University of Technology

AnthropologischeGesellschaftWien. Model Building. Gabriel Wurzer, Vienna University of Technology AnthropologischeGesellschaftWien Model Building Gabriel Wurzer, Vienna University of Technology www.iemar.tuwien.ac.at PREFACE or: filling the academical quarter When things go wrong, or: HOW TO DEBUG

More information

Structure Fires in Hotels and Motels

Structure Fires in Hotels and Motels Structure Fires in Hotels and Motels John Hall Fire Analysis and Research Division National Fire Protection Association October 2006 National Fire Protection Association, 1 Batterymarch Park, Quincy, MA

More information

Student Exploration: Seed Germination

Student Exploration: Seed Germination Name: Date: Student Exploration: Seed Germination Vocabulary: controlled experiment, germinate, hypothesis, mean, seed, trial, variable Prior Knowledge Question (Do this BEFORE using the Gizmo.) Plants

More information

Application Note. Application Note for BAYEX

Application Note. Application Note for BAYEX Application Note Application Note for BAYEX Preface This application note provides the user a more detailed description of the Bayesian statistical methodology available in Version 8.05 and above, of the

More information

(c) 1520 St. Olaf Ave. Northfield, MN 55057

(c) 1520 St. Olaf Ave. Northfield, MN 55057 Milkweed Germination and Planting Protocol Notes: Each school will receive 300 seeds total: 100 from their home site, or ecotype, and 50 from each for four other ecotypes. The seeds will be a mix of seeds

More information

Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems

Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems OBJECTIVES Warning: though the experiment has educational objectives (to learn about boiling heat transfer, etc.), these should not

More information

- Check Test Methodology for Tumble Dryers Energy Label & Ecodesign -

- Check Test Methodology for Tumble Dryers Energy Label & Ecodesign - - Check Test Methodology for Tumble Dryers Energy Label & Ecodesign - Guidelines and procedures on how to perform simplified check testing operations for tumble dryers Version 6.0 April 2015 Table of

More information

An Introduction to NetLogo

An Introduction to NetLogo AnthropologischeGesellschaftWien An Introduction to NetLogo Gabriel Wurzer, Vienna University of Technology www.iemar.tuwien.ac.at Netlogo free* agent-based simulation environment by Uri Wilensky, Northwestern

More information

Measure Lifetime Derived from a Field Study of Age at Replacement

Measure Lifetime Derived from a Field Study of Age at Replacement Measure Lifetime Derived from a Field Study of Age at Replacement David Robison, MicroGrid David Cohan Bruce True, Portland General Electric The traditional engineering technique for estimating the expected

More information

Alarms Updated 03/26/2018

Alarms Updated 03/26/2018 Updated 03/26/2018 Table of Contents Alarms Alarms in OneView...1 Types of Alarms...1 Setting up Alarms...2 Alarm Configuration...4 Customize Alarm Parameters...5 List of Configured Alarms...7 Acknowledging

More information

Operational Fertilization Monitoring An alternative monitoring protocol

Operational Fertilization Monitoring An alternative monitoring protocol Operational Fertilization Monitoring An alternative monitoring protocol Rob Brockley, RPF(Ret) Prepared for Fertilization Program Web Meeting March 5, 2015 Slide #1 Why growth response monitoring? Are

More information

Nest Learning Thermostat Summer 2012 Savings

Nest Learning Thermostat Summer 2012 Savings WHITE PAPER Nest Learning Thermostat Summer 2012 Savings Nest Labs, Inc. October 2012! 1 1. Introduction The summer of 2012 was the first cooling season that Nest was available to customers. We wanted

More information

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1 Operation Manual Fighter ProVision Software Version: 0.0 Revision: 1 TABLE OF CONTENTS 1. Introduction 5 2. Software Installation 5 3. PC Users 6 3.1 Introduction 6 3.2 Default Code 6 3.3 Edit PC User

More information

Thermal Properties and Temperature

Thermal Properties and Temperature Thermal Properties and Temperature Question Paper 5 Level IGCSE Subject Physics Exam Board CIE Topic Thermal Physics Sub-Topic Thermal Properties and Temperature Paper Type Alternative to Practical Booklet

More information

Safety Manual. XNXTM Universal Transmitter. Fault Diagnostic Time Interval Proof Test Proof Testing Procedure

Safety Manual. XNXTM Universal Transmitter. Fault Diagnostic Time Interval Proof Test Proof Testing Procedure XNXTM Universal Transmitter Safety Manual Table of Contents SIL 2 Certificates Overview Safety Parameters Fault Diagnostic Time Interval Proof Test Proof Testing Procedure Revision 2 Table of Contents

More information

Supplementary Data. Chromosome 16q22 variants associated with low-density lipoprotein cholesterol levels correlate with

Supplementary Data. Chromosome 16q22 variants associated with low-density lipoprotein cholesterol levels correlate with Supplementary Data Chromosome 16q22 variants associated with low-density lipoprotein cholesterol levels correlate with ZFHX3 expression in a transcript-specific manner Supplementary Methods DNA and RNA

More information

TESTS OF ADSIL COATING

TESTS OF ADSIL COATING TESTS OF ADSIL COATING Test B - Long Term Test FSEC-CR-1259-01 July 11, 2001 Prepared for: Bob Suggs Florida Power & Light Company 9250 W. Flagler Street Miami, Florida 33174 Principal Investigator Dr.

More information

Marlin Filament Monitoring October 2014

Marlin Filament Monitoring October 2014 Why is Filament Monitoring Useful? Marlin Filament Monitoring October 2014 There are a number of filament monitors and filament break detectors available which will generate an alarm if the filament runs

More information

Benefits of Enhanced Event Analysis in. Mark Miller

Benefits of Enhanced Event Analysis in. Mark Miller Benefits of Enhanced Event Analysis in Data Center OTDR Testing Mark Miller Dr. Fang Xu AFL/Noyes Test & Inspection Overview Challenges Topics Techniques and Improvements Benefits of enhanced event analysis

More information

Activity Sheet Chapter 1, Lesson 1 Molecules Matter

Activity Sheet Chapter 1, Lesson 1 Molecules Matter Activity Sheet Chapter 1, Lesson 1 Molecules Matter Name: Date: Question to investigate- Is the speed of water molecules different in hot and cold water? Hot water in a clear plastic cup Cold water in

More information

Airbus 380 Evacuation Demonstration

Airbus 380 Evacuation Demonstration Airbus 380 Evacuation Demonstration BP/ES/BW - SCSI Evacuation 2/10/2009 1 Demonstration? OR Simulation? BP/ES/BW - SCSI Evacuation 2/10/2009 2 Simulation Studies of Evacuation from Large Transport Category

More information

Exercise 2-4. Heat Exchangers (Optional Exercise) EXERCISE OBJECTIVE DISCUSSION OUTLINE. Description of a brazed plate heat exchanger DISCUSSION

Exercise 2-4. Heat Exchangers (Optional Exercise) EXERCISE OBJECTIVE DISCUSSION OUTLINE. Description of a brazed plate heat exchanger DISCUSSION Exercise 2-4 Heat Exchangers (Optional Exercise) EXERCISE OBJECTIVE In this exercise, you will become familiar with plate heat exchangers. You will set up a cooling and a heating loop passing through the

More information

Pack Calculation Pro. Users guide. Version Morten Juel Skovrup

Pack Calculation Pro. Users guide. Version Morten Juel Skovrup Pack Calculation Pro Users guide Version 4.10 Morten Juel Skovrup 1 Contents 2 Introduction... 5 3 Example... 7 3.1 Setup systems... 7 3.1.1 Selecting compressors... 9 3.1.2 Suction side... 12 3.1.3 Discharge

More information

Assessment of the Safety Integrity of Electrical Protection Systems in the Petrochemical Industry

Assessment of the Safety Integrity of Electrical Protection Systems in the Petrochemical Industry Assessment of the Safety Integrity of Electrical Protection Systems in the Petrochemical Industry 1. Introduction Author: Colin Easton ProSalus Limited ~ Independent Safety Consultants Within the United

More information

GARDEN BED PAVERS. Number of Pavers Garden Bed

GARDEN BED PAVERS. Number of Pavers Garden Bed GARDEN BED PAVERS This activity is used in year 8 (patterns and algebra) from Maths300. Using TI-Nspire Lists & Spreadsheet and Graphs & Geometry, a rule to predict the number of Pavers around a Garden

More information

wrong right

wrong right wrong 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 right 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 score 100 96.8 93.5 90.3 87.1 83.9 80.6 77.4 74.2 71 67.7 64.5 61.3 58.1 54.8 51.6 48.4

More information

Evaluation of the Incon TS-LLD Line Leak Detection System

Evaluation of the Incon TS-LLD Line Leak Detection System Evaluation of the Incon TS-LLD Line Leak Detection System (for Hourly Testing, Monthly Monitoring, and Annual Line Tightness Testing) EPA Forms PREPARED FOR Incon (Intelligent Controls) July 6, 1995 Ken

More information

blue flowers blue and/or pink and/or purple flowers

blue flowers blue and/or pink and/or purple flowers Student s Name Class Date LAB-AIDS Kit #320 - Simulating Threshold Effects of Soil ph on Hydrangea Plants Student Worksheet and Guide Soil ph, the acidity or alkalinity (basicity) of a soil is a very important

More information

SMOKE MANAGEMENT AND EGRESS ANALYSIS OF A SPORTS ARENA USING THE PERFORMANCE-BASED DESIGN

SMOKE MANAGEMENT AND EGRESS ANALYSIS OF A SPORTS ARENA USING THE PERFORMANCE-BASED DESIGN , Volume 4, Number 2, p.73-83, 2003 SMOKE MANAGEMENT AND EGRESS ANALYSIS OF A SPORTS ARENA USING THE PERFORMANCE-BASED DESIGN K.H. Yang and C.S. Yang Mechanical Engineering Department, National Sun Yat-Sen

More information

When Duct Sealing Kills HVAC Equipment and Efficiency

When Duct Sealing Kills HVAC Equipment and Efficiency When Duct Sealing Kills HVAC Equipment and Efficiency National Comfort Institute is an international training and development company headquartered in Cleveland, Ohio, with offices in Nashville, Tennessee,

More information

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.)

Total Solution Sirius Cooling Control Unit (CCU) Sirius CONFIGURATION TOOL. (Windows -based configuration application.) Sirius CONFIGURATION TOOL (Windows -based configuration application.) All units are at the time of shipment to customer configured ready for operation to a user specific hardware and firmware setup as

More information

Milestone XProtect Alarm Matrix Integration 1.0

Milestone XProtect Alarm Matrix Integration 1.0 Milestone XProtect Alarm Matrix Integration 1.0 Milestone XProtect Alarm Matrix Integration 1.0 Target Audience This document is aimed at system users and provides descriptions on how to install, configure

More information

Pressure Transmitter cerabar M PMC 41/45 cerabar M PMP 41/45/46/48 with Output Signal ma/hart

Pressure Transmitter cerabar M PMC 41/45 cerabar M PMP 41/45/46/48 with Output Signal ma/hart Safety Manual SD 172P/00/en 71036063 Pressure Transmitter cerabar M PMC 41/45 cerabar M PMP 41/45/46/48 with Output Signal 4...20 ma/hart Functional Safety Manual Application Pressure measurement (e.g.

More information

Pressure Transmitter cerabar S PMC 731/631 cerabar S PMP 731/635 with ma output signal

Pressure Transmitter cerabar S PMC 731/631 cerabar S PMP 731/635 with ma output signal Safety Manual SD 159P/00/en Pressure Transmitter cerabar S PMC 731/631 cerabar S PMP 731/635 with 4...20 ma output signal Functional safety manual Application Pressure measurements (e.g. limit pressure

More information

Proservo NMS5- / NMS7-

Proservo NMS5- / NMS7- Functional Safety Manual Proservo NMS5- / NMS7- Tank gauge for Liquid level measurement with 4 to 20mA Output or with Alarm Relay Contact Output Application Operating minimum (e.g. dry run protection),

More information

Meltdown: Heat Conduction in Different Materials

Meltdown: Heat Conduction in Different Materials Meltdown: Heat Conduction in Different Materials You probably have lots of firsthand experience with melting. If you hold a piece of chocolate in your hand too long, it melts into a sticky mess. If you

More information

BACK SCATTER ELECTRON (BSE) Rev. 0313

BACK SCATTER ELECTRON (BSE) Rev. 0313 Back-scatter Electron Secondary Electron BACK SCATTER ELECTRON (BSE) Rev. 0313 Contents BSE Introduction (3) Mounting the Detector (4) Load the Sample (5) Back-Scatter Settings (6-7) Optimize Image (8)

More information

Document # R01

Document # R01 Viconics VT7600 Series PIR-Ready Rooftop Unit Controllers Part 1 General The VT7600 series is designed for single-stage and multi-stage control of heating/cooling equipment such as rooftop and self-contained

More information

WTFRC Project # AH A Penn State Project: WTFRC Soil Moisture 39E8

WTFRC Project # AH A Penn State Project: WTFRC Soil Moisture 39E8 WTFRC Project # AH-02-206A Penn State Project: 404-66 WTFRC Soil Moisture 39E8 Project Title: Towards a better understanding of soil moisture deficits on shoot & root physiology Principal Investigator:

More information

Differential Pressure Transmitter deltabar S PMD 230/235 deltabar S FMD 230/630/633 with ma output signal

Differential Pressure Transmitter deltabar S PMD 230/235 deltabar S FMD 230/630/633 with ma output signal Safety Manual SD 158P/00/en Differential Pressure Transmitter deltabar S PMD 230/235 deltabar S FMD 230/630/633 with 4...20 ma output signal Functional safety manual Application Overspill protection or

More information

QAQC LABS ANALYTICAL DRYING

QAQC LABS ANALYTICAL DRYING WHAT IS FLUID BED? By forcing enough air through a bed of particles, the particle bed may assume a fluid-like state (resembling a boiling liquid). Heating the incoming air and managing air flow rate through

More information

LH-20S (RESISTANCE ALARM SYSTEM)

LH-20S (RESISTANCE ALARM SYSTEM) PORTABLE MOISTURE DETECTOR LH-20S (RESISTANCE ALARM SYSTEM) USER MANUAL levr Ver. 2.6 1. Moisture Measurements of Pre-Insulated Heating Pipelines with the Resistance Alarm System For the purpose of measurement,

More information

14 Drying. I Basic relations and definitions. Oldřich Holeček, Martin Kohout

14 Drying. I Basic relations and definitions. Oldřich Holeček, Martin Kohout 14 Drying Oldřich Holeček, Martin Kohout I Basic relations and definitions Drying is a process which is used for removing the liquid from the solid material. In standard chemical engineering practice drying

More information

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal Research Journal of Applied Sciences, Engineering and Technology 5(22): 5217-5222, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: October 09, 2012 Accepted: December

More information

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved.

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved. Introduction to Modular Programming Rev 5058-CO900C Copyright 2012 Rockwell Automation, Inc. All rights reserved. 2 Agenda Why Modular Programming? Architecting Modular Code Machine Example Meeting Code

More information

Safety in the process industry

Safety in the process industry Products Solutions Services Safety in the process industry Simply reliable Table of contents Endress+Hauser: At home in the process safety Smart devices and concepts for hazardous areas Introduction to

More information

Electric radiator tests

Electric radiator tests Electric radiator tests Carried out for Haverland By P Stonard 16 July 2010 Electric radiator tests Carried out for: Haverland Avda San Martin De Valdeigiesias Km-2,200 Alcorcon MADRID 28925 Spain Contract:

More information

General The Dryer Programmer for Windows Computers

General The Dryer Programmer for Windows Computers Published Manual Number: MQYDSB01 Specified Date: 20131120 As-of Date: 20131120 Access Date: 20131120 Depth: Detail Custom: n/a Applicability: YDS Language Code: ENG01, Purpose: publication, Format: 1colA

More information

SELECTIONS FROM HOME COOKING FIRE PATTERNS AND TRENDS CHARCOAL GRILLS

SELECTIONS FROM HOME COOKING FIRE PATTERNS AND TRENDS CHARCOAL GRILLS SELECTIONS FROM HOME COOKING FIRE PATTERNS AND TRENDS CHARCOAL GRILLS John R. Hall, Jr. Fire Analysis and Research Division National Fire Protection Association July 2006 National Fire Protection Association,

More information

GAMMA OTDR application consists of main window and menu. Using menu user can operate in different modes of application.

GAMMA OTDR application consists of main window and menu. Using menu user can operate in different modes of application. GAMMA OTDR Introduction...1 Using GAMMA OTDR...1 Application main window...1 Menu description...2 file...2 instrument...2 mode...5 events...9 view...11 Introduction GAMMA OTDR is the first Android application

More information

Unifying Alarms and Operating Envelopes for the Achievement of KPI s and Business Objectives

Unifying Alarms and Operating Envelopes for the Achievement of KPI s and Business Objectives Geometric Process Control Unifying Alarms and Operating Envelopes for the Achievement of KPI s and Business Objectives Robin Brooks, Alan Mahoney, John Wilson, Na Zhao, Process Plant Computing Ltd (PPCL),

More information

Fire Severity for Structural Design

Fire Severity for Structural Design Fire Severity for Structural Design A UK Perspective Susan Deeny, PhD 2 Broadgate Phase 8 3 5 Shaping a better world Experience of working in Abu Dhabi 6 UAE 7 Fire Severity for Structural Analysis Building

More information

BASIC-Tiger Application Note No. 029 Rev Waking up sleeping tigers. Gunther Zielosko. 1. Basics Real Time Clock

BASIC-Tiger Application Note No. 029 Rev Waking up sleeping tigers. Gunther Zielosko. 1. Basics Real Time Clock Waking up sleeping tigers Gunther Zielosko 1. Basics 1.1. Real Time Clock BASIC- or TINY-Tiger with built-in Real Time Clock (RTC) have a few advantages over those without RTC. This CMOS clock with its

More information

Analyzing of Reduction Process of Urban Open Spaces in Process of Cities Development with Emphasis on Crisis Management in Tehran Metropolis

Analyzing of Reduction Process of Urban Open Spaces in Process of Cities Development with Emphasis on Crisis Management in Tehran Metropolis Journal of Sustainable Development; Vol. 5, No. 9; 2012 ISSN 1913-9063 E-ISSN 1913-9071 Published by Canadian Center of Science and Education Analyzing of Reduction Process of Urban Open Spaces in Process

More information

ApacheHVAC User Guide Part B: Equipment, Loops, Components, and Controls

ApacheHVAC User Guide Part B: Equipment, Loops, Components, and Controls ApacheHVAC User Guide Part B: Equipment, Loops, Components, and Controls IES Virtual Environment Copyright 2017 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is

More information

The Economical Approach to Specialized Finishing and Surface Preparation

The Economical Approach to Specialized Finishing and Surface Preparation The Economical Approach to Specialized Finishing and Surface Preparation EMPIRE: A LEADER IN AIR-BLAST TECHNOLOGY FOR OVER 60 YEARS Empire has specialized in designing and manufacturing abrasive-blasting

More information

Statistical Testing of Electric Meters

Statistical Testing of Electric Meters Statistical Testing of Electric Meters A Presentation for the North Carolina Meter School & Conference June 25, 2003 Presented by Peter Yarger, P.E. Project Manager, Advent Design Corp. 1 What is Statistical

More information

OPERATION MANUAL. Indoor unit for hot water heat pump system and options EKHBH016AB EKHBX016AB

OPERATION MANUAL. Indoor unit for hot water heat pump system and options EKHBH016AB EKHBX016AB OPERATION MANUAL Indoor unit for hot water heat pump system and options EKHBH016AB EKHBX016AB EKHBH016AB*** EKHBX016AB*** Indoor unit for hot water heat pump system and options CONTENTS Page Introduction...1

More information

HALON FLIGHTLINE EXTINGUISHER EVALUATION: DATA SUPPORTING STANDARD DEVELOPMENT [INCLUDES NOVEMBER 2007 ADDENDUM]

HALON FLIGHTLINE EXTINGUISHER EVALUATION: DATA SUPPORTING STANDARD DEVELOPMENT [INCLUDES NOVEMBER 2007 ADDENDUM] AFRL-RX-TY-TR-2008-4573 HALON FLIGHTLINE EXTINGUISHER EVALUATION: DATA SUPPORTING STANDARD DEVELOPMENT [INCLUDES NOVEMBER 2007 ADDENDUM] John R. Hawk Applied Research Associates P.O. Box 40128 Tyndall

More information

ADIPEC 2013 Technical Conference Manuscript

ADIPEC 2013 Technical Conference Manuscript ADIPEC 2013 Technical Conference Manuscript Name: Heidi Fuglum Company: ABB AS Job title: Deployment Manager Address: Ole Deviksvei, Oslo, Norway Phone number: +47 91 36 98 70 Email: Heidi.Fuglum@no.abb.com

More information

User Manual. Dryer Controller M720

User Manual. Dryer Controller M720 User Manual Dryer Controller M720 Hardware version 1.00 Software version 1.00 Preliminary version Manual M720 Dryer controller Page 1 of 42 Document history Preliminary version: - Created in April, 2009

More information

Questions for the HFD regarding Bill 69, Evaluation Worksheet for High-Rise Residential Buildings User s Guide ( New User s Guide or NUG )

Questions for the HFD regarding Bill 69, Evaluation Worksheet for High-Rise Residential Buildings User s Guide ( New User s Guide or NUG ) Questions for the HFD regarding Bill 69, Evaluation Worksheet for High-Rise Residential Buildings User s Guide ( New User s Guide or NUG ) 1. Condo and co-op associations believed that the Life Safety

More information

Modeling Water Supply Reliability following a major earthquake

Modeling Water Supply Reliability following a major earthquake PNWS AWWA May 10, 2013 Modeling Water Supply Reliability following a major earthquake Anne Symonds, PE AECOM David Myerson, PE SFPUC AECOM AGS, A Joint Venture Agenda AWSS and Background Level Of Service

More information

ILNAS-EN 61649:2008. Weibull analysis. Analyse de Weibull. Weibull-Analyse

ILNAS-EN 61649:2008. Weibull analysis. Analyse de Weibull. Weibull-Analyse Weibull analysis Analyse de Weibull Weibull-Analyse 11/2008 National Foreword This European Standard EN 61649:2008 was adopted as Luxembourgish Standard in November 2008. Every interested party, which

More information

Temperature Monitoring, Operation and Maintenance of Research Freezers and Refrigerators SOP-TMOMRFR-01

Temperature Monitoring, Operation and Maintenance of Research Freezers and Refrigerators SOP-TMOMRFR-01 Standard Operating Procedure Temperature Monitoring, Operation and Maintenance of Research Freezers and Refrigerators SOP Number: SOP-TMOMRFR-01 Category: Lab Process Supersedes: N/A Effective Date: December

More information

Datalogging as standard

Datalogging as standard Datalogging as standard for expanded performance Autofim II and Autofim II GC have a sophisticated datalogging system, as standard, which enables you to keep a permanent data record. The memory is capable

More information

MAKING MODERN LIVING POSSIBLE. TP7001 Range Electronic 7 Day Programmable Room Thermostat. User Guide. Danfoss Heating

MAKING MODERN LIVING POSSIBLE. TP7001 Range Electronic 7 Day Programmable Room Thermostat. User Guide. Danfoss Heating MAKING MODERN LIVING POSSIBLE TP7001 Range Electronic 7 Day Programmable Room Thermostat Danfoss Heating User Guide TP7001 Electronic 7 Day Programmable Room Thermostat For a large print version of these

More information

Technical Report Proven In Use SITRANS P500

Technical Report Proven In Use SITRANS P500 Technical Report Proven In Use SITRANS P500, Industry Sector, Industry Automation Division, Sensors and Communication, PD PA PI R&D PM CRT Oestliche Rheinbrueckenstr. 50 76187 Karlsruhe, Germany Number:

More information

Davis Soil Moisture and Temperature Station Protocol

Davis Soil Moisture and Temperature Station Protocol Davis Soil Moisture and Temperature Station Protocol Purpose To log soil data using a Davis soil moisture and temperature station Overview Soil moisture and temperature sensors are installed at multiple

More information

2001: Ph.D. in Statistics, North Carolina State University, Raleigh, NC, U.S.A.

2001: Ph.D. in Statistics, North Carolina State University, Raleigh, NC, U.S.A. ASSOCIATE PROFESSOR DR. KAMON BUDSABA E-mail : kamon@mathstat.sci.tu.ac.th,k_budsaba@hotmail.com Homepage: http://mathstat.sci.tu.ac.th/~kamon EDUCATION: 2001: Ph.D. in Statistics, North Carolina State

More information

DR Series Appliance Cleaner Best Practices. Technical Whitepaper

DR Series Appliance Cleaner Best Practices. Technical Whitepaper DR Series Appliance Cleaner Best Practices Technical Whitepaper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY

More information

CLOTHES WASHING AS HOUSEHOLD END-USE: COMPARISON OF DIFFERENT APPLIANCE MODELS IN VIEW OF EXPECTED WATER SAVINGS

CLOTHES WASHING AS HOUSEHOLD END-USE: COMPARISON OF DIFFERENT APPLIANCE MODELS IN VIEW OF EXPECTED WATER SAVINGS CLOTHES WASHING AS HOUSEHOLD END-USE: COMPARISON OF DIFFERENT APPLIANCE MODELS IN VIEW OF EXPECTED WATER SAVINGS BE Botha 1, HE Jacobs 2, U Terblanche 3 1,2 Department of Civil Engineering, Stellenbosch

More information

A NOVEL METHODOLOGY FOR GENERATING RESIDENTIAL BUILDINGS ELECTRICITY DEMAND PROFILES

A NOVEL METHODOLOGY FOR GENERATING RESIDENTIAL BUILDINGS ELECTRICITY DEMAND PROFILES Proceedings of BS215: 14th Conference of International Building Performance Simulation Association, Hyderabad, India, Dec. 7-9, 215. A NOVEL METHODOLOGY FOR GENERATING RESIDENTIAL BUILDINGS ELECTRICITY

More information

PRELIMINARY ANALYSIS OF THE NUMBER OF OCCUPANTS, FIRE GROWTH, DETECTION TIMES AND PRE-MOVEMENT TIMES FOR PROBABILISTIC RISK ASSESSMENT

PRELIMINARY ANALYSIS OF THE NUMBER OF OCCUPANTS, FIRE GROWTH, DETECTION TIMES AND PRE-MOVEMENT TIMES FOR PROBABILISTIC RISK ASSESSMENT PRELIMINARY ANALYSIS OF THE NUMBER OF OCCUPANTS, FIRE GROWTH, DETECTION TIMES AND PRE-MOVEMENT TIMES FOR PROBABILISTIC RISK ASSESSMENT DAVID CHARTERS DEAN MCGRAIL Arup Fire, 78 East Street, Leeds, LS9

More information

normally overwinter someplace outside. No, what more often happens is that these wasps

normally overwinter someplace outside. No, what more often happens is that these wasps Gardening with Chuck for April 3-9, 2017 Wasps in the house? and Extension Ag & Natural Resources Agent. This is the time of year that people, especially if they have a fireplace or wood stove in the house,

More information

Appendix 3 Thermostats

Appendix 3 Thermostats Appendix 3 Thermostats This appendix describes how to work with thermostats in HCA and covers these topics: Supported thermostats Creating a thermostat device Thermostat properties Working with thermostats

More information

(a) Field margin types: At the local scale, three types of field margins were chosen to represent

(a) Field margin types: At the local scale, three types of field margins were chosen to represent Appendix S1. Supplemental Methods (a) Field margin types: At the local scale, three types of field margins were chosen to represent different levels of structural complexity: (i) grass margin, a perennial

More information

PRESSURE-ENTHALPY CHARTS AND THEIR USE By: Dr. Ralph C. Downing E.I. du Pont de Nemours & Co., Inc. Freon Products Division

PRESSURE-ENTHALPY CHARTS AND THEIR USE By: Dr. Ralph C. Downing E.I. du Pont de Nemours & Co., Inc. Freon Products Division INTRODUCTION PRESSURE-ENTHALPY CHARTS AND THEIR USE The refrigerant in a refrigeration system, regardless of type, is present in two different states. It is present as liquid and as vapor (or gas). During

More information

ROTATION CROP EFFECTS ON RHIZOCTONIA DISEASES OF SUGARBEET IN INFESTED FIELDS. Carol E. Windels and Jason R. Brantner

ROTATION CROP EFFECTS ON RHIZOCTONIA DISEASES OF SUGARBEET IN INFESTED FIELDS. Carol E. Windels and Jason R. Brantner ROTATION CROP EFFECTS ON RHIZOCTONIA DISEASES OF SUGARBEET IN INFESTED FIELDS Carol E. Windels and Jason R. Brantner Professor of Plant Pathology and Research Fellow, respectively University of Minnesota,

More information

Safety Manual. XNX TM Universal Transmitter. Table of Contents SIL 2 Certificates Overview Safety Parameters

Safety Manual. XNX TM Universal Transmitter. Table of Contents SIL 2 Certificates Overview Safety Parameters XNX TM Universal Transmitter Safety Manual Table of Contents SIL 2 Certificates Overview Safety Parameters Fault Diagnostic Time Interval Proof Test Proof Testing Procedure Table of Contents 1 SIL 2 Certificate...3

More information

OPI-integris Advantages

OPI-integris Advantages Agenda OPI-integris Advantages OPI-integris System Solutions IntegrisPro Advanced Grain Management System IntegrisPro System Applications Advanced Grain Management OPI-integris Service Enhancements OPI-integris

More information

DigiAir QUICK GUIDE & INSTRUCTION MANUAL

DigiAir QUICK GUIDE & INSTRUCTION MANUAL DigiAir QUICK GUIDE & INSTRUCTION MANUAL The most trusted brand in Alarm Signalling www.csldual.com @CSLDualCom CSL DualCom Limited Figure 1 - DigiAir Yellow Comms LED Red Fault LED Yellow Service LED

More information

INSTITUTE OF TOWN PLANNERS, INDIA TOWN PLANNING EXAMINATION BOARD ASSOCIATESHIP EXAMINATION. ASSIGNMENT: Semester -II Year 2019

INSTITUTE OF TOWN PLANNERS, INDIA TOWN PLANNING EXAMINATION BOARD ASSOCIATESHIP EXAMINATION. ASSIGNMENT: Semester -II Year 2019 SUBJECT: C.2.1. Design of Human Settlements Maximum Marks: 20 1. Describe the link between urban design and urban planning. Explain the role of urban design in town planning. 2. Explain the importance

More information

intrinsically safe detector for hydrocarbon gases

intrinsically safe detector for hydrocarbon gases portable flame ionisation detector intrinsically safe detector for hydrocarbon gases Intrinsically safe detector for hydrocarbon gases Monitoring gases in confined and potentially explosive situations

More information

Characterizing large residential appliance peak load reduction potential utilizing a probabilistic approach

Characterizing large residential appliance peak load reduction potential utilizing a probabilistic approach Science and Technology for the Built Environment (2016) 22, 720 732 Copyright C 2016 ASHRAE. ISSN: 2374-4731 print / 2374-474X online DOI: 10.1080/23744731.2016.1195660 Characterizing large residential

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center System Alarms Guide Release 10.2.1 E77506-01 June 2017 1 Oracle Communications Performance Intelligence Center System Alarms Guide, Release 10.2.1

More information

Configuration and Operation Manual for the Unipos

Configuration and Operation Manual for the Unipos AxxonSoft Configuration and Operation Manual for the Unipos Integration Module Version 1.1 Moscow 2010 Contents CONTENTS... 2 1 LIST OF TERMS... 4 2 INTRODUCTION... 6 2.1 Document purpose... 6 2.2 Purpose

More information

Reliability and availability analysis of a 10 K helium refrigerator

Reliability and availability analysis of a 10 K helium refrigerator Reliability and availability analysis of a 0 kw@0 K helium refrigerator J Li,, L Y Xiong, L Q Liu, H R Wang, and B M Wang Key Laboratory of Cryogenics, Technical Institute of Physics and Chemistry, Chinese

More information

California Pistachio Research Board. Workgroup/Department: Pistachio Work Group / Plant Sciences Department at UC Davis

California Pistachio Research Board. Workgroup/Department: Pistachio Work Group / Plant Sciences Department at UC Davis California Pistachio Research Board FIRST QUARTER RESEARCH PROGRESS REPORT: AUGUST 2013 Workgroup/Department: Pistachio Work Group / Plant Sciences Department at UC Davis Project Year: 2013 Anticipated

More information

IR-4 Ornamental Horticulture Program Trial Report

IR-4 Ornamental Horticulture Program Trial Report Project Title: Evaluation of phytotoxicity of Mogeton (Quinoclamine) on Bearberry Cotoneaster (Cotoneaster dammeri Coral Beauty ) IR4 PR#: 23698 Report date: September 28, 26 Authors: Heiner Lieth and

More information

Code of Practice. Efficient Use of Electricity

Code of Practice. Efficient Use of Electricity Code of Practice on Efficient Use of Electricity CODE OF PRACTICE ON EFFICIENT USE OF ELECTRICITY Everyone wants to save money on the energy they use. By taking a number of simple energy efficiency steps,

More information

Operating manual. Wascator FOM71 CLS

Operating manual. Wascator FOM71 CLS Operating manual Wascator FOM71 CLS Operating manual in original language 438 9200-91/EN 2010.05.03 Register now And be able to join the Wascator FOM 71 CLS web site where you can find: General information

More information

A. General: Horizontal and backbone cabling shall be verified in accordance with ANSI/TIA/EIA-568-C and the addendum for fiber optic testing.

A. General: Horizontal and backbone cabling shall be verified in accordance with ANSI/TIA/EIA-568-C and the addendum for fiber optic testing. 3.4 TESTING OF FIBER OPTICS CABLING A. General: Horizontal and backbone cabling shall be verified in accordance with ANSI/TIA/EIA-568-C and the addendum for fiber optic testing. B. General: In the event

More information

Information and Installation Guide

Information and Installation Guide Information and Installation Guide Living Soft Fall allows turf to be used in fall zones of playgrounds safely and to the Australian Standards. ^ Turf being used at a playground without Living Soft Fall

More information

Coupling Multiple Hypothesis Testing with Proportion Estimation in Heterogeneous Categorical Sensor Networks

Coupling Multiple Hypothesis Testing with Proportion Estimation in Heterogeneous Categorical Sensor Networks Advancing the Science of Information Coupling Multiple Hypothesis Testing with Proportion Estimation in Heterogeneous Categorical Sensor Networks DTRA SBIR Phase II Contract: W911SR-10-C-0038 Chris Calderon,

More information