ASME B36.10M. Verify the alignment between nominal pipe diameter and wall thickness
Source:R/b36dwthv.R
b36dwthv.RdCheck the correspondence inside nominal diameter/wall thickness value pair for pipes manufactured in accordance with regulatory standards.
Verification is performed using reference values from the
b36pipedata-table. So, the result is TRUE if d-
and w-value combination can be found in rows of this dataset.
Arguments
- d
nominal (outside) diameter of pipe, [mm]. Type:
assert_double.- wth
nominal wall thickness of pipe, [mm]. Type:
assert_double.
Value
Verification status. Type: assert_logical.
See also
Other ASME B36.10M:
b36mass(),
b36pipedata
Examples
library(pipenostics)
# All pipes in test bench of district heating network have strictly
# consistent diameters and wall thicknesses:
all(b36dwthv(m325nxdata[["d"]], m325nxdata[["wth"]]))
#> [1] TRUE