Excel Solver Case: Beach Town Lifeguard Scheduling

Size: px
Start display at page:

Download "Excel Solver Case: Beach Town Lifeguard Scheduling"

Transcription

1 130 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring 2015 Excel Solver Case: Beach Town Lifeguard Scheduling Purpose: Optimization under constraints. A. GETTING STARTED All Excel projects are graded with the help of a computer system (Entropy), which means that you must follow directions closely and place all formulas, headings etc. in the exact cells specified or the grading system will not find your work. In particular, do not insert extra rows or columns! To begin working through this tutorial, start a web browser and log into Entropy then locate the Upload Assignment / or Download Starting Template option, and proceed to downloading the starter file for the Solver Case. Save the file to your desktop, flash-drive, or timmy-directory. Do not share this file with anyone else; it has been created just for you; plagiarism has serious consequences for all involved! Background: In this tutorial, you are asked to help the manager of a beach town schedule the lifeguards on the beach, such that (a) the demands for each day of the week are covered, and (b) the total payroll costs are minimized. Lifeguards always work five days in a row, followed by two days off. The town uses a total of seven schedules (Schedule A-G), each of which has a different set of work days and days off: Schedule A: Days off: Sun, Mon, Work: Tue-Sat Schedule B: Days off: Mon, Tue, Work: Wed-Sun Schedule C: Days off: Tue, Wed, Work: Thu-Mon Schedule D: Days off: Wed, Thu, Work: Fri-Tue Schedule E: Days off: Thu, Fri, Work: Sat-Wed Schedule F: Days off: Fri, Sat, Work: Sun-Thu Schedule G: Days off: Sat, Sun, Work: Mon-Fri Each week, the beach manager needs to determine how many lifeguards are needed for each of the different schedules. Individual lifeguards are then recruited and sign up for a particular schedule or get assigned by the manager, in case that there are not enough volunteers for a particular schedule. Demand for lifeguards depends on the day of the week and on whether there is a holiday during the week (e.g., 4 th of July). Demand is generally higher in weeks where one day is a holiday. Your task is to help the manager determine the optimal set of lifeguard schedules, such that (a) demand is met and (b) the payroll costs for the lifeguards are minimized. Use Excel Solver to solve this problem. B. PREPARING THE SPREADSHEET FOR THE USE OF EXCEL SOLVER Before we begin, let s take a look at the starter-file that you downloaded from Entropy. Put your name in Cell B2 and then note the five parts of the worksheet: 1. Part 1: Changing Variable Cells (Decision Variables): Highlighted in yellow are the changing variable cells, i.e., the decision variables that the solution of the problem is based upon. Cells A5:A11 summarize the seven different schedules that the town uses, and the cells highlighted in yellow (B5:B11) will later contain the number of lifeguards needed for each of the seven schedules. As you have not solved the problem yet, you don t know what the correct values will be in B5:B11. So, to start out put a 1 into each of the highlighted cells B5:B11. Once you run the Solver, the system replaces these starting values with the correct values that optimize the solution and suggest to the decision maker how many lifeguards to assign to each schedule.

2 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring Part 2: User Input: In B14, the user indicates whether the week that needs scheduling includes a holiday or not. Holiday-weeks require a greater number of lifeguards on each day of the week because of an additional number of visitors expected on the beach. Enter either Y or N into B14, and compare your screen with Figure 7-1 below. Figure 7-1: Parts 1 and 2, starting values (examples) 3. Part 3: Main Results: The manager is mainly interested in two figures: (a) the payroll/week, which is the figure that needs to be minimized as the objective in Solver (B17) highlighted in green; and (b) the total number of lifeguards scheduled for the week (B18). Both figures are calculated in the lower part of the spreadsheet and need to be copied here. Please note that the payroll information is critical for budgeting purposes and is the main result variable (highlighted in green). The total number of lifeguards, however, is listed primarily for information purposes because it helps the manager when advertising the open positions each week. 4. Part 4: Constants: This part contains various constants that remain unchanged for now. Numbers have already been filled in on your starter file: a. Rows Lifeguard Schedules (Days off) contain the details of the seven different work schedules. For each day of the week (Sunday-Saturday) a 0 indicates a day off, whereas a 1 indicates a workday for a particular schedule. b. Row 30 Standard Demand (Lifegards/Day) contains the standard demand for lifeguards per day of the week. These figures have been entered based on experience from previous years. We note that Saturday is usually the busiest day on the beach with a total need of 24 lifeguards. In contrast, only 13 lifeguards are needed on Tuesdays. c. Row 32 Additional Demand for Holiday Weeks (per day) indicates the additional number of lifeguards needed on each day in weeks where there is holiday. The assumption is that more visitors come to the beach in holiday weeks. So for example, if the Fourth of July falls on a Wednesday, we assume that there is a higher demand for lifeguards on every day of that week (Sun-Sat). d. Row 33 Pay/Lifeguard/Day indicates the daily pay for each lifeguard. The assumption is that each lifeguard gets paid the same, all throughout the season.

