Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#1 2009-07-21 05:03:24

x34903
Member
Registered: 2009-07-21
Posts: 2

MEDEVAC coverage problem

This is a fun problem that I am doing in my time off.

First, let me give you an intro.  Helicopter medical evacuation (MEDEVAC) flies out of a hospital (H1), lands at the point of injury (P), and returns to H.  This must be completed within X flying distance.  Thus, the coverage of the MEDEVAC is said to be pi*(X/2)^2 around point H.  Sometimes coverage areas overlap and we have to subtract the overlapping region.  That is the easy part.

Now comes to the fun stuff.  Let's say that a hospital (H2) is placed outside of the normal coverage area (somewhere between 0 and X from H1), but no MEDEVAC is placed there.  This makes is a hospital that patients can be dropped off at, but helicopters coverage cannot be based out of.  Thus, the helicopter must fly out of H1 and land at H2 within X distance.  Now, we have to figure out the area of additional coverage due to the addition of H2 (but no additional helos).

I'm trying to do this in Matlab.  I also would like to figure out a way to display all of this coverage some sort of a 2D graph.

The hardest part is explaining the problem.

I've been able to figure out the coverage area with just hospitals that have MEDEVAC capabilities.  Once I throw the hospitals without the MEDEVAC capabilities, I don't even know where to begin to define the shape created by the additional coverage.

Since the MEDEVAC circles have equal radii, the following equations work for calculating the overlap between circles.
r = X/2; %radius of the MED circle
d = 60; %distance from centers of two circles
q = 2*acos(d/(2*r)); %angle in radians
overlap = r^2*(q-sin(q)); %area of overlap
Area = 2*pi*r^2-overlap

I just need help moving on to calculating the area created by hospitals without MEDEVAC facilities.

Offline

#2 2009-07-23 04:32:13

x34903
Member
Registered: 2009-07-21
Posts: 2

Re: MEDEVAC coverage problem

In the end it will be a problem of finding the intersection of an ellipse and a circle. I do agree that both hospitals will be foci (thus focus 1 will be the center of the circle). I just do not know how to create the equation for the ellipse given the requirement that the flight must be X length. Also, the eccentricity of the circle goes from 0 to 1 as the two foci move from 0 to X.
I can make it easier by using numbers...

X = 100; %max distance MED aircraft can fly
r = X/2; %radius of the MED circle
d = 80; %distance from centers of two circles
q = 2*acos(d/(2*r)); %angle in radians
overlap = r^2*(q-sin(q)); %area of overlap
Area = 2*pi*r^2-overlap

Thus, the helicopter can fly 100 miles and has a coverage area of 7,854 square miles. When helicopter-equipped hospitals are 80 miles apart, they have a total coverage area of 15,708 square miles. What happens when the second hospital (H2) loses its helicopters (let's say due to maintenance)? Since all flights must come out of H1, the coverage around H2 decreases significantly.

Bottom line, the coverage becomes the area of the circle (7,854 sq mi) plus the area of the ellipse formed by the two foci (H1 and H2) minus the overlap.
Also, once this problem is tackled, I run into the problem of using a larger coverage area that involves intersecting ellipses of variant eccentricities and rotation that share a common focus point.

Offline

Board footer

Powered by FluxBB