Calculates equivalent radius approximation for strip
r = strip2cylinder(w)
example
r = strip2cylinder(w) calculates the equivalent radius for a cylindrical approximation to a strip cross section.
r
w
collapse all
Calculate the equivalent radius of a cylinder based on a strip of width 80 mm.
r1 = strip2cylinder(80e-3)
r1 = 0.0200
Calculate the equivalent cylindrical cross-sections radii using the strips of widths 80 mm, 88 mm, and 96 mm.
r2 = strip2cylinder([80e-3 88e-3 96e-3])
r2 = 1×3 0.0200 0.0220 0.0240
Width of strip, specified as a scalar in meters or a vector with each element unit in meters.
Equivalent cylindrical cross-section radius, returned as a scalar in meters or a vector with each element unit in meters.
Example: 20e-3
cylinder2strip
You have a modified version of this example. Do you want to open this example with your edits?