Dynamic arrayIn computer science, a dynamic array, growable array, resizable array, dynamic table, mutable array, or array list is a random access, variable-size list data structure that allows elements to be added or removed. It is supplied with standard libraries in many modern mainstream programming languages. Dynamic arrays overcome a limit of static arrays, which have a fixed capacity that needs to be specified at allocation.
Affine varietyIn algebraic geometry, an affine algebraic set is the set of the common zeros over an algebraically closed field k of some family of polynomials in the polynomial ring An affine variety or affine algebraic variety, is an affine algebraic set such that the ideal generated by the defining polynomials is prime. Some texts call variety any algebraic set, and irreducible variety an algebraic set whose defining ideal is prime (affine variety in the above sense).
Array (data type)In computer science, array is a data type that represents a collection of elements (values or variables), each selected by one or more indices (identifying keys) that can be computed at run time during program execution. Such a collection is usually called an array variable or array value. By analogy with the mathematical concepts vector and matrix, array types with one and two indices are often called vector type and matrix type, respectively. More generally, a multidimensional array type can be called a tensor type, by analogy with the physical concept, tensor.
Optical fiberAn optical fiber, or optical fibre in Commonwealth English, is a flexible, transparent fiber made by drawing glass (silica) or plastic to a diameter slightly thicker than that of a human hair. Optical fibers are used most often as a means to transmit light between the two ends of the fiber and find wide usage in fiber-optic communications, where they permit transmission over longer distances and at higher bandwidths (data transfer rates) than electrical cables.
MEMSMEMS (Microelectromechanical systems) is the technology of microscopic devices incorporating both electronic and moving parts. MEMS are made up of components between 1 and 100 micrometres in size (i.e., 0.001 to 0.1 mm), and MEMS devices generally range in size from 20 micrometres to a millimetre (i.e., 0.02 to 1.0 mm), although components arranged in arrays (e.g., digital micromirror devices) can be more than 1000 mm2.
Transmission (mechanical device)A transmission (also called a gearbox) is a mechanical device which uses gears to change the speed or direction of rotation in a machine. Many transmissions have multiple gear ratios, but there are also transmissions that use a single fixed gear ratio. Most currently-produced passenger cars with petrol or diesel engines use transmissions with 5-8 forward gear ratios and one reverse gear ratio. Electric vehicles typically use a single-speed or two-speed transmission.
Collinear antenna arrayIn telecommunications, a collinear antenna array (sometimes colinear antenna array) is an array of dipole or quarter-wave antennas mounted in such a manner that the corresponding elements of each antenna are parallel and collinear; that is, they are located along a common axis. Collinear arrays are high gain omnidirectional antennas. Both dipoles and quarter-wavelength monopoles have an omnidirectional radiation pattern in free space when oriented vertically; they radiate equal radio power in all azimuthal directions perpendicular to the antenna, with the signal strength dropping to zero on the antenna axis.
Reflective array antennaIn telecommunications and radar, a reflective array antenna is a class of directive antennas in which multiple driven elements are mounted in front of a flat surface designed to reflect the radio waves in a desired direction. They are a type of array antenna. They are often used in the VHF and UHF frequency bands. VHF examples are generally large and resemble a highway billboard, so they are sometimes called billboard antennas. Other names are bedspring array and bowtie array depending on the type of elements making up the antenna.
Flap (aeronautics)A flap is a high-lift device used to reduce the stalling speed of an aircraft wing at a given weight. Flaps are usually mounted on the wing trailing edges of a fixed-wing aircraft. Flaps are used to reduce the take-off distance and the landing distance. Flaps also cause an increase in drag so they are retracted when not needed. The flaps installed on most aircraft are partial-span flaps; spanwise from near the wing root to the inboard end of the ailerons.
Judy arrayIn computer science, a Judy array is a data structure implementing a type of associative array with high performance and low memory usage. Unlike most other key-value stores, Judy arrays use no hashing, leverage compression on their keys (which may be integers or strings), and can efficiently represent sparse data; that is, they may have large ranges of unassigned indices without greatly increasing memory usage or processing time. They are designed to remain efficient even on structures with sizes in the peta-element range, with performance scaling on the order of O(log n).