How the U.S. Army Rebuilt Its Fitness Testing System

The U.S. Army replaced its physical fitness test on June 1, 2025. The scale of that change is easy to underestimate. Hundreds of thousands of active-duty soldiers, reservists and National Guard members all needed to be assessed, tracked and scored under a completely new system with different events, different passing thresholds and different rules depending on job role. Getting the scoring logic right was not a minor technical detail. Getting it wrong had direct career consequences.

U.S. Army Rebuilt Its Fitness Testing

Three Tests in Four Decades

The Army Physical Fitness Test (APFT) ran from the early 1980s until 2022. Three events: push-ups, sit-ups and a 2-mile run. Simple to administer and widely understood. The criticism that followed it for years was consistent, it did not reflect the physical demands of actual combat.

In 2019 the Army introduced the Army Combat Fitness Test (ACFT). Six events across a more demanding format: a hex bar deadlift, a standing power throw, hand-release push-ups, a sprint/drag/carry lane, a plank or leg tuck and a 2-mile run. Maximum score: 600 points.

The ACFT ran into problems. Injury concerns during implementation, disputes about scoring fairness and field administration complications all fed into years of internal review. By early 2025, the decision had been made to simplify rather than continue refining.

What the AFT Is

Army Directive 2025-06 established the Army Fitness Test (AFT) as the new test of record, effective June 1, 2025. The standing power throw was removed. The leg tuck option was dropped. The plank became the only accepted hold position.

The AFT has five events: 

The 3-repetition maximum deadlift (MDL), hand-release push-up (HRP), sprint/drag/carry (SDC), plank (PLK) and 2-mile run (2MR). Maximum total score is 500 points. Each event is worth up to 100 points.

Passing the general standard requires a total of 300 or above with a minimum of 60 points in every individual event. Failing any single event is a test failure regardless of the total. A soldier can score 90 points on four events and still fail because of one poor performance.

Many online calculators display only a total score. A soldier sees 320 on screen and assumes a pass. A 55-point plank already ended that test before the 2-mile run started.

Two Standards Within One Test

The AFT introduced a separate passing threshold for combat roles that the ACFT did not have in its final form.

Soldiers in combat arms military occupational specialties (MOSs) must score 350 or above, still with a minimum of 60 points per event. This combat standard is sex-neutral and age-normed. The same raw performance thresholds apply regardless of sex, while scoring tables adjust by age group.

The general standard applies to all other soldiers. It is performance-normed by both sex and age, meaning tables differ for male and female soldiers within each age bracket.

Army Directive 2025-06 originally listed 21 combat MOSs subject to the higher threshold, covering infantry, combat engineers, field artillery, Special Forces and armor branches. Army Directive 2026-07 added three further specialties: 12D, 89D and 89E. The total now stands at 24 combat MOSs.

Soldiers in those roles who score between 300 and 349 face mandatory reclassification. That process began in January 2026 for active component soldiers, with specific timelines by rank and time in service. A calculator that does not account for MOS when displaying pass/fail results is not giving combat soldiers accurate information. A large number do not account for it.

Body Composition Changed Completely

Army fitness testing does not operate in isolation. Body composition assessment runs alongside it, and July 2026 brought the most significant change to that system in decades.

Army Directive 2026-13, effective July 7, 2026, eliminated the circumference-based tape test that had been standard since the 1980s. The replacement is a waist-to-height ratio (WHtR) standard. The passing threshold is a WHtR below 0.550.

The measurement process matters in its detail. Three waist measurements are taken at the navel. Each is rounded down to the nearest 0.5 inch. Those three readings are averaged. That average is divided by height, also measured to the nearest 0.5 inch. The result is truncated to three decimal places.

Truncation is not the same as rounding. A WHtR of 0.5496 truncates to 0.549 – a pass. Rounding that same value produces 0.550 – a fail. One arithmetic decision in a calculator’s implementation determines whether a soldier gets flagged for the Army Body Composition Program or not. Soldiers can verify their own figure using the Army WHtR calculator before their next screening.

Army Directive 2026-13 also rescinded Army Directive 2025-17, which had allowed soldiers with AFT scores of 465 or above to bypass body composition requirements entirely. That exemption no longer exists as of July 7, 2026. Several widely used online tools still show it as active. It is not.

Building a Calculator That Works

Scoring tools for the AFT require more than a formula in a form field.

AFT scoring scales are event-specific and age-group specific. For each of the five events there are separate lookup tables by age bracket and by sex under the general standard. The correct approach is storing the complete official table as a structured data set and performing an exact lookup against it. Tools that hardcode a handful of anchor values and interpolate everything between them produce wrong scores at inputs that fall between those points.

When the Army updates its scoring scales through a directive, only the data layer should need to change. The calculation logic stays the same. That separation keeps updates clean and reduces the risk of introducing errors when policy changes.

Input validation matters as much as the formula itself. A deadlift entry of zero pounds should return a clear error, not a score of zero. A plank time of three hours is not a valid input. Sprint/drag/carry times above the maximum scorable value should be rejected rather than silently returning the minimum point total. These are not hypothetical edge cases. Soldiers entering data under pressure make these mistakes.

Output needs to display per-event scores alongside the total, with separate pass/fail indicators for both the general standard and the combat standard when the user holds a combat MOS. A total score number on its own does not tell a soldier whether they passed.

Version Control Is a Real Problem

The ACFT ran from 2019 to May 2025. The AFT launched in June 2025. Army Directive 2025-17 was issued then fully rescinded within a year. Army Directive 2026-13 replaced the entire body composition framework eight months after the AFT launched.

For anyone building a scoring tool, this rate of change creates a genuine architecture question. How do you separate scoring data from calculation logic so a policy update does not require rewriting the application?

Storing scoring tables in structured data files versioned by effective date is the practical answer. A scoring update becomes a data update. The application shows which version of the standards it is using with an effective date. That is relevant information for a soldier checking whether they are looking at current standards or a cached version from months ago.

Historical records add a separate requirement. Soldiers who took the ACFT before June 2025 received scores on a 600-point scale across six events. Those scores remain valid under current Army policy. A tool handling both historical ACFT lookup and current AFT scoring needs to separate those contexts clearly. Returning an AFT score against ACFT event inputs produces a meaningless number.

Why Accuracy Has No Workaround

A soldier who believes they scored 308 when the actual result was 296 may undertrain their weakest event before the retest window closes. A failed retest can trigger adverse administrative action. For soldiers in combat MOSs, a score below 350 initiates a reclassification process that can remove them from the branch they trained for.

The only valid source for AFT scoring data is the official Army documentation. Army Directive 2025-06, Army Directive 2026-07, Army Directive 2026-13 and ATP 7-22.01 are the primary references. Tools built from those sources with a clean data update process hold up when policy changes. Tools built on third-party aggregators or outdated cached tables give soldiers wrong information at the moment it matters most.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *