External Ballistics Calculations - James Prescott |
Home > Personal > External Ballistics Calculations |
External Ballistics Calculations
Here is a detailed description of the calculations that I do, in pseudo-code. I actually use Prograph, an interesting true visual programming language that didn't catch on. The calculations include a significant loop (thousands of iterations), which makes them unsuitable for implementation in a regular spreadsheet. These calculations do not include my more recent modifications that take into account angled fletching and projectile rotation. These calculations are suitable for projectiles with velocities up to about 240 m/s (790 fps), at Standard Temperature and Pressure. The following calculations are done in SI metric units. To calculate using units of pounds and feet per second (fps), I recommend taking your input units and converting them to metric. Then do the calculation. Then convert back to Imperial units. Here are the conversion factors required.
1 m = 3.28084 ft
Initial variables:
A : Angle of elevation, in radians Loop variables:
v : Velocity, in m/s Prior to the first iteration:
v = V Iterate generating new values for the loop variables:
sA : Sine of angle of travel After the final iteration, correct s, h, and t so that they match the exact moment of impact with ground:
dh : Correction to h And that's it.
Here is what the interface for the program currently looks like. You'll note that for convenience I take some inputs in Imperial units. They are immediately converted to SI metric units before use. You'll also note that the first three values (elevation, velocity, and drag coefficient) are set up to permit iterations so as to facilitate solving some problems by successive approximation. For example, given a number of measurements of maximum range and flight time one can solve for the coefficient of drag by successive approximation.
|
Home > Personal > External Ballistics Calculations |
Copyright © 2004 James Prescott - Contact me here |