formulab 0.46.0 → 0.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/metal/flangeSpec.d.ts.map +1 -1
- package/dist/metal/flangeSpec.js +34 -25
- package/dist/metal/flangeSpec.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.47.0] - 2026-09-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **`metal/flangeSpec()` ASME B16.5 table corrected against public B16.5 tables.** Cross-checked
|
|
13
|
+
against several independent public tables that agree with each other (apiint.com, texasflange.com,
|
|
14
|
+
wermac.org, the zzsteels catalog, hardhatengineer.com):
|
|
15
|
+
- `raisedFaceDiameter` was wrong in 21 of 24 rows. For NPS 6–12 it held the pipe OD (for example
|
|
16
|
+
NPS 6: 168.3 → 215.9 mm).
|
|
17
|
+
- `thickness` was wrong in most rows. It is now the minimum flange thickness excluding the raised
|
|
18
|
+
face (for example NPS 4 Class 150: 19.1 → 22.4 mm).
|
|
19
|
+
- Bolt sizes were wrong in several rows.
|
|
20
|
+
- Weights were off by up to about 30% (for example NPS 12 Class 150: 27 → 37 kg).
|
|
21
|
+
- Class 300/600 OD and bolt circle values get small rounding corrections (≤ 0.5 mm).
|
|
22
|
+
- **`boltSize` is now the B16.5 inch bolt with its ISO stud equivalent**, for example `'5/8" (M16)'`.
|
|
23
|
+
**Breaking** for callers matching the old metric-only strings.
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- Tests for invariants between rows (raised face < bolt circle < OD; a higher class never has a
|
|
28
|
+
smaller OD, bolt circle or thickness; the raised face is not the pipe OD) and golden rows citing the
|
|
29
|
+
public tables.
|
|
30
|
+
|
|
8
31
|
## [0.46.0] - 2026-09-15
|
|
9
32
|
|
|
10
33
|
### Added
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flangeSpec.d.ts","sourceRoot":"","sources":["../../src/metal/flangeSpec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAiB,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"flangeSpec.d.ts","sourceRoot":"","sources":["../../src/metal/flangeSpec.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAiB,MAAM,YAAY,CAAC;AAoEnF;;;;;;;;;GASG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,GAAG,gBAAgB,CA8BnE"}
|
package/dist/metal/flangeSpec.js
CHANGED
|
@@ -1,47 +1,56 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ASME B16.5 Welding Neck flange dimensions
|
|
2
|
+
* ASME B16.5 Welding Neck flange dimensions (raised face)
|
|
3
|
+
*
|
|
4
|
+
* Values are the published inch dimensions × 25.4, cross-checked 2026-09-15 against public B16.5 tables
|
|
5
|
+
* that agree with each other (apiint.com · texasflange.com · wermac.org · zzsteels.com catalog ·
|
|
6
|
+
* hardhatengineer.com). `thickness` is the minimum flange thickness excluding the raised face.
|
|
7
|
+
* `boltSize` is the B16.5 inch bolt with its ISO stud equivalent. `weight` is an approximate forged WN
|
|
8
|
+
* weight (hardhatengineer, agreeing with the zzsteels catalog within about 1 kg).
|
|
9
|
+
*
|
|
10
|
+
* An earlier table had the pipe OD in the raised-face column for most sizes and minimum thicknesses and
|
|
11
|
+
* bolt sizes from other rows.
|
|
3
12
|
* @reference ASME B16.5 (Class 150, 300, 600)
|
|
4
13
|
*/
|
|
5
14
|
const ASME_B16_5 = {
|
|
6
15
|
'1': {
|
|
7
|
-
'150': { od: 108.0, thickness:
|
|
8
|
-
'300': { od: 124.0, thickness:
|
|
9
|
-
'600': { od: 124.0, thickness:
|
|
16
|
+
'150': { od: 108.0, thickness: 12.7, boltCircle: 79.4, boltHoles: 4, boltSize: '1/2" (M14)', raisedFace: 50.8, weight: 1.4 },
|
|
17
|
+
'300': { od: 124.0, thickness: 15.7, boltCircle: 88.9, boltHoles: 4, boltSize: '5/8" (M16)', raisedFace: 50.8, weight: 1.8 },
|
|
18
|
+
'600': { od: 124.0, thickness: 17.5, boltCircle: 88.9, boltHoles: 4, boltSize: '5/8" (M16)', raisedFace: 50.8, weight: 1.8 },
|
|
10
19
|
},
|
|
11
20
|
'2': {
|
|
12
|
-
'150': { od: 152.4, thickness:
|
|
13
|
-
'300': { od: 165.1, thickness: 20.6, boltCircle: 127.0, boltHoles: 8, boltSize: 'M16', raisedFace:
|
|
14
|
-
'600': { od: 165.1, thickness: 25.4, boltCircle: 127.0, boltHoles: 8, boltSize: 'M16', raisedFace:
|
|
21
|
+
'150': { od: 152.4, thickness: 17.5, boltCircle: 120.7, boltHoles: 4, boltSize: '5/8" (M16)', raisedFace: 92.1, weight: 2.7 },
|
|
22
|
+
'300': { od: 165.1, thickness: 20.6, boltCircle: 127.0, boltHoles: 8, boltSize: '5/8" (M16)', raisedFace: 92.1, weight: 4.1 },
|
|
23
|
+
'600': { od: 165.1, thickness: 25.4, boltCircle: 127.0, boltHoles: 8, boltSize: '5/8" (M16)', raisedFace: 92.1, weight: 5.5 },
|
|
15
24
|
},
|
|
16
25
|
'3': {
|
|
17
|
-
'150': { od: 190.5, thickness:
|
|
18
|
-
'300': { od:
|
|
19
|
-
'600': { od:
|
|
26
|
+
'150': { od: 190.5, thickness: 22.4, boltCircle: 152.4, boltHoles: 4, boltSize: '5/8" (M16)', raisedFace: 127.0, weight: 4.6 },
|
|
27
|
+
'300': { od: 209.6, thickness: 26.9, boltCircle: 168.3, boltHoles: 8, boltSize: '3/4" (M20)', raisedFace: 127.0, weight: 6.8 },
|
|
28
|
+
'600': { od: 209.6, thickness: 31.8, boltCircle: 168.3, boltHoles: 8, boltSize: '3/4" (M20)', raisedFace: 127.0, weight: 10.5 },
|
|
20
29
|
},
|
|
21
30
|
'4': {
|
|
22
|
-
'150': { od: 228.6, thickness:
|
|
23
|
-
'300': { od: 254.0, thickness:
|
|
24
|
-
'600': { od: 273.1, thickness:
|
|
31
|
+
'150': { od: 228.6, thickness: 22.4, boltCircle: 190.5, boltHoles: 8, boltSize: '5/8" (M16)', raisedFace: 157.2, weight: 6.8 },
|
|
32
|
+
'300': { od: 254.0, thickness: 30.2, boltCircle: 200.2, boltHoles: 8, boltSize: '3/4" (M20)', raisedFace: 157.2, weight: 11.4 },
|
|
33
|
+
'600': { od: 273.1, thickness: 38.1, boltCircle: 215.9, boltHoles: 8, boltSize: '7/8" (M24)', raisedFace: 157.2, weight: 19.1 },
|
|
25
34
|
},
|
|
26
35
|
'6': {
|
|
27
|
-
'150': { od: 279.4, thickness:
|
|
28
|
-
'300': { od:
|
|
29
|
-
'600': { od: 355.6, thickness:
|
|
36
|
+
'150': { od: 279.4, thickness: 23.9, boltCircle: 241.3, boltHoles: 8, boltSize: '3/4" (M20)', raisedFace: 215.9, weight: 10.9 },
|
|
37
|
+
'300': { od: 317.5, thickness: 35.1, boltCircle: 269.9, boltHoles: 12, boltSize: '3/4" (M20)', raisedFace: 215.9, weight: 19.1 },
|
|
38
|
+
'600': { od: 355.6, thickness: 47.8, boltCircle: 292.1, boltHoles: 12, boltSize: '1" (M27)', raisedFace: 215.9, weight: 36.0 },
|
|
30
39
|
},
|
|
31
40
|
'8': {
|
|
32
|
-
'150': { od: 342.9, thickness:
|
|
33
|
-
'300': { od: 381.0, thickness:
|
|
34
|
-
'600': { od: 419.1, thickness:
|
|
41
|
+
'150': { od: 342.9, thickness: 26.9, boltCircle: 298.5, boltHoles: 8, boltSize: '3/4" (M20)', raisedFace: 269.9, weight: 17.7 },
|
|
42
|
+
'300': { od: 381.0, thickness: 39.6, boltCircle: 330.2, boltHoles: 12, boltSize: '7/8" (M24)', raisedFace: 269.9, weight: 31.0 },
|
|
43
|
+
'600': { od: 419.1, thickness: 55.6, boltCircle: 349.3, boltHoles: 12, boltSize: '1-1/8" (M30)', raisedFace: 269.9, weight: 55.0 },
|
|
35
44
|
},
|
|
36
45
|
'10': {
|
|
37
|
-
'150': { od: 406.4, thickness:
|
|
38
|
-
'300': { od: 444.5, thickness:
|
|
39
|
-
'600': { od: 508.0, thickness:
|
|
46
|
+
'150': { od: 406.4, thickness: 28.4, boltCircle: 362.0, boltHoles: 12, boltSize: '7/8" (M24)', raisedFace: 323.9, weight: 24.0 },
|
|
47
|
+
'300': { od: 444.5, thickness: 46.0, boltCircle: 387.4, boltHoles: 16, boltSize: '1" (M27)', raisedFace: 323.9, weight: 42.0 },
|
|
48
|
+
'600': { od: 508.0, thickness: 63.5, boltCircle: 431.8, boltHoles: 16, boltSize: '1-1/4" (M33)', raisedFace: 323.9, weight: 86.0 },
|
|
40
49
|
},
|
|
41
50
|
'12': {
|
|
42
|
-
'150': { od: 482.6, thickness:
|
|
43
|
-
'300': { od:
|
|
44
|
-
'600': { od:
|
|
51
|
+
'150': { od: 482.6, thickness: 30.2, boltCircle: 431.8, boltHoles: 12, boltSize: '7/8" (M24)', raisedFace: 381.0, weight: 37.0 },
|
|
52
|
+
'300': { od: 520.7, thickness: 49.3, boltCircle: 450.9, boltHoles: 16, boltSize: '1-1/8" (M30)', raisedFace: 381.0, weight: 64.0 },
|
|
53
|
+
'600': { od: 558.8, thickness: 66.5, boltCircle: 489.0, boltHoles: 20, boltSize: '1-1/4" (M33)', raisedFace: 381.0, weight: 102.0 },
|
|
45
54
|
},
|
|
46
55
|
};
|
|
47
56
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flangeSpec.js","sourceRoot":"","sources":["../../src/metal/flangeSpec.ts"],"names":[],"mappings":"AAYA
|
|
1
|
+
{"version":3,"file":"flangeSpec.js","sourceRoot":"","sources":["../../src/metal/flangeSpec.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formulab",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.0",
|
|
4
4
|
"description": "Manufacturing & Engineering calculation formulas library - 203 industrial calculations across 15 domains for OEE, Cpk, SPC, FMEA, Nelson Rules, metal weight, CNC machining, GD&T, battery, environmental, pipe flow, logistics, IE time study, and more",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|