HORIZONTAL CURVE DATA COLLECTION BY REMOTE SENSING TECHNIQUE

Size: px
Start display at page:

Download "HORIZONTAL CURVE DATA COLLECTION BY REMOTE SENSING TECHNIQUE"

Transcription

1 Paper Number:121 HORIZONTAL CURVE DATA COLLECTION BY REMOTE SENSING TECHNIQUE Arichandran Ramachandran 1*, Lakshmi S 2, Velumani D 3, Anupriya Srinivasan 4, S arojini T 5 and Umashankar S 6 1 Lecturer, Department of Civil Engineering, University of Gondar, Gondar, Ethiopia. 2 Professor, Division of Transportation Engineering, Department of Civil Engineering, Anna University, Chennai, Tamilnadu, India. 3 Assistant Professor & 4,5 Under Graduate Student, Department of Civil Engineering, Kamaraj College of Engineering and Technology, Virudhunagar, Tamilnadu, India. 6 Assistant Professor, Department of Civil Engineering, Krishna Institute of Engineering and Technology, Ghaziabad, Uttar Pradesh, India. * arichandrangct@gmail.com Keywords: Horizontal curves, Newton Raphson s method, Arc length, Long chord length, Mid -ordinate length. Abstract: Horizontal curves are being used in roadway during transition between straight segments. These curves exert forces on vehicles that vary considerably from a tangent section. Drivers must respond appropriately to horizontal curves to safely traverse them. Implemented highway curve details on field need to be verified with design standards. Therefore, determining the characteristics of curves (including location, length and radius) is an important task. Existing methods to assess horizontal curves are Field methods and Geographical Information System applications like Curve Calculator, Curve Finder and Curvature Extension. Field methods are cost expensive, more dangerous and time consuming process. A new method, Newton Raphson s method, is attempted to find radius of highway horizontal curves. Angle of deviation and radius of horizontal curve have been obtained using Newton Raphson s method in MATLAB by measuring arc length and chord length. Few curves were selected and surveyed for their arc length, long chord length and mid-ordinate length. And by using those values radius is calculated and compared with the radius obtained by using total station. 1. Introduction Horizontal curves provide a transition from one tangent segment of roadway to the next. When a highway changes horizontal direction, making the point where it changes direction a point of intersection between two straight lines is not feasible. The change in direction would be too abrupt for the safety of modern, high -speed vehicles. It is therefore necessary to interpose a curve between the straight lines. The straight lines of a road are called tangents because the lines are tangent to the curves used to change direction. The radius of the curves can be estimated using the methods, Arc length & Long chord, Long cord and Mid-ordinate and Mid-ordinate & Angle of Deviation. There are eight curves, which are surveyed and its radiuses are estimated. The eight curves are named as curve A1, A2, B1, B2, B3, B4, B5 and C. In which, Curve A1 & A2 are foot path kerbs located at Kamaraj college of Engineering and Technology, Virudhunagar, B1, B2, B3, B4 & B5 are the curves marked on ground for known radius and C is the curve of a village road near NH7. 2. Methods of estimating radius of curves 2.1. Using Arc length and Long chord By measuring the long chord and arc length of the curve, the radius can be estimated by solving following function using Newton Raphson's method. A program has been developed to solve the above said process in the MATLAB software for the accuracy. The principles are derived from the basic geometric characteristics of the circle as shown in (Fig 1) Page 1 of 8

2 Paper Number:121 Fig 1. Geometric characteristics of circle The radius can be estimated by solving the following equations, Equating the equations 1 and 2, Then write the above equation as, Let angle AOD as X and solve it to get X value by Newton Raphson s Method Starts the iteration by guessing X 0 value as 1and continue iteration until the concurrent value is obtained. This iteration process was done by the computer program in Mat Lab. A sample coding is given for the curve B3 (Table 3) Matlab Code The code for solving the above equation, clear all close all clc % Arc length of the Curve as L % Long chord length of the Curve as LC L=7.02; LC=6.87; n=lc/l; y=@(x)sin(x)-n*(x); dy=@(x)cos(x)-n; Page 2 of 8

3 Paper Number:121 X=1; for i=1:1:500 X1=X-(y(X)/dy(X)); X=X1; end Indegree=X*180/ ; I=Indegree; IntersectionAngle=2*I Radius=LC/(2*sin(X)) 2.2. Using Long Chord and Mid Ordinate: By measuring the long chord and mid ordinate of the curve, the radius can be estimated by solving following equation by using program in MatLab software. Matlab Code: clear all close all clc % Long chord length of the Curve as LC % Mid Ordinate of the Curve as M LC=6.87; M=0.58; Radius = [(LC*LC)/(8*M)]+M/ Using Mid-ordinate and Angle of Deviation By measuring the mid-ordinate and angle of deviation value of the curve, the radius can be estimated by using the Matlab software. Matlab Code: clear all close all clc % Mid Ordinate of the Curve as M % Angle of Deviation as D M=0.58; D=40; I=D*3.14/180; R=M/[1-cos(I)/2]; Radius =R 2.4. Using Total Station: By using the total station the co-ordinate points of the curves are recorded and those points are transferred to Auto CAD as drawing and then the required values are measured from the drawing. 3. Es timation of Curve A Radius The curve A includes two curves which named as curve A1 and A2 (Fig 2).These two curves are present in front of Main Block at Kamaraj College of Engineering and Technology. These two curves are surveyed to find out their Arc Length, Long Chord Length, Mid-ordinate and Angle of Deviation by using the tape and total station. The measured values, the estimated radius values and the comparison of the radius of the curve A1 & A2 are given in the Table 1 & Table 2 respectively. Page 3 of 8

4 Radius (m) Paper Number:121 Fig 2. Curve A1 & Curve A Es timation of Curve B Radius The curve B includes five curves which named as curve B1, B2, B3, B4 and B5 (Fig 3 & Fig 4).These five curves are drawn in ground at Kamaraj College of Engineering and Technology. These five curves B1, B2, B3, B4 and B5 are drawn for the known radius of 10m, 20m, 30m, 40m and 50m respectively within an interior angle of 40. These fives curves are surveyed to find out their Arc Length, Long Chord Length, Mid-ordinate and Angle of Deviation by using the tape and total station. The table 3, 4, 5, 6 & 7 show the comparison of the radius estimated for the curves B1, B2, B3, B4 and B5 respectively. Fig 3. Co-ordinate points of the Curve B using Total Station Fig 4. Interior Angle of the Curve B Table. 1: Comparison of the radius estimated for the curves A1 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviat ion (degree) Using Long Chord & Arc Length Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Page 4 of 8

5 Radius (m) Radius (m) Radius (m) Paper Number:121 Table. 2: Comparison of the radius estimated for the curves A2 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviation (degree) Using Long Chord & Arc Length Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Table. 3: Comparison of the radius estimated for the curves B1 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviat ion (degree) Using Long Chord & Arc Length 9.77 Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation 9.40 Table. 4: Comparison of the radius estimated for the curves B2 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviation (degree) Using Long Chord & Arc Length 20.5 Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Page 5 of 8

6 Radius (m) Radius (m) Radius (m) Paper Number:121 Table. 5: Comparison of the radius estimated for the curves B3 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviation (degree) Using Long Chord & Arc Length Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Table. 6: Comparison of the radius estimated for the curves B4 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviation (degree) Using Long Chord & Arc Length Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Table. 7: Comparison of the radius estimated for the curves B5 Arc Length (m) Chord Length (m) Mid Ordinate (m) Angle of Deviation (degree) Using Long Chord & Arc Length Using Long Chord & Mid Ordinate Using Mid Ordinate & Angle of Deviation Es timation of Curve C Radius The curve C (Fig 5) is existing at Chitoor, which is located about 0.5 km away from NH-7 (Near Virudhunagar). The latitude and longitude of the curve location are & Page 6 of 8

7 Radius (m) Paper Number:121 Fig 5. Curve C at Chitoor The above curve is surveyed by using both Total Station and by measuring long chord (Fig 7) and arc length (Fig 6) using Google earth ruler. The table 8 shows the comparison of measured radiuses. Fig 6. Arc Length of Curve C Fig 7. Long Chord Length of Curve C Table. 8: Comparison of the radius estimated for the curves C Parameters Using Google Earth ruler Total Station Arc Length (m) Chord Length (m) Angle of Deviation (degree) Using Long Chord & Arc Length Page 7 of 8

8 Paper Number:121 Fig 8. Difference of radius in percentage by various methods 4. Conclusion: The radius obtained from the three methods is almost equal to the radius obtained from total station. All the three methods are much more cost effective, less time consuming, less human resource consumption. Arc length & Long chord method is the easy one among three methods to estimate horizontal curve radius & angle of deviation. Because, direct measurement of angle of deviation and mid ordinate is not an accurate. Simple curve is only considered for this study. As per IRC:SP:20, the absolute minimum radius for village road is 60m. But, the obtained radius for the curve C is 45m. Thus, the curve C has to be smoothened. REFERENCE [1] Paul J. Carlson, Mark Burris, Kit Black, and Elisabeth R. Rose, Comparison of Radius-Estimating Techniques for Horizontal Curves Dec [2] William Rasdorf, Ph.D., P.E.; Daniel J. Findley, P.E.; Charles V. Zegeer, P.E.; Carl A. Sundstrom, P.E.; and Joseph E. Hummer, Ph.D., P.E., F.ASCE, Evaluation of GIS Applications for Horizontal Curve Data Collection March 1, [3] Asma Th. Ibraheem and Waseem Wathiq Hammodat, Review And Modeling The Methods of Radius Estimatingtechniques for Horizontal Curves Dec [4] Zhixia Li, Madhav V. Chitturi, Andrea R. Bill, and David A. Noyce, Automated Identification and Extraction of Horizontal Curve Information from Geographic Information System Roadway Maps Dec [5] Dr. B.C. Punmia, Surveying Volume II, Laxmi Publishers. [6] N N Basak, Surveying and Levelling, Tata McGRAW Hill Publisher. [7] IRC :SP Guide Lines and Construction of Rural Roads Page 8 of 8

GEOMETRIC DESIGN CIVL 3161

GEOMETRIC DESIGN CIVL 3161 GEOMETRIC DESIGN CIVL 3161 Reading Assignment: p. 45-72 (4 th ed.) p.45-75 (previous ed.) in Mannering textbook. Geometric design of highway facilities deals with the proportion of physical elements of

More information

The Mathematics of Highway Design

The Mathematics of Highway Design The Mathematics of Highway Design Scenario As a new graduate you have gained employment as a graduate engineer working for a major contractor that employs 2000 staff and has an annual turnover of 600m.

More information

www.passpe.com Surveying for California Civil PE License Dr. Shahin A. Mansour, PE Chapter 10 Horizontal, Spiral and Vertical Curves

www.passpe.com Surveying for California Civil PE License Dr. Shahin A. Mansour, PE Chapter 10 Horizontal, Spiral and Vertical Curves www.passpe.com Surveying for California Civil PE License Dr. Shahin A. Mansour, PE Chapter 0 Horizontal, Spiral and Vertical Curves Topics to be covered Types of Horizontal Curves Deflection Angles, Chord

More information

TRAFFIC ACCIDENT STUDY GUIDE 2010

TRAFFIC ACCIDENT STUDY GUIDE 2010 TRAFFIC ACCIDENT STUDY GUIDE 2010 SECTION SEVEN This study guide is designed to provide the law enforcement Explorer with basic principles. The guide is not all inclusive, and does not delineate specific

More information

Mobile Phone Tracking & Positioning Techniques

Mobile Phone Tracking & Positioning Techniques Mobile Phone Tracking & Positioning Techniques Laxmana Siridhara Arigela #1, Putta Aditya Veerendra *2, Simhadri Anvesh *2, Kolisetty Sandeep Satya Hanuman #3 1 Assistant Professor, Department of ECE,

More information

CURVES Section I. SIMPLE HORIZONTAL CURVES

CURVES Section I. SIMPLE HORIZONTAL CURVES CHAPTER 3 CURVES Section I. SIMPLE HORIZONTAL CURVES CURVE POINTS By studying TM 5-232, the surveyor learns to locate points using angles and distances. In construction surveying, the surveyor must often

More information

Introduction. Circular curve constant radius. Transition curve decreasing radius then increasing radius. Department of Civil Engineering

Introduction. Circular curve constant radius. Transition curve decreasing radius then increasing radius. Department of Civil Engineering Department of Civil Engineering Name Class Date set Surveying II Lecturer DSF Date due Horizontal Curves Ref. v 1 Grade Introduction Straight sections of road or track are connected by curves Horizontal

More information

HORIZONTAL CURVES. What They Are And How To Deal With Them

HORIZONTAL CURVES. What They Are And How To Deal With Them HORIZONTAL CURVES What They Are And How To Deal With Them 2 HORIZONTAL CURVE TERMINOLOGY Symbol Terminology Equation LC Long Chord 2R sin 2 R Radius OA = OB = OC L Length of Curve L = 0.0174533 R T Tangent

More information

Analysis of Accident Statistics

Analysis of Accident Statistics Analysis of Accident Statistics I. BACKGROUND To ensure that safety objectives are met, a distinction must be made between: (1) locations which are hazardous as identified based on accident experiences,

More information

1. What data might a car leave behind at the scene of an accident?

1. What data might a car leave behind at the scene of an accident? Bellwork 2-10-15 It takes 8,460 bolts to assemble an automobile, and one nut to scatter it all over the road. Author Unknown 1. What data might a car leave behind at the scene of an accident? 1 5 9 ACCIDENT

More information

Designing and Drawing a Sprocket Visualizing ideas through the creation of CAD solid models is a key engineering skill.

Designing and Drawing a Sprocket Visualizing ideas through the creation of CAD solid models is a key engineering skill. 05 Webster St. Hanover Massachusetts 0339 Tel. 78 878 5 Fax 78 878 6708 Designing and Drawing a Sprocket Visualizing ideas through the creation of CAD solid models is a key engineering skill. The following

More information

Path Tracking for a Miniature Robot

Path Tracking for a Miniature Robot Path Tracking for a Miniature Robot By Martin Lundgren Excerpt from Master s thesis 003 Supervisor: Thomas Hellström Department of Computing Science Umeå University Sweden 1 Path Tracking Path tracking

More information

GPS Based Low Cost Intelligent Vehicle Tracking System (IVTS)

GPS Based Low Cost Intelligent Vehicle Tracking System (IVTS) 2012 International Conference on Traffic and Transportation Engineering (ICTTE 2012) IPCSIT vol. 26 (2012) (2012) IACSIT Press, Singapore GPS Based Low Cost Intelligent Vehicle Tracking System (IVTS) Dr.

More information

Chapter 6 Notes: Circles

Chapter 6 Notes: Circles Chapter 6 Notes: Circles IMPORTANT TERMS AND DEFINITIONS A circle is the set of all points in a plane that are at a fixed distance from a given point known as the center of the circle. Any line segment

More information

Chapters 6 and 7 Notes: Circles, Locus and Concurrence

Chapters 6 and 7 Notes: Circles, Locus and Concurrence Chapters 6 and 7 Notes: Circles, Locus and Concurrence IMPORTANT TERMS AND DEFINITIONS A circle is the set of all points in a plane that are at a fixed distance from a given point known as the center of

More information

Unit 4 Practice Test: Rotational Motion

Unit 4 Practice Test: Rotational Motion Unit 4 Practice Test: Rotational Motion Multiple Guess Identify the letter of the choice that best completes the statement or answers the question. 1. How would an angle in radians be converted to an angle

More information

Automated Process for Generating Digitised Maps through GPS Data Compression

Automated Process for Generating Digitised Maps through GPS Data Compression Automated Process for Generating Digitised Maps through GPS Data Compression Stewart Worrall and Eduardo Nebot University of Sydney, Australia {s.worrall, e.nebot}@acfr.usyd.edu.au Abstract This paper

More information

Circle Name: Radius: Diameter: Chord: Secant:

Circle Name: Radius: Diameter: Chord: Secant: 12.1: Tangent Lines Congruent Circles: circles that have the same radius length Diagram of Examples Center of Circle: Circle Name: Radius: Diameter: Chord: Secant: Tangent to A Circle: a line in the plane

More information

Selecting the Best Approach to Teach 3D Modeling to Technical College Engineering

Selecting the Best Approach to Teach 3D Modeling to Technical College Engineering Paper ID #12358 Selecting the Best Approach to Teach 3D Modeling to Technical College Engineering Students Dr. Farzin Heidari, Texas A&M University, Kingsville c American Society for Engineering Education,

More information

Railway Track Design

Railway Track Design Chapter Railway Track Design Basic considerations and guidelines to be used in the establishment of railway horizontal and vertical alignments. The route upon which a train travels and the track is constructed

More information

MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem

MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem MA 323 Geometric Modelling Course Notes: Day 02 Model Construction Problem David L. Finn November 30th, 2004 In the next few days, we will introduce some of the basic problems in geometric modelling, and

