Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

DME HOLD

Featured Replies

Actually, I think we can get there, at least if my assumptions are correct.FS models three types of VORs...High, Low, and Terminal. Let's assume that the unattenuated signal strength at the station is a constant for each type (why wouldn't it be?)Then if we know the means to compute the signal strength for each type, all I have to do is compute the expected signal strength for each type of station, and then compare it to the value being reported by FS. That should give us the ability to determine what kind of station it is, and how to emulate a signal coming from it locally in the panel.The multiplexing will be needed anyway, maybe every 5 sec or so, just to make sure that the navaid on the freq being held is still the one we're emulating...necessary in areas of overlapping coverage where capture effect dictates which station is displayed.So what we'll need is the function for each of the three types of VORs in FS...then I'll bet I can make the rest work in software.RegardsBob ScottATP IMEL Gulfstream II-III-IV-VSantiago de Chile

Bob Scott | President and CEO, AVSIM Inc
ATP Gulfstream II-III-IV-V

Sys1 (MSFS20+24/XPlane12+11): AMD 9800X3D, water 2x240mm, MSI MPG X670E Carbon, 64GB GSkill 6000/30, nVidia RTX4090FE
Alienware AW3821DW 38" 21:9 GSync, 2x4TB Crucial T705 PCIe5 + 2x2TB Samsung 990 SSD, EVGA 1000P2 PSU, 12.9" iPad Pro
Thrustmaster TCA Boeing Yoke, TCA Airbus Sidestick, Twin TCA Airbus Throttle quads, PFC Cirrus Pedals, Coolermaster HAF932 case

Sys2 (P3Dv5/v4): i9-13900KS, water 2x360mm, ASUS Z790 Hero, 32GB GSkill 7800MHz CAS36, ASUS RTX4090
Samsung 55" JS8500 4K TV@60Hz,
3x 2TB WD SN850X 1x 4TB Crucial P3 M.2 NVME SSD, EVGA 1600T2 PSU
Fiber link to Yamaha RX-V467 Home Theater Receiver, Polk/Klipsch 6" bookshelf speakers, Polk 12" subwoofer, 12.9" iPad Pro
PFC yoke/throttle quad/pedals with custom Hall sensor retrofit, Thermaltake View 71 case, Stream Deck XL button box

Sys3 (DCS/P3Dv4/ATS/ETS): AMD 7800X3D, MSI MPG X870E Carbon, Noctua NH-D15S, 64GB GSkill 6000/30, EVGA RTX3090
Alienware AW3420DW 34" 21:9 GSync, Corsair HX1000i PSU, 4TB Crucial T705 PCIe5 + 2TB Samsung 970Evo Plus,
TM TCA Officer Pack
, Saitek combat pedals, TM Warthog, TM RS300 FF wheel/pedals, Coolermaster HAF XB case

  • Author

>FS models three types of VORs...High, Low, and Terminal. Um... yeah, you're right. Didn't remember what the names of those types were (it's a couple of weeks back that I did the measurements) and I wanted to restrict myself to two types to keep the description simple... but I actually measured both Low and Terminal VORs (previously, I had been measuring only High VORs), and they are both different from High VORs. They are similar to each other, but not identical...>Let's assume that the unattenuated signal strength at the>station is a constant for each type (why wouldn't it>be?)>>Then if we know the means to compute the signal strength for>each type, all I have to do is compute the expected signal>strength for each type of station, and then compare it to the>value being reported by FS. That should give us the ability>to determine what kind of station it is, and how to emulate a>signal coming from it locally in the panel.Yes, that's a good idea! There will still be the small risk of encountering an ambiguous situation where the expected signal strength for two types of station is the same (or almost the same)... this can happen because the Terminal VOR, for example, starts out with a higher slope, then bottoms out earlier, while the High VOR starts out with a lower slope, but bottoms out higher... so at some point, they intersect...But the probability of encountering this situation should be fairly low...>The multiplexing will be needed anyway, maybe every 5 sec or>so, just to make sure that the navaid on the freq being held>is still the one we're emulating...necessary in areas of>overlapping coverage where capture effect dictates which>station is displayed.That's a good point... I had thought of this, too, but decided to ignore it (on the grounds that DME hold will usually be used in a terminal environment, where it isn't likely we'll be straying very far from the "held" VOR anyway -- a bad hack, I admit). Question is, if we're multiplexing anyway, why don't we just decide to be lazy and let that handle the signal strength issue as well? Not as intellectually pleasing, I admit... but it would take care of the problem of the mystery constant c, which is also still open.>So what we'll need is the function for each of the three types>of VORs in FS...then I'll bet I can make the rest work in>software.I'll see what I can come up with. Can't make any promises as to when I'll be able to work on this, though...Martin

  • Author

Been doing some more work on this... I've changed course slightly and decided that I probably won't crack the question of how signal strength gets computed any time soon. Instead, I'm going to reimplement the VOR and ILS functionality, except for the signal strength computation... I can then have one NAV receiver cycling through all of the relevant frequencies, periodically checking their signal strengths and coordinates (in case we've come in range of a different VOR station on the same frequency).My plan is to have NAV1 doing this cycling -- I've done some tests, and MSFS seems to take about a second to update the NAV information when I change the frequency, so that would mean a four-second update cycle if I've got a DME hold on both NAV sets. I've got to do the cycling on NAV1 exclusively because I need NAV2 for doing audio idents of NAV stations.I've got the VOR and ILS code just about finished; there's just one small issue left to deal with, the localizer beam width -- see the discussion over on Pete Dowson's forum:http://forums.simflight.com/viewtopic.php?t=61197The problem is that different localizers have different beam widths, and that value can't be read via FSUIPC. Pete has identified a mystery two-byte field that may contain the beam width, but if that doesn't work, I have a Plan B: In principle, I can compute the beam width from the current localizer deviation (as reported by MSFS) and the angular deviation (which I compute myself), but that only works as long as the needle isn't pinned. And in the standard ILS interception scenario, the needle starts off pinned, and then when it does start moving, it starts moving pretty fast. With NAV1 taking about four seconds to cycle through the frequencies, it can be four seconds before I realize that the localizer has come alive. That's a bit too much... However, NAV2 can come to the rescue and monitor the localizer in this situation, since it's pretty unlikely that the ident feature will be in use during the interception. So that problem is pretty much covered, too.There is one open question, though: Does your panel use the standard autopilot functionality, or do you have custom autopilot code? If you're using the standard autopilot, then it's going to get seriously confused if I start cycling the NAV1 frequency around... so in that case, I would have to write some custom autopilot logic, too. Keeping my fingers crossed that you already have custom autopilot code in place...Cheers,Martin

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.