3 132 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring 2015 Part 5: Calculations contain the various formulas that are needed to determine the target variable (B17). They are explained next. 5. Rows 36 Actual Demand (Lifeguards/Day) For each day of the week, determine how many lifeguards are needed. This is based on the Standard Demand and on whether the week is a holidayweek. Remember, the demand is higher on every day of the week if one of the days is a holiday (A Y in B14). The resulting values provide you with the minimum number of lifeguards that need to be scheduled for each day. Tip: Use the IF-function, and use proper references (relative or absolute). If B36 is done correctly, you can copy the formula across to Column H. 6. Rows 37 Schedule Total (Lifeguards/Day) Here, you determine how many lifeguards are scheduled on each day of the week. This number depends (a) on the number of lifeguards that are put on each schedule (found in B5 through B11) and (b) on whether the lifeguard works or has the day off (Rows 22-28). Tip: A function that comes in handy here is SUMPRODUCT. EXCEL CONCEPT: SUMPRODUCT SUMPRODUCT(array1, [array2], [array3], ) multiplies the corresponding components in the given arrays and returns the sum of those products. An array is a list of values; this formula can handle up to 255 arrays. So, the way this works let s say for two arrays is as follows: the formula multiplies the first value of the first array with the first value of the second array, then multiplies the second value of the first array with the second value of the second array, and so on, until the last value of the first array is multiplied with the last value of the second array. Then the formula builds the sum of each of the products. Note that the arrays need to have the same length; otherwise a VALUE error is returned. Non-numeric values in the arrays are treated as zeros. Table 7-1: Example A B Looking at Table 7-1 above, let s say you want to get the sum of A1 multiplied with B1 (4*1=4), A2 multiplied with B2 (5*2=10), and A3 multiplied with B3 (6*3=18) this would be: =32. Instead of entering each components separately like this: =(A1*B1)+(A2*B2)+(A3*B3), you can use the shorter form =SUMPRODUCT(A1:A3, B1:B3), where A1:A3 is the first array and B1:B3 is the second array. This makes a lot of sense if your list of components is long. To use a SUMPRODUCT in Row 37, you can use the Number of Lifeguards on Each Schedule as your first array and the Lifeguard Schedule (using the appropriate day) as your second array. If done properly in cell B37 (using proper relative and absolute references), the formula can be copied across to Column H. 7. Row 39 Payroll for the Week The payroll/week is calculated based on the number of all lifeguards scheduled for each day and on the daily pay for each lifeguard. 8. Row 40 Total Number of Lifeguards Scheduled this Week The total number of lifeguards is calculated based on the number of lifeguards assigned to each of the different schedules A-G. If your spreadsheet has the same setup for Parts 1 & 2 (Figure 7-1 above), then the lower part of the spreadsheet should now look like Figure 7-2 below (one lifeguard each for schedules A-G and holiday week [Y]es).

4 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring Figure 7-2: Calculations for one lifeguard for each schedule (A-G) and holiday week [Y]es C. CONFIGURING AND RUNNING EXCEL SOLVER You are now ready to configure and run Solver to determine the number of lifeguards to assign to each schedule, such that the beach town can minimize payroll costs while meeting the need for lifeguards on the beach. Remember that Solver might not have been activated on your computer please refer to the Solver Tutorial for information about how to activate and start Solver. When configuring Solver, please keep the following instructions in mind: 9. Your objective variable is the Payroll for the Week 10. The objective variable needs to be minimized 11. The changing variable cells are the Number of Lifeguards on Each Schedule (Schedules A-G) 12. The Number of Lifeguards on Each Schedule must be greater than or equal to zero 13. The Number of Lifeguards on Each Schedule must be an Integer 14. For each day of the week, the Schedule Total must be greater than or equal to the Actual Demand for that day 15. Use GRG Non-Linear as the Solving Method 16. Once Solver is configured, please run it first for a holiday week (a Y in B14). Generate an Answer Report and name that worksheet Answer Report Holiday Week. Part of the answer report should look like Figure 7-3 below: Figure 7-3: Answer Report Holiday Week

5 134 Gebauer/Matthews: MIS 213 Hands-on Tutorials and Cases, Spring Change B14 to N (for No) to indicate a non-holiday week, and run Solver again. Generate an Answer Report and name that worksheet Answer Report Non-Holiday Week. Part of the answer report should look like Figure 7-4 below: Figure 7-4: Answer Report Non-Holiday Week 18. Save your work now, and upload the file to Entropy. Verify your upload.

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

INSTITUTE AND FACULTY OF ACTUARIES. Curriculum 2019 AUDIT TRAIL

INSTITUTE AND FACULTY OF ACTUARIES. Curriculum 2019 AUDIT TRAIL INSTITUTE AND FACULTY OF ACTUARIES Curriculum 2019 AUDIT TRAIL Subject CP2 Actuarial Modelling Paper One Institute and Faculty of Actuaries Triathlon model Objective Each year on the Island of IFoA a Minister

More information

USA Jump Rope Tournament Software User Guide 2014 Edition

USA Jump Rope Tournament Software User Guide 2014 Edition USA Jump Rope Tournament Software User Guide www.usajumprope.org Table of Contents Contents System Requirements... 3 System Conventions... 4 Phase 1 Tournament Pre registration Preparation... 5 Name Your

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

GHSA Swimming/Diving POP School User s Guide

GHSA Swimming/Diving POP School User s Guide GHSA Swimming/Diving POP School User s Guide Purpose The GHSA has implemented a web-based system for the reporting of Swimming and Diving Proof of Performance that replaces the previous system that was

More information

i) Linear programming

i) Linear programming Problem statement Sailco Corporation must determine how many sailboats should be produced during each of the next four quarters (one quarter = three months). The demand during each of the next four quarters

More information

ORF 201 Computer Methods in Problem Solving. Final Project: Dynamic Programming Optimal Sailing Strategies

ORF 201 Computer Methods in Problem Solving. Final Project: Dynamic Programming Optimal Sailing Strategies Princeton University Department of Operations Research and Financial Engineering ORF 201 Computer Methods in Problem Solving Final Project: Dynamic Programming Optimal Sailing Strategies Due 11:59 pm,

More information

Separation of Acetone-Water with Aspen HYSYS V8.0

Separation of Acetone-Water with Aspen HYSYS V8.0 Separation of Acetone-Water with Aspen HYSYS V8.0 Liquid-Liquid Extraction with 3-Methylhexane as the Solvent 1. Lesson Objectives Learn how to build an extraction and solvent recovery flowsheet. Learn

More information

Administration and IT Assignment Assessment Task: Sounds on the Shore

Administration and IT Assignment Assessment Task: Sounds on the Shore Administration and IT Assignment Assessment Task: Sounds on the Shore This is the assessment task for the assignment Component of National 5 Administration and IT Course assessment. It must be read in

More information

For clarification or assistance with TDM-web or any USTA web-based application,

For clarification or assistance with TDM-web or any USTA web-based application, TD # 1 Tournament Set Up Guidelines: Follow These Steps and TDM Q&A s - April 2014 Batch enter players & process entries on the sanction form. Then use TDM to enter tournament information. For clarification

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2018 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

INSTRUCTION FOR FILLING OUT THE JUDGES SPREADSHEET

INSTRUCTION FOR FILLING OUT THE JUDGES SPREADSHEET INSTRUCTION FOR FILLING OUT THE JUDGES SPREADSHEET One Judge Spreadsheet must be distributed to each Judge for each competitor. This document is the only one that the Judge completes. There are no additional

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

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2015 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

BIOL 101L: Principles of Biology Laboratory

BIOL 101L: Principles of Biology Laboratory BIOL 101L: Principles of Biology Laboratory Sampling populations To understand how the world works, scientists collect, record, and analyze data. In this lab, you will learn concepts that pertain to these

More information

March Madness Basketball Tournament

March Madness Basketball Tournament March Madness Basketball Tournament Math Project COMMON Core Aligned Decimals, Fractions, Percents, Probability, Rates, Algebra, Word Problems, and more! To Use: -Print out all the worksheets. -Introduce

More information

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University ADVANCED CATIA V5 Workbook Knowledgeware and Workbenches Release 16 Knowledgeware Tutorial Exercises Workbenches Kinematics Stress Analysis Sheetmetal Design Prismatic Machining Richard Cozzens Southern

More information

Software Manual for FITstep Pro Version 2

Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

March Madness Basketball Tournament

March Madness Basketball Tournament March Madness Basketball Tournament Math Project COMMON Core Aligned Decimals, Fractions, Percents, Probability, Rates, Algebra, Word Problems, and more! To Use: -Print out all the worksheets. -Introduce

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

CVEN Computer Applications in Engineering and Construction. Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods

CVEN Computer Applications in Engineering and Construction. Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods CVEN 30-501 Computer Applications in Engineering and Construction Programming Assignment #4 Analysis of Wave Data Using Root-Finding Methods Date distributed: 9/30/016 Date due: 10/14/016 at 3:00 PM (electronic

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

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

Microsoft Windows Software Manual for FITstep Stream Version 4

Microsoft Windows Software Manual for FITstep Stream Version 4 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

McKnight Hockey Association

McKnight Hockey Association McKnight Hockey Association Electronic Evaluation Tool Manual 2013-2014 Table of Contents Introduction...3 Evaluation Tool...3 Login to OneClickIce...3 Evaluations...4 PROCESS...4 Evaluation Procedure...5