More information

Circles - Past Edexcel Exam Questions

Circles - Past Edexcel Exam Questions ircles - Past Edecel Eam Questions 1. The points A and B have coordinates (5,-1) and (13,11) respectivel. (a) find the coordinates of the mid-point of AB. [2] Given that AB is a diameter of the circle,

More information

Total Program's Units

Total Program's Units Associate Degree Program Department of Civil and Architectural Technology Major : Survey Technology First Semester NO 5 6 Code SRV 0 SRV 0 SRV 0 ENG 0 MTH 7 CMT 0 Course Title Land survey Survey drawing

More information

Mathematics on the Soccer Field

Mathematics on the Soccer Field Mathematics on the Soccer Field Katie Purdy Abstract: This paper takes the everyday activity of soccer and uncovers the mathematics that can be used to help optimize goal scoring. The four situations that

More information

Solutions to Exercises, Section 5.1

Solutions to Exercises, Section 5.1 Instructor s Solutions Manual, Section 5.1 Exercise 1 Solutions to Exercises, Section 5.1 1. Find all numbers t such that ( 1 3,t) is a point on the unit circle. For ( 1 3,t)to be a point on the unit circle

More information

Drawing an Approximate Representation of an Involute Spur Gear Tooth Project Description

Drawing an Approximate Representation of an Involute Spur Gear Tooth Project Description Drawing an Approximate Representation of an Involute Spur Gear Tooth Project Description Create a solid model and a working drawing of the 24 pitch gears specified below. It is only necessary to create

More information

What is a Horizontal Curve?

What is a Horizontal Curve? Paul Deutsch What is a Horizontal Curve? Provides a transition between two tangent lengths of roadway. PI PC PT PC (Point of Curvature at beginning of curve) PI (Point of Intersection of tangents) PT (Point

More information

Chapter 3. Track and Wheel Load Testing

Chapter 3. Track and Wheel Load Testing Chapter 3 Track and Wheel Load Testing This chapter describes the track, truck, and testing equipment that were used by the Transportation Technology Center, Inc. (TTCI) for collecting the data that was

More information

Understand the Sketcher workbench of CATIA V5.

Understand the Sketcher workbench of CATIA V5. Chapter 1 Drawing Sketches in Learning Objectives the Sketcher Workbench-I After completing this chapter you will be able to: Understand the Sketcher workbench of CATIA V5. Start a new file in the Part

More information

NAKURU DISTRICT SEC. SCHOOLS TRIAL EXAM 2011. Kenya Certificate of Secondary Education MATHEMATICS PAPER2 2½ HOURS

NAKURU DISTRICT SEC. SCHOOLS TRIAL EXAM 2011. Kenya Certificate of Secondary Education MATHEMATICS PAPER2 2½ HOURS NAME:. INDEX NO: CANDIDATE S SINGNATURE DATE:. 121 /2 MATHEMATICS ALT A. PAPER2 JULY / AUGUST 2011 2 ½ HOURS NAKURU DISTRICT SEC. SCHOOLS TRIAL EXAM 2011 INSTRUCTIONS TO CANDIDATES Kenya Certificate of

More information

Straight Line. Paper 1 Section A. O xy

Straight Line. Paper 1 Section A. O xy PSf Straight Line Paper 1 Section A Each correct answer in this section is worth two marks. 1. The line with equation = a + 4 is perpendicular to the line with equation 3 + + 1 = 0. What is the value of

More information

American-Eurasian Journal of Sustainable Agriculture

American-Eurasian Journal of Sustainable Agriculture Copyright 2015, American-Eurasian Network for Scientific Information publisher American-Eurasian Journal of Sustainable Agriculture ISSN: 1995-0748 JOURNAL home page: http://www.aensiweb.com/aejsa 2015

More information

We can display an object on a monitor screen in three different computer-model forms: Wireframe model Surface Model Solid model

We can display an object on a monitor screen in three different computer-model forms: Wireframe model Surface Model Solid model CHAPTER 4 CURVES 4.1 Introduction In order to understand the significance of curves, we should look into the types of model representations that are used in geometric modeling. Curves play a very significant

More information

Tracking Anomalies in Vehicle Movements using Mobile GIS

Tracking Anomalies in Vehicle Movements using Mobile GIS Tracking Anomalies in Vehicle Movements using Mobile GIS M.Saravanan Ericsson Research India Ericsson India Global Services Pvt.Ltd. Chennai, India Abstract--- Detecting fraud activities and anomalies

More information

CZECH PILOT STUDY OF ROAD HORIZONTAL ALIGNMENT OPTIMIZATION

CZECH PILOT STUDY OF ROAD HORIZONTAL ALIGNMENT OPTIMIZATION The XXVIII International Baltic Road Conference CZECH PILOT STUDY OF ROAD HORIZONTAL ALIGNMENT OPTIMIZATION Jiří Ambros 1, Veronika Valentová 2 1,2 Centrum dopravního výzkumu, v.v.i., Brno, Czech Republic

More information

Analytical Geometry (4)

Analytical Geometry (4) Analytical Geometry (4) Learning Outcomes and Assessment Standards Learning Outcome 3: Space, shape and measurement Assessment Standard As 3(c) and AS 3(a) The gradient and inclination of a straight line

More information

MATHEMATICS Grade 12 EUCLIDEAN GEOMETRY: CIRCLES 02 JULY 2014

MATHEMATICS Grade 12 EUCLIDEAN GEOMETRY: CIRCLES 02 JULY 2014 EUCLIDEAN GEOMETRY: CIRCLES 02 JULY 2014 Checklist Make sure you learn proofs of the following theorems: The line drawn from the centre of a circle perpendicular to a chord bisects the chord The angle

More information

TRACKING DRIVER EYE MOVEMENTS AT PERMISSIVE LEFT-TURNS

TRACKING DRIVER EYE MOVEMENTS AT PERMISSIVE LEFT-TURNS TRACKING DRIVER EYE MOVEMENTS AT PERMISSIVE LEFT-TURNS Michael A. Knodler Jr. Department of Civil & Environmental Engineering University of Massachusetts Amherst Amherst, Massachusetts, USA E-mail: mknodler@ecs.umass.edu

More information

CONSTRUCTION METHOD OF APPROXIMATED DEVELOPMENTS OF OPTIONAL LENGTH CIRCULAR ARCS

CONSTRUCTION METHOD OF APPROXIMATED DEVELOPMENTS OF OPTIONAL LENGTH CIRCULAR ARCS Biuletyn Polskiego Towarzystwa Geometrii i Grafiki Inżynierskiej Zeszyt 13 (2003), str. 5 9 5 CONSTRUCTION METHOD OF APPROXIMATED DEVELOPMENTS OF OPTIONAL LENGTH CIRCULAR ARCS Mieczysław MAJEWSKI Technical

More information

DRAFTING MANUAL. Gears (Bevel and Hypoid) Drafting Practice

DRAFTING MANUAL. Gears (Bevel and Hypoid) Drafting Practice Page 1 1.0 General This section provides the basis for uniformity in engineering gears drawings and their technical data for gears with intersecting axes (bevel gears), and nonparallel, nonintersecting

More information

Wallingford Public Schools - HIGH SCHOOL COURSE OUTLINE

Wallingford Public Schools - HIGH SCHOOL COURSE OUTLINE Wallingford Public Schools - HIGH SCHOOL COURSE OUTLINE Course Title: Computer Aided Drafting & Design Course Number: 7163 Department: Career and Technical Education Grade(s): 9-12 Level(s): Academic Credit:

More information

CHAPTER 7 DEAD RECKONING

CHAPTER 7 DEAD RECKONING CHAPTER 7 DEAD RECKONING DEFINITION AND PURPOSE 700. Definition and Use Dead reckoning is the process of determining one s present position by projecting course(s) and speed(s) from a known past position,

More information

Highway Motor Transportation

Highway Motor Transportation Highway Motor Transportation WW I: Motor carrier industry started, converted automobiles were used for pick up and delivery in local areas Railroads encouraged the growth. They had difficulty with small

More information

Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area

Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area Quality of Map-Matching Procedures Based on DGPS and Stand-Alone GPS Positioning in an Urban Area Konstantinos LAKAKIS, Paraskevas SAVVAIDIS, Ioannis M. IFADIS and Ioannis D. DOUKAS, Greece Key words:

More information

CHAPTER 9 SURVEYING TERMS AND ABBREVIATIONS

CHAPTER 9 SURVEYING TERMS AND ABBREVIATIONS CHAPTER 9 SURVEYING TERMS AND ABBREVIATIONS Surveying Terms 9-2 Standard Abbreviations 9-6 9-1 A) SURVEYING TERMS Accuracy - The degree of conformity with a standard, or the degree of perfection attained

More information

DUTIES OF THE CONSTRUCTION SURVEYOR In support of construction activities, the surveyor obtains the reconnaissance and preliminary data which are necessary at the planning stage. During the construction

More information

Rolle s Theorem. q( x) = 1

Rolle s Theorem. q( x) = 1 Lecture 1 :The Mean Value Theorem We know that constant functions have derivative zero. Is it possible for a more complicated function to have derivative zero? In this section we will answer this question

More information

Parametric Equations and the Parabola (Extension 1)

Parametric Equations and the Parabola (Extension 1) Parametric Equations and the Parabola (Extension 1) Parametric Equations Parametric equations are a set of equations in terms of a parameter that represent a relation. Each value of the parameter, when

More information

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is

More information

MATH STUDENT BOOK. 8th Grade Unit 6

MATH STUDENT BOOK. 8th Grade Unit 6 MATH STUDENT BOOK 8th Grade Unit 6 Unit 6 Measurement Math 806 Measurement Introduction 3 1. Angle Measures and Circles 5 Classify and Measure Angles 5 Perpendicular and Parallel Lines, Part 1 12 Perpendicular

More information

Lecture 07: Work and Kinetic Energy. Physics 2210 Fall Semester 2014

Lecture 07: Work and Kinetic Energy. Physics 2210 Fall Semester 2014 Lecture 07: Work and Kinetic Energy Physics 2210 Fall Semester 2014 Announcements Schedule next few weeks: 9/08 Unit 3 9/10 Unit 4 9/15 Unit 5 (guest lecturer) 9/17 Unit 6 (guest lecturer) 9/22 Unit 7,

More information

FORCE ON A CURRENT IN A MAGNETIC FIELD

FORCE ON A CURRENT IN A MAGNETIC FIELD 7/16 Force current 1/8 FORCE ON A CURRENT IN A MAGNETIC FIELD PURPOSE: To study the force exerted on an electric current by a magnetic field. BACKGROUND: When an electric charge moves with a velocity v

More information

Reflection and Refraction

Reflection and Refraction Equipment Reflection and Refraction Acrylic block set, plane-concave-convex universal mirror, cork board, cork board stand, pins, flashlight, protractor, ruler, mirror worksheet, rectangular block worksheet,

More information

ME 111: Engineering Drawing

ME 111: Engineering Drawing ME 111: Engineering Drawing Lecture # 14 (10/10/2011) Development of Surfaces http://www.iitg.ernet.in/arindam.dey/me111.htm http://www.iitg.ernet.in/rkbc/me111.htm http://shilloi.iitg.ernet.in/~psr/ Indian

More information

ESTIMATION OF FREE-FLOW SPEEDS FOR MULTILANE RURAL AND SUBURBAN HIGHWAYS

