Optimal Frequency Homework: Maximizing Air/Ground Queues

  • Thread starter Thread starter zzmanzz
  • Start date Start date
  • Tags Tags
    Frequency
Click For Summary
SUMMARY

The discussion focuses on optimizing the AirQueueThreshold and GroundQueueThreshold in a simulation involving air and ground queues for planes. The user seeks to maintain both queues at a maximum of 1 plane each after a 10-second loop while maximizing the thresholds. The conversation highlights the challenge of balancing these thresholds under strict constraints, emphasizing that a simulation approach may yield faster results compared to a purely mathematical solution. The need for a clear method to evaluate the success rate of different thresholds is also noted.

PREREQUISITES
  • Understanding of queue management in simulation environments
  • Familiarity with probability concepts, specifically p = m/n
  • Basic knowledge of programming for simulation (e.g., Python, MATLAB)
  • Experience with optimization techniques in algorithm design
NEXT STEPS
  • Research simulation techniques for queue management in Python
  • Learn about optimization algorithms applicable to threshold problems
  • Explore statistical methods for evaluating simulation outcomes
  • Investigate the impact of varying AirQueueThreshold and GroundQueueThreshold on overall system performance
USEFUL FOR

Simulation developers, operations researchers, and anyone involved in optimizing queue management systems in aviation or similar fields.

zzmanzz
Messages
47
Reaction score
0

Homework Statement



I want to apologize in advance as there are a few steps in this problem.[/B]
1.For each second, 2 planes join the air queue if randomAir1 < AirQueueThreshold and randomAir2 < AirQueueThreshold.
2. For each second, 1 plane joins a ground queue if randomGround < GroundQueueThreshold.
3. Air has priority over the ground. - that is, if both queues have 1 plane in them and runway is vacant, the one in the air lands.
4. It takes 2 seconds to land/take off.

I'm trying to maximize AirQueueThreshold and GroundQueueThreshold but keep airQueue <= 1 and GroundQueue <=1 at the end of a 10 second loop.

Homework Equations



We are given

p = m/n (p = probability, m = planes, n = time.[/B]

The Attempt at a Solution



is it easier just to run the simulation a bunch of times for 10 seconds and finding the maximum thresholds or is there a mathematical (straightforward) way to link the thresholds to the queues?

Thanks and sorry for any ambiguity.

Regards,
Z[/B]
 
Physics news on Phys.org
A simulation is probably faster.

zzmanzz said:
I'm trying to maximize AirQueueThreshold and GroundQueueThreshold but keep airQueue <= 1 and GroundQueue <=1 at the end of a 10 second loop.
You cannot keep that constraint with 100% certainty, and how do you weight the different thresholds (and the success rate) in terms "maximize both"?
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 11 ·
Replies
11
Views
2K
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 14 ·
Replies
14
Views
3K
  • · Replies 16 ·
Replies
16
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K