More information

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem Background Information Every year, the National Baseball Hall of Fame conducts an election to select new inductees from candidates nationally recognized for their talent or association with the sport of

More information

BVIS Beach Volleyball Information System

BVIS Beach Volleyball Information System BVIS Beach Volleyball Information System Developments in computer science over the past few years, together with technological innovation, has in turn stimulated the development of tailored software solutions

More information

IRB Staff Administration Guide

IRB Staff Administration Guide March 2013 Table of Contents IRB Process Overview 3 IRB Submission Types 3 Study Process Overview 4 Ancillary Review Overview 5 Initiating Ancillary Reviews 5 Notifications and Ancillary Review Feedback

More information

Polycom VVX SERIES. Expansion Module Administrator Guide. Table of Contents

Polycom VVX SERIES. Expansion Module Administrator Guide. Table of Contents Table of Contents Overview...2 Configurations...4 Power Requirements...6 Appendix...7 Additional Support...8 VVX (Color) Expansion Modules The VVX Expansion Module (EM) enables configuration of additional

More information

Competition Management

Competition Management Competition Management User Guide for the Basketball Network 2016 version 1.3 Table of Contents CONFIGURATION 4 Passport 4 Access via User Management 4 Club and Team Field Settings 5 Manage Competition

More information

RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM

RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM RUNNING MEET MANAGER IN SUPPORT OF MEETS (2016) Greg Wright(6/3/16) First, YOU DO NOT NEED TO DO THIS UNLESS YOU ARE THE HOME TEAM 1. Download the appropriate Swmm6Backup file from the RCSL Forms & Documents

More information

PEACE RIVER SENIOR MEN'S TENNIS LEAGUE

PEACE RIVER SENIOR MEN'S TENNIS LEAGUE PEACE RIVER SENIOR MEN'S TENNIS LEAGUE HANDBOOK FOR CAPTAINS -updated Oct. 15/2016 Table of Contents A. Introductory Remarks...2 B. Peace River Website...2 Teams and Schedules... 2 Setting Team Cookie...

More information

Quick Start Guide. For Gold and Silver Editions

Quick Start Guide. For Gold and Silver Editions Quick Start Guide For Gold and Silver Editions Table of Content Introduction... 3 Prerequisites... 3 Installation and Setup... 4 Download and Install QQEvolution 2... 4 Create Users... 8 Create Agent/CSR/Producer...

More information

Quintic Automatic Putting Report

Quintic Automatic Putting Report Quintic Automatic Putting Report Tutorial www.quintic.com Introduction The Quintic Automatic Putting Report is designed to work as an add on to our premier Quintic Biomechanics analysis software. Auto

More information

ATN Ladder Tips. The ATN logo is a link to the ATN Home Page, no matter where you are!

ATN Ladder Tips. The ATN logo is a link to the ATN Home Page, no matter where you are! (please note, this is a work in progress) ATN Home Page ATN Ladder Tips Once you log in to the ATN web site, you are taken to the ATN home page. The home page has information about the current ladder status,

More information

Creating a Relay Course in OCAD for Import to OS Relay Software

Creating a Relay Course in OCAD for Import to OS Relay Software Creating a Relay Course in OCAD for Import to OS Relay Software Version Author Date 1.0 Simon Uppill 30 Nov 2011 This document explains how to create course maps in OCAD for relays covering 1. Course splitting

More information

CLUB REGISTRATION & SUPPORT / TICKETING

CLUB REGISTRATION & SUPPORT / TICKETING CLUB REGISTRATION & SUPPORT / TICKETING Version number: 1.0 Account Manager: Kevin Fowler Nemisys Authors: Andy Felton & Paul Keeling Nemisys English Golf Union Customer Name: Club Systems International

More information

IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017

IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017 GENERAL INFORMATION: IMGA PAIRINGS INSTRUCTIONS USING the ONLINE GOLF GENIUS SOFTWARE ROGRAM Revised as of 12/31/2017 The cutoff time for tournament entry is 12:00PM (Noon) on the Friday before Tuesday

More information

NVSL Divisional Relay Carnival procedures using Hy-Tek

NVSL Divisional Relay Carnival procedures using Hy-Tek NVSL Divisional Relay Carnival procedures using Hy-Tek This document provides a basic guide for running Divisional Relay Carnival. All the teams in the Division must have already loaded their swimmers

More information

LONG BEACH TOWNSHIP BEACH PATROL 6805 Long Beach Boulevard, Brant Beach, NJ 08008

LONG BEACH TOWNSHIP BEACH PATROL 6805 Long Beach Boulevard, Brant Beach, NJ 08008 LONG BEACH TOWNSHIP BEACH PATROL 6805 Long Beach Boulevard, Brant Beach, NJ 08008 Protecting 12 Miles of Ocean Beach on Long Beach Island Dear Applicant: We thank you for your interest in obtaining a position