ESTIMATION OF FREE-FLOW SPEEDS FOR MULTILANE RURAL AND SUBURBAN HIGHWAYS ESTIMATION OF FREE-FLOW SPEEDS FOR MULTILANE RURAL AND SUBURBAN HIGHWAYS Pin-Yi TSENG Professor Department of Traffic Science Central Police University 56, Shu Jen Road, Kwei Shan, Taoyuan, 33334, Taiwan

More information

Roots of Equations (Chapters 5 and 6)

Roots of Equations (Chapters 5 and 6) Roots of Equations (Chapters 5 and 6) Problem: given f() = 0, find. In general, f() can be any function. For some forms of f(), analytical solutions are available. However, for other functions, we have

More information

Paul Deutsch. NDDOT Office of Project Development Conference November 9, 2010

Paul Deutsch. NDDOT Office of Project Development Conference November 9, 2010 Paul Deutsch NDDOT Office of Project Development Conference November 9, 2010 What is a Horizontal Curve? Provides a transition between two tangent lengths of roadway. PI PC PT PC (Point of Curvature at

More information

FORENSIC COLLISION INVESTIGATION REPORT

FORENSIC COLLISION INVESTIGATION REPORT FORENSIC COLLISION INVESTIGATION REPORT Prepared by: Martin Lowe Prepared For: Solicitors for the XXXXXXXXXX Table of Contents 1. Brief.....1 Instructing Solicitors Instructions Location of the collision

More information

By: KPIT Technologies Limited. NHAI Portal Guide

By: KPIT Technologies Limited. NHAI Portal Guide Design, Development, Deployment, Operation and Maintenance of Vehicle Tracking System (VTS) using Global Positioning System (GPS) devices for National Highway Authority of India By: KPIT Technologies Limited

More information

circular motion & gravitation physics 111N

circular motion & gravitation physics 111N circular motion & gravitation physics 111N uniform circular motion an object moving around a circle at a constant rate must have an acceleration always perpendicular to the velocity (else the speed would

More information

(15.) To find the distance from point A to point B across. a river, a base line AC is extablished. AC is 495 meters

(15.) To find the distance from point A to point B across. a river, a base line AC is extablished. AC is 495 meters (15.) To find the distance from point A to point B across a river, a base line AC is extablished. AC is 495 meters long. Angles

More information

Using Big Data and GIS to Model Aviation Fuel Burn

Using Big Data and GIS to Model Aviation Fuel Burn Using Big Data and GIS to Model Aviation Fuel Burn Gary M. Baker USDOT Volpe Center 2015 Transportation DataPalooza June 17, 2015 The National Transportation Systems Center Advancing transportation innovation

More information

Cross Harbor Freight Tunnel: Add Subway To Staten Island and More!

Cross Harbor Freight Tunnel: Add Subway To Staten Island and More! Cross Harbor Freight Tunnel: Add Subway To Staten Island and More! The Brooklyn Historic Railway Association (BHRA) applauds the Port Authority s endeavour to build a rail tunnel under New York Harbor.

More information

Estimating the Speed of a Motor Vehicle in a Collision

Estimating the Speed of a Motor Vehicle in a Collision Journal of Criminal Law and Criminology Volume 58 Issue 1 Article 14 1967 Estimating the Speed of a Motor Vehicle in a Collision Conrad K. Rizer Follow this and additional works at: http://scholarlycommons.law.northwestern.edu/jclc

More information

GEOMETRIC MENSURATION

GEOMETRIC MENSURATION GEOMETRI MENSURTION Question 1 (**) 8 cm 6 cm θ 6 cm O The figure above shows a circular sector O, subtending an angle of θ radians at its centre O. The radius of the sector is 6 cm and the length of the

More information

MSc in Autonomous Robotics Engineering University of York

MSc in Autonomous Robotics Engineering University of York MSc in Autonomous Robotics Engineering University of York Practical Robotics Module 2015 A Mobile Robot Navigation System: Labs 1a, 1b, 2a, 2b. Associated lectures: Lecture 1 and lecture 2, given by Nick

More information

A Real Time Tracking and Alerting System Using LabVIEW

A Real Time Tracking and Alerting System Using LabVIEW A Real Time Tracking and Alerting System Using LabVIEW J Jyothirmai Joshi Assistant Professor, Dept. of EIE, VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad, Telangana, India ABSTRACT:

More information

Chapter 5 Using Newton s Laws: Friction, Circular Motion, Drag Forces. Copyright 2009 Pearson Education, Inc.

Chapter 5 Using Newton s Laws: Friction, Circular Motion, Drag Forces. Copyright 2009 Pearson Education, Inc. Chapter 5 Using Newton s Laws: Friction, Circular Motion, Drag Forces Units of Chapter 5 Applications of Newton s Laws Involving Friction Uniform Circular Motion Kinematics Dynamics of Uniform Circular

More information

Conjectures. Chapter 2. Chapter 3

Conjectures. Chapter 2. Chapter 3 Conjectures Chapter 2 C-1 Linear Pair Conjecture If two angles form a linear pair, then the measures of the angles add up to 180. (Lesson 2.5) C-2 Vertical Angles Conjecture If two angles are vertical

More information

13. Write the decimal approximation of 9,000,001 9,000,000, rounded to three significant

13. Write the decimal approximation of 9,000,001 9,000,000, rounded to three significant æ If 3 + 4 = x, then x = 2 gold bar is a rectangular solid measuring 2 3 4 It is melted down, and three equal cubes are constructed from this gold What is the length of a side of each cube? 3 What is the

More information

Ampere's Law. Introduction. times the current enclosed in that loop: Ampere's Law states that the line integral of B and dl over a closed path is 0

Ampere's Law. Introduction. times the current enclosed in that loop: Ampere's Law states that the line integral of B and dl over a closed path is 0 1 Ampere's Law Purpose: To investigate Ampere's Law by measuring how magnetic field varies over a closed path; to examine how magnetic field depends upon current. Apparatus: Solenoid and path integral

More information

HERS_IN. HIGHWAY ECONOMIC REQUIREMENTS SYSTEM (for) INDIANA. AASHTO Transportation Estimator Association Conference October 16, 2001

HERS_IN. HIGHWAY ECONOMIC REQUIREMENTS SYSTEM (for) INDIANA. AASHTO Transportation Estimator Association Conference October 16, 2001 AASHTO Transportation Estimator Association Conference October 16, 2001 HERS_IN HIGHWAY ECONOMIC REQUIREMENTS SYSTEM (for) INDIANA OVERVIEW HERS Background System Planning Tool Development HERS_IN Structure

More information

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM NaveenKumar.M #1, Ranjith.R *2 #* Department of Electronics and Instrumentation Engineering, #* Sri Sairam Engineering College, Chennai,

More information

Name Date Class. Lines and Segments That Intersect Circles. AB and CD are chords. Tangent Circles. Theorem Hypothesis Conclusion

Name Date Class. Lines and Segments That Intersect Circles. AB and CD are chords. Tangent Circles. Theorem Hypothesis Conclusion Section. Lines That Intersect Circles Lines and Segments That Intersect Circles A chord is a segment whose endpoints lie on a circle. A secant is a line that intersects a circle at two points. A tangent

More information

Forensic Engineering Determination of the Angle of Lean of a Cycle-Rider System Negotiating a Turn

Forensic Engineering Determination of the Angle of Lean of a Cycle-Rider System Negotiating a Turn NAFE 193F/401F ANALYSIS OF BICYCLE STABILITY PAGE 1 Forensic Engineering Determination of the Angle of Lean of a Cycle-Rider System Negotiating a Turn by James M. Green, P.E., D.E.E. (NAFE 193F) Jon O.

More information

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Friday, January 9, 016 9:15 a.m. to 1:15 p.m., only Student Name: School Name: The possession

More information

INITIAL SITE INSPECTION OF MOTORCYCLE COLLISIONS WITH ROADSIDE OBJECTS IN NEW JERSEY

INITIAL SITE INSPECTION OF MOTORCYCLE COLLISIONS WITH ROADSIDE OBJECTS IN NEW JERSEY INITIAL SITE INSPECTION OF MOTORCYCLE COLLISIONS WITH ROADSIDE OBJECTS IN NEW JERSEY Allison Daniello Ben Powell Nicholas Schaeffer Aaliyah McClinton Yusuf Mehta Rowan University United States Kimberly

More information

ACCIDENT PREDICTION MODELS FOR TWO-LANE RURAL HIGHWAYS

ACCIDENT PREDICTION MODELS FOR TWO-LANE RURAL HIGHWAYS ACCIDENT PREDICTION MODELS FOR TWO-LANE RURAL HIGHWAYS K. R. Kalokota Utah Transportation Center Utah State University Prianka N. Seneviratne Utah Transportation Center Utah State University May 1994 Acknowledgments

More information

Lesson 1: Introducing Circles

Lesson 1: Introducing Circles IRLES N VOLUME Lesson 1: Introducing ircles ommon ore Georgia Performance Standards M9 12.G..1 M9 12.G..2 Essential Questions 1. Why are all circles similar? 2. What are the relationships among inscribed

More information

Curriculum Map by Block Geometry Mapping for Math Block Testing 2007-2008. August 20 to August 24 Review concepts from previous grades.

Curriculum Map by Block Geometry Mapping for Math Block Testing 2007-2008. August 20 to August 24 Review concepts from previous grades. Curriculum Map by Geometry Mapping for Math Testing 2007-2008 Pre- s 1 August 20 to August 24 Review concepts from previous grades. August 27 to September 28 (Assessment to be completed by September 28)

More information

PLOTTING SURVEYING DATA IN GOOGLE EARTH

PLOTTING SURVEYING DATA IN GOOGLE EARTH PLOTTING SURVEYING DATA IN GOOGLE EARTH D M STILLMAN Abstract Detail surveys measured with a total station use local coordinate systems. To make the data obtained from such surveys compatible with Google

More information

Accuracy Assessment of Land Use Land Cover Classification using Google Earth

Accuracy Assessment of Land Use Land Cover Classification using Google Earth American Journal of Environmental Protection 25; 4(4): 9-98 Published online July 2, 25 (http://www.sciencepublishinggroup.com/j/ajep) doi:.648/j.ajep.2544.4 ISSN: 228-568 (Print); ISSN: 228-5699 (Online)

More information

GEOGRAPHIC INFORMATION SYSTEMS

GEOGRAPHIC INFORMATION SYSTEMS GIS GEOGRAPHIC INFORMATION SYSTEMS FOR CADASTRAL MAPPING Chapter 7 2015 Cadastral Mapping Manual 7-0 GIS - GEOGRAPHIC INFORMATION SYSTEMS What is GIS For a long time people have sketched, drawn and studied

More information

Updation of Cadastral Maps Using High Resolution Remotely Sensed Data

Updation of Cadastral Maps Using High Resolution Remotely Sensed Data International Journal of Engineering and Advanced Technology (IJEAT) Updation of Cadastral Maps Using High Resolution Remotely Sensed Data V. V.Govind Kumar, K. Venkata Reddy, Deva Pratap Abstract:A cadastral

More information

International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 3, Issue 6, June 2014

International Journal of Advanced Research in Computer Engineering & Technology (IJARCET) Volume 3, Issue 6, June 2014 Real Time Wireless based Train Tracking, Track Identification and Collision avoidance System for Railway Sectors 1 R. Immanuel Rajkumar, 2 Dr.P. E. Sankaranarayanan, and 3 Dr.G.Sundari 1 Research Scholar,

More information

Large Scale Spatial Data Management on Mobile Phone data set Using Exploratory Data Analysis

Large Scale Spatial Data Management on Mobile Phone data set Using Exploratory Data Analysis Large Scale Spatial Data Management on Mobile Phone data set Using Exploratory Data Analysis K.S.Pandiyan, Dr.S.Sivakumar Research scholar, Professor, Department of Geology, Anna University, Chennai Abstract

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education MATHEMATICS 0580/02 Paper 2 (Extended) For Examination from 2015 SPECIMEN PAPER Candidates answer

More information

Additional Topics in Math

Additional Topics in Math Chapter Additional Topics in Math In addition to the questions in Heart of Algebra, Problem Solving and Data Analysis, and Passport to Advanced Math, the SAT Math Test includes several questions that are

More information

Contents. 2 Lines and Circles 3 2.1 Cartesian Coordinates... 3 2.2 Distance and Midpoint Formulas... 3 2.3 Lines... 3 2.4 Circles...

Contents. 2 Lines and Circles 3 2.1 Cartesian Coordinates... 3 2.2 Distance and Midpoint Formulas... 3 2.3 Lines... 3 2.4 Circles... Contents Lines and Circles 3.1 Cartesian Coordinates.......................... 3. Distance and Midpoint Formulas.................... 3.3 Lines.................................. 3.4 Circles..................................

More information

Cabri Geometry Application User Guide

Cabri Geometry Application User Guide Cabri Geometry Application User Guide Preview of Geometry... 2 Learning the Basics... 3 Managing File Operations... 12 Setting Application Preferences... 14 Selecting and Moving Objects... 17 Deleting

More information

Vehicle Tracking system with GPS GSM Interface and Self Created Map

Vehicle Tracking system with GPS GSM Interface and Self Created Map Vehicle Tracking system with GPS GSM Interface and Self Created Map Modi Nirav D. Department of Electronics, Bharati Vidyapeeth Deemed University, College of Engineering Pune, Pune ABSTRACT Safety and

More information

TRAFFIC ENGINEERING DIVISION MEMORANDUM

TRAFFIC ENGINEERING DIVISION MEMORANDUM VIRGINIA DEPARTMENT OF TRANSPORTATION TRAFFIC ENGINEERING DIVISION MEMORANDUM NUMBER: TE-363 SUPERSEDED: N/A DATE: July 28, 2009 SUNSET DATE: (see footnote) GENERAL SUBJECT: Engineering and Administration

More information

VEHICLE TRACKING SYSTEM

VEHICLE TRACKING SYSTEM Real-Time Vehicle tracking solution Vehicle tracking solution enables to monitor the entire fleet in transit spread across India, which can be monitored from a central location. These locations are subject

More information

A Low Cost Vehicle Monitoring System for Fixed Routes Using Global Positioning System (GPS)

A Low Cost Vehicle Monitoring System for Fixed Routes Using Global Positioning System (GPS) A Low Cost Vehicle Monitoring System for Fixed Routes Using Global Positioning System (GPS) Mark Darren Savuriar, Chandrasekharan Nataraj, Chitturi Venkatratnam, Sardar Ali School of Engineering Asia Pacific

More information

Section 9-1. Basic Terms: Tangents, Arcs and Chords Homework Pages 330-331: 1-18

Section 9-1. Basic Terms: Tangents, Arcs and Chords Homework Pages 330-331: 1-18 Chapter 9 Circles Objectives A. Recognize and apply terms relating to circles. B. Properly use and interpret the symbols for the terms and concepts in this chapter. C. Appropriately apply the postulates,

More information

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a

88 CHAPTER 2. VECTOR FUNCTIONS. . First, we need to compute T (s). a By definition, r (s) T (s) = 1 a sin s a. sin s a, cos s a 88 CHAPTER. VECTOR FUNCTIONS.4 Curvature.4.1 Definitions and Examples The notion of curvature measures how sharply a curve bends. We would expect the curvature to be 0 for a straight line, to be very small

More information

cos Newington College HSC Mathematics Ext 1 Trial Examination 2011 QUESTION ONE (12 Marks) (b) Find the exact value of if. 2 . 3

cos Newington College HSC Mathematics Ext 1 Trial Examination 2011 QUESTION ONE (12 Marks) (b) Find the exact value of if. 2 . 3 1 QUESTION ONE (12 Marks) Marks (a) Find tan x e 1 2 cos dx x (b) Find the exact value of if. 2 (c) Solve 5 3 2x 1. 3 (d) If are the roots of the equation 2 find the value of. (e) Use the substitution

More information

Procedure: Geometrical Optics. Theory Refer to your Lab Manual, pages 291 294. Equipment Needed

Procedure: Geometrical Optics. Theory Refer to your Lab Manual, pages 291 294. Equipment Needed Theory Refer to your Lab Manual, pages 291 294. Geometrical Optics Equipment Needed Light Source Ray Table and Base Three-surface Mirror Convex Lens Ruler Optics Bench Cylindrical Lens Concave Lens Rhombus

More information

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph.

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph. Motion Graphs It is said that a picture is worth a thousand words. The same can be said for a graph. Once you learn to read the graphs of the motion of objects, you can tell at a glance if the object in

More information

B Answer: neither of these. Mass A is accelerating, so the net force on A must be non-zero Likewise for mass B.

B Answer: neither of these. Mass A is accelerating, so the net force on A must be non-zero Likewise for mass B. CTA-1. An Atwood's machine is a pulley with two masses connected by a string as shown. The mass of object A, m A, is twice the mass of object B, m B. The tension T in the string on the left, above mass

More information