Software Unit Verification in IEC 62304

Size: px
Start display at page:

Download "Software Unit Verification in IEC 62304"

Transcription

1 Building a safe and secure embedded world Software Unit Verification in IEC Frank Büchner, Hitex GmbH, Karlsruhe

2 Hitex GmbH Founded 1976 in Karlsruhe, Germany Approx. 50 employees Subsidiary in UK (20 employees) Part of the Infineon Group since 2003 Tools for safety & security Test services Engineering, production, consulting AURIX preferred design house (PDH) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 2

3 Motivation Inspiration by a look in non-medical standards IEC ISO DIN EN ISO ISO IEC IEC ISO/IEC Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 3

4 Contents 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 4

5 A Look in Software Unit Verification IEC 62304:2006+AMD1:2015, p. 24 (Copyright der VDE VERLAG GmbH) DIN EN 62304: , p. 28 (Copyright der VDE VERLAG GmbH) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 5

6 A Look in What is an unit? Three criteria 1. Not subdivided / not further decomposed 2. Separately testable 3. Defined by manufacturer Software item Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 6

7 A Look in What is an unit? Software Items: U U U Software System U U U Software Item U Software Unit Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 7

8 Conclusion What is an unit? Programming language C C++, Java, C#, Ada Unit Function Method Procedure / Function Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 8 Second term: verification

9 A Look in Verification IEC 62304:2006+AMD1:2015, p. 14 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 9

10 A Look in Verification Where do the requirements come from? IEC 62304:2006+AMD1:2015, p. 23 Includes Requirements Decomposition + Risk Analysis Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 10

11 A Look in Verification Strategies, methods, and procedures IEC 62304:2006+AMD1:2015, p. 24 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 11

12 Excursus Test static dynamic manual (by human) automated (by tool) automated (by tool) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 12

13 A Look in Verification Acceptance Criteria IEC 62304:2006+AMD1:2015, p. 19 Software Unit Acceptance Criteria IEC 62304:2006+AMD1:2015, 5.5.3, p. 24 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 13

14 Discussion Acceptance Criteria Requirements Link Matrix Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 14

15 Discussion Acceptance Criteria Interface Structure Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 15

16 Discussion Acceptance Criteria Coding standards (1/2) IEC 62304:2006+AMD1:2015, p. 49 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 16

17 Discussion Acceptance Criteria Coding standards (2/2) Proprietary coding rules Ready-made, e.g. MISRA, CERT-C Checked by static analysis Preferrably checked by tool Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 17

18 A Look in Additional acceptance criteria IEC 62304:2006+AMD1:2015, p. 24 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 18

19 Discussion Additional Acceptance Criteria Proper Event Sequence E.g. by checking the Call Trace Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 19

20 Discussion Additional Acceptance Criteria Data flow A variable can have 3 states: 1. d: defined (= value assigned) 2. r: referenced (= value used) 3. u: undefined (= not initialized) Three data flow anomalies: 1. ur 2. du 3. dd A data flow anomaly does not need to result in a failure Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 20

21 Discussion Additional Acceptance Criteria Control flow Example: Unreachable code Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 21

22 Discussion Additional Acceptance Criteria Fault handling Needs requirement Initialization of variables This is a data flow anomaly Self-diagnostic Needs requirement Boundary conditions Relates to test case specification [ [ Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 22

23 Contents 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 23

24 26262 and Code Coverage mentions Coverage of requirements But not code coverage for unit verification Code coverage in ISO 26262:2011 for Unit Testing Part 6, Table 12 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 24

25 26262 and Code Coverage Recommendation Safety Class A B C Coverage Measure Statement Coverage Branch Coverage Modified Condition / Decision Coverage (MC/DC) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 25

26 Inhalt 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 26

27 50128 and Independent Testing IEC 62304:2006+AMD1:2015, p. 8 IEC 62304:2006+AMD1:2015, p. 64 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 27

28 50128 and Independent Testing Bahnanwendungen / Railway DIN EN 50128: (Copyright der VDE VERLAG GmbH) At SIL 0: A person, who is implementer of a software component must not be tester of the same software component. (translation by the author) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 28

29 Independent Testing Why is independent testing important? (1/3) Example of a specification A start value and a length define a range of values. Determine if a given value is within the defined range or not. The end of the range shall not be inside the range. Only integer numbers are to be considered. value outside inside outside start [ [ length Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 29

30 Independent Testing Why is independent testing important? (2/3) This case is simple [ [ Value = 6 inside! Start = 5 Length= 2 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 30

31 Independent Testing Why is independent testing important? (3/3) But this case? Value = -6??? ] ] Length = -2 Start = -5 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 31

32 Contents 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 32

33 61508 and Software Complexity Control IEC IEC :2010, Table B.9 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 33

34 61508 and Software Complexity Control Metrics for software complexity control Examples Cyclomatic complexity according to McCABE Volume according to Halstaed Tool support necessary! Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 34

35 61508 and Software Complexity Control Software module size limit , section C.2.9: typically 2 to 4 screen sizes Metric Lines-of-code (LOC) Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 35

36 61508 and Software Complexity Control Parameter number limit Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 36

37 61508 and Software Complexity Control One entry / one exit Rule 15.5 from MISRA-C:2012 Only one return statement at the end Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 37

38 Contents 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 38

39 26262 and Test Case Specification How to find test cases for black-box unit tests? ISO 26262:2011, part 6, table 11 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 39

40 26262 and Test Case Specification Methods from ISO for deriving test cases Equivalence classes Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 40

41 Excursus Test case specification using the Classification Tree Method Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 41

42 26262 and Test Case Specification Methods from ISO for deriving test cases Error guessing aka intuitive testing aka experienced-based testing Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 42

43 Contents 1. A Look in A Look in Other Standards and Code Coverage and Independent Testing and Software Complexity Control and Test Case Specification and Tool Qualification Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 43

44 26262 and Tool Qualification Methods for tool qualification ISO 26262:2011, part 8, table 4 Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 44

45 Thank you for listening! Any questions? Unit test tool TESSY by Razorcat Static analysis tool KLOCWORK by Roguewave Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 45

46 Contact & Additional Information Frank Büchner Dipl.-Inform. Principal Engineer Software Quality Hitex GmbH Greschbachstr. 12 Karlsruhe Germany Tel.: +49 / 721 / frank.buechner(at)hitex.de Software Unit Verification, Frank Büchner, Nov Copyright Hitex GmbH All rights reserved. 46

Driving STM32 to success STM32 services for sophisticated embedded applications

Driving STM32 to success STM32 services for sophisticated embedded applications Building a safe and secure embedded world Driving STM32 to success STM32 services for sophisticated embedded applications > STM32 Services HITEX: the stm32 experts Questions about STM32? Ask us! STM32

More information

AURIX After-Lunch-Seminar - Performance meets Safety. PDH Angebot am Beispiel erfolgreicher Kundenprojekte

AURIX After-Lunch-Seminar - Performance meets Safety. PDH Angebot am Beispiel erfolgreicher Kundenprojekte Building a safe and secure embedded world AURIX After-Lunch-Seminar - Performance meets Safety PDH Angebot am Beispiel erfolgreicher Kundenprojekte Michael Weiß, Senior Account Manager Embedded Solutions

More information

Programmable Safety Systems PSS-Range

Programmable Safety Systems PSS-Range Programmable Safety Systems PSS-Range PROFIBUS-DP for Compact 3rd Generation PSS Operating Manual Item No. 20 962-04 All rights to this manual are reserved by Pilz GmbH & Co. KG. Copies may be made for

More information

ISO INTERNATIONAL STANDARD. Non-invasive sphygmomanometers Part 1: Requirements and test methods for non-automated measurement type

ISO INTERNATIONAL STANDARD. Non-invasive sphygmomanometers Part 1: Requirements and test methods for non-automated measurement type INTERNATIONAL STANDARD ISO 81060-1 First edition 2007-12-01 Non-invasive sphygmomanometers Part 1: Requirements and test methods for non-automated measurement type Sphygmomanomètres non invasifs Partie

More information

Succeeding with Entry into Service MRO Europe: Engineering & Maintenance

Succeeding with Entry into Service MRO Europe: Engineering & Maintenance Succeeding with Entry into Service MRO Europe: Engineering & Maintenance Next generation maintenance services for next generation aircraft technology 2 Succeeding with Entry into Service Carsten Wortmann

More information

Video Media Center - VMC 1000 Getting Started Guide

Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Trademark Information Polycom, the Polycom logo design, Video Media Center, and RSS 2000 are registered

More information

Safety Enhancement SE ASA Design Virtual Day-VMC Displays

Safety Enhancement SE ASA Design Virtual Day-VMC Displays Safety Enhancement SE 200.2 ASA Design Virtual Day-VMC Displays Safety Enhancement Action: Implementers: (Select all that apply) Statement of Work: Manufacturers develop and implement virtual day-visual

More information

Technical Standard Order

Technical Standard Order Department of Transportation Federal Aviation Administration Aircraft Certification Service Washington, DC TSO-C145a Effective Date: 09/19/02 Technical Standard Order Subject: AIRBORNE NAVIGATION SENSORS

More information

Official Journal of the European Union L 186/27

Official Journal of the European Union L 186/27 7.7.2006 Official Journal of the European Union L 186/27 COMMISSION REGULATION (EC) No 1032/2006 of 6 July 2006 laying down requirements for automatic systems for the exchange of flight data for the purpose

More information

Inadvertent Slide Deployments Update

Inadvertent Slide Deployments Update Inadvertent Slide Deployments Update Kai Bredemeier, Airbus Industrie Anabel Brough, Emirates Airline Carlos Dias, TAP Portugal Dr. Steve Jarvis, Director Jarvis Bagshaw Ltd. Host Ruben Inion, Austrian

More information

NATA Aircraft Maintenance & System Technology Committee Best Practices. RVSM Maintenance

NATA Aircraft Maintenance & System Technology Committee Best Practices. RVSM Maintenance NATA Aircraft Maintenance & System Technology Committee Best Practices Reduced Vertical Separation Minimum (RVSM) Airspace reduces the vertical separation above flight level (FL) 290 from 2000-ft minimum

More information

Technical Standard Order

Technical Standard Order Department of Transportation Federal Aviation Administration Aircraft Certification Service Washington, D.C. TSO-C124b Effective Date: 04/10/07 Subject: Technical Standard Order FLIGHT DATA RECORDER SYSTEMS

More information

Quality Assurance. Introduction Need for quality assurance Answer to the need of quality assurance Details on quality assurance Conclusion A B C D E

Quality Assurance. Introduction Need for quality assurance Answer to the need of quality assurance Details on quality assurance Conclusion A B C D E Quality Assurance 1 A B C D E Introduction Need for quality assurance Answer to the need of quality assurance Details on quality assurance Conclusion 2 1 Introduction 3 Introduction The implementation

More information

Excerpts from ICAO PBCS Manual

Excerpts from ICAO PBCS Manual IBAC Bulletin - 8 Dec. 2017 Attachment A Excerpts from ICAO PBCS Manual Chapter 4. Complying with and RCP/RSP specification 4-8 4.3.1.7 The ANSP should establish the following, subject to a bilateral,

More information

Advisory Circular. En Route Area Navigation Operations RNAV 5 (Formerly B-RNAV) Aviation Safety Regulatory Framework Document No.

Advisory Circular. En Route Area Navigation Operations RNAV 5 (Formerly B-RNAV) Aviation Safety Regulatory Framework Document No. Advisory Circular Subject: En Route Area Navigation Operations RNAV 5 (Formerly B-RNAV) Issuing Office: PAA Sub Activity Area: File Classification No.: Civil Aviation Aviation Safety Regulatory Framework

More information

RED ATLAS PRODUCT BROCHURE. From Nevalee Business Solutions

RED ATLAS PRODUCT BROCHURE. From Nevalee Business Solutions RED ATLAS PRODUCT BROCHURE From Nevalee Business Solutions CONTENTS OVERVIEW... 3 FUNCTIONS... 3 BACKGROUND... 3 ATC... 4 OPERATIONS... 5 ACCOUNTS... 6 REPORTING... 7 CONSULTING... 8 2 OVERVIEW Red Atlas

More information

Working With the FAA through Delegated Authority

Working With the FAA through Delegated Authority Working With the FAA through Delegated Authority The Wencor Group The Wencor Group Experience 1985 2000 Standard FAA submittals on Identicality and T&C 2000 2009 MOA submittals on T&C projects Since 2009

More information

Think the solution, experience the change

Think the solution, experience the change Think the solution, experience the change RNP AR Approach Design Don-Jacques OULD FERHAT, Head of Operations Think the solution, experience the change AGENDA Airbus PBN services subsidiary Implementing

More information

ICAO Young Aviation Professionals Programme

ICAO Young Aviation Professionals Programme ICAO Young Aviation Professionals Programme In partnership with and The International Civil Aviation Organization (ICAO), in partnership with the International Air Transport Association (IATA) and Airports

More information

AIS Basics - NOTAM, AIP, Amendments, Supplements, Circulars, Charts, and NOTAM Putting the basics in place

AIS Basics - NOTAM, AIP, Amendments, Supplements, Circulars, Charts, and NOTAM Putting the basics in place AIS Basics - NOTAM, AIP, Amendments, Supplements, Circulars, Charts, and NOTAM Putting the basics in place Workshop for the development of AIS management and oversight for Civil Aviation Authorities CAA)

More information

FAA/HSAC PART 135 SYSTEM SAFETY RISK MANAGEMENT SAFETY ELEMENT TRAINING OF FLIGHT CREWMEMBERS JOB AID Revision 1

FAA/HSAC PART 135 SYSTEM SAFETY RISK MANAGEMENT SAFETY ELEMENT TRAINING OF FLIGHT CREWMEMBERS JOB AID Revision 1 SAFETY ELEMENT 4.2.3 - TRAINING OF FLIGHT CREWMEMBERS JOB AID Revision 1 The Federal Aviation Administration (FAA) is proactively moving away from compliance based safety surveillance programs to Systems

More information

Experience Feedback in the Air Transport

Experience Feedback in the Air Transport Yves BENOIST Vice President Flight Safety (Retired) Airbus Experience Feedback in the Air Transport Why an experience Feed-Back? Airbus is an aircraft manufacturer and not an operator The manufacturer

More information

ISO Graphical symbols Safety colours and safety signs Registered safety signs AMENDMENT 1

ISO Graphical symbols Safety colours and safety signs Registered safety signs AMENDMENT 1 INTERNATIONAL STANDARD ISO 7010 Second edition 2011-06-01 AMENDMENT 1 2012-04-15 Graphical symbols Safety colours and safety signs Registered safety signs AMENDMENT 1 Symboles graphiques Couleurs de sécurité

More information

General Information Applicant Name and Address: Tel./Fax/ Contact Person Name/Tel./Fax/

General Information Applicant Name and Address: Tel./Fax/  Contact Person Name/Tel./Fax/ Application for steep approach approval Completion of form: Each relevant box should be completed with a tick ( ) or a (X). Form must be completed by referring to a document of applicant's documentation

More information

MPL Global Progress Report

MPL Global Progress Report MPL Global Progress Report Captain Dieter Harms Working Group Leader Selection Criteria & MPL Implementation ICAO NGAP Symposium, Montreal ICAO NGAP Symposium, Montreal 1 1-4 1 March 2010 Contents ITQI

More information

Evidence Based Training from a Regulator s Perspective

Evidence Based Training from a Regulator s Perspective Evidence Based Training from a Regulator s Perspective Marcelo Ureña Regional Officer, Flight Safety ICAO South American Office Evidence Based Training and Advanced Qualification Programme Workshop Lima,

More information

ISO INTERNATIONAL STANDARD. Protective clothing Aprons, trousers and vests protecting against cuts and stabs by hand knives

ISO INTERNATIONAL STANDARD. Protective clothing Aprons, trousers and vests protecting against cuts and stabs by hand knives INTERNATIONAL STANDARD ISO 13998 First edition 2003-01-15 Protective clothing Aprons, trousers and vests protecting against cuts and stabs by hand knives Vêtements de protection Tabliers, pantalons et

More information

Index. Springer International Publishing AG 2018 I. Schagaev, B.R. Kirk, Active System Control, DOI /

Index. Springer International Publishing AG 2018 I. Schagaev, B.R. Kirk, Active System Control, DOI / Index A Active black box, 286 287 Active real-time reliability, 272 Active system control (ASC), 212, 221, 231 ACSCU, 243 active, 45 aircraft classification, 270 aircraft model, 193 algorithm, 250, 252,

More information

Notice of Requirement

Notice of Requirement Notice of Requirement NTC 91.258 Automatic Dependent Surveillance- Broadcast (ADS-B) systems Revision 1 20 July 2018 Preliminary The Director of Civil Aviation issues the following requirements ( the requirements

More information

New generation aircraft in the instrument approach domain. Jean-Christophe Lair Airbus Test pilot 1 st Feb. 2017

New generation aircraft in the instrument approach domain. Jean-Christophe Lair Airbus Test pilot 1 st Feb. 2017 New generation aircraft in the instrument approach domain Jean-Christophe Lair Airbus Test pilot 1 st Feb. 2017 Agenda Video A little bit of history Today s situation A350 XWB solutions for final approaches

More information

RE: Draft AC , titled Determining the Classification of a Change to Type Design

RE: Draft AC , titled Determining the Classification of a Change to Type Design Aeronautical Repair Station Association 121 North Henry Street Alexandria, VA 22314-2903 T: 703 739 9543 F: 703 739 9488 arsa@arsa.org www.arsa.org Sent Via: E-mail: 9AWAAVSDraftAC2193@faa.gov Sarbhpreet

More information

Human Factors of Remotely Piloted Aircraft. Alan Hobbs San Jose State University/NASA Ames Research Center

Human Factors of Remotely Piloted Aircraft. Alan Hobbs San Jose State University/NASA Ames Research Center Human Factors of Remotely Piloted Aircraft Alan Hobbs San Jose State University/NASA Ames Research Center Transfer of Risk UA collides with people or property on ground Other airspace user collides with

More information

Managing Aviation Risk An Oil & Gas Operators Perspective. Oil & Gas UK, Aviation Seminar - 12 th September2017

Managing Aviation Risk An Oil & Gas Operators Perspective. Oil & Gas UK, Aviation Seminar - 12 th September2017 Managing Aviation Risk An Oil & Gas Operators Perspective Oil & Gas UK, Aviation Seminar - 12 th September2017 BP Global Portfolio Aviation Risk Management An Everyday Perspective of Risk Management Risk

More information

ISPA 2009 U.S. Spa Compensation Data INTERNATIONAL SPA ASSOCIATION

ISPA 2009 U.S. Spa Compensation Data INTERNATIONAL SPA ASSOCIATION ISPA 2009 U.S. Spa Compensation Data INTERNATIONAL SPA ASSOCIATION U.S. Spa Compensation Survey Overview Spas were asked to share compensation data for the following full-time positions when surveyed in

More information

National Microelectronics Institute Available from:

National Microelectronics Institute Available from: Wright, S. (2015) Model based testing of avionics. In: Model Driven Engineering 2015, West Sussex, England, 17 June 2015. https://nmi.org.uk/wpcontent/uploads/2015/06/uwe-steve-wright-model-based-testingof-avionics.pdf:

More information

Modeling Approach for Electromagnetic Simulation of Anechoic Chambers

Modeling Approach for Electromagnetic Simulation of Anechoic Chambers Bitte decken Sie die schraffierte Fläche mit einem Bild ab. Please cover the shaded area with a picture. (24,4 x 11,0 cm) Modeling Approach for Electromagnetic Simulation of Anechoic Chambers Ralf Kakerow,

More information

Subject: Automatic Dependent Surveillance-Broadcast (ADS-B) Operations and Operational Authorization

Subject: Automatic Dependent Surveillance-Broadcast (ADS-B) Operations and Operational Authorization OC NO 17 OF 2014 Date: 14 th October 2014 File No AV 22024/30/2014-FSD GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT DIRECTOR GENERAL OF CIVIL AVIATION OPERATIONS CIRCULAR Subject: Automatic Dependent

More information

Aircraft Arrival Sequencing: Creating order from disorder

Aircraft Arrival Sequencing: Creating order from disorder Aircraft Arrival Sequencing: Creating order from disorder Sponsor Dr. John Shortle Assistant Professor SEOR Dept, GMU Mentor Dr. Lance Sherry Executive Director CATSR, GMU Group members Vivek Kumar David

More information

TANZANIA CIVIL AVIATION AUTHORITY AIR NAVIGATION SERVICES INSPECTORATE. Title: CONSTRUCTION OF VISUAL AND INSTRUMENT FLIGHT PROCEDURES

TANZANIA CIVIL AVIATION AUTHORITY AIR NAVIGATION SERVICES INSPECTORATE. Title: CONSTRUCTION OF VISUAL AND INSTRUMENT FLIGHT PROCEDURES Page 1 of 8 1. PURPOSE 1.1. This Advisory Circular provides guidance to personnel involved in construction of instrument and visual flight procedures for publication in the Aeronautical Information Publication.

More information

Department of Defense DIRECTIVE

Department of Defense DIRECTIVE Department of Defense DIRECTIVE NUMBER 5030.61 May 24, 2013 Incorporating Change 2, August 24, 2017 USD(AT&L) SUBJECT: DoD Airworthiness Policy References: See Enclosure 1 1. PURPOSE. This directive establishes

More information

Optimized Maintenance Program (OMP)

Optimized Maintenance Program (OMP) Global Services Optimized Maintenance Program (OMP) Rebecca Merkel September 20, 2018 Optimized Maintenance Program Optimization at individual task level Customized analysis of each individual task interval

More information

ADVANTAGES OF SIMULATION

ADVANTAGES OF SIMULATION ADVANTAGES OF SIMULATION Most complex, real-world systems with stochastic elements cannot be accurately described by a mathematical model that can be evaluated analytically. Thus, a simulation is often

More information

Competence Requirements for eronautical eteorological ersonnel

Competence Requirements for eronautical eteorological ersonnel WMO-CGMS Virtual Laboratory For Education and Training in Satellite Meteorology Competence Requirements for eronautical eteorological ersonnel 2013 and beyond Overview Part One Background and Terminology

More information

Hosted Flight Data Monitoring. Information Sheet

Hosted Flight Data Monitoring. Information Sheet 17 Wellington Business Park Crowthorne Berkshire RG45 6LS England Tel: +44 (0) 1344 234047 www.flightdatapeople.com Hosted Flight Data Monitoring Information Sheet www.flightdatapeople.com Commercial in

More information

Civil Approach Procedural Controller Military Terminal Radar Controller

Civil Approach Procedural Controller Military Terminal Radar Controller AIR TRAFFIC CONTROLLER APPRENTICESHIP STANDARD Air Traffic Controller Civil Area/ Terminal Controller Civil Approach Controller Military Weapons Controller Military Area Radar Controller Civil Approach

More information

N Registry Airworthiness & Maintenance Requirements

N Registry Airworthiness & Maintenance Requirements N Registry Airworthiness & Maintenance Requirements State of Registry Requirements Designee Limits and Requirements Maintenance Requirements Presented to: 6 th Airworthiness Safety Seminar By: Date: June

More information

Aircraft Noise. Why Aircraft Noise Calculations? Aircraft Noise. SoundPLAN s Aircraft Noise Module

Aircraft Noise. Why Aircraft Noise Calculations? Aircraft Noise. SoundPLAN s Aircraft Noise Module Aircraft Noise Why Aircraft Noise Calculations? Aircraft Noise Aircraft noise can be measured and simulated with specialized software like SoundPLAN. Noise monitoring and measurement can only measure the

More information

Challenges in Complex Procedure Design Validation

Challenges in Complex Procedure Design Validation Challenges in Complex Procedure Design Validation Frank Musmann, Aerodata AG ICAO Workshop Seminar Aug. 2016 Aerodata AG 1 Procedure Validation Any new or modified Instrument Flight Procedure is required

More information

Identifying and Utilizing Precursors

Identifying and Utilizing Precursors Flight Safety Foundation European Aviation Safety Seminar Lisbon March 15-17 / 2010 Presented by Michel TREMAUD ( retired, Airbus / Aerotour / Air Martinique, Bureau Veritas ) Identifying and Utilizing

More information

AERODROME METEOROLOGICAL OBSERVATION AND FORECAST STUDY GROUP (AMOFSG)

AERODROME METEOROLOGICAL OBSERVATION AND FORECAST STUDY GROUP (AMOFSG) AMOFSG/8-IP/6 23/12/09 AERODROME METEOROLOGICAL OBSERVATION AND FORECAST STUDY GROUP (AMOFSG) EIGHTH MEETING Melbourne, Australia, 15 to 18 February 2010 Agenda Item 5: Observing and forecasting at the

More information

Multicore Processing in the Avionics Industry Needs and Concerns April 21, 2017 Greg Arundale Rockwell Collins

Multicore Processing in the Avionics Industry Needs and Concerns April 21, 2017 Greg Arundale Rockwell Collins Multicore Processing in the Avionics Industry Needs and Concerns April 21, 2017 Greg Arundale Rockwell Collins Outline Introduction Avionics Systems Evolution, Overview and Challenges Multicore Why Multicore

More information

DEPARTMENT OF THE AIR FORCE HEADQUARTERS AIR FORCE LIFE CYCLE MANAGEMENT CENTER WRIGHT-PATTERSON AIR FORCE BASE OHIO

DEPARTMENT OF THE AIR FORCE HEADQUARTERS AIR FORCE LIFE CYCLE MANAGEMENT CENTER WRIGHT-PATTERSON AIR FORCE BASE OHIO DEPARTMENT OF THE AIR FORCE HEADQUARTERS AIR FORCE LIFE CYCLE MANAGEMENT CENTER WRIGHT-PATTERSON AIR FORCE BASE OHIO BULLETIN 28 JAN 2015 United States Air Force (USAF) Airworthiness Bulletin (AWB)-516

More information

FLIGHT TAX SYSTEMS Users Guide to Features and Reporting Advanced Topics

FLIGHT TAX SYSTEMS Users Guide to Features and Reporting Advanced Topics FLIGHT TAX SYSTEMS Users Guide to Features and Reporting Advanced Topics March 10, 2016 1 Jed Wolcott, CPA, MBA President Sue Folkringa, CPA, MTax Commercial Pilot, AS/MEL, ATP, Airplane 2 Shayne Gutierrez

More information

Implement Change Control into Your Process Validation Program

Implement Change Control into Your Process Validation Program Implement Change Control into Your Process Validation Program Presented By: Institute of Validation Technology QUALITY METRICS AND MANAGEMENT WEEK February 22-24, 2016 San Diego, CA 1 Contact information

More information

SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL

SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL Proceedings of the 2000 Winter Simulation Conference J. A. Joines, R. R. Barton, K. Kang, and P. A. Fishwick, eds. SIMULATION MODELING AND ANALYSIS OF A NEW INTERNATIONAL TERMINAL Ali S. Kiran Tekin Cetinkaya

More information

Considerations for Facility Consolidation

Considerations for Facility Consolidation Considerations for Facility Consolidation ATC Guild, New Delhi, India October 21, 2010 Mimi Dobbs Overview Why consider consolidation? Co location vs Consolidation Consolidating Methodologies Areas to

More information

Research on Aviation Security*

Research on Aviation Security* Research on Aviation Security* John E. Kobza Department of Industrial Engineering Texas Tech University (806) 742-3402 john.kobza@coe.ttu.edu www.coe.ttu.edu/ie/kobza.htm Sheldon H. Jacobson Department

More information

Small Aircraft Transportation System (SATS) Environmental Noise Impact Study

Small Aircraft Transportation System (SATS) Environmental Noise Impact Study Small Aircraft Transportation System (SATS) Environmental Noise Impact Study Dr. Antonio A. Trani Howard Swingle Dr. Hojong Baik Dr. Dusan Teodorovic Chad Ackley Department of Civil and Environmental Engineering

More information

INTERNATIONAL STANDARD

INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO 5912 Fourth edition 2011-10-01 Camping tents Tentes de camping Reference number ISO 5912:2011(E) ISO 2011 ISO 2011 COPYRIGHT PROTECTED DOCUMENT All rights reserved. Unless otherwise

More information

DATA APPLICATION CATEGORY 25 FARE BY RULE

DATA APPLICATION CATEGORY 25 FARE BY RULE DATA APPLICATION CATEGORY 25 FARE BY RULE The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval system, or transmitted in

More information

Monitoring & Control Tim Stevenson Yogesh Wadadekar

Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control Tim Stevenson Yogesh Wadadekar Monitoring & Control M&C is not recognised as an SPDO Domain However the volume of work carried out in 2011 justifies a Concept Design Review M&C is

More information

Airspace Infringement Survey 2007

Airspace Infringement Survey 2007 Airspace Infringement Survey 2007 Vladimir Grigorov, COMPASS IS 24 January 2008, Brussels Why the survey? Occurrence reports do not enable in-depth analysis of causal and contributory factors! To ask those,

More information

PSS VM 7.15 announcement

PSS VM 7.15 announcement PSS VM 7.15 announcement New Mainframe Software Print SubSystem VM 7.15 AFP printing to PCL and PostScript Version 7.15 Bar Code Update with additional features and fixes 2880 Bagsvaerd Tel.: +45 4436

More information

Federal Aviation Administration Early Implementation Experiences

Federal Aviation Administration Early Implementation Experiences Early Implementation Experiences Presented by: Don Walker Presented to: Aircraft Electronics Association Date: February 2011 Outline 1 Errors Seen In Early Implementations 1.1 Software related 1.2 GPS

More information

Overview: Network Profitability and Performance Measurement. Andrew Jay Blackburn Principal Consultant 11 January, 2006

Overview: Network Profitability and Performance Measurement. Andrew Jay Blackburn Principal Consultant 11 January, 2006 Overview: Network Profitability and Performance Measurement ndrew Jay Blackburn Principal Consultant 11 January, 2006 Focus BC viation Consultancy offers expertise in the development and enhancement of

More information

APPLICATION FOR P-RNAV/RNAV 1 OPERATIONAL APPROVAL OR RENEWAL

APPLICATION FOR P-RNAV/RNAV 1 OPERATIONAL APPROVAL OR RENEWAL SEYCHELLES CIVIL AVIATION AUTHORITY APPLICATION FOR P-RNAV/RNAV 1 OPERATIONAL APPROVAL OR RENEWAL Applicants are strongly advised to read the 'P-RNAV Notes for Completion' before completing the form. Please

More information

(DRAFT) AFI REDUCED VERTICAL SEPARATION MINIMUM (RVSM) RVSM SAFETY POLICY

(DRAFT) AFI REDUCED VERTICAL SEPARATION MINIMUM (RVSM) RVSM SAFETY POLICY (DRAFT) AFI REDUCED VERTICAL SEPARATION MINIMUM (RVSM) RVSM SAFETY POLICY 26 May 04 TABLE OF CONTENTS CONTENTS... PAGE SECTION 1: INTRODUCTION...3 SECTION 2: RVSM OPERATIONAL CONCEPT...3 SECTION 3: AFI

More information

IEC Quality Assessment System for Electronic Components (IECQ System)

IEC Quality Assessment System for Electronic Components (IECQ System) IECQ 03-4 Edition 3.0 2014-09 IECQ PUBLICATION IEC Quality Assessment System for Electronic Components (IECQ System) Rules of Prodecure Part 4: IECQ AVIONICS Scheme Avionics Parts and Assembly Management

More information

Introduction 2. Other Applicable Documents 2. Scope of Delivery 3. Attaching the Snap-on Ferrite Suppressor 4

Introduction 2. Other Applicable Documents 2. Scope of Delivery 3. Attaching the Snap-on Ferrite Suppressor 4 H-206.F2 6-Axis Precision Alignment System Contents Introduction 2 Other Applicable Documents 2 Scope of Delivery 3 Attaching the Snap-on Ferrite Suppressor 4 Connecting the Hexapod to the C-887 with the

More information

Symbology comparison of Two-dimensional Symbologies with focus on EDI messages on transport labels

Symbology comparison of Two-dimensional Symbologies with focus on EDI messages on transport labels EURODATA COUNCIL Symbology comparison of Two-dimensional Symbologies with focus on EDI messages on transport labels rev. 2007-10-22 global office D-06618 Naumburg, Koesener Str. 85, phone:+49(0)3445 78116

More information

PLEASE READ CAREFULLY BEFORE USING THE Qantas Cash App

PLEASE READ CAREFULLY BEFORE USING THE Qantas Cash App PLEASE READ CAREFULLY BEFORE USING THE Qantas Cash App This is a legal agreement ( Agreement ) between you (the person accessing, viewing, using, or installing the app, and later referred to as you ) and

More information

VERTICAL AWNINGS _EN VERTICAL AWNINGS INSTRUCTIONS FOR USE INSTRUCTIONS FOR USE

VERTICAL AWNINGS _EN VERTICAL AWNINGS INSTRUCTIONS FOR USE INSTRUCTIONS FOR USE VERTICAL AWNINGS 800284_EN VERTICAL AWNINGS TABLE OF CONTENTS. Page 1. BASIC INFORMATION...2 2. EXPLANATION OF THE NOTICES...2 3. VALIDITY...2 4. SAFETY...3 5. INTENDED USE...3 6. PRODUCT INFORMATION...3

More information

GOVERNMENT OF INDIA OFFICE OF THE DIRECTOR GENERAL OF CIVIL AVIATION TECHNICAL CENTRE, OPP. SAFDARJUNG AIRPORT, NEW DELHI

GOVERNMENT OF INDIA OFFICE OF THE DIRECTOR GENERAL OF CIVIL AVIATION TECHNICAL CENTRE, OPP. SAFDARJUNG AIRPORT, NEW DELHI GOVERNMENT OF INDIA OFFICE OF THE DIRECTOR GENERAL OF CIVIL AVIATION TECHNICAL CENTRE, OPP. SAFDARJUNG AIRPORT, NEW DELHI - 110003 CIVIL AVIATION REQUIREMENT SECTION 8 - AIRCRAFT OPERATIONS SERIES 'S',

More information

Technical Blade Specification for LM 48.8 P rotor blade

Technical Blade Specification for LM 48.8 P rotor blade Project : LM 48.8 P Document type :Technical Blade Specification Blade item number : 017545-02 Document no. / rev. : BS-00081/A2 Client : Fuhrlander Eng Change ID : 27486/A Number of pages : 10 Date :

More information

U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION. National Policy

U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION. National Policy NOTICE U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION National Policy N 8900.189 Effective Date: 5/31/12 Cancellation Date: 5/31/13 SUBJ: New OpSpec D301, Aircraft Network Security Program

More information

Interreg Vb /Prowad Link WP6.5. Feasibilitystudy, nature tourism routes around the North Sea Region Project description

Interreg Vb /Prowad Link WP6.5. Feasibilitystudy, nature tourism routes around the North Sea Region Project description Interreg Vb, North Sea Region Prowad Link project Feasibility study: Nature tourism route around the North Sea Region, 2019 / specification 06.02.2019 Background Interreg Vb, North Sea Region, project

More information

DONALD ANDERSEN MANAGER REGULATORY AND INDUSTRY LIAISON BOEING COMMERCIAL AIRPLANES

DONALD ANDERSEN MANAGER REGULATORY AND INDUSTRY LIAISON BOEING COMMERCIAL AIRPLANES UPDATE: Aging Transport The U.S. Federal Aviation Administration and industry representatives are working together to determine how existing maintenance practices may be improved to help ensure the continued

More information

CA SiteMinder. Agent for JBoss Guide SP1

CA SiteMinder. Agent for JBoss Guide SP1 CA SiteMinder Agent for JBoss Guide 12.52 SP1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your

More information

CIVIL AVIATION PUBLICATION CAP 10 CPDLC

CIVIL AVIATION PUBLICATION CAP 10 CPDLC CAP 10 CPDLC INDEX This Page Intentionally Left Blank CAP 10 CPDLC INDEX Section Title Page No. 1. INTRODUCTION... 1 1.1 General... 1 1.2 Applicability... 1 1.3 Terminology... 1 1.4 References... 2 2.

More information

Session 2: CORSIA MRV System: Monitoring of CO 2 Emissions

Session 2: CORSIA MRV System: Monitoring of CO 2 Emissions ICAO Regional Seminar on CORSIA Session 2: CORSIA MRV System: Monitoring of CO 2 Emissions ICAO Secretariat Monitoring, Reporting and Verification (MRV) of CO 2 Emissions A monitoring, reporting and verification

More information

AIRWORTHINESS ADVISORY CIRCULAR

AIRWORTHINESS ADVISORY CIRCULAR AAC No. 1 of 2017 Dated 28 th February 2017 GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT DIRECTOR GENERAL OF CIVIL AVIATION AIRWORTHINESS ADVISORY CIRCULAR Subject: Procedure for approval of Modification

More information

AVIATION COMMUNICATION AND SURVEILLANCE SYSTEMS, LLC

AVIATION COMMUNICATION AND SURVEILLANCE SYSTEMS, LLC Page 1 2012-02-08 AVIATION COMMUNICATION AND SURVEILLANCE SYSTEMS, LLC Amendment 39-16931 Docket No. FAA-2010-1204; Directorate Identifier 2010-NM-147-AD PREAMBLE (a) Effective Date This AD is effective

More information

AIRWORTHINESS ADVISORY CIRCULAR

AIRWORTHINESS ADVISORY CIRCULAR AAC No 3/2013 Date 06-12-2013 GOVERNMENT OF INDIA CIVIL AVIATION DEPARTMENT DIRECTOR GENERAL OF CIVIL AVIATION AIRWORTHINESS ADVISORY CIRCULAR Subject: EDTO Airworthiness Approval 1. INTRODUCTION :- Purpose

More information

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel 2 STAFF TRAVEL COULDN T GET EASIER

More information

7.1 General Information. 7.2 Landing Gear Footprint. 7.3 Maximum Pavement Loads. 7.4 Landing Gear Loading on Pavement

7.1 General Information. 7.2 Landing Gear Footprint. 7.3 Maximum Pavement Loads. 7.4 Landing Gear Loading on Pavement 7.0 PAVEMENT DATA 7.1 General Information 7.2 Landing Gear Footprint 7.3 Maximum Pavement Loads 7.4 Landing Gear Loading on Pavement 7.5 Flexible Pavement Requirements - U.S. Army Corps of Engineers Method

More information

[Docket No. FAA ; Directorate Identifier 2010-NM-147-AD; Amendment ; AD ]

[Docket No. FAA ; Directorate Identifier 2010-NM-147-AD; Amendment ; AD ] [Federal Register Volume 77, Number 25 (Tuesday, February 7, 2012)] [Rules and Regulations] [Pages 6000-6003] From the Federal Register Online via the Government Printing Office [www.gpo.gov] [FR Doc No:

More information

From AIS to AIM. Paul Bosman, Head of Aviation Cooperation and Strategies, EUROCONTROL

From AIS to AIM. Paul Bosman, Head of Aviation Cooperation and Strategies, EUROCONTROL From AIS to AIM Paul Bosman, Head of Aviation Cooperation and Strategies, EUROCONTROL AIS-AIM Study Group Active from 2008-2015 Objectives Global strategy/roadmap for the transition from AIS to AIM SARPs/Guidance

More information

ISO INTERNATIONAL STANDARD. Non-invasive sphygmomanometers Part 2: Clinical validation of automated measurement type

ISO INTERNATIONAL STANDARD. Non-invasive sphygmomanometers Part 2: Clinical validation of automated measurement type INTERNATIONAL STANDARD ISO 81060-2 First edition 2009-05-01 Non-invasive sphygmomanometers Part 2: Clinical validation of automated measurement type Sphygmomanomètres non invasifs Partie 2: Validation

More information

D DAVID PUBLISHING. Development and Achievement of the T-50 Flight Control s Consolidated OFP. 1. Introduction. 2. Consolidated OFP s Needs

D DAVID PUBLISHING. Development and Achievement of the T-50 Flight Control s Consolidated OFP. 1. Introduction. 2. Consolidated OFP s Needs Journal of Aerospace Science and Technology 1 (2015) 67-72 doi: 10.17265/2332-8258/2015.02.003 D DAVID PUBLISHING Development and Achievement of the T-50 Flight Control s Consolidated OFP Soon Ryong Jang,

More information

DP-7 The need for QMS controlled processes in AIS/AIM. Presentation to QMS for AIS/MAP Service Implementation Workshop Dakar, Senegal, May 2011

DP-7 The need for QMS controlled processes in AIS/AIM. Presentation to QMS for AIS/MAP Service Implementation Workshop Dakar, Senegal, May 2011 DP-7 The need for QMS controlled processes in AIS/AIM Presentation to QMS for AIS/MAP Service Implementation Workshop Dakar, Senegal, 17 19 May 2011 Werner Kurz Director International Relations Jeppesen

More information

fulfils all requirements defined in the technical specification The appendix to the certificate is part of the certificate and consists of 5 pages.

fulfils all requirements defined in the technical specification The appendix to the certificate is part of the certificate and consists of 5 pages. The certification body of TÜV Informationstechnik GmbH hereby awards this certificate to the company TC TrustCenter GmbH Sonninstraße 24-28 20097 Hamburg, Germany to confirm that its time-stamping service

More information

The next generation of in-flight, real-time 3-D moving maps. Airshow 4000 MOVING MAPS

The next generation of in-flight, real-time 3-D moving maps. Airshow 4000 MOVING MAPS The next generation of in-flight, real-time 3-D moving maps. Airshow 4000 MOVING MAPS Stay engaged and aware in the air. In today s world, things happen faster than ever. You can t afford to be out of

More information

INVESTIGATION REPORT. Incident to ATR registered F-GVZG on 11 September 2011 at Marseille

INVESTIGATION REPORT. Incident to ATR registered F-GVZG on 11 September 2011 at Marseille INVESTIGATION REPORT www.bea.aero (1) Except where otherwise indicated, the times in this report are in Universal Time Coordinated (UTC). (2) Pilot Flying (3) Pilot Monitoring (4) MultiFunction Computer

More information

[Docket No. FAA ; Directorate Identifier 2008-NM-036-AD; Amendment ; AD ]

[Docket No. FAA ; Directorate Identifier 2008-NM-036-AD; Amendment ; AD ] [Federal Register: March 24, 2009 (Volume 74, Number 55)] [Rules and Regulations] [Page 12249-12252] From the Federal Register Online via GPO Access [wais.access.gpo.gov] [DOCID:fr24mr09-10] DEPARTMENT

More information

Avionics Certification. Dhruv Mittal

Avionics Certification. Dhruv Mittal Avionics Certification Dhruv Mittal 1 Motivation Complex Avionics systems have been regulated for a long time Autonomous systems are being researched and built in avionics right now Research in avionics

More information

U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION National Policy

U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION National Policy U.S. DEPARTMENT OF TRANSPORTATION FEDERAL AVIATION ADMINISTRATION National Policy NOTICE N 8000.353 SUBJ: Revised Guidance for Authorizing the Use of Electronic Flight Bags, Issuance of A061, Electronic

More information

E-Enabled Vision & Strategy

E-Enabled Vision & Strategy E-Enabled Vision & Strategy AIA /ATA/ ASD S1000D Users Forum October 12- October 15, 2009 Crown Plaza Hilton Head Resort, Hilton Head, SC, USA S1000D for Boeing 787 Freelon F. Hunter The Boeing Company

More information

PBN ROUTE SPACING AND CNS REQUIREMENTS (Presented by Secretariat)

PBN ROUTE SPACING AND CNS REQUIREMENTS (Presented by Secretariat) International Civil Aviation Organization The First Meeting of South China Sea Major Traffic Flow Review Group (SCS-MTFRG/1) Kuala Lumpur, Malaysia, 19-20 January 2015 Agenda Item 5: Discuss strategy for

More information

9/16/ CHG 213 VOLUME 3 GENERAL TECHNICAL ADMINISTRATION CHAPTER 61 AIRCRAFT NETWORK SECURITY PROGRAM

9/16/ CHG 213 VOLUME 3 GENERAL TECHNICAL ADMINISTRATION CHAPTER 61 AIRCRAFT NETWORK SECURITY PROGRAM VOLUME 3 GENERAL TECHNICAL ADMINISTRATION CHAPTER 61 AIRCRAFT NETWORK SECURITY PROGRAM Section 1 Safety Assurance System: Evaluate the Operator s 14 CFR Parts 121, 121/135, 125, and 129 Aircraft Network

More information

Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach

Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach Flight Evaluation Schedule For GPS IFR Approval Primary Means Enroute, Terminal and Non-Precision Approach Aircraft Description: Model ZK- Operator GPS Description: Manufacturer Model Serial Number TSO-C129

More information