element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Acoustics
  • Challenges & Projects
  • Project14
  • Acoustics
  • More
  • Cancel
Acoustics
Blog Nexgen: FAA Nav Aid Station Morse Code ID
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Acoustics to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: phoenixcomm
  • Date Created: 26 Jan 2020 3:58 AM Date Created
  • Views 1373 views
  • Likes 6 likes
  • Comments 5 comments
  • morse code
  • slant range
  • p14acousticsch
  • acousticsch
  • text to morse code converter
Related
Recommended

Nexgen: FAA Nav Aid Station Morse Code ID

phoenixcomm
phoenixcomm
26 Jan 2020
image

Acoustics

Enter Your Electronics & Design Project for a chance to win an $200 Shopping cart of product!

Back to The Project14 homepage image

Project14 Home
Monthly Themes
Monthly Theme Poll

 

image

Navigation Aids what are they?

 

 

image

Nondirectional Radio Beacon (NDB)

  1. A low or medium frequency radio beacon transmits nondirectional signals whereby the pilot of an aircraft properly equipped can determine bearings and “home” on the station. These facilities normally operate in a frequency band of 190 to 535 kilohertz (kHz), according to ICAO Annex 10 the frequency range for NDBs is between 190 and 1750 kHz, and transmit a continuous carrier with either 400 or 1020 hertz (Hz) modulation. All radio beacons except the compass locators transmit a continuous three-letter identification in code except during voice transmissions.
  2. When a radio beacon is used in conjunction with the Instrument Landing System markers, it is called a Compass Locator.
  3. Voice transmissions are made on radio beacons unless the letter “W” (without voice) is included in the class designator (HW).
  4. Radio beacons are subject to disturbances that may result in erroneous bearing information. Such disturbances result from such factors as lightning, precipitation static, etc. At night, radio beacons are vulnerable to interference from distant stations. Nearly all disturbances which affect the Automatic Direction Finder (ADF) bearing also affect the facility's identification. Noisy identification usually occurs when the ADF needle is erratic. Voice, music or erroneous identification may be heard when a steady false bearing is being displayed. Since ADF receivers do not have a “flag” to warn the pilot when erroneous bearing information is being displayed, the pilot should continuously monitor the NDB's identification.

VHF Omni-directional Range (VOR)

  1. VORs operate within the 108.0 to 117.95 MHz frequency band and have a power output necessary to provide coverage within their assigned operational service volume. They are subject to line-of-sight restrictions, and the range varies proportionally to the altitude of the receiving equipment.

I will only be concerned with the three-letter identification code at this time, as this transmission is considered a slant-range which is based on a line of sight using the following formula: Rtopogr = R · cos ε, where ε represents the angle of R or Slant Range and H or Height,  but this will only work if the EARTH WERE FLAT! Or you could use this model (see box): Where you have a line between the center of the antenna and the center of the Earth, this must include the published height of the antenna,  which is bisected by re is defined as the distance between the center of the Earth to the height of the Where H continues to the aircraft.  α is defined as an angle between the center of the antenna to the center of the Earth and re.  Therefore R is the slant range!

 

R2 = re2 + (re + H)2- 2re(re + H) · cos α

which depends on the ratio of:

360° · Rtopogr = α · 2πre

which accounts for a spherical earth.

 

So let's say you are flying at 10k feet and you are headed to Meacham Field in Fort Worth and you have left Addison Airport in Addison Texas and you are on a course of 251.5  degrees  NAV radio is tuned to 115.7 you would be hearing Ranger Vortac, FUZ, and Morse Code three-letter id is:  '..-. ..- --..' . I have a midi file but I can't get there from here!

BTW: At 10,000ft, the horizon at approximately 100nm; At 20,000ft, the horizon at approximately 140nm; At 30,000ft, the horizon at approximately 170nm.

Software:

 

#define      PI 3.14159

float R       // Slant Range

float Re     // Distance from the center of the Earth to the surface along the vector to the aircraft

float H       // A line from the center of the antenna

float a       // The angle between Re and the antenna

 

float square ( float value ) {
     return ( value * value ); }

float slantRange (){
     R = square( Re ) + square ((Re + H)) - 2 * Re * (Re + H) cos( a );
    return square (R); }

 

float Rtopogr ( float R, float H) {

     /* Rtopogr is determined by ε, the angle which is unknown, and Height

      * the Base of the triangle is from the center of the antenna to the spot on the Earth under            * aircraft on the ground

      */

     return ( Rt ); }

float sphericalEarth ( float Rt) {

        float temp;
     temp = a * 2*PI*Re;
return (  360 * Rt )

 

Notes:

  1. The diagram above came from www.radartutorial.eu
  2. Added into to software.
  • Sign in to reply

Top Comments

  • shabaz
    shabaz over 5 years ago +2
    Hi Cris, This is very interesting! I've sometimes wished there was a good book or netflix series : ) that went over what the radio spectrum is used for, beyond the basics mentioned in physics lessons or…
  • ralphjy
    ralphjy over 5 years ago +1
    Reminds me of my younger days when we would flight test inertial navigation equipment in a Merlin IV twin turboprop. The pilot would make a low altitude pass over a VOR station so that we could get a good…
  • DAB
    DAB over 5 years ago +1
    Back when I was doing Integrated Communications, Navigation, Identification Avionics, I used to know a lot about the various navigation aids used around the world. They are still useful even in an era…
Parents
  • ralphjy
    ralphjy over 5 years ago

    Reminds me of my younger days when we would flight test inertial navigation equipment in a Merlin IV twin turboprop.  The pilot would make a low altitude pass over a VOR station so that we could get a good position fix.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • phoenixcomm
    phoenixcomm over 5 years ago in reply to ralphjy

    ralphjy and DAB you both know that this example DFW Aiport Does not exist! This "short route" goes through the center of the "protected air space above the airport! A lot of small pleasure aircraft do not have GPS! BTW your phone does not count!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • phoenixcomm
    phoenixcomm over 5 years ago in reply to ralphjy

    ralphjy and DAB you both know that this example DFW Aiport Does not exist! This "short route" goes through the center of the "protected air space above the airport! A lot of small pleasure aircraft do not have GPS! BTW your phone does not count!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
Children
  • DAB
    DAB over 5 years ago in reply to phoenixcomm

    It is all about traveling down memory lane.

     

    DAB

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube