Encapsulation (computer Science)
Encapsulation may refer to: Chemistry * Molecular encapsulation, in chemistry, the confinement of an individual molecule within a larger molecule * Micro-encapsulation, in material science, the coating of microscopic particles with another material Biology * Cell encapsulation, technology made to overcome the existing problem of graft rejection in tissue engineering applications Computing and electronics * An alternate term for conformal coating or potting, which protects electronic components * Encapsulation (networking), the process of adding control information as it passes through the layered model * Encapsulation (computer programming) In software systems, encapsulation refers to the bundling of data with the mechanisms or methods that operate on the data. It may also refer to the limiting of direct access to some of that data, such as an object's components. Essentially, enca ..., the combination of program code and data, and/or restriction (hide) of access t ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
|
![]() |
Molecular Encapsulation
A molecule is a group of two or more atoms that are held together by Force, attractive forces known as chemical bonds; depending on context, the term may or may not include ions that satisfy this criterion. In quantum physics, organic chemistry, and biochemistry, the distinction from ions is dropped and ''molecule'' is often used when referring to polyatomic ions. A molecule may be homonuclear, that is, it consists of atoms of one chemical element, e.g. two atoms in the oxygen molecule (O2); or it may be heteronuclear, a chemical compound composed of more than one element, e.g. water (molecule), water (two hydrogen atoms and one oxygen atom; H2O). In the kinetic theory of gases, the term ''molecule'' is often used for any gaseous particle regardless of its composition. This relaxes the requirement that a molecule contains two or more atoms, since the noble gases are individual atoms. Atoms and complexes connected by non-covalent interactions, such as hydrogen bonds or ionic ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
Micro-encapsulation
Microencapsulation is a process in which tiny particles or droplets are surrounded by a coating to give small capsules, with useful properties. In general, it is used to incorporate food ingredients, enzymes, cells or other materials on a micro metric scale. Microencapsulation can also be used to enclose solids, liquids, or gases inside a micrometric wall made of hard or soft soluble film, in order to reduce dosing frequency and prevent the degradation of pharmaceuticals. In its simplest form, a microcapsule is a small sphere comprising a near-uniform wall enclosing some material. The enclosed material in the microcapsule is referred to as the core, internal phase, or fill, whereas the wall is sometimes called a shell, coating, or membrane. Some materials like lipids and polymers, such as alginate, may be used as a mixture to trap the material of interest inside. Most microcapsules have pores with diameters between a few nanometers and a few micrometers. Materials generally us ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
|
![]() |
Cell Encapsulation
Cell encapsulation is a possible solution to graft rejection in tissue engineering applications. Cell microencapsulation technology involves immobilization of cells within a polymeric semi-permeable membrane. It permits the bidirectional diffusion of molecules such as the influx of oxygen, nutrients, growth factors etc. essential for cell metabolism and the outward diffusion of waste products and therapeutic proteins. At the same time, the semi-permeable nature of the membrane prevents immune cells and antibodies from destroying the encapsulated cells, regarding them as foreign invaders. On the other hand, single-cell nanoencapsulation (SCNE) involves the formation of nanometric shells around individual living cells. Cell encapsulation could reduce the need for long-term use of immunosuppressive drugs after an organ transplant to control side effects. History In 1933 Vincenzo Bisceglie made the first attempt to encapsulate cells in polymer membranes. He demonstrated that t ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
![]() |
Conformal Coating
Conformal coating is a protective, breathable coating of thin polymeric film applied to printed circuit boards (PCBs). Conformal coatings are typically applied with 25–250 μm thickness on electronic circuitry to protect against moisture and other substances. Coatings can be applied in many ways, including brushing, spraying, dispensing, and dip coating. Many materials can be used as conformal coatings depending on manufacturer needs, such as acrylic, silicone, urethane, and parylene. Many circuit board assembly firms apply a layer of transparent conformal coating to assemblies as an alternative to potting. Conformal coatings are used to protect electronic components from possible environmental exposure; they allow moisture to escape but protect against contamination. More recently, conformal coatings are being used to reduce the formation of whiskers and to prevent current bleed between closely positioned components. Applications Precision analogue circuitry may su ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
![]() |
Potting (electronics)
In electronics, potting is the process of filling a complete electronic assembly with a solid or gelatinous compound. This is done to exclude water, moisture, or corrosive agents, to increase resistance to shocks and vibrations, or to prevent gaseous phenomena such as corona discharge in high-voltage assemblies. Potting has also been used to protect against reverse engineering or to protect parts of cryptography processing cards. When such materials are used only on single components instead of entire assemblies, the process is referred to as encapsulation. Thermosetting plastics or silicone rubber gels are often used, though epoxy resins are also very common. When epoxy resins are used, low chloride grades are usually specified. Many sites recommend using a potting product to protect sensitive electronic components from impact, vibration, and loose wires. In the potting process, an electronic assembly is placed inside a mold (the "pot") which is then filled with an insulating ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
Encapsulation (networking)
Encapsulation is the computer-networking process of concatenating layer-specific headers or trailers with a service data unit (i.e. a payload) for transmitting information over computer networks. Deencapsulation (or de-encapsulation) is the reverse computer-networking process for receiving information; it removes from the protocol data unit (PDU) a previously concatenated header or trailer that an underlying communications layer transmitted. Encapsulation and deencapsulation allow the design of modular communication protocols so to logically separate the function of each communications layer, and abstract the structure of the communicated information over the other communications layers. These two processes are common features of the computer-networking models and protocol suites, like in the OSI model and internet protocol suite. However, encapsulation/deencapsulation processes can also serve as malicious features like in the tunneling protocols.Raman, D., Sutter, B. ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |
|
Encapsulation (computer Programming)
In software systems, encapsulation refers to the bundling of data with the mechanisms or methods that operate on the data. It may also refer to the limiting of direct access to some of that data, such as an object's components. Essentially, encapsulation prevents external code from being concerned with the internal workings of an object. Encapsulation allows developers to present a consistent interface that is independent of its internal implementation. As one example, encapsulation can be used to hide the values or state of a structured data object inside a class. This prevents clients from directly accessing this information in a way that could expose hidden implementation details or violate state invariance maintained by the methods. Encapsulation also encourages programmers to put all the code that is concerned with a certain set of data in the same class, which organizes it for easy comprehension by other programmers. Encapsulation is a technique that encourages decoupli ... [...More Info...] [...Related Items...] OR: [Wikipedia] [Google] [Baidu] |