DEV Community

Evgenii Konkin
Evgenii Konkin

Posted on

The Engineering Math Behind Geothermal Loop Length: From Load to Loop Field

A 10-ton commercial heat pump in clay soil might need over 2,000 feet of ground loop, while the same unit in moist sand could get away with 1,200 feet. That 40% difference translates directly to tens of thousands of dollars in trenching or drilling costs.

The Formula

The calculation is deceptively simple:

requiredLoopLength = loopLengthPerCapacity * systemCapacity
Enter fullscreen mode Exit fullscreen mode

But each variable carries significant engineering weight:

  • systemCapacity (tons or kW): The peak heating or cooling load the geothermal system must meet. This comes from a Manual J or equivalent load calculation. Oversizing here means an unnecessarily expensive loop; undersizing means the system can't maintain comfort on design days.

  • loopLengthPerCapacity (ft/ton or m/kW): The design intensity of the ground heat exchanger. This value is not a constant — it's a function of soil thermal conductivity (typically 0.8–2.5 Btu/(hr·ft·°F)), annual temperature swing, and loop configuration. Horizontal loops might use 400–600 ft/ton, vertical loops 150–300 ft/ton, and pond loops 250–400 ft/ton. The calculator lets you input a site-specific value, but the number itself should come from a thermal response test or published soil data.

Why multiply? Because the ground loop is a heat exchanger: the more heat you need to reject or extract, the more surface area (loop length) you need to keep the temperature difference between the fluid and the ground within acceptable limits (typically 30–40°F for closed-loop systems).

Worked Example 1

Scenario: A 5-ton residential system with a vertical loop in medium-density soil. The designer selects 200 ft/ton based on local soil conditions.

Step 1: Identify inputs.

  • System Capacity = 5 tons
  • Loop Length per Capacity = 200 ft/ton

Step 2: Apply the formula.

requiredLoopLength = 200 * 5 = 1000 ft
Enter fullscreen mode Exit fullscreen mode

Step 3: Interpret result. The total loop length is 1000 ft. For a vertical system with two boreholes, that could be two 500-ft bores. The engineer would then check if the available land can accommodate the bore spacing (typically 15–20 ft between bores for vertical loops).

Worked Example 2

Scenario: A 50-kW commercial heat pump using a horizontal slinky loop in sandy soil. The designer selects 45 m/kW based on local practice.

Step 1: Convert if needed (here all metric).

  • System Capacity = 50 kW
  • Loop Length per Capacity = 45 m/kW

Step 2: Calculate.

requiredLoopLength = 45 * 50 = 2250 m
Enter fullscreen mode Exit fullscreen mode

Step 3: Practical interpretation. 2250 m of horizontal pipe requires a large land area. Standard slinky trenches are about 1.5 m wide and spaced 4–6 m apart. The total trench length might be 2250 / (loop length per trench), which depends on coil diameter and spacing. This quickly tells the engineer whether the site has enough acreage, or whether a vertical configuration is necessary.

What Engineers Often Miss

  1. Loop length is not a guarantee of performance. Two identical loop lengths in different soils will deliver different fluid temperatures. A 1000-ft loop in dry clay might result in 95°F entering water temperature on a hot day, while the same loop in wet sand might stay at 85°F. The loop length is just one variable; the soil's thermal conductivity and diffusivity matter just as much.

  2. Normalized vs. total length confusion. A client might ask, "How many feet of pipe do I need?" but the engineer responds with "600 ft/ton." The normalized value is useless without the system capacity. Always report both the total length and the per-ton basis, and explain that the per-ton number is a design parameter, not the answer.

  3. Ignoring the balance of heating vs. cooling loads. In heating-dominated climates, the loop length is sized for heat extraction (winter), which is typically longer than the cooling rejection (summer) because the ground is colder. In cooling-dominated climates, the reverse is true. The calculator uses a single load, but real designs must consider the dominant load case.

Try the Calculator

Use the Geothermal Loop Length Calculator to quickly test different loop configurations and capacities during preliminary design.

Top comments (0)