Розрахуйте оптимальний розмір отвору для будь-якого гвинта чи болта. Введіть розмір вашого кріплення та отримайте рекомендований діаметр отвору для належної посадки у дерев'яних, металевих та будівельних проектах.
A clearance hole is a hole drilled slightly larger than the diameter of a screw or bolt to allow it to pass through without threading. This clearance hole calculator helps you determine the optimal hole size based on your selected screw or bolt, ensuring proper fit and function in your projects. Whether you're working with metric screws, American numbered screws, or fractional sizes, this tool provides accurate clearance hole dimensions for professional-quality results.
Clearance holes are essential in mechanical assemblies, furniture construction, and DIY projects as they allow for easier alignment of parts, accommodate material expansion, and prevent thread damage. Using the correct clearance hole size is crucial for creating strong, properly aligned connections while allowing for minor adjustments during assembly.
A clearance hole is purposely drilled larger than the fastener that will pass through it. Unlike a tapped hole (which has threads to engage with the screw) or an interference fit (which is smaller than the fastener), a clearance hole allows the screw or bolt to pass through freely without engaging the surrounding material.
The primary purposes of clearance holes include:
Clearance holes come in different sizes relative to the fastener diameter, each serving specific purposes:
This calculator provides standard normal fit clearance holes, which are suitable for most applications.
The formula for calculating a standard clearance hole size varies slightly depending on the fastener type, but generally follows these principles:
For metric screws, the standard clearance hole can be calculated as:
Where:
For example, an M6 screw (6mm diameter) typically requires a 6.6mm clearance hole.
For American numbered screws, the clearance hole is typically calculated as:
Where:
For fractional inch screws, the standard clearance is:
For smaller sizes (under 1/4"), a clearance of 1/32" is often used instead.
Screw Size | Screw Diameter (mm) | Clearance Hole (mm) |
---|---|---|
M2 | 2.0 | 2.4 |
M2.5 | 2.5 | 2.9 |
M3 | 3.0 | 3.4 |
M4 | 4.0 | 4.5 |
M5 | 5.0 | 5.5 |
M6 | 6.0 | 6.6 |
M8 | 8.0 | 9.0 |
M10 | 10.0 | 11.0 |
M12 | 12.0 | 13.5 |
M16 | 16.0 | 17.5 |
M20 | 20.0 | 22.0 |
M24 | 24.0 | 26.0 |
Screw Size | Screw Diameter (inches) | Clearance Hole (inches) |
---|---|---|
#0 | 0.060 | 0.070 |
#1 | 0.073 | 0.083 |
#2 | 0.086 | 0.096 |
#3 | 0.099 | 0.110 |
#4 | 0.112 | 0.125 |
#5 | 0.125 | 0.138 |
#6 | 0.138 | 0.150 |
#8 | 0.164 | 0.177 |
#10 | 0.190 | 0.205 |
#12 | 0.216 | 0.234 |
Screw Size | Screw Diameter (inches) | Clearance Hole (inches) |
---|---|---|
1/4" | 0.250 | 0.281 |
5/16" | 0.313 | 0.344 |
3/8" | 0.375 | 0.406 |
7/16" | 0.438 | 0.469 |
1/2" | 0.500 | 0.531 |
9/16" | 0.563 | 0.594 |
5/8" | 0.625 | 0.656 |
3/4" | 0.750 | 0.812 |
7/8" | 0.875 | 0.938 |
1" | 1.000 | 1.062 |
Using our clearance hole calculator is straightforward:
Select your screw or bolt size from the dropdown menu
View the results showing:
Use the visualization to understand the relationship between:
Copy the result by clicking the "Copy" button for easy reference during your project
The calculator automatically provides the standard clearance hole size based on engineering best practices for normal fit applications.
For best results when creating clearance holes:
For precision work, consider using a drill press rather than a handheld drill to ensure the hole is perfectly perpendicular to the surface.
Clearance holes are used in numerous applications across various industries:
In woodworking, clearance holes prevent wood from splitting when screws are inserted. They're essential for:
In metal fabrication, proper clearance holes ensure:
For electronic enclosures and precision devices, clearance holes:
In transportation industries, clearance holes are critical for:
Different materials may require different clearance hole approaches:
For countersunk screws, you need both:
The countersink should match the angle of the screw head (typically 82° or 90°) and be sized to allow the screw head to sit flush with or slightly below the surface.
In some applications, you might need:
In environments with significant temperature variations:
1' Excel formula for metric clearance holes
2=IF(LEFT(A1,1)="M",VALUE(RIGHT(A1,LEN(A1)-1))+IF(VALUE(RIGHT(A1,LEN(A1)-1))<=5,0.4,IF(VALUE(RIGHT(A1,LEN(A1)-1))<=10,1,1.5)),"Invalid input")
3
1function calculateClearanceHole(screwSize) {
2 // For metric screws (M series)
3 if (screwSize.startsWith('M')) {
4 const diameter = parseFloat(screwSize.substring(1));
5 if (diameter <= 5) {
6 return { diameter, clearanceHole: diameter + 0.4, unit: 'mm' };
7 } else if (diameter <= 10) {
8 return { diameter, clearanceHole: diameter + 1.0, unit: 'mm' };
9 } else {
10 return { diameter, clearanceHole: diameter + 1.5, unit: 'mm' };
11 }
12 }
13
14 // For American numbered screws
15 if (screwSize.startsWith('#')) {
16 const number = parseInt(screwSize.substring(1));
17 const diameter = 0.060 + (number * 0.013); // Convert screw number to diameter
18 return { diameter, clearanceHole: diameter + 0.03, unit: 'inch' };
19 }
20
21 // For American fractional screws
22 if (screwSize.includes('"')) {
23 const fraction = screwSize.replace('"', '');
24 let diameter;
25
26 if (fraction.includes('/')) {
27 const [numerator, denominator] = fraction.split('/').map(Number);
28 diameter = numerator / denominator;
29 } else {
30 diameter = parseFloat(fraction);
31 }
32
33 return { diameter, clearanceHole: diameter + 0.0625, unit: 'inch' };
34 }
35
36 throw new Error('Unknown screw size format');
37}
38
39// Example usage
40console.log(calculateClearanceHole('M6'));
41console.log(calculateClearanceHole('#8'));
42console.log(calculateClearanceHole('1/4"'));
43
1def calculate_clearance_hole(screw_size):
2 """Calculate the recommended clearance hole size for a given screw size."""
3
4 # For metric screws (M series)
5 if screw_size.startswith('M'):
6 diameter = float(screw_size[1:])
7 if diameter <= 5:
8 clearance = diameter + 0.4
9 elif diameter <= 10:
10 clearance = diameter + 1.0
11 else:
12 clearance = diameter + 1.5
13 return {'diameter': diameter, 'clearance_hole': clearance, 'unit': 'mm'}
14
15 # For American numbered screws
16 if screw_size.startswith('#'):
17 number = int(screw_size[1:])
18 diameter = 0.060 + (number * 0.013) # Convert screw number to diameter
19 clearance = diameter + 0.03
20 return {'diameter': diameter, 'clearance_hole': clearance, 'unit': 'inch'}
21
22 # For American fractional screws
23 if '"' in screw_size:
24 fraction = screw_size.replace('"', '')
25 if '/' in fraction:
26 numerator, denominator = map(int, fraction.split('/'))
27 diameter = numerator / denominator
28 else:
29 diameter = float(fraction)
30
31 clearance = diameter + 0.0625
32 return {'diameter': diameter, 'clearance_hole': clearance, 'unit': 'inch'}
33
34 raise ValueError(f"Unknown screw size format: {screw_size}")
35
36# Example usage
37print(calculate_clearance_hole('M6'))
38print(calculate_clearance_hole('#8'))
39print(calculate_clearance_hole('1/4"'))
40
1using System;
2
3public class ClearanceHoleCalculator
4{
5 public static (double Diameter, double ClearanceHole, string Unit) CalculateClearanceHole(string screwSize)
6 {
7 // For metric screws (M series)
8 if (screwSize.StartsWith("M", StringComparison.OrdinalIgnoreCase))
9 {
10 double diameter = double.Parse(screwSize.Substring(1));
11 double clearance;
12
13 if (diameter <= 5)
14 clearance = diameter + 0.4;
15 else if (diameter <= 10)
16 clearance = diameter + 1.0;
17 else
18 clearance = diameter + 1.5;
19
20 return (diameter, clearance, "mm");
21 }
22
23 // For American numbered screws
24 if (screwSize.StartsWith("#"))
25 {
26 int number = int.Parse(screwSize.Substring(1));
27 double diameter = 0.060 + (number * 0.013); // Convert screw number to diameter
28 double clearance = diameter + 0.03;
29
30 return (diameter, clearance, "inch");
31 }
32
33 // For American fractional screws
34 if (screwSize.Contains("\""))
35 {
36 string fraction = screwSize.Replace("\"", "");
37 double diameter;
38
39 if (fraction.Contains("/"))
40 {
41 string[] parts = fraction.Split('/');
42 double numerator = double.Parse(parts[0]);
43 double denominator = double.Parse(parts[1]);
44 diameter = numerator / denominator;
45 }
46 else
47 {
48 diameter = double.Parse(fraction);
49 }
50
51 double clearance = diameter + 0.0625;
52 return (diameter, clearance, "inch");
53 }
54
55 throw new ArgumentException($"Unknown screw size format: {screwSize}");
56 }
57
58 public static void Main()
59 {
60 Console.WriteLine(CalculateClearanceHole("M6"));
61 Console.WriteLine(CalculateClearanceHole("#8"));
62 Console.WriteLine(CalculateClearanceHole("1/4\""));
63 }
64}
65
The concept of clearance holes has evolved alongside fastener technology. Early woodworkers and metalworkers understood the need for holes larger than the fastener diameter, but standardization came much later.
In the pre-industrial era, craftsmen would often create clearance holes by eye, using their experience to determine appropriate sizes. With the advent of mass production during the Industrial Revolution, the need for standardization became apparent.
Today, clearance hole sizes are standardized by various organizations:
These standards ensure interchangeability of parts and consistency across industries and countries.
A clearance hole is drilled larger than the fastener diameter to allow the fastener to pass through freely without threading. A tapped hole has threads cut into it to engage with the threads of a screw, creating a secure connection. Clearance holes are used in the component being fastened, while tapped holes are used in the component receiving the fastener.
For standard applications, a clearance hole should be approximately 10-15% larger than the screw diameter. For metric screws, this typically means 0.4mm larger for screws up to M5, 1mm larger for screws M6-M10, and 1.5mm larger for screws M12 and above. For precision applications or special cases, different clearances may be required.
If screws don't fit through clearance holes, possible causes include:
While the standard clearance hole sizes work for most materials, some adjustments may be necessary:
For non-standard screws:
The clearance hole size is based on the shaft diameter, not the head type. However, for countersunk screws, you'll need an additional countersink hole for the head. For pan, button, or hex heads, you may need to consider clearance for tools used during installation.
Properly sized clearance holes don't significantly affect joint strength, as the strength comes from the fastener and the clamping force it generates. However, excessively large clearance holes can reduce the bearing surface area and potentially allow more movement in the joint, which might affect long-term durability under dynamic loads.
The clearance hole calculator is an essential tool for anyone working with fasteners in construction, woodworking, metalworking, or DIY projects. By providing accurate clearance hole sizes based on your selected screw or bolt, it helps ensure proper fit, alignment, and function in your assemblies.
Remember that while standard clearance holes work for most applications, special cases may require adjustments based on material properties, temperature conditions, or specific precision requirements. Always consider the specific needs of your project when determining the appropriate clearance hole size.
Try our clearance hole calculator today to take the guesswork out of your next project and achieve professional-quality results with properly sized holes for all your fasteners.
Відкрийте більше інструментів, які можуть бути корисними для вашого робочого процесу