More information

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Manual for FISH 4.0 by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Brief Introduction FISH 4.0 is a microworld exercise designed by University of Victoria professor

More information

How to Setup and Score a Tournament. May 2018

How to Setup and Score a Tournament. May 2018 How to Setup and Score a Tournament May 2018 What s new for 2018 As the rules change, the programmers must adjust the scoring program as well. Feedback from scorers also assist in providing ways to make

More information

MPA Report on 2011 Season

MPA Report on 2011 Season Summary Growth of lacrosse Collegiate level recent new teams promote the sport Youth & middle school significant growth (assignments doubled) Scholastic slight growth (547 MPA games) Scheduling games Scheduling

More information

CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT SETTING UP COMPETITIONS TEAM MANAGEMENT FIXTURING PUBLICATION...

CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT SETTING UP COMPETITIONS TEAM MANAGEMENT FIXTURING PUBLICATION... Contents CONTENTS... 2 CONFIGURATION... 3 VENUE MANAGEMENT... 12 SETTING UP COMPETITIONS... 14 TEAM MANAGEMENT... 19 FIXTURING... 20 PUBLICATION... 26 RESULTS... 27 REPORTING... 31 2 P a g e Configuration

More information

TECHNICAL NOTE HOW TO USE LOOPERS. Kalipso_TechDocs_Loopers. Revision: 1.0. Kalipso version: Date: 16/02/2017.

TECHNICAL NOTE HOW TO USE LOOPERS. Kalipso_TechDocs_Loopers. Revision: 1.0. Kalipso version: Date: 16/02/2017. TECHNICAL NOTE HOW TO USE LOOPERS Document: Kalipso_TechDocs_Loopers Revision: 1.0 Kalipso version: 4.0 20161231 Date: 16/02/2017 Author: RS Contents 1. About... 3 2. Application Examples... 4 2.1. List

More information

ExcelDerby User's Manual

ExcelDerby User's Manual ExcelDerby User's Manual 1 Introduction ExcelDerby is a Microsoft Excel Add-In package that manages all aspects of running a derby. It was originally written to run a Cub Scout Pinewood Derby, but it can

More information

BOWRAP BOWLING LEAGUE FIXTURE GENERATION

BOWRAP BOWLING LEAGUE FIXTURE GENERATION BOWRAP BOWLING LEAGUE FIXTURE GENERATION Version 2.1 Ross Kavanagh secretary@cgleague.co.uk 2012 Ross Kavanagh and David Sanderson Contents Introduction... 2 Basic principles... 2 Planning a season...

More information

Table of Content IMPORTANT NOTE: Before using this guide, please make sure you have already set up your settings in

Table of Content IMPORTANT NOTE: Before using this guide, please make sure you have already set up your settings in Quick Start Guide Table of Content Introduction... 3 Prerequisites... 3 How to Open QQEvolution 2... 4 How to do Carrier Downloads... 5 Locating a Client in QQEvolution 2... 7 Adding a New Client... 8

More information

Personnel Benchmarking Author: Ed Rehkopf

Personnel Benchmarking Author: Ed Rehkopf Author: Ed Rehkopf 2009 Club Resources International Table of Contents Background.................................. 1 Purpose.................................... 1 Sources of Information............................

More information

SQL LiteSpeed 3.0 Installation Guide

SQL LiteSpeed 3.0 Installation Guide SQL LiteSpeed 3.0 Installation Guide Revised January 27, 2004 Written by: Jeremy Kadlec Edgewood Solutions www.edgewoodsolutions.com 888.788.2444 2 Introduction This guide outlines the SQL LiteSpeed 3.0

More information

Calculation of Trail Usage from Counter Data

Calculation of Trail Usage from Counter Data 1. Introduction 1 Calculation of Trail Usage from Counter Data 1/17/17 Stephen Martin, Ph.D. Automatic counters are used on trails to measure how many people are using the trail. A fundamental question

More information

Review questions CPSC 203 midterm

Review questions CPSC 203 midterm Review questions CPSC 203 midterm Online review questions: the following are meant to provide you with some extra practice so you need to actually try them on your own to get anything out of it. For that

More information

3. EXCEL FORMULAS & TABLES

3. EXCEL FORMULAS & TABLES Fall 2017 CS130 - Excel Formulas & Tables 1 3. EXCEL FORMULAS & TABLES Fall 2017 Fall 2017 CS130 - Excel Formulas & Tables 2 Cell References Absolute reference - refer to cells by their fixed position.

More information

Using the Sailwave Results Programme April 2016

