AddCylindricalShell =================== ```{function} AddCylindricalShell(CSX, propName, prio, start, stop, rad, shell_width, varargin) ``` Full definition: ```{code-block} matlab function CSX = AddCylindricalShell(CSX, propName, prio, start, stop, rad, shell_width, varargin) ``` Add a cylinder shell to CSX and assign to a property with name . - start: cylinder axis start coordinates - stop : cylinder axis box stop coordinates - rad : cylinder radius - shell_width: cylinder shell width - prio : primitive priority Note: - the inner radius of this shell is rad-shell_width/2 - the outer radius of this shell is rad+shell_width/2 example: CSX = AddMetal(CSX,'metal'); %create PEC with propName 'metal' CSX = AddCylindricalShell(CSX,'metal',10,[0 0 0],[0 0 200],50,10); See also AddBox, AddCylinder, AddSphere, AddSphericalShell, AddCurve, AddWire, AddMetal ----------------------- author: Thorsten Liebig