Introduction to Exterior Ballistics
EML4083 — Introduction to Exterior Ballistics
← Course Modules
Course Description
Introduction to Exterior Ballistics provides an introduction to the field of exterior ballistics, with an overview of the forces and moments that affect balls, bullets, and missiles in flight, an overview of simplifying ballistic models such as vacuum trajectories, differential transformations, point mass, and NATO 4DOF models, and an introduction to trajectory simulation and experimental techniques.
Within the SCNS taxonomy, EML is the Mechanical Engineering prefix. The University of West Florida publishes this at 3 semester hours, prerequisites EEL4834 and MAP2302, giving approximately 45 contact hours at the standard university lecture ratio. This is an unusual and specialized course — it appears at very few institutions, and this guide describes UWF's version.
Exterior ballistics is a genuinely instructive subject beyond its immediate application, because it is a clean worked example of the modelling hierarchy that engineering runs on. The same problem is solved at four levels of fidelity — vacuum, point mass, modified point mass, and six-degree-of-freedom — each adding physics and cost. Learning when a simpler model suffices is the transferable skill, and few courses make that progression as explicit.
Learning Outcomes
Required Outcomes
- Describe the scope of exterior ballistics and its relationship to interior and terminal ballistics.
- Derive and solve the vacuum trajectory and describe its limitations.
- Describe the aerodynamic forces acting on a projectile in flight.
- Describe drag and its dependence on Mach number and projectile geometry.
- Define and apply the ballistic coefficient and drag coefficient.
- Describe standard drag functions and reference projectiles.
- Describe lift, Magnus, and other transverse forces.
- Describe the aerodynamic moments acting on a projectile.
- Describe gyroscopic and dynamic stability and the conditions for each.
- Describe spin, spin decay, and the role of rifling twist rate.
- Describe yaw, precession, and nutation.
- Formulate and solve the point mass trajectory model numerically.
- Formulate and apply the modified point mass and NATO 4DOF models.
- Describe the six-degree-of-freedom model and when it is required.
- Apply differential transformations and correction factors to trajectory solutions.
- Account for atmospheric conditions, including density, temperature, and altitude.
- Account for wind, including crosswind deflection.
- Account for the Coriolis effect and Earth rotation where significant.
- Implement a trajectory simulation in code and verify it.
- Select an appropriate numerical integration scheme and evaluate its accuracy.
- Describe experimental techniques including range instrumentation and Doppler radar.
- Reduce experimental firing data and extract aerodynamic coefficients.
- Compare simulation to experimental results and account for discrepancies.
- Evaluate model fidelity against computational cost and required accuracy.
Optional Outcomes
- Describe guided projectile and missile trajectory considerations.
- Describe sports ballistics applications, including golf and baseball aerodynamics.
- Use computational fluid dynamics to estimate aerodynamic coefficients.
- Describe fire control solutions and ballistic computers.
- Describe uncertainty and dispersion analysis.
- Describe applications in forensic reconstruction.
Major Topics
Required Topics
- Scope of exterior ballistics
- Vacuum trajectory
- Aerodynamic forces on projectiles
- Drag and Mach dependence
- Ballistic and drag coefficients
- Standard drag functions
- Lift, Magnus, and transverse forces
- Aerodynamic moments
- Gyroscopic and dynamic stability
- Spin and twist rate
- Yaw, precession, and nutation
- The point mass model
- Modified point mass and NATO 4DOF
- Six-degree-of-freedom models
- Differential transformations and corrections
- Atmospheric effects
- Wind and crosswind deflection
- Coriolis and Earth rotation
- Trajectory simulation implementation
- Numerical integration schemes
- Range instrumentation and Doppler radar
- Firing data reduction
- Simulation versus experiment
- Model fidelity versus cost
Optional Topics
- Guided projectiles and missiles
- Sports ballistics
- CFD for aerodynamic coefficients
- Fire control and ballistic computers
- Dispersion and uncertainty
- Forensic reconstruction
Resources & Tools
- Modern Exterior Ballistics (Robert McCoy) — the reference for this subject, comprehensive and authoritative.
- Applied Ballistics for Long Range Shooting (Bryan Litz) — accessible and strong on drag models and practical data.
- Fundamentals of Aerodynamics (Anderson) — for the underlying aerodynamics.
- Engineering Mechanics: Dynamics (Hibbeler) — carried forward; a projectile is a rigid body in general motion.
- NATO STANAG documents on trajectory models — the 4DOF model the catalog names is defined in the standardization literature.
- Python with NumPy and SciPy — free, and the natural tool for trajectory integration; the EEL4834 programming prerequisite exists because you will implement these models.
- MATLAB or GNU Octave — Octave is free; equally suitable.
- Standard atmosphere models — the ICAO and US Standard Atmosphere are freely available and required for density variation with altitude.
- Published drag function data — G1, G7, and related standard drag functions are widely available.
- Doppler radar and range instrumentation literature — for the experimental techniques content.
- Version control (git) — a simulation you will extend across a term benefits from it, and it is a professional habit worth building.
Career Pathways
- Defence and aerospace engineer — SOC 17-2011 and 17-2141; weapons systems, guidance, and munitions development.
- Florida's defence sector is a direct pathway — Eglin Air Force Base and the Air Force Research Laboratory Munitions Directorate are in the Florida Panhandle, near UWF, and are a major regional employer for exactly this specialization. L3Harris (Melbourne and Palm Bay), Lockheed Martin (Orlando), and Raytheon also employ in adjacent areas.
- Missile and guidance systems engineer.
- Flight dynamics and simulation engineer — the modelling skills transfer directly to aircraft and spacecraft trajectory work, and the Space Coast is nearby.
- Test and evaluation engineer — range instrumentation and data reduction.
- Aerodynamics engineer.
- Modelling and simulation engineer — Orlando's simulation and training cluster is one of the largest in the world, and trajectory modelling is directly relevant.
- Forensic ballistics — reconstruction in legal contexts, though this typically requires additional forensic qualification.
- Sports equipment engineering — golf ball and projectile aerodynamics use the same physics.
- Graduate study in aerospace engineering or applied dynamics.
- ⚠ Many roles in this field require US citizenship and a security clearance, and ITAR restrictions apply to much of the technical data — see the flag below.
Special Information
⚠ The modelling hierarchy is the transferable content
- The catalog names four model levels, and that progression is the most valuable thing in the course. Vacuum → point mass → modified point mass / 4DOF → six-degree-of-freedom, each adding physics, complexity, and computational cost.
- The vacuum trajectory has a closed-form solution and is wrong. It is worth deriving precisely because it shows how badly a physically incomplete model can fail — drag dominates real trajectories.
- The point mass model captures drag and gravity and is adequate for many purposes, but it treats the projectile as a particle and therefore cannot represent spin, yaw, or Magnus effects.
- The modified point mass and NATO 4DOF models add just enough rotational physics to capture spin drift and yaw of repose without the full expense of six degrees of freedom — and that is a beautifully clear example of engineering pragmatism.
- Six-degree-of-freedom is the full rigid-body treatment, and it requires aerodynamic coefficient data that may not exist.
- The engineering question is always: what fidelity does this decision require? Using a 6DOF model where a point mass suffices wastes effort; using a point mass where spin drift matters gives a wrong answer.
- This generalizes far beyond ballistics. Every engineering discipline has a model hierarchy, and choosing the right level is a career-long skill.
- Verify your simulation against known solutions. A code that reproduces the analytical vacuum trajectory when drag is set to zero is a code you can begin to trust.
⚠ Numerical integration: your answer is only as good as your scheme
- Trajectory equations have no general closed-form solution with drag, so the answer comes from numerical integration — which means the numerics are part of the physics.
- Step size matters. Too large and the solution is inaccurate or unstable; too small and computation is wasted. Demonstrate convergence by halving the step and checking the answer stops changing.
- Method choice matters. Euler integration is simple and accumulates error quickly; Runge-Kutta methods are the standard compromise; adaptive-step solvers handle varying dynamics efficiently.
- Check conservation properties where they apply. A drag-free trajectory should conserve energy, and a code that does not is a code with a bug.
- Units are a recurring source of catastrophic error in trajectory codes — mixing metric and imperial, or degrees and radians, produces answers that look plausible and are not.
- Validate against published data before trusting your own results.
- Write the code cleanly and comment it. The EEL4834 prerequisite means this is a programming course as much as a physics one, and code you cannot read in three weeks is code you cannot extend.
- Use version control. A simulation developed across a term will be modified repeatedly, and git costs nothing.
⚠ Stability, spin, and the effects that surprise people
- A spinning projectile is a gyroscope, and its behaviour follows from rigid-body dynamics — which is why EML3013 or its equivalent underlies this course.
- Gyroscopic stability requires sufficient spin relative to the overturning aerodynamic moment, and the rifling twist rate is chosen to provide it. Too little spin and the projectile tumbles; too much and dynamic instability can occur.
- Spin drift is a real and initially counterintuitive effect — a spin-stabilized projectile drifts laterally in the direction of spin because of the yaw of repose, and at long range the deflection is significant.
- The Magnus force acts on a spinning body in a crossflow, and it is the same physics that curves a spinning ball in sport.
- Drag is strongly Mach-dependent, rising sharply through the transonic region — which is why a projectile decelerating through Mach 1 behaves in ways a constant-drag model cannot predict, and why standard drag functions are tabulated against Mach number.
- Atmospheric density changes everything. Altitude, temperature, and humidity all shift trajectories measurably, and standard atmosphere models exist to handle it.
- Coriolis matters at long range, and it depends on latitude and azimuth — a genuine Earth-rotation effect rather than a curiosity.
- Crosswind deflection is not simply wind speed times time of flight, and understanding why is a good test of whether the aerodynamics has been understood.
⚠⚠ Export control, clearances, and professional responsibility
- Ballistics and munitions technical data are subject to export control. The International Traffic in Arms Regulations (ITAR) and the Export Administration Regulations (EAR) restrict the sharing of defence-related technical data, including with foreign nationals inside the United States.
- This has practical consequences in a university setting. Some course material, datasets, and projects may be restricted, and international students may be limited in what they can access. Ask the instructor and the institution's export control officer rather than assuming.
- Do not publish or share restricted technical data, including in a public code repository. Posting a trajectory model with controlled coefficient data to a public repository is a real and easily made mistake.
- Many defence employment roles require US citizenship and a security clearance, and clearance processing takes months. If this is your intended career, start understanding the requirements early.
- The ethical dimension deserves acknowledgement. This is weapons-adjacent engineering, and engineers working in defence make a considered professional choice. The NSPE Code of Ethics places public safety first, and defence engineering has a long tradition of taking that seriously rather than treating it as an exception.
- The physics is dual-use. The same equations describe sports aerodynamics, spacecraft re-entry, and forensic reconstruction, and the modelling skills are entirely general.
- Rule 11 applies — export control regulations change and their application to academic work is nuanced. Verify with your institution.
⚠ Institutional context — and check the number against the description
- This guide is written primarily from the University of West Florida catalog, which publishes a complete and unusually explicit set of EML entries. Other Florida institutions teaching this subject may number it differently.
- The EML prefix is not consistent across Florida. This repository has documented a genuine subject collision in the thermal-fluids sequence: EML3015 and EML3016 denote different subjects at UWF and at the FAMU-FSU College of Engineering — see the EML3015C and EML3016 guides.
- Much of the mechanical engineering core is also taught under the general engineering prefix EGN, and under SCNS those are different courses. Equivalency does not cross prefixes or a C or L suffix automatically.
- Identify a course by its catalog description, never by its number or its title.
- Give a receiving department the description rather than the course number when seeking a transfer determination, and get the answer in writing.
⚠ FE exam and PE licensure — this is the accredited engineering pathway
- This course sits inside an A.B.E.T.-EAC accredited engineering programme, the pathway that leads directly to professional licensure. That distinguishes it from engineering technology, where the route to a P.E. is longer — see this repository's ETG, EET, and ETC guides.
- Florida licenses professional engineers under Chapter 471, Florida Statutes, through the Florida Board of Professional Engineers: A.B.E.T.-EAC degree → FE examination → qualifying experience → PE examination → licensure.
- The NCEES FE Reference Handbook is free and is the only reference permitted in the exam. Use it as your working reference now so navigating it is automatic by exam day.
- Most students sit the FE in their final year, and pass rates are markedly higher for recent graduates than for those who wait.
- Only a licensed P.E. may offer engineering services to the public in Florida, seal drawings, or use the title in a way implying licensure.
- Rule 11 applies — verify current requirements with FBPE and NCEES directly.
How Florida course levels affect transfer
The first digit of an SCNS number denotes the year of offering, not transferability. Courses at the 1000 and 2000 levels transfer transparently between Florida public institutions, and 3000 to 4000 is unproblematic since both are upper division. The boundary that actually matters is 2000 to 3000, where lower-division credit generally cannot satisfy an upper-division requirement.
EML4083 is 3 semester hours and approximately 45 contact hours, prerequisites EEL4834 and MAP2302. Expect substantial computational work — implementing, verifying, and extending trajectory simulations — alongside the theory, with the programming prerequisite indicating that coding is central rather than incidental.
This is a rare course. Very few institutions offer undergraduate exterior ballistics, and its presence at UWF reflects the Florida Panhandle's concentration of defence research and test activity. For a student aiming at that sector it is a genuinely distinguishing course; for anyone else it is an unusually clear lesson in physical modelling and numerical simulation.