Using the Sailwave Results Programme April 2016 Using the Sailwave Results Programme April 2016 Background In 2016 the club decide to move their results service to a programme called Sailwave. This is a very simple little piece of free software (you

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

How to Set Up Your League

How to Set Up Your League From www.pcdrafter.com How to Set Up Your League The following tutorial will help you quickly see how easy PC Drafter is to use as you configure your fantasy league with your own rules, teams, draft order

More information

SOFTWARE. Sesam user course. 12 May 2016 HydroD Hydrostatics & Stability. Ungraded SAFER, SMARTER, GREENER DNV GL 2016

SOFTWARE. Sesam user course. 12 May 2016 HydroD Hydrostatics & Stability. Ungraded SAFER, SMARTER, GREENER DNV GL 2016 SOFTWARE Sesam user course DNV GL 1 SAFER, SMARTER, GREENER Scope of presentation Describe features & commands for performing a hydrostatic analysis, and their concepts Analysis setup Code-checking Reporting

More information

SafeSeaNet Norway PEC Administration Guide

SafeSeaNet Norway PEC Administration Guide SafeSeaNet Norway PEC Administration Guide Kystverket Vest Flathauggata 12 5525 Haugesund Telephone: +47 52 73 32 00 Telefax: +47 52 73 32 01 E-post: vest@kystverket.no Web: http://www.kystverket.no Table

More information

City of Long Beach Office of the City Auditor. Harbor Security Division Dive Team Overtime Review. Laura L. Doud, CPA City Auditor.

City of Long Beach Office of the City Auditor. Harbor Security Division Dive Team Overtime Review. Laura L. Doud, CPA City Auditor. City of Long Beach Office of the City Auditor Harbor Security Division Dive Team Overtime Review July 2011 Laura L. Doud, CPA City Auditor Office of the City Auditor Harbor Security Division Dive Team

More information

Laboratory Activity Measurement and Density. Average deviation = Sum of absolute values of all deviations Number of trials

Laboratory Activity Measurement and Density. Average deviation = Sum of absolute values of all deviations Number of trials Laboratory Activity Measurement and Density Background: Measurements of mass and volume are very common in the chemistry laboratory. The analytical balance is used to measure mass, and the graduated cylinder,

More information

Multi Class Event Results Calculator User Guide Updated Nov Resource

Multi Class Event Results Calculator User Guide Updated Nov Resource Multi Class Event Results Calculator User Guide Updated Nov 2011 The Multi Class Point Score has been developed as part of Swimming Australia Ltd. s commitment to creating opportunities for people with

More information

- creating the pong bat animation with various options

- creating the pong bat animation with various options Excel PONG Tutorial #2 by George Lungu - creating the pong bat animation with various options -In this tutorial (which is a continuation of part#1) two bat input parameters are added to the model: bat

More information

Computer Scorekeeping Procedures

Computer Scorekeeping Procedures Computer Scorekeeping Procedures 3-23-16 COMPUTER SETUP: Unlock Computer Storage Box: Enter combination so that it appears on the side of the lock Computer Setup: Place a computer, keyboard & mouse at

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

USA Wrestling A GUIDE FOR PAIRING USING TRACKWRESTLING COMPUTER OPERATIONS. Line Bracketing Pairing 2017 Edition

USA Wrestling A GUIDE FOR PAIRING USING TRACKWRESTLING COMPUTER OPERATIONS. Line Bracketing Pairing 2017 Edition USA Wrestling A GUIDE FOR PAIRING USING TRACKWRESTLING COMPUTER OPERATIONS Line Bracketing Pairing 2017 Edition 1 Day Before Tournament starts. If possible for Regional and National events Meet with your

More information

A GUIDE TO USING MYNETBALL (CLUBS)

A GUIDE TO USING MYNETBALL (CLUBS) A GUIDE TO USING MYNETBALL (CLUBS) GETTING STARTED A member from each club should have received a Login ID and Password in an email. Go to the following address to log in to the system - http://admin-netball.resultsvault.com/

More information

MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau

MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau Objective: Work with dimensional data to navigate a data set Learning Outcomes: Summarize a table of data organized along dimensions

More information

The Race Director. Race Director Go [RACE DIRECTOR GO] This document describes the implementation of Race Director Go with a beginning to end example.

The Race Director. Race Director Go [RACE DIRECTOR GO] This document describes the implementation of Race Director Go with a beginning to end example. 2018 The Race Director [RACE DIRECTOR GO] This document describes the implementation of with a beginning to end example. Contents Intro... 3 1 Setup... 3 Combining Race Director Divisions... 3 Creating

More information

If you need to reinstall FastBreak Pro you will need to do a complete reinstallation and then install the update.

If you need to reinstall FastBreak Pro you will need to do a complete reinstallation and then install the update. Using this Beta Version of FastBreak Pro First, this new beta version (Version 6.X) will only work with users who have version 5.X of FastBreak Pro. We recommend you read this entire addendum before trying

More information

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at Online League Management lta.tournamentsoftware.com User Manual Further support is available online at www.lta.org.uk/leagueplanner Contents Welcome... 3 Using this guide... 3 Further support?... 3 Publishing

More information

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research 1 Ranger Walking Initiation Stephanie Schneider sns74@cornell.edu 5/15/2012 Final Report for Cornell Ranger Research Abstract I joined the Biorobotics Lab this semester to gain experience with an application

More information

Computer Scorekeeping Procedures Page 1

Computer Scorekeeping Procedures Page 1 Computer Scorekeeping Procedures Page 1 COMPUTER SET-UP: Scorekeepers for the first game on a field should plan to arrive at least one-half hour prior to the game time to allow time for computer set-up.

More information

Division Data Coordinator Tasks

Division Data Coordinator Tasks Overall Responsibilities The division data coordinators have two major responsibilities. The first is to process and post scores and meet results following dual meets and the division relay carnival. The

More information

Flames of War and Team Yankee Tournament Results

Flames of War and Team Yankee Tournament Results A Tournament Organizer's Guide for Reporting Flames of War and Team Yankee Tournament Results Link: http://www.rankings.wwpd.net Email: WWPDRankings@gmail.com Version: 1.0 Released: 12/19/2016 WWPD Rankings

More information

THE CHAOS THEORY ROULETTE SYSTEM

THE CHAOS THEORY ROULETTE SYSTEM THE CHAOS THEORY ROULETTE SYSTEM Please note that all information is provided as is and no guarantees are given whatsoever as to the amount of profit you will make if you use this system. Neither the seller

More information

SUMMARIZING FROG AND TOAD COUNT DATA

SUMMARIZING FROG AND TOAD COUNT DATA SUMMARIZING FROG AND TOAD COUNT DATA This set of protocols will take you through all the steps necessary for summarizing the frog and toad data for each NAAMP route that was been assigned to you. BEFORE

More information

XC2 Client/Server Installation & Configuration

XC2 Client/Server Installation & Configuration XC2 Client/Server Installation & Configuration File downloads Server Installation Backup Configuration Services Client Installation Backup Recovery Troubleshooting Aug 12 2014 XC2 Software, LLC Page 1

More information

Lab # 03: Visualization of Shock Waves by using Schlieren Technique

Lab # 03: Visualization of Shock Waves by using Schlieren Technique AerE545 Lab # 03: Visualization of Shock Waves by using Schlieren Technique Objectives: 1. To get hands-on experiences about Schlieren technique for flow visualization. 2. To learn how to do the optics

More information

GLOBE Data Explorations

GLOBE Data Explorations Rainfall in the GLOBE Africa Region: A GLOBE Data Exploration Purpose Through explorations of GLOBE rain depth data from Africa, students learn about seasonal patterns in locations affected by monsoons.

More information

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems

Three New Methods to Find Initial Basic Feasible. Solution of Transportation Problems Applied Mathematical Sciences, Vol. 11, 2017, no. 37, 1803-1814 HIKARI Ltd, www.m-hikari.com https://doi.org/10.12988/ams.2017.75178 Three New Methods to Find Initial Basic Feasible Solution of Transportation

More information

SHIMADZU LC-10/20 PUMP

SHIMADZU LC-10/20 PUMP SHIMADZU LC-10/20 PUMP Clarity Control Module ENG Code/Rev.: M091/70C Date: 24.10.2017 Phone: +420 251 013 400 DataApex Ltd. Fax: +420 251 013 401 Petrzilkova 2583/13 clarity@dataapex.com 158 00 Prague

More information

FIRST Tech Challenge Scorekeeper Manual Part II: Scoring System Guide (For Non-League Event Types)

FIRST Tech Challenge Scorekeeper Manual Part II: Scoring System Guide (For Non-League Event Types) 2017-2018 FIRST Tech Challenge Scorekeeper Manual Part II: Scoring System Guide (For Non-League Event Types) 2 FIRST Tech Challenge Scoring System Guide (Non-League Events) Sponsor Thank You Thank you

More information

Competition Management Online User Guide for Basketball

Competition Management Online User Guide for Basketball Competition Management Online User Guide for Basketball version 3.0 Acting Manager, Game Development Amy Clarke E: amy.clarke@basketball.net.au P: 03 9697 4315 Account Manager Katherine Bell E: k.bell@foxsportspulse.com

More information

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT.

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. v. 10.4 GMS 10.4 Tutorial Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. Prerequisite

More information

Simplifying Radical Expressions and the Distance Formula

Simplifying Radical Expressions and the Distance Formula 1 RD. Simplifying Radical Expressions and the Distance Formula In the previous section, we simplified some radical expressions by replacing radical signs with rational exponents, applying the rules of

More information

FRA SUMMER MATH 2017 Math Course 3

FRA SUMMER MATH 2017 Math Course 3 FRA SUMMER MATH 2017 Math Course 3 The following can be found within this file on the specific pages listed: Content Math Course 3 Teacher Letter and Summer Math Directions Pages 2 Math Course 3 Overview

More information

PLEASE, WHATEVER YOU DO, DO NOT READ ANY OF THESE INSTRUCTIONS!!

PLEASE, WHATEVER YOU DO, DO NOT READ ANY OF THESE INSTRUCTIONS!! PLEASE, WHATEVER YOU DO, DO NOT READ ANY OF THESE INSTRUCTIONS!! (OK, if you got here, you are already breaking the rules for the STaC. Please let this be the only time. ) Top Ten STaC Pet Peeves (with

More information

Full-Time People and Registrations Version 5.0

Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Page 1 1.0 People 1.1 How to Add New League Administrators 3 1.2 How to Add Other New Administrators 4 1.3 How to Change

More information

Player, Coach, Manager, and Team Account Creation

Player, Coach, Manager, and Team Account Creation Player, Coach, Manager, and Team Account Creation for GotSoccer The below instructions will help walk you though the process of creating player, coach, team official and team accounts (profiles) in GotSoccer.

More information

Modeling Fantasy Football Quarterbacks

Modeling Fantasy Football Quarterbacks Augustana College Augustana Digital Commons Celebration of Learning Modeling Fantasy Football Quarterbacks Kyle Zeberlein Augustana College, Rock Island Illinois Myles Wallin Augustana College, Rock Island

More information

Look again at the election of the student council president used in the previous activities.

Look again at the election of the student council president used in the previous activities. Activity III: Pairwise Comparisons (Grades 8-11) NCTM Standards: Number and Operation Data Analysis, Statistics, and Probability Problem Solving Reasoning and Proof Communication Connections Representation

More information

Lab #1 Pressure: Bubblers and Water Balloons CEE 331 Fall 2003

Lab #1 Pressure: Bubblers and Water Balloons CEE 331 Fall 2003 CEE 331 Lab 1 Page 1 of 9 SAFETY Lab #1 Pressure: Bubblers and Water Balloons CEE 331 Fall 2003 Laboratory exercise based on an exercise developed by Dr. Monroe Weber-Shirk The major safety hazard in this

More information

Computer Operator Instructions. Extra Instructions for High School District Championship Meets

Computer Operator Instructions. Extra Instructions for High School District Championship Meets Computer Operator Instructions Extra Instructions for High School District Championship Meets The Purpose of these additional instructions is to: Ensure that NFHS and OSAA rules are followed Aid the USA

More information

Simulation Analysis of Intersection Treatments for Cycle Tracks

Simulation Analysis of Intersection Treatments for Cycle Tracks Abstract Simulation Analysis of Intersection Treatments for Cycle Tracks The increased use of cycle tracks also known as protected bike lanes has led to investigations of how to accommodate them at intersections.

More information

Inventory User Guide

Inventory User Guide Inventory User Guide User Guide ~ Table of Contents ~ Sign On/Select Facility Rates & Inventory Update Tee Times Load Tee Times AutoLoad Schedule Rate Fences Dashboards Revenue At Risk, Rounds & Revenue,

More information

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method

P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method P3000 Deadweight Tester Setup, Part 1: Limited Partial Correction Method 19 May 2014 M. Daniels This tutorial is for configuring a P3000 series (Pressurements) deadweight tester to be used with COMPASS

More information

INSTRUCTOR RESOURCES

INSTRUCTOR RESOURCES Gases: Dalton s Law INSTRUCTOR RESOURCES By Dale A. Hammond, PhD LEARNING OBJECTIVES introduce the concept of ideal gases. experimentally determine the relationship between pressure and amount of gas,

More information

Monthly Pay Dates

Monthly Pay Dates Monthly Pay Dates PAY DATE September 25, 2017 October 25, 2017 November 16, 2017 December 15, 2017 January 19, 2018 February 23, 2018 March 23, 2018 April 25, 2018 May 25, 2018 June 21, 2018 July 25, 2018

More information

Author s Name Name of the Paper Session. Positioning Committee. Marine Technology Society. DYNAMIC POSITIONING CONFERENCE September 18-19, 2001

Author s Name Name of the Paper Session. Positioning Committee. Marine Technology Society. DYNAMIC POSITIONING CONFERENCE September 18-19, 2001 Author s Name Name of the Paper Session PDynamic Positioning Committee Marine Technology Society DYNAMIC POSITIONING CONFERENCE September 18-19, 2001 POWER PLANT SESSION A New Concept for Fuel Tight DP

More information

Classroom Tips and Techniques: The Partial-Fraction Decomposition. Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft

Classroom Tips and Techniques: The Partial-Fraction Decomposition. Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Classroom Tips and Techniques: The Partial-Fraction Decomposition Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction Students typically meet the algebraic technique

More information