SectoralCylinder

Concrete subclass of GenericCylinder representing a cylinder with a sectoral cross section.

Contents

Description

SectoralCylinder represents the shape of a sectoral cylinder. Its cross section is a circular sector (angular portion of a disk). The axis of the cylinder should be aligned with one of the axes of the Cartesian coordinate system.

Construction

shape = SectoralCylinder(normal_axis, height, center, radius, theta, d_theta)
shape = SectoralCylinder(normal_axis, height, center, radius, theta, d_theta, dl_max)

Input Arguments

Example

% Create an instance of SectoralCylinder.
shape = SectoralCylinder(Axis.z, 100, [0 0 50], 50, pi/6, pi/3);
% Use the constructed shape in maxwell_run().
[E, H] = maxwell_run({INITIAL ARGUMENTS}, 'OBJ', {'vacuum', 'none', 1.0}, shape, {REMAINING ARGUMENTS});

See Also

CircularCylinder, EllipticCylinder, PolygonalCylinder, Shape, maxwell_run