Search: in
Data buffer
Data buffer in Encyclopedia Encyclopedia
  Tutorials     Encyclopedia     Videos     Books     Software     DVDs  
       
Encyclopedia results for Data buffer

Data buffer





Encyclopedia results for Data buffer

  1. Data buffer

    In computer science , a buffer is a region of a physical memory storage used to temporarily hold data while it is being moved from one place to another. Typically, the data is stored in a buffer as it is retrieved ... . However, a buffer may be used when moving data between Process computing processes within ... memory location in hardware or by using a virtual data buffer in software, pointing at a location in the physical memory. In all cases, the data stored in a data buffer are stored on a physical ... in, first out method, outputting data in the order it arrived. Telecommunication buffer A buffer routine or data storage device storage Recording medium medium used in telecommunications compensates for a difference in rate of flow of data , or time of occurrence of events, when transferring data from ... as a buffer, and vice versa. However, cache operates on the premise that the same data will be read ... data within a time out period in write back modes. A buffer does none of this. A buffer is primarily ... MissingNo. , the result of buffer data not being cleared properly in Pok mon Red and Blue 16550 UART ... of memory buffer References Reflist DEFAULTSORT Data Buffer Category Synchronization Category ... to store temporary data, due to the much faster access time compared with hard disk drive hard disk drives . Buffers are typically used when there is a difference between the rate at which data is received ... in a printer spooler or in Video hosting service online video Streaming media streaming . A buffer often adjusts timing by implementing a Queue data structure queue or FIFO algorithm in memory, simultaneously writing data into the queue at one rate and reading it at another rate. Applications ... , sending or receiving data to or from a Computer network network , or playing sound on a speaker ... in bursts as a coaster arrives and is loaded . The queue area acts as a buffer a temporary space where ... operating at different rates, holding data for use at a later time, allowing timing corrections ...   more details



  1. Command Data Buffer

    Command Data Buffer CDB was a system used by the United States Air Force s LGM 30 Minuteman Minuteman ICBM force. CDB was a method to transfer targeting information from a Minuteman Launch control center ICBM Launch Control Center to an individual missile by communications lines. Prior to CDB, new missile guidance would have to be physically loaded at the Launch facility ICBM launch facility the process usually took hours. History The surviving remnant of the Minuteman Command Control System MICCS , CDB permitted the rapid, remote, retargeting of the Minuteman III fleet. CDB was operational at all Minuteman III wings by 15 Aug 1977. Minuteman II wings had a similar install, designated Improved Launch Control System , providing the older system the potential for remote retargeting. ref Department of the Air Force Strategic Air Command Weapon Systems Acquisition 1964 1979 , 28 April 1980 ref File Command Data Buffer configuration.png thumb right CDB configuration Phaseout CDB was replaced in the late 1990s by the Rapid Execution and Combat Targeting System Rapid Execution and Combat Targeting system, currently in use by United States ICBM forces. ref http www.fas.org nuke guide usa c3i react.htm FAS.org Rapid Execution and Combat Targeting ref See also Portal United States Air Force LGM 30 Minuteman Launch control center ICBM Improved Launch Control System Minuteman II upgrade similar to CDB Rapid Execution and Combat Targeting System REACT References Reflist Category United States nuclear command and control Category Cold War weapons of the United States Category Nuclear weapons of the United States Category Computer memory Category Synchronization USAF stub US mil hist stub nuclear weapon stub ...   more details



  1. Buffer

    Wiktionary buffer Buffer may refer to Buffer state , a country lying between two potentially hostile greater powers, thought to prevent conflict between them Buffer zone , any area that keeps two or more other areas distant from one another, may be demilitarized Buffer rail transport , a device that cushions the impact of vehicles against each other Buffer stop bumper in U.S. , a device to prevent railway vehicles from going past the end of a section of track Recoil buffer , an accessory for firearms, to cushion the impact of recoil Buffer navy , the colloquial term for the senior seaman sailor in a British Commonwealth Navy ship Buffer wheel , a wheel attached to a motor similar to a pedestal ... in a Movie projector Film loop movie projector People Bruce Buffer , sports announcer Michael Buffer , sports announcer In physical science Buffer solution , a solution which reduces the change of pH ... or weak base in a buffer solution Buffer gas , an inert or nonflammable gas Buffer GIS , a zone around a map feature Lysis buffer , in biochemistry, a destructor of cell membranes that enables analysis of the compounds within Mineral redox buffer , a mineral assemblage which stabilises oxidation state in natural rock systems In electronics and computer science Data buffer , memory used temporarily to store output or input data Framebuffer , a particular type of data buffer for use in graphical display Optical buffer , a device that stores optically transmitted data without converting it to the electrical domain Buffer amplifier also sometimes simply called a buffer , an isolating circuit used in electronics or telecommunications Buffer optical fiber , a component used to encapsulate one or more optical fibers in a fiber optic communication cable disambiguation bg ca Buffer da Buffer de Puffer es Buffer eo Bufro fa fr Tampon ko io Bufro id Buffer disambiguasi he Buffer nl Buffer ja pl Bufor ru sv Buffert ...   more details



  1. Circular buffer

    the buffer could prevent overwriting the data and return an error or raise an exception handling exception . Whether or not data is overwritten is up to the semantics of the buffer routines or the application ... data or alternately amount of data written to the buffer one to point to the end of valid data or alternately amount of data read from the buffer Alternatively, a fixed length buffer with two integers ... are different chunks of data in the same circular buffer. The writer is not only writing elements .... Example The writer is reading data from small files, writing them into the same circular buffer ... A ring showing, conceptually, a circular buffer. This visually shows that the buffer has no real end and it can loop around the buffer. However, since memory is never physically created as a ring, a linear representation is generally used as is done below. A circular buffer , cyclic buffer or ring buffer is a data structure that uses a single, fixed size buffer computer science buffer as if it were connected end to end. This structure lends itself easily to buffering data stream s. Uses An example that could possibly use an overwriting circular buffer is with multimedia. If the buffer is used as the bounded buffer in the producer consumer problem then it is probably desired for the producer e.g., an audio generator to overwrite old data if the consumer e.g., the sound card is unable to momentarily ... of a circular buffer is that it does not need to have its elements shuffled around when one is consumed. If a non circular buffer were used then it would be necessary to shift all elements when one is consumed. In other words, the circular buffer is well suited as a FIFO computing FIFO buffer while a standard, non circular buffer is well suited as a LIFO computing LIFO buffer. Circular buffering makes a good implementation strategy for a Queue data structure queue that has fixed maximum size. Should a maximum size be adopted for a queue, then a circular buffer is a completely ideal implementation ...   more details



  1. Write buffer

    Unreferenced date December 2009 A write buffer is a type of data buffer . In a CPU cache , a write buffer can be used to hold data being written back from the cache computing cache to Computer data storage Primary storage main memory . This is a variation of write through caching called buffered write through . Use of a write buffer in this manner frees the cache to service read requests while the write is taking place. It is especially useful for very slow main memory in that subsequent reads are able to proceed without waiting for long main memory latency. When the write buffer is full i.e. all buffer entries are occupied , subsequent writes still have to wait until some slots are freed. To further mitigate this stall, one optimization called write buffer merge is proposed. Write buffer merge combines writes that have consecutive destination addresses into one buffer entry. Otherwise, they would occupy separate entries which increases the chance of pipeline stall. Sometimes the terminology victim buffer is also called write buffer. Victim buffer is a buffer that stores dirty evicted lines in write back caches note that write through caches don t write the evicted cache lines back before they get written back to the higher level memory. Besides reducing pipeline stall by not waiting for dirty lines to write back as the original write buffer does, victim buffer also serves as a temporary backup storage when subsequent cache accesses exhibit Locality of reference locality , requesting those recently evicted lines, which are still in the victim buffer. See also write combining DEFAULTSORT Write Buffer Category Computer memory Computer stub ...   more details



  1. Buffer credits

    Unreferenced date December 2009 Buffer credits , also called buffer to buffer credits BBC are used as a flow control method by Fibre Channel technology and represent the number of frames a port can store. Each time a port transmits a frame that port s BB Credit is decremented by one for each R RDY received, that port s BB Credit is incremented by one. If the BB Credit is zero the corresponding node cannot transmit until an R RDY is received back. The benefits of a large data buffer are particularly evident in long distance applications, when operating at higher data rates 2Gbit s, 4Gbit s , or in systems with a heavily loaded Peripheral Component Interconnect PCI bus. See also Fibre Channel Host adapter DEFAULTSORT Buffer Credits Category Fibre Channel de Buffer Credits ...   more details



  1. Buffer underrun

    of the buffer if an incoming data stream needs to be read at 1 bit per second, a buffer of 10 bits would ... can cause the data on the disc to become invalid. Since the buffer is generally being filled from a relatively ... screen will appear to hang until the buffer receives new data. Many video player programs e.g. ... Buffer Underrun Category Data transmission ca Subdesbordament de mem ria interm dia de Buffer Underrun ...unreferenced date December 2007 Wiktionary underrun In computing , buffer underrun or buffer underflow is a state occurring when a Buffer computer science buffer used to communicate between two devices or process computing processes is fed with data at a lower speed than the data is being read from it. This requires the program or device reading from the buffer to pause its processing while the buffer refills. This can cause undesired and sometimes serious side effects because the data being buffered ... should not be confused with buffer overflow , a condition where a portion of memory being used as a buffer has a fixed size but is filled with more than that amount of data. Whereas buffer overflows are usually the result of programming errors, and thus preventable, buffer underruns are often the result ... or device, which can be expensive. It assumes that the buffer starts full requiring a potentially ... the connection is currently blocked. If the data does not, on average, arrive faster than it is needed ... connection with a 60 bit buffer would lead to a buffer underrun if the connection remained active for an hour. In real time applications, a large buffer size also increases the latency between input ... recording issues Buffer underruns can cause serious problems during CD DVD burning , because once ... concurrent tasks can easily exhaust the capacity of a small buffer. Therefore, a technique called Optical disc recording technologies Buffer underrun protection buffer underrun protection was implemented ..., the laser is indeed able to stop writing for any amount of time and resume when the buffer ...   more details



  1. Buffer (GIS)

    Orphan date February 2009 A buffer in GIS is a zone around a map feature measured in units of distance or time. A buffer is useful for proximity analysis . ref Wade, T. and Sommer, S. eds. http store.esri.com esri showdetl.cfm?SID 2&Product ID 868&Category ID 49 A to Z GIS ref A buffer is an area defined by the bounding region determined by a set of points at a specified maximum distance from all nodes along segments of an object. See also Dilation morphology data buffer Buffer computing GIS References reflist Category Geographic information systems tech stub es Buffer GIS pl Bufor geoinformatyka sv Buffertzon ...   more details



  1. Pixel buffer

    Disputed date April 2011 Pixel buffer or pBuffer is an extension to OpenGL which allows to do off screen rendering. It expands upon Vertex Buffer Object Vertex Buffer Objects VBO in order to store not only vertex data but also pixel data into the buffer objects. The pBuffer has been deprecated and replaced by Framebuffer Object FBOs Framebuffer Objects . See also Framebuffer Object External links http www.songho.ca opengl gl pbo.html OpenGL Pixel Buffer Object PBO Category OpenGL compu prog stub ...   more details



  1. Stencil buffer

    the stencil buffer in other ways for example, it can be used to find the area of the screen obscured by a portal and re render those pixels correctly. The stencil buffer and its modifiers can be accessed ... Z buffering depth buffer Shadow volume a stencil buffer technique creating shadows DEFAULTSORT Stencil Buffer Category 3D computer graphics Compu graphics stub Link GA sr de Stencilbuffer hu Stencil buffer pl Bufor szablonowy sr zh ...   more details



  1. Gap buffer

    buffer where the gap is always at the end Zipper data structure , conceptually a generalization of the gap buffer. Linked list Circular buffer Rope computer science External links http www.codeproject.com ...unreferenced date April 2012 A gap buffer in computer science is a dynamic array that allows efficient insertion and deletion operations clustered near the same location. Gap buffers are especially common in text editor s, where most changes to the text occur at or near the current location of the cursor computers cursor . The text is stored in a large buffer in two contiguous segments, with a gap between them for inserting new text. Moving the cursor involves copying text from one side of the gap to the other sometimes copying is delayed until the next operation that changes the text . Insertion ... buffer is represented as two literal string s, which take very little extra space and which can be searched and displayed very quickly, compared to more sophisticated data structure s such as linked ... Below are some examples of operations with buffer gaps. The gap is represented pictorially by the empty ... a pointer without changing the text in the buffer. It is a common programming practice to use ... following the last character in the first buffer, and the end of gap points to the first valid character in the second buffer or equivalently, the pointers are considered to point between characters .... User moves the cursor before started system moves started from the first buffer to the second buffer ... Implementation of a cyclic sorted gap buffer in .NET C http history.dcs.ed.ac.uk archive apps ecce hmd e915.imp.html Use of gap buffer in early editor. First written somewhere between 1969 and 1971 http www.gnu.org software emacs elisp html node Buffer Gap.html emacs gap buffer info Emacs gap buffer reference http www.common lisp.net project flexichain download StrandhVilleneuveMoore.pdf Text Editing Category Arrays it Buffer gap ...   more details



  1. SSC buffer

    Multiple issues notability June 2008 context October 2009 In biochemistry and molecular biology , the saline sodium citrate SSC buffer is used as a hybridization buffer chemistry buffer , to control stringency for washing steps in protocols for Southern blotting , in situ hybridization , DNA Microarray or Northern blotting . 20X SSC may be used to prevent drying of agarose gel s during a vacuum transfer. A 20X stock solution consists of 3 molar concentration M sodium chloride and 300 milli m M trisodium citrate adjusted to pH 7.0 with hydrochloric acid HCl . See also Southern Blot Northern Blot DNA Microarray DNA Fingerprinting References http www.cellgro.com shop files documents 46 020.pdf Material safety data sheet for 20x SSC buffer, Mediatech, Inc. http www.le.ac.uk bl phh4 probuffer.htm Molecular Cytogenetics and biology Buffers, University of Leicester DEFAULTSORT Ssc Buffer Category Buffers biochem stub ...   more details



  1. Disk buffer

    buffer sits on the controller board of the hard drive. In computer storage , disk buffer often ambiguously Fact date September 2007 called disk cache or cache buffer Fact date September 2007 is the embedded memory in a hard drive acting as a buffer computer science buffer between the rest of the computer ... from the disk platter. The disk buffer is physically distinct from and is used differently ... buffer is controlled by the microcontroller in the hard disk drive , and the page cache is controlled by the computer to which that disk is attached. The disk buffer is usually quite small, from 8 to 64 Mebibyte MiB , and the page cache is generally all unused physical memory . While data in the page cache is reused multiple times, the data in the disk buffer is rarely reused. Fact date September 2007 In this sense, the terms disk cache and cache buffer are misnomers the embedded controller s memory is more appropriately called the disk buffer. Note that disk array controller s, as opposed ... system. The disk s embedded computer typically saves these unrequested sectors in the disk buffer ... the hard disk platter . The disk buffer is used so that both the I O interface and the disk read write ... the main computer that a disk write is complete immediately after receiving the write data, before the data are actually written to the platter. This early signal allows the main computer to continue working even though the data has not actually been written yet. This can be somewhat dangerous, because if power is lost before the data are permanently fixed in the magnetic media, the data will be lost from the disk buffer, and the file system on the disk may be left in an inconsistent state. On some disks, this vulnerable period between signaling the write complete and fixing the data can be arbitrarily ... a battery backed memory system for caching data &mdash although this is typically only found in high ... of data is deemed more important than write performance. Another option is to send data to disk in a carefully ...   more details



  1. Prefetch buffer

    unreferenced date January 2010 A prefetch buffer is a data buffer employed on modern dynamic random access memory DRAM chips that allows quick and easy access to multiple data word s located on a common physical row in the memory. The prefetch buffer takes advantage of the specific characteristics of memory accesses to DRAM. Typical DRAM memory operations involve three phases bitline precharge, row access, column access. Row access is the heart of a read operation, as it involves the careful sensing of the tiny signals in DRAM memory cells it is the slowest phase of memory operation. However, once a row is read, subsequent column accesses to that same row can be very quick, as the sense amplifiers also act as latches. For reference, a row of a 1 Gigabyte Gb DDR3 device is 2,048 bit s wide, so internally 2,048 bits are read into 2,048 separate sense amplifiers during the row access phase. Row ... frequency as the data bus. A prefetch buffer simplifies this process by allowing a single address request to result in multiple data words. In a prefetch buffer architecture, when a memory access occurs to a row the buffer grabs a set of adjacent datawords on the row and reads them out bursts them in rapid ... to make up the full 64 bits. A 4n prefetch buffer would accomplish this exactly n refers to the IO ... burst sequence . An 8n prefetch buffer on a 8 bit wide DRAM would also accomplish a 64 bit transfer. The prefetch buffer depth can also be thought of as the ratio between the core memory frequency and the IO ... provide correspondingly higher bandwidth. Each generation of SDRAM has a different prefetch buffer size DDR SDRAM s prefetch buffer size is 2n two datawords per memory access DDR2 SDRAM s prefetch buffer size is 4n four datawords per memory access DDR3 SDRAM s prefetch buffer size is 8n eight datawords ... with CPU improvements. In order to increase the bandwidth of memory modules the prefetch buffer reads data from multiple memory chips simultaneously. This is similar to a RAID array in the storage world ...   more details



  1. Buffer overflow

    with buffer overflows include C programming language C and C , which provide no built in protection against accessing or overwriting data in any part of memory and do not automatically check that data written to an array the built in buffer type is within the boundaries of that array. Bounds checking can prevent buffer overflows. Technical description A buffer overflow occurs when data written to a buffer, due to insufficient bounds checking , corrupts data values in memory address es adjacent to the allocated buffer. Most commonly this occurs when copying string computer science strings of character computing characters from one buffer to another. Basic example In the following example, a program has defined two data items which are adjacent in memory an 8 byte long string buffer ..., they do not check that data written to a buffer is within the boundaries of that buffer. However, the standard C libraries provide many ways of safely buffering data, and techniques to avoid buffer ... and impact of buffer overflows. The two main building block data types in these languages in which buffer overflows commonly occur are strings and arrays thus, libraries preventing buffer overflows in these data .... Regardless, this is not a complete solution to buffer overflows, as sensitive data other than ...In computer security and computer programming programming , a buffer overflow , or buffer overrun , is an anomaly in software anomaly where a computer program program , while writing data to a buffer computer science buffer , overruns the buffer s boundary and overwrites adjacent memory. This is a special case of violation of memory safety . Buffer overflows can be triggered by inputs that are designed ... in the A buffer. By failing to check the length of the string, it overwrites the value of B class ... other variable data item defined by the program, writing an even longer string that went past ... Stack buffer overflow stack based overflows Exploitation The techniques to exploit computer security ...   more details



  1. Optical buffer

    Unreferenced date November 2010 In telecommunications , an optical buffer is a device that is capable of temporarily storing light. Just as in the case of a regular buffer telecommunication buffer , it is a storage medium that enables compensation for a difference in time of occurrence of events. More specifically, an optical buffer serves to store data that was transmitted optically i.e., in the form of light , without converting it to the electrical domain. Optical networks Today, computer networks consist of optical fiber links, interconnected by electrical nodes. The data transport in the backbone is done in the form of light, typically from LED or laser . DWDM technologies enable bitrates well beyond 1 Tbit s. However, at the nodes, this light has to be converted to the electronic domain, in order to switch all data to their separate destinations. Due to rapidly increasing channel capacities, the switching capacity is becoming the bottleneck of the system. Currently, research activities focus on optical switching technologies, that involve fewer or no conversions from the optical to the electronic domain. An important problem however, is the buffering. Contention resolution Whenever two or more data packets arrive at a network node at the same time and contend for the same output, external blocking occurs. All packets but one are perceived as superfluous, and have to be dealt with. Next to the obvious choice of dropping all excess packets, academic literature typically presents ... buffer is made of optical fibers, and is generally much larger than a RAM chip of comparable capacity. A single fiber can serve as a buffer. However, a set of more than one is usually used. A possibility ... a single loop, in which the data circulates a variable number of times. Research Currently, research ... implementation of this buffer, and try to reduce the size by using slow light slow light http ... author s homepage . Category Fiber optic communications Buffer, optical ...   more details



  1. Shelving buffer

    Unreferenced date December 2009 Orphan date November 2006 A shelving buffer is a technique used in computer processors to increase the efficiency of superscalar processors. Background A Superscalar processor allows the execution of a number of instructions simultaneously in the core of the processor itself, although this behavior is not to be confused with a multi processor system. Most modern processors are superscalar. Problems with Data Dependencies Executing instructions in parallel i.e. simultaneously raises problems with data dependencies, meaning that some instructions may be dependent on the results of others, and hence care must be taken to execute in the correct order. Take for example these sequence of instructions r1 r2 r3 br r7 r1 r4 We have a RAW Read After Write data dependency here, meaning that we must wait for instruction 1 to finish before executing instruction 2, as we require the correct value of r1 register 1 . Hence these instruction cannot be executed simultaneously. How it works? With a superscalar processor, the instruction window of the processor fills up with a number of instructions known as the issue rate . Depending on the scheme that the superscalar processor uses to dispatch these instruction from the window to the execution core of the CPU, we may encounter problems if there is a dependency not unlike the one shown above. Consider an instruction window 3 instructions wide, containing i1, i2, i3 instructions 1,2 & 3 . Suppose that i2 is dependent on an instruction that has not yet finished executing, and we cannot execute it yet. Without the use of a shelving buffer, the superscalar processor will execute i1, wait until i2 can be executed and then execute i2 and i3 simultaneously. However with the use of a shelving buffer, the instruction window will be emptied into shelving buffers regardless of contents. The processor will then search ... simultaneously, and maximising throughput. DEFAULTSORT Shelving Buffer Category Parallel ...   more details



  1. TAPS (buffer)

    Chembox verifiedrevid 417421633 ImageFile TAPS.svg ImageSize ImageAlt IUPACName nowiki 3 1,3 dihydroxy 2 hydroxymethyl propan 2 yl amino propane 1 sulfonic acid nowiki OtherNames N Tris hydroxymethyl methyl 3 aminopropanesulfonic acid Section1 Chembox Identifiers CASNo 29915 38 6 PubChem 121591 SMILES Section2 Chembox Properties Formula C sub 7 sub H sub 17 sub NO sub 6 sub S MolarMass 243.28 g mol Appearance Density MeltingPt BoilingPt Solubility Section3 Chembox Hazards MainHazards FlashPt Autoignition TAPS is used to make buffer solution s. It has a acid dissociation constant pK sub a sub value of 8.44 I 0, 25 C . ref cite journal title Thermodynamic Quantities for the Ionization Reactions of Buffers last Goldberg first R. coauthors Kishore, N. Lennen, R. journal J. Phys. Chem. Ref. Data volume 31 pages 231 370 year 2002 url http www.nist.gov data PDFfiles jpcrd615.pdf doi 10.1063 1.1416902 ref It can be used to make buffer solutions in the pH pH range 7.7 9.1. References reflist Category Buffers fa ...   more details



  1. TAPSO (buffer)

    Chembox verifiedrevid 417421121 ImageFile TAPSO.svg ImageSize ImageAlt IUPACName nowiki 3 1,3 dihydroxy 2 hydroxymethyl propan 2 yl amino 2 hydroxypropane 1 sulfonic acid nowiki OtherNames 3 N Tris hydroxymethyl methylamino 2 hydroxypropanesulfonic acid Section1 Chembox Identifiers CASNo 68399 81 5 PubChem 109334 SMILES Section2 Chembox Properties Formula C sub 7 sub H sub 17 sub NO sub 7 sub S MolarMass 259.28 g mol Appearance Density MeltingPt BoilingPt Solubility Section3 Chembox Hazards MainHazards FlashPt Autoignition TAPSO is used to make buffer solution s. It has a acid dissociation constant pK sub a sub value of 7.635 I 0, 25 C . ref cite journal title Thermodynamic Quantities for the Ionization Reactions of Buffers last Goldberg first R. coauthors Kishore, N. Lennen, R. journal J. Phys. Chem. Ref. Data volume 31 pages 231 370 year 2002 url http www.nist.gov data PDFfiles jpcrd615.pdf doi 10.1063 1.1416902 ref It can be used to make buffer solutions in the pH pH range 7.0 8.2. References reflist Category Buffers fa ...   more details



  1. TES (buffer)

    Chembox verifiedrevid 449647051 ImageFile TES free acid.svg ImageSize ImageAlt IUPACName nowiki 2 1,3 dihydroxy 2 hydroxymethyl propan 2 yl amino ethanesulfonic acid nowiki OtherNames TES free acid Section1 Chembox Identifiers CASNo 7365 44 8 PubChem 81831 SMILES Section2 Chembox Properties Formula C sub 6 sub H sub 15 sub NO sub 6 sub S MolarMass 229.25 g mol Appearance Density MeltingPt BoilingPt Solubility Section3 Chembox Hazards MainHazards FlashPt Autoignition TES is used to make buffer solution s. It has a acid dissociation constant pK sub a sub value of 7.550 I 0, 25 C . ref cite journal title Thermodynamic Quantities for the Ionization Reactions of Buffers last Goldberg first R. coauthors Kishore, N. Lennen, R. journal J. Phys. Chem. Ref. Data volume 31 pages 231 370 year 2002 url http www.nist.gov data PDFfiles jpcrd615.pdf doi 10.1063 1.1416902 ref It is one of the Good s buffers and can be used to make buffer solutions in the pH pH range 6.8 8.2. References reflist Category Buffers fa ...   more details



  1. Screen buffer

    In computing , screen buffer is a part of computer memory used by a computer application for the representation of the content to be shown on the computer display . ref http books.google.com books?id XYQruTc6 44C&pg PA160&dq 22screen buffer 22&hl en v onepage&q 22screen 20buffer 22&f false ref The screen buffer may also be called the video buffer , the regeneration buffer , or regen buffer for short. ref http www.smartcomputing.com editorial dictionary detail.asp?searchtype 2&DicID 10421&RefType Dictionary&guid ref Screen buffers should be distinguished from video memory . To this end, the term off screen buffer is also used. See also Framebuffer References reflist Compu storage stub Category User interfaces Category Computer memory ...   more details



  1. Buffer gas

    A buffer gas is an inert or nonflammable gas . In the Earth s atmosphere , nitrogen acts as a buffer gas. A buffer gas adds pressure to a system and controls the speed of combustion with any oxygen present. Any inert gas such as helium , neon , or argon will serve as a buffer gas. Uses Buffer gases are commonly used in many applications from gas discharge lamp high pressure discharge lamps to reduce line width of microwave transitions in alkali alkali atoms . A buffer gas usually consists of atomically ... , and xenon are also used, primarily for lighting. In most scenarios, buffer gases are used in conjunction ... light is emitted. Krypton is the buffer gas used in conjunction with the mercury which is used to moderate ... noble gas es as buffer gases. Image Diagram of how buffer gas works.JPG right Buffer gas loading ... cold temperatures. The buffer gas most commonly used in this sort of application is helium. Buffer ... multiple collisions with low energy helium atoms, which most molecules are capable of doing. Buffer ... buffer gas inside a chamber see Figure a . If there are enough collisions between the buffer ..., the buffer gas will sufficiently cool the atoms. Of the two isotopes of helium sup 3 sup He and sup ... higher vapor pressures and buffer gas density at sub kelvin temperatures. Unsourced image removed Image chem119.jpg right Buffer gases are also commonly used in Gas compressor compressors used in power plants for supplying gas to gas turbines . The buffer gas fills the spaces between seal mechanical ... . In this case the buffer gas acts in a way much like oil does in an automotive engine s Bearing mechanical bearings . External links http pra.aps.org abstract PRA v66 i3 e030702 Buffer Gas Cooling http ares.ame.arizona.edu publications cospar 98.pdf Buffer Gas on Mars http www.physics.harvard.edu Thesespdfs Egorov.pdf search buffer 20gas Buffer Gas Cooling of Diatomic Molecules http tf.nist.gov ofm smallclock buffergas.htm Buffer Gas on Microwave Transition Category Gases ...   more details



  1. Lysis buffer

    Unreferenced stub auto yes date December 2009 A lysis buffer is a buffer solution used for the purpose of lysis lysing cells for use in molecular biology experiments that analyze the compounds of the cells e.g. western blot . There are many different kind of lysis buffer that one can apply, depending on what analysis the cell lysate will be used for e.g. red blood cell lysis buffer. Generally, lysis buffers contain tris HCl , EDTA , EGTA chemical EGTA , Sodium dodecyl sulfate SDS , deoxycholate , Triton X 100 tritonX and or NP 40 . In some cases the buffer may also contain NaCl 150 mM . In studies like DNA fingerprinting the lysis buffer is used for DNA isolation. Dish soap can be used in a pinch to break down the cell and nuclear membranes, allowing the DNA to be released. Other such lysis buffers include the proprietary Qiagen product Buffer P2 . DEFAULTSORT Lysis Buffer Category Laboratory techniques Category Cell biology Category DNA Biology stub ...   more details



  1. TE buffer

    TE buffer is a commonly used buffer solution in molecular biology , especially in procedures involving DNA or RNA . TE is derived from its components Tris , a common pH buffer, and EDTA , a molecule that chelation chelates cations like Magnesium in biological systems Mg sup 2 sup . The purpose of TE buffer is to solubilize DNA or RNA, while protecting it from degradation. Recipe A typical recipe for making 1X TE buffer is 10 mM Tris , bring to pH 8.0 with HCl 1 mM EDTA TE buffer is also called as T sub 10 sub E sub 1 sub Buffer, and read as T ten E one buffer . To make a 100 ml solution of T sub 10 sub E sub 1 sub Buffer, 1 ml of 1 M Tris HCl pH 8.0 and 0.2 ml EDTA 0.5 M and make up with double distilled water up to 100ml. Based on nuclease studies from the 1980 s, the pH is usually adjusted to 7.5 for RNA and 8.0 for DNA . Citation needed date September 2011 The respective DNA and RNA nucleases are supposed to be less active at these pH values, but pH 8.0 can safely be used for storage of both DNA and RNA. EDTA further inactivates nucleases , by binding to metal cations required by these enzymes. Genomic and plasmid DNA can be stored in TE Buffer at 4 C 39.2 F for short term use, or 20 C 4 F to 80 C 112 F for long term storage. Repeated freeze thaw cycles should be avoided. ref cite journal last Ross coauthors Haites, Kelly title Repeated freezing and thawing of peripheral blood and DNA in suspension effects on DNA yield and integrity journal Journal of Medical Genetics year 1990 volume 27 issue 9 pages 569 570 doi 10.1136 url http jmg.bmj.com content 27 9 569.short ref References references External links cite web title OpenWetWare TE buffer url http openwetware.org wiki TE buffer accessdate July 2, 2006 Category Buffers biochemistry stub ...   more details



  1. Keyboard buffer

    Unreferenced date December 2009 A keyboard buffer is a section of computer computer storage memory used to hold keystrokes before they are processed. Computer keyboard Keyboard buffers have long been used in command line interface command line processing. As a user enters a command, they see it Echo computing echoed on their computer display terminal and can edit it before it is processed by the computer. In time sharing systems, the location of the buffer depends on whether communications is full Duplex telecommunications duplex or half duplex. In full duplex systems, keystrokes are transmitted one by one. As the main computer receives each keystroke, it ordinarily appends the character which it represents to the end of the keyboard buffer. The exception is control character s, such as delete or backspace which correct typing mistakes by deleting the character at the end of the buffer. In half duplex systems, keystrokes are echoed locally on a computer terminal . The user can see the command line on his terminal and edit it before it is transmitted to the main computer. Thus the buffer is local. On some systems, by pressing too many keys at once, the keyboard buffer overflows and will emit a beep from the computer s internal speaker. DEFAULTSORT Keyboard Buffer Category Computer keyboards Category Computer memory de Tastaturpuffer kk pl Bufor klawiatury ...   more details




Articles 1 - 25 of 208606          Next


Search   in  
Search for Data buffer in Tutorials
Search for Data buffer in Encyclopedia
Search for Data buffer in Videos
Search for Data buffer in Books
Search for Data buffer in Software
Search for Data buffer in DVDs
Search for Data buffer in Store


Advertisement




Data buffer in Encyclopedia
Data buffer top Data buffer

Home - Add TutorGig to Your Site - Disclaimer

©2011-2013 TutorGig.info All Rights Reserved. Privacy Statement