-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-modules.js
More file actions
1830 lines (1808 loc) · 94.6 KB
/
Copy pathtool-modules.js
File metadata and controls
1830 lines (1808 loc) · 94.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// tool-modules.js -- the tile-id -> renderer-module registry.
//
// Spec-v10 SS H.1 / H.2 named "TOOLS-extraction into its own lazy-loaded
// shard" as the preferred remediation for home-view JS growth, and every
// cap bump since has been recorded as an interim accommodation for it.
// This is that shard.
//
// Every tile costs this table one id string, so it grew with the catalog
// while app.js carried it inline -- 24.4 KB gzipped, 46% of the entire
// home-view JS sub-budget, for a table the home view never reads. Nothing
// here is needed until a reader opens a calculator, and app.js now imports
// it lazily from loadRenderer(), which was already async.
//
// The declare() call shape below is load-bearing: scripts/check-wiring.mjs,
// scripts/check-dist.mjs, scripts/build-renderer-map.mjs, and
// scripts/check-renderer-schema.mjs all parse these calls as TEXT rather
// than importing this module. Keep the literal form -- module path first,
// renderer export name second, then the array of tile ids -- and do not
// compute any of the three. (This comment deliberately does not spell the
// call out as an example: check-wiring's regex would read the example as a
// real declaration and fail on the imaginary module it names.)
export const TOOL_MODULES = (() => {
const map = {};
const declare = (path, exportName, ids) => { for (const id of ids) map[id] = { path, exportName }; };
declare("./calc-electrical.js", "ELECTRICAL_RENDERERS", [
"ohms-law", "wire-ampacity", "voltage-drop", "mwbc-voltage-drop", "egc-parallel-raceways", "conduit-fill", "box-fill",
"awg-wire-geometry",
"breaker-sizing", "motor-fla", "transformer-sizing", "three-phase",
"copper-resistance", "egc-sizing",
// v2
"service-load", "generator-sizing",
"voltage-imbalance", "gfci-afci-reference", "lighting-density",
// v3
"pulling-tension", "cable-reel-capacity", "wire-pulling-lubricant", "branch-circuit-wire-footage", "microinverter-branch-count", "welder-arc-circuit-conductor", "welder-resistance-circuit-conductor", "battery-inverter-dc-conductor", "pv-ac-output-circuit", "soil-resistivity-wenner", "cable-bend-radius", "pf-correction", "phase-balance",
"multi-load-vd", "lv-dc-drop", "poe-budget",
// v7
"transformer-kva-sizing", "short-circuit-pp", "generator-motor-starting",
"service-load-standard",
// v8
"panel-rebalance",
// v9
"arc-flash-screen",
"motor-branch-from-nameplate",
"grounding-electrode",
// v15
"voltage-drop-reactance", "power-triangle",
"ambient-ampacity-adjust", "service-load-optional",
// v23
"lux-to-footcandle",
// spec-v109 service grounding, bonding, and inverse voltage-drop sizing.
"grounding-electrode-conductor", "bonding-jumper", "min-conductor-for-vd",
"max-circuit-length-for-vd",
"open-delta-transformer",
"conduit-nipple-60-fill",
// spec-v121..v128 fault / raceway / grounding / three-phase
"conductor-short-circuit-withstand", "conduit-thermal-expansion", "conduit-expansion-max-run",
"egc-upsize-proportional", "delta-wye-line-phase",
// spec-v165/v170/v174/v176 electrician batch
"buck-boost-sizing", "wireway-fill", "rooftop-temp-adder", "working-space-110-26",
// spec-v179/v185/v186 electrician second-pass batch
"motor-branch-protection", "bends-between-pulls", "shock-approach-boundary",
"conduit-jam-ratio",
// spec-v471..v473 energy-economics batch
"motor-efficiency-upgrade-savings", "transformer-loading-efficiency", "economic-conductor-sizing",
// spec-v487 generator fuel runtime and backup duration
"generator-fuel-runtime",
// spec-v494 transformer voltage regulation from %R and %X
"transformer-voltage-regulation",
"transformer-turns-ratio",
// spec-v495 capacitor discharge time and bleed resistor
"capacitor-discharge-time",
// spec-v496 asymmetrical and peak fault current from X/R
"asymmetrical-fault-xr",
// spec-v518 battery room hydrogen ventilation (IEEE 1635)
"battery-hydrogen-vent", "battery-vent-max-current",
// spec-v520 transformer inrush coordination point
"transformer-inrush-point",
// spec-v562
"termination-temp-ampacity",
]);
// spec-v129 cap-relief split: the cohesive spec-v121..v124 motor bench
// (motor-synchronous-speed-slip, motor-shaft-torque, motor-operating-cost,
// multi-motor-feeder) relocated out of calc-electrical.js (which the
// v121..v128 batch had pushed to 100.1% of cap -- the tightest renderer
// module) into calc-motor.js. All four keep group "A" (group letter
// independent of module, the v79/v88/v101 precedent); ids, citations,
// examples, and behavior unchanged.
declare("./calc-motor.js", "MOTOR_RENDERERS", [
"motor-synchronous-speed-slip", "motor-pole-identification", "motor-shaft-torque", "motor-operating-cost", "motor-run-hours-for-budget",
"multi-motor-feeder",
// spec-v278 NEC 430.32 running overload
"motor-overload-sizing",
// spec-v499 motor locked-rotor kVA from code letter (NEC 430.7(B))
"motor-locked-rotor-kva", "motor-max-hp-for-starting-current",
// spec-v521 motor short-circuit contribution (first cycle)
"motor-fault-contribution",
// spec-v522 reduced-voltage starter current and torque
"reduced-voltage-starter",
// spec-v557
"vfd-reflected-wave",
"rotary-phase-converter-sizing",
"motor-acceleration-time",
"motor-rms-hp",
]);
// spec-v88 cap-relief split: the cohesive solar-PV / battery-storage /
// EV-charging electrification bench moved out of calc-electrical.js (which
// had reached 94.7% of cap -- the tightest renderer module) into
// calc-solar.js. All five KEEP group "A" (a tile's group letter is
// independent of its module, the v42/v70..v87 precedent); ids, citations,
// examples, and behavior unchanged.
declare("./calc-solar.js", "SOLAR_RENDERERS", [
// v2
"pv-string-sizing", "battery-runtime",
"dc-shunt-sizing",
// v15
"pv-interconnection-busbar", "off-grid-battery", "ev-charger-load",
// spec-v182 electrician second-pass batch
"pv-circuit-ampacity",
// spec-v221..v223 PV system-design batch
"pv-energy-yield", "pv-array-sizing", "pv-row-spacing", "pv-row-shade-angle", "pv-inverter-ratio", "pv-rail-clamp-takeoff", "pv-ballast-weight",
"pv-cell-temperature-power", "pv-max-ambient-for-power", "pv-performance-ratio", "pv-string-fusing",
// spec-v236..v238 grid-tied battery-economics batch
"battery-tou-arbitrage", "battery-peak-shaving", "battery-c-rate",
// spec-v488 EV charge time (AC Level 2)
"ev-charge-time",
"ev-range-per-hour",
"battery-series-parallel",
"bifacial-pv-gain",
// spec-v489 EV charge cost at the meter
"ev-charge-cost",
// spec-v492 EV DC fast-charge time with CC-CV taper
"ev-dcfc-time",
// spec-v559
"solar-egc-690-45",
"shadow-length", "solar-altitude-angle", "solar-azimuth-angle",
]);
// spec-v79 cap-relief split: the cohesive spec-v20 §A advanced-analysis trio
// (parallel-conductor-derate, neutral-current-3ph, motor-vd-starting)
// relocated out of calc-electrical.js (which had reached 95.1% of cap -- the
// tightest remaining calc module) into calc-powerquality.js. All three keep
// group: "A" (group letter independent of module, the v72/v78 precedent).
declare("./calc-powerquality.js", "POWERQUALITY_RENDERERS", [
"parallel-conductor-derate", "neutral-current-3ph", "motor-vd-starting",
// spec-v172 electrician batch
"motor-unbalance-derate",
// spec-v183/v184 electrician second-pass batch
"transformer-k-factor", "motor-capacitor-max",
// spec-v523 harmonic parallel-resonance order
"harmonic-resonance", "capacitor-bank-for-resonance-order",
// spec-v524 total demand distortion limit check (IEEE 519)
"tdd-ieee-519",
"rlc-reactance-resonance",
]);
// spec-v26 feeder + transformer-conductor overcurrent bench (group A;
// relocated from calc-electrical.js at spec-v72 to relieve that module's
// gzip cap -- it had reached 96.7%; a tile's group letter is independent of
// its module, the v28/v36/v39/v70/v71 precedent).
declare("./calc-feeder.js", "FEEDER_RENDERERS", [
"motor-feeder-multiple", "transformer-conductor-protection",
"feeder-tap-rule",
// spec-v280 NEC 210.20/215.3 continuous-load OCPD
"continuous-load-ocpd",
// spec-v493 NEC 445.13 generator output conductor at 115%
"generator-conductor-445",
// spec-v519 NEC 220.87 existing-facility load by peak demand
"existing-load-220-87",
// spec-v561
"ev-load-management-ems",
"ev-charger-throttle",
]);
// spec-v28 low-voltage / data / security cabling (own module; registered
// under Group A pending the Group-Z maintainer signoff, per the spec's
// documented fallback).
declare("./calc-lowvoltage.js", "LOWVOLTAGE_RENDERERS", [
"fiber-loss-budget", "fiber-max-length", "wireless-fspl", "fresnel-zone-clearance", "wireless-link-budget", "cable-tray-fill", "cctv-storage", "cctv-retention-days",
"speaker-70v-line", "standby-battery-sizing", "standby-battery-runtime", "coax-rg-loss",
"camera-lens-fov", "camera-max-distance-for-ppf", "ceiling-speaker-coverage", "ceiling-speaker-coverage-angle", "structured-cabling-channel", "lv-cable-pull-footage", "cable-support-jhook", "access-control-power-supply", "fire-alarm-nac-voltage-drop",
"loop-signal-scaling", "dp-flow-signal-scaling",
"rtd-resistance-to-temp",
"pulse-flowmeter-k-factor",
"loop-voltage-budget",
"thermistor-beta-temp", "thermistor-steinhart-hart",
"dp-level-hydrostatic",
"pid-tuning-ziegler-nichols",
]);
// spec-v29 pipe / raceway field-layout bench (deepens Groups B, A, G per
// the spec-v28 §7 roadmap; lives in its own module because calc-electrical
// and calc-plumbing are at their size caps).
declare("./calc-pipefit.js", "PIPEFIT_RENDERERS", [
"pipe-cold-spring", "raceway-expansion-fitting", "pipe-spacing-rack",
// spec-v157..v162 steamfitting / pressure-piping / pipe-support bench.
"flash-steam-pct", "steam-pipe-velocity", "steam-pipe-capacity", "steam-trap-sizing",
"steam-boiler-blowdown",
"boiler-horsepower",
"radiator-edr-output",
"pipe-pressure-rating", "asme-shell-thickness", "asme-head-thickness", "pipe-filled-support-load", "hanger-rod-sizing",
// spec-v200..v203 condensate return + fabrication/process layout tiles.
"condensate-return-sizing", "branch-saddle-cutback", "reducer-offset",
"flange-rating",
// spec-v204..v205 process-piping branch reinforcement + expansion guide spacing.
"branch-reinforcement", "expansion-guide-spacing",
// spec-v588 steam orifice / PRV capacity (Napier)
"steam-prv-napier", "steam-prv-area-for-capacity",
]);
// spec-v30 metal / air / refrigerant bench (deepens Groups E, C per the
// spec-v28 §7 roadmap; own module since calc-construction and calc-hvac are
// at their size caps).
declare("./calc-metalair.js", "METALAIR_RENDERERS", [
"square-to-round-development", "standing-seam-takeoff", "metal-roof-thermal-movement",
"groove-weld-strength", "groove-weld-length-for-load", "duct-static-pressure-total", "compression-ratio-refrig",
"duct-transition-length",
"duct-static-regain",
]);
declare("./calc-plumbing.js", "PLUMBING_RENDERERS", [
"pipe-sizing", "friction-loss", "pipe-volume", "pump-sizing",
"static-pressure-piping", "slope",
"pressure-conversion", "backflow",
// v2
"water-hammer-arrestor", "recirc-pump-head", "trap-arm",
"pipe-expansion", "tankless-gpm",
// v3
"stormwater-rational", "stormwater-max-drainage-area", // spec-v1011 partial-flow depth of a circular gravity pipe
"hydrostatic-test", "grease-trap", "grease-interceptor-flow-capacity",
"stormwater-detention-volume",
"glycol-mix", "expansion-tank", "backflow-loss", "hydronic-fill-pressure", // v7
"water-hammer-surge", "pump-operating-point",
"pipe-expansion-loop",
// v9
"recirc-loop-sizing",
// v16
"water-heater-recovery", "water-heater-input", "wh-expansion-tank", "sanitary-dfu", "trap-primer",
"backflow-sizing",
// v23
"trap-seal-loss", "water-meter-sizing",
// v20
"thermal-expansion-volume", "vent-sizing-stack",
// v26 mixing valve, well tank, pipe velocity
"mixed-water-temp", "pressure-tank-drawdown", "pipe-velocity",
// v61
"wsfu-demand", "supply-pressure-budget",
// spec-v112 storage water-heater sizing (first-hour rating vs peak demand).
"water-heater-storage-sizing",
// spec-v163 drainage invert-out, fall, and cover for a gravity run.
"drainage-invert",
// spec-v199 hydronic radiant floor loop sizing.
"radiant-loop-sizing",
// spec-v302..v304 site-hydraulics depth batch.
"time-of-concentration", "orifice-flow", "orifice-diameter-for-flow", "tank-drain-time", "channel-froude-number",
"channel-normal-depth", "trapezoidal-channel-flow", "hydraulic-jump", "specific-energy",
"velocity-head", "flow-continuity", "bernoulli-head",
"thrust-block-sizing", "thrust-block-max-pressure",
]);
declare("./calc-plumbingcode.js", "PLUMBINGCODE_RENDERERS", [
// cap-relief split out of calc-plumbing.js: the fixture and layout half,
// what the code requires of a rough-in's dimensions.
"fixture-clearance-check", "shower-compartment-check", "accessible-toilet-compartment",
"vent-terminal-check", "aav-install-check", "grab-bar-layout", "cleanout-layout",
"water-service-pressure-check",
]);
declare("./calc-plumbingtakeoff.js", "PLUMBINGTAKEOFF_RENDERERS", [
// spec-v1028 cap-relief split out of calc-plumbing.js: the takeoff /
// materials bench (what you buy and install).
"solder-joint-quantity", "pipe-insulation-takeoff", "heat-trace-sizing", "pipe-purge-volume",
"hydronic-system-volume", "pex-homerun-takeoff", "solar-thermal-collector",
]);
// spec-v86 cap-relief split: the cohesive onsite-wastewater / septic bench
// (the v2 septic-tank, the v7 septic-drainfield, and the v83 pressure-
// distribution trio) relocated out of calc-plumbing.js (which had reached
// 98.9% of cap -- the tightest remaining calc module) into calc-septic.js.
// All five keep group: "B" (group letter independent of module, the
// v42/v70..v82 precedent).
declare("./calc-septic.js", "SEPTIC_RENDERERS", [
// v2 / v7
"septic-tank", "septic-drainfield", "septic-drainfield-capacity",
// v83 onsite-septic pressure distribution
"septic-dose-tank", "septic-pumpout-interval", "septic-tank-for-interval", "septic-lpp-orifice", "septic-lpp-squirt-head",
"leach-field-aggregate",
]);
// spec-v78 cap-relief split: the cohesive spec-v63 + spec-v64 service bench
// (gas-appliance-demand, tpr-discharge, pipe-support-spacing, softener-sizing)
// relocated out of calc-plumbing.js (which had reached 95.2% of cap -- the
// tightest remaining calc module) into calc-service.js. All four keep
// group: "B" (group letter independent of module, the v42/v70..v77 precedent).
declare("./calc-service.js", "SERVICE_RENDERERS", [
// v63
"gas-appliance-demand", "tpr-discharge",
// v64
"pipe-support-spacing", "softener-sizing",
// spec-v167/v168/v169 electrician dwelling demand-factor trio
"range-demand-220-55", "dryer-demand-220-54", "neutral-demand-220-61",
// spec-v180/v181 electrician second-pass batch
"commercial-lighting-load", "noncoincident-load",
// spec-v230..v232 electrical energy-cost-savings batch
"vfd-energy-savings", "lighting-retrofit-savings", "power-factor-billing-savings",
// spec-v279 NEC 310.12 dwelling service conductor
"service-conductor-sizing",
"insulation-resistance-pi",
]);
// spec-v73 cap-relief split: the two spec-v62 storm-drainage tiles relocated
// out of calc-plumbing.js (which had reached 96.2% of cap -- the tightest
// remaining calc module) into calc-drainage.js. They keep group: "B" (group
// letter independent of module, the v42/v70/v71/v72 precedent).
declare("./calc-drainage.js", "DRAINAGE_RENDERERS", [
"seepage-travel-time", "well-point-spacing", "water-quality-volume",
"roof-drain-sizing", "sump-basin-sizing",
// spec-v426..v427 drainage
"overflow-scupper-sizing", "scupper-width-for-flow", "sewage-force-main-velocity",
"drywell-infiltration",
// spec-v1036 cap-relief move from calc-plumbing.js (shared MANNING_ROUGHNESS)
"manning-slope", "manning-pipe-capacity", "pipe-partial-flow-depth", "tr55-time-of-concentration", "composite-curve-number", "curve-number-runoff", "tr55-graphical-peak-discharge", "tr55-detention-storage", "culvert-inlet-control", "box-culvert-inlet-control", "culvert-outlet-control", "box-culvert-outlet-control", "culvert-headwater", "box-culvert-headwater",
]);
// spec-v42 cap-relief split: the three fuel-gas tiles relocated out of
// calc-plumbing.js (which had reached 98.9% of cap) into calc-gas.js. They
// keep group: "B" (group letter independent of module, the v36/v39 precedent).
declare("./calc-gas.js", "GAS_RENDERERS", [
"gas-pipe-sizing", "gas-leak-rate", "gas-leak-hole-diameter", "gas-pipe-pressure-drop", "gas-pipe-max-flow",
// spec-v111 high-altitude derate and NG/LP fuel conversion (same module).
"gas-altitude-derate", "gas-fuel-conversion",
"wobbe-index", "gas-appliance-connection",
"propane-vaporization-rate", "propane-fill-outage", "propane-regulator-sizing",
"lp-container-separation", "propane-run-time",
// spec-v206 medical-gas system demand and diversity (NFPA 99).
"medgas-demand",
]);
declare("./calc-hvac.js", "HVAC_RENDERERS", [
"manual-j-cooling", "manual-j-heating", "duct-sizing",
"static-pressure-hvac",
"seer-eer", "balance-point", "shr", "cfm-per-ton", "combustion-air", "combustion-air-max-input",
// v2
"approach-delta-t",
"outdoor-air-mix", "equivalent-length", "wet-bulb-psychrometer",
"insulation-thickness", "pipe-insulation-for-condensation", "economic-insulation-thickness", "evaporative-cooling", "evaporative-cooler-effectiveness", "indirect-evaporative-cooling",
// v3
"affinity-laws", "belt-pulley", "air-receiver", "geothermal-loop",
"baseboard-output", "baseboard-length-for-load", "npsh-a",
// v7
"duct-friction-static", "cooling-tower",
"insulation-heat-loss",
// v8
"duct-leakage",
// v9
"outdoor-air-ventilation", "hood-exhaust", "shr-latent",
// v20
"economizer-savings-hours", "pipe-heat-loss-radial", "insulation-thickness-for-heat-loss", "fan-motor-bhp", "fan-motor-max-airflow",
// v27 round-to-rectangular duct equivalent
"round-to-rect-duct", "flat-oval-duct", "fixed-orifice-target-superheat",
// v99 building-envelope insulation
"assembly-r-value", "blown-insulation-coverage",
// spec-v233..v235 heat-pump heating-mode batch
"heat-pump-seasonal-energy", "dual-fuel-balance-point", "heat-pump-cold-capacity",
// spec-v239..v241 compressed-air energy batch
"air-leak-cost", "compressed-air-power", "compressed-air-pressure-drop", "air-pressure-setpoint-savings",
// spec-v275..v277 ventilation-and-recovery batch
"erv-sensible-recovery", "mua-tempering-load", "dcv-co2-ventilation",
// spec-v305..v307 pump-and-fluid fundamentals batch
"reynolds-number-pipe", "hydronic-gpm-deltat", "pump-specific-speed", "pump-suction-specific-speed",
// spec-v329..v331 building-energy batch
"building-ua", "degree-day-energy", "wall-condensation-gradient",
"duct-heat-gain", "grille-face-velocity", "air-density-correction",
"adpi-diffuser-selection", "vibration-isolation", "isolator-deflection",
"moist-air-enthalpy", "drybulb-from-enthalpy", "cooling-coil-total-load", "coil-bypass-factor",
"fan-affinity-laws", "fan-sheave-for-target-cfm", "colebrook-friction-factor", "manual-d-friction-rate",
// spec-v441..v443 energy-recovery / hydronic / economizer
"erv-total-enthalpy-recovery", "radiant-floor-output", "economizer-enthalpy-changeover",
// spec-v478 hydronic snowmelt sizing (the v199 radiant follow-on).
"snowmelt-load",
]);
// spec-v89 cap-relief split: the cohesive refrigerant-circuit bench (the v2
// refrigerant-pt P-T lookup, superheat-subcool diagnostic, compare-refrigerants,
// and refrigerant-charge line-set estimator, plus the v7 refrigerant-charging
// suction/liquid diagnostic) relocated out of calc-hvac.js (which had reached
// 94.3% of cap -- the tightest remaining renderer module) into
// calc-refrigerant.js. All five keep group: "C" (group letter independent of
// module, the v42/v70..v88 precedent); ids, citations, examples, dimensional
// annotations, and behavior unchanged.
declare("./calc-refrigerant.js", "REFRIGERANT_RENDERERS", [
// trade expansion v1413-v1419
"txv-capacity-check",
"defrost-cycle-sizing",
"refrigerant-leak-rate",
"refrigerant-recovery-time",
"head-pressure-control",
// v2
"refrigerant-pt", "superheat-subcool", "compare-refrigerants", "refrigerant-charge", "refrigerant-lineset-charge-adjust",
// v7
"refrigerant-charging",
// spec-v320..v322 refrigeration-cycle batch
"refrigerant-mass-flow", "refrigeration-cop", "condenser-heat-rejection", "condenser-cop-for-heat-rejection",
// spec-v432..v434 walk-in refrigeration
"walk-in-cooler-load", "product-pull-down-load", "product-pull-down-time", "evaporator-td-dtd",
// spec-v586 liquid-line subcooling / flash gas
"flash-gas-subcool", "compressor-displacement",
"compressor-volumetric-efficiency",
]);
// spec-v81 cap-relief split: the cohesive spec-v16 "Group C expansion" batch
// (seven first-principles HVAC engineering tiles) relocated out of calc-hvac.js
// (which had reached 94.9% of cap -- the tightest remaining calc module) into
// calc-hvacsystems.js. They keep group: "C" (group letter independent of
// module, the v42/v70..v80 precedent).
declare("./calc-hvacsystems.js", "HVACSYSTEMS_RENDERERS", [
// spec-v1677, v1678: the mechanical insulation band.
"refractory-shell-temperature", "cryogenic-boiloff",
"grille-neck-nc", "duct-breakout-noise", "silencer-insertion-loss",
"mechanical-room-nc", "rooftop-curb-uplift",
// spec-v1622..v1631: the test-and-balance and hydronic systems band.
"flow-hood-correction", "fan-system-effect", "proportional-balance-ratio",
"pump-impeller-trim", "coil-capacity-verification", "valve-actuator-close-off",
"chiller-staging-point", "variable-primary-bypass", "louver-free-area",
"plenum-return-drop",
"chiller-tons", "hx-lmtd-ntu", "air-changes-hour",
"boiler-pipe-sizing", "compressor-short-cycle", "humidifier-capacity",
"filter-pressure-drop",
// spec-v227..v229 cooling-load-components batch
"window-solar-heat-gain",
// spec-v1012 overhang shade line / direct-beam sunlit fraction
"window-overhang-shade",
"internal-heat-gains", "envelope-conduction-load",
// spec-v409..v410 HVAC duct-design
"coil-face-velocity", "coil-face-area", "vav-box-airflow",
// spec-v587 anti-short-cycle buffer tank
"hydronic-buffer-tank",
"outdoor-reset-ratio",
"hydronic-injection-mixing",
"valve-authority",
// spec-v623 buffer tank with distribution-loop credit
"buffer-tank-loop-credit",
]);
// spec-v74 cap-relief split: the two spec-v23 velocity tiles relocated out of
// calc-hvac.js (which had reached 95.9% of cap -- the tightest remaining calc
// module) into calc-velocity.js. They keep group: "C" (group letter
// independent of module, the v42/v70/v71/v72/v73 precedent).
declare("./calc-velocity.js", "VELOCITY_RENDERERS", [
"duct-velocity-pressure", "refrigerant-velocity", "refrigerant-line-size", "pitot-traverse-cfm", "pitot-traverse-average", "dp-flow-meter", "gas-dp-flow-meter", "orifice-pressure-loss",
]);
declare("./calc-restoration.js", "RESTORATION_RENDERERS", [
// trade expansion v1445-v1448
"water-extraction-rate",
"sewage-loss-disposal",
"psychrometric", "drying-goal", "dehumidifier", "air-movers",
"water-classes", "drying-times", "mold", "ppe",
// v58
"mold-remediation-level", "mold-conditions",
// v59
"antimicrobial-dilution", "air-sample-volume",
// v2
"standing-water", "nam-sizing", "hepa-filter-life", "thermal-delta-t",
// v3
"containment-air-balance", "chamber-turnover",
// v9
"drying-log",
// v16
"equipment-power-draw",
// v23
"drying-chamber-co2",
// v20
"grains-removed", "evaporation-load",
// spec-v119 equilibrium moisture content of wood (USDA FPL sorption).
"wood-emc",
// spec-v136..v140 on-arrival water-loss bench.
"flood-cut-takeoff", "ceiling-water-load", "dehumidifier-derate",
"class-of-loss-screen", "desiccant-airflow-sizing",
// spec-v189..v198 water-damage restoration second/third pass.
"drying-balance", "bound-water", "disinfectant-dwell",
"carpet-restore-replace", "category-deterioration", "hydroxyl-sizing",
"cavity-drying-system", "dry-time-projection",
// spec-v141 + v146..v148 + v152..v154 fire & smoke restoration batch.
"equipment-heat-load", "char-depth-capacity", "soot-cleaning-takeoff",
"ozone-shock-treatment", "smoke-residue-method", "thermal-fog-deodorization",
"contents-packout-inventory",
// spec-v143 / v150 / v155 / v156 restoration novelty batch (condensation,
// spore clearance ratio, hardwood mat sizing, mold cleaning labor).
"surface-condensation-risk", "spore-io-ratio", "hardwood-floor-drying-mat",
"mold-cleaning-labor",
]);
// spec-v77 cap-relief split: the cohesive demolition / abatement bench
// (moisture-dry-goal, flood-cut-quantity, abatement-containment) relocated out
// of calc-restoration.js (which had reached 95.2% of cap -- tied for the
// tightest remaining calc module) into calc-demo.js. All three keep
// group: "D" (group letter independent of module, the v42/v70..v76 precedent).
declare("./calc-demo.js", "DEMO_RENDERERS", [
"abatement-waste-containers", "lead-dust-clearance", "silica-ventilation-screen",
// v60
"moisture-dry-goal", "flood-cut-quantity",
// v69 asbestos / lead abatement containment take-off
"abatement-containment",
]);
declare("./calc-construction.js", "CONSTRUCTION_RENDERERS", [
"scaffold-tie-spacing", "mast-climber-platform-load", "suspended-scaffold-counterweight", "shoring-reshoring-load",
// trade expansion v1425-v1434
"elevator-handling-capacity",
"glass-thickness-wind",
"awning-canopy-load",
"garage-door-torsion-spring",
"window-film-shgc",
"igu-u-factor",
"escalator-capacity",
"stairs", "roof-pitch", "rafter", "square-footage", "board-footage",
"concrete", "shotcrete-rebound-quantity", "rebar", "lumber-spans", "fastener-pullout",
"beam-loading", "material-quantity",
// v2
"stair-stringer", "joist-deflection", "footing-area", "tile-count",
"paint-coverage", "excavation", "masonry-count", "wind-pressure", "wind-speed-from-velocity-pressure",
"snow-load", "anchor-embedment",
// v3
"corner-bead-takeoff", "drywall", "roofing-squares", "asphalt-tonnage", "asphalt-paving-speed", "asphalt-tack-coat-quantity", "chip-seal-mcleod", "aggregate", "stockpile-volume", "windrow-stockpile-volume", "flat-top-stockpile-volume", "mortar-mix",
"concrete-mix-design", "bolt-torque", "bend-allowance", "speeds-feeds",
"intermittent-fillet-weld", "multi-bend-flat-pattern",
"powered-attic-ventilator",
"weld-usage", "demo-debris", "formwork-pressure", "concrete-pour-rate",
// v7
"stair-stringer-layout", "hip-valley-rafter", "rebar-schedule", "welded-wire-mesh",
"plywood-span", "helical-pile", "helical-pile-torque", "crane-lift-quick",
// v8
"residential-framing",
// v9
"excavation-bench-plan",
// v15
"header-sizing", "deck-beam-post", "stud-notch-bore-limit", "joist-notch-bore-limit", "joist-cantilever-check",
// v23
"wall-bracing-length", "deck-ledger-fasteners",
// v20
"point-load-bearing", "column-buckling-wood", "beam-reactions",
// v24 welding/metal/layout
"weld-heat-input", "metal-weight", "layout-squaring",
// v27 fillet weld strength
"fillet-weld-strength",
// v69 surface prep and coatings
"coating-coverage-dft", "abrasive-blast",
// v94 fencing + v96 concrete joints / rebar lap splices
"fence-estimate", "post-hole-concrete",
"control-joint-spacing", "rebar-lap-splice",
// spec-v113 guard and handrail code check (IRC R312 / R311.7.8).
"guard-handrail-check", "guard-post-load", "egress-window-check", "landing-check", "door-maneuvering-clearance", "dryer-duct-length", "smoke-alarm-placement", "co-alarm-placement", "egress-window-well", "scaffold-guardrail-check", "excavation-protection-trigger", "scaffold-platform-check", "temporary-stairway-check", "flammable-cabinet-storage", "material-stacking-limits",
// spec-v481 stair geometry code check (IBC 1011 / IRC R311).
"stair-code-check",
// spec-v212..v214 masonry grout / coursing and wallcovering takeoffs.
"cmu-grout-volume", "annular-grout-volume", "masonry-coursing", "wallpaper-rolls",
// spec-v215..v217 roofing material-takeoff batch.
"ice-barrier-coverage", "metal-roof-panels", "ridge-cap-fasteners",
// spec-v224..v226 ASCE 7 structural design-loads batch.
"rain-load-ponding", "asce7-load-combinations", "seismic-approximate-period", "seismic-base-shear",
// spec-v477 ELF vertical distribution (the v226/v383 follow-on).
"seismic-vertical-distribution",
// spec-v480 ELF overturning moment (the v477 §12.8.5 follow-on).
"seismic-overturning-moment", "seismic-overturning-stability",
// spec-v242..v244 IBC/IPC occupancy trio.
"occupant-load", "egress-capacity", "plumbing-fixture-count",
// spec-v245..v247 cast-in-place placing-and-curing trio.
"shore-post-load", "scaffold-mudsill-bearing", "scaffold-leg-load", "scaffold-takeoff", "asphalt-spread-rate", "pavement-milling-production", "striping-paint-quantity", "concrete-vibrator-spacing", "formwork-tie-load", "formwork-member-spacing", "mass-concrete-temp-rise", "concrete-washout-volume", "shingle-nails", "duct-metal-weight", "duct-bank-concrete", "duct-wrap-takeoff", "duct-hanger-load", "roof-underlayment-rolls", "membrane-roof-takeoff", "membrane-fastener-takeoff", "roof-ballast-weight", "tapered-roof-insulation", "sheathing-takeoff", "construction-adhesive-tubes", "sill-plate-anchor-count", "metal-stud-takeoff", "suspended-ceiling-grid", "masonry-control-joint-layout", "dumpster-count", "sealant-joint-yield", "self-leveler-bags", "carpet-takeoff", "carpet-seam-layout", "sfrm-takeoff", "spray-foam-board-feet", "metal-deck-takeoff", "rebar-tie-wire", "anchor-epoxy-volume", "baseplate-grout-volume", "baluster-picket-count", "traffic-taper-length", "advance-warning-sign-spacing", "siding-takeoff", "siding-course-layout", "stucco-coverage", "vapor-barrier-rolls", "concrete-sawcut-footage", "foundation-waterproofing-takeoff", "drainage-board-takeoff", "joist-hanger-count", "drywall-fastener-takeoff", "glass-vacuum-lift", "polymeric-sand-bags", "rigid-foam-board-count", "roof-insulation-fasteners", "housewrap-rolls", "chain-link-fence-takeoff", "curb-gutter-volume", "rebar-chair-count", "concrete-evaporation-rate", "concrete-strength-gain",
// spec-v476 maturity method (the v247 follow-on).
"concrete-maturity",
// spec-v430..v431 concrete field-work (v429 cut as dupe)
"rebar-weight-takeoff", "ready-mix-concrete-order", "concrete-yield", "water-cement-ratio",
// spec-v803 ASCE 7 live load reduction
"asce-live-load-reduction",
// spec-v439..v440 finish-carpentry takeoff (v438 cut as dupe)
"insulation-batt-coverage", "trim-linear-footage",
"glulam-volume-factor",
// spec-v251..v253 IBC plan-review trio.
"allowable-area", "egress-travel-distance", "exterior-opening-protection",
// spec-v263..v265 NDS sawn-lumber design trio.
"wood-beam-bending", "wood-beam-shear", "wood-beam-compression-notch", "wood-bolt-connection",
// spec-v290..v292 NDS wood-member depth batch.
"wood-bearing-perpendicular", "wood-tension-member", "wood-combined-bending-axial",
// spec-v296..v298 ASCE 7 wind-and-snow load depth batch.
"wind-cc-pressure", "snow-drift-load", "wind-mwfrs-pressure", "wind-gust-effect-factor", "wind-velocity-pressure-exposure-coefficient",
// spec-v468..v470 ASCE 7 snow provisions batch.
"rain-on-snow-surcharge", "sliding-snow-load", "snow-guard-layout", "minimum-roof-snow",
// spec-v474 ADA ramp layout
"ada-ramp-slope",
"accessible-parking-count",
"sign-character-height",
"reach-range",
"protruding-object-check",
"accessible-route-width",
"door-clear-width",
"floor-level-change",
"turning-clear-floor-space",
"handrail-geometry",
"knee-toe-clearance",
"flood-opening-area",
"ada-stair-check",
"tactile-sign-mounting",
"drinking-fountain-check",
"accessible-shower-check",
"substantial-improvement-check",
"accessible-parking-geometry",
"water-closet-location",
"lavatory-tub-clearance",
"ramp-detail-check",
// trade expansion v1411
"curtain-wall-mullion-deflection",
// spec-v332..v334 wood-fastener withdrawal batch.
"wood-nail-withdrawal", "wood-lag-withdrawal", "wood-screw-withdrawal",
"cantilever-beam", "section-properties", "combined-stress-axial-bending",
"shaft-torsion", "shaft-diameter-for-torsion", "thermal-stress-restrained", "thermal-stress-max-deltat", "hoop-stress-thin-wall", "hoop-stress-mawp",
"seismic-design-spectral-acceleration", "seismic-story-drift", "seismic-pdelta-stability",
// spec-v546
"wind-solid-sign",
// spec-v553
"snow-unbalanced-gable",
]);
// spec-v95 new finish-and-site-carpentry take-off module (the home named
// in the spec-v94 module note); relieves the calc-construction.js cap watch.
// All tiles keep group "E" (module independent of group letter).
declare("./calc-finish.js", "FINISH_RENDERERS", [
// trade expansion v1445-v1448
"spray-tip-selection",
"texture-material-takeoff",
// v95 interior finish
"thinset-coverage", "flooring-takeoff",
// v97 hardscape
"paver-patio", "retaining-wall-block", "srw-geogrid-spacing",
// v98 roofing trim-out
"attic-ventilation", "crawl-space-ventilation", "soffit-ridge-vent-count", "gutter-downspout", "gutter-downspout-takeoff", "deck-board-takeoff", "rough-opening-size", "closet-shelf-takeoff", "countertop-overhang-support", "cabinet-linear-feet", "drip-edge-takeoff", "valley-flashing-takeoff", "glass-weight",
"cement-board-takeoff",
"step-flashing-count",
]);
// spec-v101 new electrician design/layout bench; relieves the standing
// calc-electrical.js cap watch. Both tiles keep group "A".
declare("./calc-elecdesign.js", "ELECDESIGN_RENDERERS", [
// trade expansion v1420-v1422
"grounding-grid-conductor",
"selective-coordination-screen",
"fuse-let-through",
"pull-box-sizing", "lumen-method",
"room-cavity-ratio",
"luminaire-spacing-mh-ratio",
// spec-v175 electrician batch
"point-illuminance", "luminaire-height-for-illuminance", "point-method-required-candela",
"lighting-light-loss-factor", "lighting-uniformity-ratio", "egress-lighting-check",
// spec-v525 neutral grounding resistor sizing (IEEE 142)
"neutral-grounding-resistor",
// spec-v558
"step-touch-voltage",
"ground-potential-rise", "max-grid-resistance-for-touch", "rolling-sphere-protection",
// spec-v560
"sccr-combination",
]);
// spec-v102 new HVAC field-service bench; relieves the standing
// calc-hvac.js cap watch. Both tiles keep group "C".
declare("./calc-hvacservice.js", "HVACSERVICE_RENDERERS", [
"condensate-drain", "condensate-overflow-pan", "condensate-trap-depth", "recovery-cylinder",
// trade expansion v1413-v1419
"damper-authority",
"chilled-water-delta-t", "outside-air-percent-temps",
// spec-v104 electrical-side field-service diagnostics (same module).
"hvac-equipment-circuit", "run-capacitor-microfarad",
// spec-v105 evacuation/leak-check field diagnostics (same module).
"vacuum-decay-test", "nitrogen-pressure-test",
// spec-v110 gas-heat start-up diagnostics (same module).
"gas-meter-clock", "gas-meter-clock-target", "furnace-temp-rise", "furnace-airflow-to-rise",
// spec-v218..v220 residential air-tightness and ventilation batch.
"blower-door-ach50", "ashrae-622-ventilation", "infiltration-load",
// spec-v461 residential duct leakage
"duct-leakage-cfm25",
// spec-v583 combustion excess air
"excess-air-o2",
// spec-v584 air-free CO correction
"co-air-free",
// spec-v622 draft-hood dilution ratio
"draft-hood-dilution",
// spec-v585 theoretical chimney draft
"chimney-draft", "chimney-height-for-draft",
// spec-v594 flue-gas combustion efficiency (stack loss)
"flue-gas-combustion-eff",
"combustion-lambda",
"oil-burner-firing-rate",
"flue-gas-dew-point",
"condensing-flue-condensate",
]);
// spec-v103 new pipe/well disinfection bench; relieves the standing
// calc-plumbing.js cap watch. Both tiles keep group "B".
declare("./calc-disinfect.js", "DISINFECT_RENDERERS", [
"main-disinfection-chlorine", "well-shock-chlorination",
]);
// spec-v1539..v1545: the railroad track and equipment bench, a trade the
// catalog served with zero tiles. All seven keep group "E".
declare("./calc-rail.js", "RAIL_RENDERERS", [
"railcar-load-limit", "tonnage-rating-grade", "train-brake-reduction", "clearance-plate-envelope",
"track-superelevation", "degree-of-curve", "cwr-neutral-temperature",
"rail-wear-condemning-limit", "track-warp-fra-class",
"ballast-section-volume", "turnout-frog-lead",
]);
// spec-v1648..v1658: the elevator and escalator equipment bench. The catalog
// had two elevator tiles, both about traffic handling. All eleven keep
// group "E".
declare("./calc-elevator.js", "ELEVATOR_RENDERERS", [
"traction-roping-ratio", "counterweight-balance", "rope-safety-factor",
"buffer-stroke-speed", "hoistway-venting", "machine-room-heat",
"hydraulic-jack-pressure", "step-chain-tension", "door-closing-energy",
"governor-tripping-speed", "guide-rail-bracket-span",
]);
// spec-v1571..v1581: the door hardware and locksmithing bench. Nine keep
// group "E"; electric-lock-power-budget and maglock-holding-leverage keep
// group "A".
declare("./calc-doorhardware.js", "DOORHARDWARE_RENDERERS", [
"door-closer-opening-force", "lock-backset-strike-layout", "panic-hardware-force",
"electric-lock-power-budget", "maglock-holding-leverage",
"master-key-bitting-capacity", "key-cut-macs-check", "door-undercut-transfer-air",
"fire-door-clearance", "gate-operator-duty-cycle", "revolving-door-throughput",
]);
// spec-v1507..v1516: the mining, quarry, and drill-and-blast bench, a trade
// the catalog served with zero tiles. All ten keep group "E".
declare("./calc-mining.js", "MINING_RENDERERS", [
"blast-powder-factor", "blast-burden-spacing", "blast-scaled-distance-ppv",
"blast-airblast-overpressure", "blast-stemming-length", "crusher-reduction-ratio",
"screen-deck-capacity", "belt-feeder-capacity", "dust-collector-air-to-cloth",
"dust-deflagration-vent-area",
// spec-v1517..v1523, part 2 of the same module.
"mine-face-ventilation", "pit-dewatering-staging", "highwall-bench-geometry",
"rock-bolt-support-pressure", "blast-fume-clearance-time", "hoist-rope-safety-factor",
]);
// spec-v1596..v1604: the trenchless, HDD and utility locating bench.
// v1596 and v1604 were cut as duplicates of hdd-pullback and manning-slope,
// which gained their new material instead. All seven keep group "E".
declare("./calc-trenchless.js", "TRENCHLESS_RENDERERS", [
"hdd-bend-radius", "hdd-fluid-volume", "hdd-annular-pressure",
"locate-depth-offset", "vacuum-excavation-spoil", "pipe-bursting-pull-load",
"cipp-liner-thickness",
]);
// spec-v1582..v1587: the sawmill and forest-products bench. The catalog
// followed a log to the stump and stopped; these six follow it into the
// mill, the kiln, and onto the truck. All six keep group "L".
declare("./calc-sawmill.js", "SAWMILL_RENDERERS", [
"lumber-recovery-overrun", "kiln-drying-time", "kiln-charge-water",
"bandmill-speed-bite", "sawmill-residue-yield", "log-truck-payload",
]);
// spec-v1550..v1556: the wind-energy bench. Every existing "wind" tile
// treats wind as a STRUCTURAL load; these seven treat it as a resource.
// All seven keep group "A".
declare("./calc-wind.js", "WIND_RENDERERS", [
"tip-speed-ratio", "wind-power-density-betz", "wind-shear-hub-height",
"weibull-capacity-factor", "turbine-density-correction", "yaw-error-loss",
"gin-pole-uptower-lift",
]);
// spec-v1557..v1562: the commercial and scientific diving bench. The only
// breathing-gas tile the catalog had was `scba-cylinder-time`, which has no
// notion of ambient pressure -- the one thing every diving gas calculation
// turns on. All six keep group "G".
declare("./calc-diving.js", "DIVING_RENDERERS", [
"no-decompression-limit", "surface-air-consumption", "nitrox-mod",
"nitrox-ead", "umbilical-air-supply", "chamber-gas-volume",
]);
// spec-v1563..v1570: the steam plant and commercial laundry bench. The
// catalog had a blowdown RATE and a Napier orifice pair and nothing that
// valued blowdown heat, balanced a deaerator, audited an installed safety
// valve set, or fitted an oil viscosity line -- and nothing at all for a
// commercial laundry. Three keep group "G", four take group "C".
declare("./calc-steamplant.js", "STEAMPLANT_RENDERERS", [
"laundry-washer-turns", "laundry-cost-per-pound", "laundry-dryer-evaporation",
"blowdown-heat-recovery", "deaerator-steam-demand", "safety-valve-capacity",
"fuel-oil-atomizing-viscosity",
]);
// spec-v1450..v1460: the overhead line and distribution bench. The charter
// probed thirty US trades against the live registry and line work came
// back at ZERO -- the closest thing was `spanline-sag-tension`, a rigging
// highline at ONE condition. All eleven keep group "A".
declare("./calc-lineworker.js", "LINEWORKER_RENDERERS", [
// spec-v1468: the last lineworker spec of the program.
"duct-bank-ampacity-derate",
"ruling-span", "conductor-sag-at-temperature", "conductor-blowout",
"conductor-uplift-check", "line-ground-clearance-nesc",
"pole-class-groundline-moment", "guy-anchor-holding-capacity",
"transverse-wind-load-conductor", "nesc-district-loading",
"conductor-creep-elongation", "sagging-return-wave",
"transformer-diversity-loading", "capacitor-bank-voltage-rise",
"regulator-tap-bandwidth", "recloser-fuse-coordination",
"feeder-loss-load-factor", "meter-ct-pt-multiplier",
"counterpoise-resistance",
]);
// spec-v1469..v1477: the millwright alignment, vibration, and balance bench.
// The catalog had `rotor-balance-grade` (an ISO 1940 TOLERANCE) and bearing
// life and load, and nothing that turned two dial readings into a shim or
// named a line in a spectrum. All nine keep group "K".
declare("./calc-millwright.js", "MILLWRIGHT_RENDERERS", [
"shaft-alignment-rim-face", "shaft-alignment-reverse-dial",
"alignment-thermal-growth", "soft-foot-correction",
"coupling-alignment-tolerance", "vibration-severity-zone",
"vibration-forcing-frequencies", "bearing-defect-frequencies",
"single-plane-field-balance",
"roller-chain-wear-elongation", "gear-reducer-service-factor",
"air-compressor-cfm-sizing", "air-dryer-sizing",
"receiver-pump-up-time", "vacuum-evacuation-time",
]);
// spec-v80 cap-relief split: the spec-v25 site-civil / roadway-geometry
// quartet moved out of calc-construction.js (it sat at 95.0% of its size
// cap, the tightest remaining calculator module) into its own module. All
// four tiles KEEP group "E" (the module is independent of the group letter,
// per the v28/v30/v36/v39/v70..v79 precedent); no tile or output changed.
declare("./calc-civil.js", "CIVIL_RENDERERS", [
"horizontal-curve", "spiral-curve", "compound-curve", "reverse-curve", "vertical-curve", "earthwork-end-area", "slope-stake-cut-fill",
"curve-deflection-stakeout",
"superelevation", "superelevation-safe-curve-speed", "vertical-curve-sight-distance", "horizontal-sightline-offset",
"sag-vertical-curve", "sag-vertical-curve-comfort",
"skip-line-layout", "speed-hump-geometry", "intersection-sight-triangle",
"pavement-structural-number", "subgrade-cbr-thickness", "esal-traffic-loading",
]);
// spec-v254..v256 AISC 360 steel-member trio + spec-v266..v268 steel-connection
// trio: a new lazy Group E cluster (the steel-member companion to the wood-framing
// and steel-weld tiles). All six KEEP group "E" (module independent of group letter).
declare("./calc-steel.js", "STEEL_RENDERERS", [
"steel-beam-flexure", "required-section-modulus", "shear-flow-connector-spacing", "steel-beam-shear", "steel-column-capacity",
"bolt-group-eccentric", "bolt-shear-bearing", "column-base-plate",
// spec-v281..v283 members-and-connections depth batch
"steel-beam-ltb", "steel-cb", "steel-block-shear", "steel-tension-member", "staggered-net-width",
// spec-v293..v295 connection/detailing depth batch
"steel-web-local-strength", "steel-bolt-slip-critical", "slip-critical-with-tension", "steel-fillet-weld-size",
// spec-v314..v316 beam-column-and-connection depth batch
"steel-h1-interaction", "steel-b1-amplifier", "steel-b2-amplifier", "steel-effective-length-k", "steel-column-stiffness-ratio-g", "steel-tau-b-stiffness-reduction", "steel-bolt-tension-shear",
// spec-v411..v413 composite-beam trio
"shear-stud-strength", "composite-beam-flexure", "steel-camber", "steel-inertia-for-deflection",
// spec-v547
"steel-floor-vibration",
// spec-v555
"steel-panel-zone-shear",
"steel-doubler-plate",
// spec-v618
"steel-panel-zone-axial",
]);
// spec-v257..v259 ACI 318-19 reinforced-concrete member trio: a new lazy
// Group E cluster, the RC companion to calc-steel.js one material over.
// All three KEEP group "E" (module independent of group letter).
declare("./calc-concrete.js", "CONCRETE_RENDERERS", [
"concrete-pump-line-pressure", "boom-pump-reach", "post-tension-elongation", "tilt-up-lift-stress", "tilt-up-brace-load",
"rc-beam-flexure", "rc-tbeam-flexure", "rc-beam-shear", "rc-development-length",
"concrete-torsion-threshold",
// spec-v284..v286 member depth batch
"rc-column-axial", "rc-column-steel-for-load", "rc-punching-shear", "rc-hook-development",
// spec-v1008 one-way shear without stirrups (ACI 318-19 22.5.5.1 detailed method)
"rc-one-way-shear",
// spec-v1009 minimum stirrups + the 22.5.1.2 section-size ceiling
"rc-min-shear-reinforcement",
// spec-v299..v301 depth-2 batch
"rc-slab-min-thickness", "rc-slab-max-span-for-thickness", "rc-doubly-reinforced", "rc-shear-friction",
"concrete-elastic-modulus", "concrete-strength-from-modulus", "concrete-modulus-of-rupture", "concrete-strength-from-rupture", "concrete-cracking-moment", "concrete-depth-for-cracking-moment", "concrete-shrinkage-temperature-steel",
"t-beam-effective-flange-width", "concrete-beam-min-flexural-steel", "concrete-crack-control-spacing",
// spec-v490 concrete bearing strength (ACI 318-19 §22.8)
"concrete-bearing-strength",
// spec-v491 rebar compression development length (ACI 318-19 §25.4.9)
"rc-compression-dev-length",
// spec-v497 long-term deflection multiplier (ACI 318-19 §24.2.4.1)
"concrete-effective-inertia", "concrete-longterm-defl", "concrete-immediate-deflection", "concrete-cracked-inertia-doubly", "concrete-cracked-inertia-tee",
// spec-v548
"concrete-anchor-breakout",
"concrete-anchor-pullout",
// spec-v617
"concrete-anchor-shear-breakout",
"concrete-anchor-pryout",
"concrete-anchor-steel-strength",
"concrete-anchor-interaction",
"concrete-anchor-blowout",
// spec-v552
"rc-slender-column-magnify",
// spec-v556
"concrete-corbel-bracket",
// spec-v793 fresh (batch) concrete temperature (ACI 305.1)
"fresh-concrete-temp",
// spec-v918 curing compound coverage (ASTM C309)
"curing-compound-coverage",
"concrete-premix-bags",
"concrete-isolation-joint",
"concrete-stair-volume",
"slab-dowel-schedule",
]);
// spec-v260..v262 geotechnical foundation-and-earth-retaining trio: a new
// lazy Group E cluster, where the steel / RC member load path meets the
// ground. All three KEEP group "E" (module independent of group letter).
declare("./calc-geotech.js", "GEOTECH_RENDERERS", [
"soil-bearing-capacity", "lateral-earth-pressure", "at-rest-earth-pressure", "submerged-earth-pressure", "sloped-backfill-earth-pressure", "coulomb-earth-pressure", "seismic-earth-pressure", "cohesive-earth-pressure", "pole-embedment-depth", "retaining-wall-stability",
// spec-v287..v289 foundation depth batch
"soil-settlement-elastic", "elastic-settlement-allowable-pressure", "pile-axial-capacity", "pile-length-for-capacity", "slope-stability-infinite", "slope-failure-depth-for-fs", "slope-stability-seepage",
"frost-depth-berggren",
// spec-v308..v310 geotechnical depth-2 batch
"soil-consolidation-settlement", "overconsolidated-settlement", "secondary-compression-settlement", "settlement-limit-load", "footing-eccentric-pressure", "boussinesq-surcharge-wall",
// spec-v414..v416 settlement/foundation trio
"consolidation-time-rate", "consolidation-degree", "coefficient-of-consolidation", "spt-bearing-capacity", "spt-required-n60", "liquefaction-screening",
// spec-v1013 Terzaghi total/effective vertical stress profile
"soil-vertical-effective-stress",
// spec-v498 pile group efficiency (Converse-Labarre)
"pile-group-efficiency", "pile-group-spacing-for-efficiency",
]);
// spec-v269..v271 TMS 402-16 reinforced-masonry member trio: a new lazy
// Group E cluster, the masonry counterpart to the steel / RC member benches;
// masonry's first structural (not takeoff) tiles. All three KEEP group "E".
declare("./calc-masonry.js", "MASONRY_RENDERERS", [
"mortar-batch-c270", "grout-lift-pour-height", "masonry-cleaning-dilution",
"cmu-wall-flexure", "cmu-shear-wall", "cmu-wall-axial",
"masonry-wall-weight", "brick-veneer-anchor-spacing", "brick-veneer-weep-count", "masonry-joint-reinforcement", "masonry-lintel-loading", "masonry-lintel-bearing", "fireplace-flue-area", "masonry-limited-access-zone",
"masonry-anchor-bolt", "masonry-anchor-embedment", "masonry-anchor-shear", "masonry-prism-fm",
]);
// spec-v272..v274 SDPWS wood lateral-force-resisting-system trio: a new
// lazy Group E cluster closing the load path from seismic-base-shear /
// wind-pressure into the wood diaphragm, shear wall, and drift. All three
// KEEP group "E" (module independent of group letter).
declare("./calc-lateral.js", "LATERAL_RENDERERS", [
"diaphragm-shear", "shearwall-overturning", "shearwall-deflection",
// spec-v549
"diaphragm-collector-force",
]);
// spec-v70 cap-relief split: the spec-v67 earthwork / excavation bench
// moved out of calc-construction.js (it sat at 97.6% of its size cap) into
// its own module. All five tiles KEEP group "E" (the module is independent
// of the group letter, per the v28/v30/v36/v39 precedent); no tile or output
// changed.
declare("./calc-earthwork.js", "EARTHWORK_RENDERERS", [
"soil-swell-shrink", "haul-cycle-production", "loader-production", "dozer-production", "compaction-roller-production", "ripper-production", "rusle-soil-loss", "riprap-d50", "riprap-tonnage", "silt-fence-drainage", "check-dam-spacing", "sediment-basin-volume", "erosion-blanket-coverage", "hydroseed-mix", "rock-construction-entrance", "dewatering-rate",
"spoil-setback", "pipe-bedding-backfill", "pipe-flotation", "restrained-pipe-length", "hdd-pullback", "dust-control-water", "haul-road-resistance", "dump-truck-loads", "unit-cost-earthwork", "soil-stabilization-quantity", "flexible-pipe-deflection",
// spec-v326..v328 soil characterization / QC batch
"relative-compaction",
// spec-v1014 relative density (density index) for cohesionless soil
"soil-relative-density",
"water-for-compaction", "soil-phase-relations", "soil-permeability", "atterberg-indices", "soil-activity", "fineness-modulus", "fine-aggregate-grading", "soil-gradation-coefficients",
]);
declare("./calc-fire.js", "FIRE_RENDERERS", [
"fire-friction", "pdp", "hydrant-flow", "required-fire-flow",
// trade expansion v1386-v1393
"ppv-fan-sizing",
"hose-lay-section-count",
"fdc-supply-check",
"radiant-exposure-separation",
"master-stream", "aerial-ladder", "foam", "foam-max-coverage-area", "smoke-reading",
// v2
"reverse-lay-friction", "sprinkler-density", "standpipe-friction",
"ladder-pipe-reach", "braking-distance",
// v7
"iso-nff",
// v9
"scba-cylinder-time",
"nfpa-1142-water-supply",
"confined-space-vent",
// v15
"standpipe-pdp", "smoke-ejector-cfm",
// v23
"fire-stream-reaction", "sprinkler-k-factor",
// v20
"elevation-pressure-loss", "water-supply-duration",
// spec-v114 smooth-bore nozzle flow (gpm = 29.7 d^2 sqrt(NP)).
"smooth-bore-flow", "smooth-bore-diameter-for-flow",
"hydrant-available-flow",
// spec-v577
"nfa-fireground-flow",
"iowa-rate-of-flow",
"relay-pump-distance",
"draft-lift-max",
"vacuum-lift-reading",
"tanker-shuttle-flow",
"tanker-shuttle-cycle",
"tanker-fleet-size",
"foam-eductor-limit", "extinguisher-coverage",
]);
// spec-v82 cap-relief split: the spec-v3 technical-rescue bench moved out
// of calc-fire.js (it sat at 94.9% of its size cap) into its own module.
// All three tiles KEEP group "F" (the module is independent of the group
// letter, per the v28/v30/v36/v39/v70..v81 precedent); no tile or output
// changed.
declare("./calc-rescue.js", "RESCUE_RENDERERS", [
"confined-space-purge", "rope-ma", "sling-angle",
// spec-v540
"search-track-spacing",
// spec-v541
"sweat-rate-hydration",
// spec-v595
"searcher-hours",
// spec-v614
"sweep-width-correction",
// spec-v779
"fall-arrest-clearance", "fall-arrest-anchorage",
]);
// spec-v248..v250 fire-sprinkler system-design trio: a new lazy Group F
// cluster split off beside calc-fire.js exactly as calc-rescue.js was (the
// fire module sits near its size cap). All three KEEP group "F" (module
// independent of group letter, per the v28/v30/v36/v39/v70..v82 precedent).
declare("./calc-firesprinkler.js", "FIRESPRINKLER_RENDERERS", [
"fire-pump-curve", "sprinkler-system-demand", "sprinkler-protection-area-for-supply", "sprinkler-head-layout", "smoke-detector-spacing-count", "drypipe-air-compressor", "jockey-pump-sizing",
"sprinkler-pressure-demand",
// trade expansion v1386-v1393
"stairwell-pressurization",
"fire-tank-sizing",
"sprinkler-obstruction",
"hydrant-spacing-count",
]);
declare("./calc-references.js", "REFERENCE_RENDERERS", [
"color-codes", "knot-reference", "inspection-checklist",
"emergency-contacts", "tool-maintenance",
// v3
"hand-signals", "osha-top10", "loto-steps", "defensible-space",
"storm-shelter", "triage-quickread",
// v5 Step 61
"irs-form-index", "sales-tax-nexus", "osha-recordkeeping", "lab-safety-quickread",
// spec-v177/v178 electrician reference lookups
"burial-depth-300-5", "support-spacing",