Engineer-to-Engineer Note

Size: px
Start display at page:

Download "Engineer-to-Engineer Note"

Transcription

1 Engineer-to-Engineer Note EE-220 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our on-line resources nd Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port Contributed by Brin M., Divy S. nd Mtt W. Rev 2 Mrch 8, 2005 Introduction The ddressing functionlity of the Prllel Port on the third genertion SHARC fmily of processors hs chnged gretly when compred to the other SHARC fmily DSPs tht hve n Externl Port. This EE-Note describes externl memory ddressing nd how to use the VisulDSP++ development tools to hndle ddress trnsltion nd dt reorgniztion vi the LDF PACKING commnd. A mcro tht helps the Symbol Mnger convert logicl nd physicl ddresses is lso explined. This EE-Note pplies to the following processors: ADSP ADSP ADSP ADSP ADSP ADSP ADSP ADSP ADSP Externl Memory Addressing One significnt difference between the Prllel Port nd the previous Externl Port is tht the Prllel Port no longer ccepts logicl ddresses from the core, insted requiring the physicl word ddress to be supplied to the DMA engine. This chnge requires specil considertions by softwre developers wishing to use externl memory with Prllel Port. Previous SHARC DSPs hve lwys ccessed the externl memory using logicl (32-bit) ddressing (i.e., ech externl ddress in the memory mp corresponds to exctly one complete word of dt). The trnsltion of ech logicl ddress into the four corresponding physicl ddresses is hndled trnsprently by the hrdwre of the port. For exmple, if 32-bit word is fetched from n externl byte-wide device, the core only needs to specify the single 32-bit logicl ddress; then, the Externl Port utomticlly clcultes the four physicl ddresses nd performs the four fetches needed to cquire the entire 32-bit word. In contrst, the Prllel Port does not hve the ddress trnsltion built-in, lthough it will still perform the dt pcking (e.g., building 32-bit word from four 8-bit words). The Prllel Port opertes on physicl ddresses only. Note tht ech externl ddress in the memory mp does not correspond to complete word of dt. Insted, ech logicl (32-bit) word of dt consumes multiple ddresses in the externl rnge of the memory mp. To illustrte this fct, compre the hndling of two consecutive 32-bit fetches on ADSP SHARC processor versus the sme trnsction on n ADSP SHARC processor. Tble 1 shows the corresponding physicl ddresses generted by the Externl Port bsed on the logicl ddresses from which dt is fetched. (Agin, this ssumes 32/8 bit pcking). Note tht Copyright 2005, Anlog Devices, Inc. All rights reserved. Anlog Devices ssumes no responsibility for customer product design or the use or ppliction of customers products or for ny infringements of ptents or rights of others which my result from Anlog Devices ssistnce. All trdemrks nd logos re property of their respective holders. Informtion furnished by Anlog Devices Applictions nd Development Tools Engineers is believed to be ccurte nd relible, however no responsibility is ssumed by Anlog Devices regrding technicl ccurcy nd topiclity of the content provided in Anlog Devices Engineer-to-Engineer Notes.

2 consecutive logicl ddresses correspond to seprte words externlly. Logicl Address Physicl (Byte) Address Dt 0x x Word0 Byte1 0x x x Word0 Byte2 Word0 Byte3 Word0 Byte4 0x x Word1 Byte1 0x x x Word1 Byte2 Word1 Byte3 Word1 Byte4 0x x Word256 Byte1 0x Word256 Byte2 Tble 1. ADSP logicl-to-physicl Address Trnsltion by the Externl Port. Tble 2 highlights the difference in opertion on the Prllel Port nd illustrtes the lck of ddress trnsltion between the logicl (32-bit) ddress nd the physicl (8-bit in this cse) ddress. Logicl Address Physicl (Byte) Address Dt 0x x Word0 Byte1 0x x x Word0 Byte2 Word0 Byte3 Word0 Byte4 0x x Word0 Byte2 0x x x Word0 Byte3 Word0 Byte4 Word1 Byte1 0x x Word32 Byte1 0x Word32 Byte2 Tble 2. ADSP-21262/ADSP Logicl to Physicl ddress mpping (not comptible with previous SHARC ddressing schemes). Fetching from consecutive logicl ddresses does not properly ccess unique dt in externl memory. The rest of this EE-Note describes how to del with this new functionlity in softwre. The second chnge from previous SHARC DSPs is tht it is necessry to lwys use the Externl Index register (EIPP) to ccess externl memory; there is no direct core ccess to externl memory vi the Dt Address Genertors. The ddress in the EIPP register is supplied directly to the AD pins in the ddress cycle. (This buffered-ccess rchitecture effectively decouples the core from the Prllel Port, enbling the core clock speed to be doubled. It lso uses fewer pins, significntly reducing both DSP nd system cost.) Orgnizing Dt for plcement in Externl Memory using the LDF The first problem tht the new Prllel Port introduces is tht it uses physicl word ddress, rther thn logicl word ddress. Becuse of this, it is necessry to perform ddress trnsltion nd dt reorgniztion in softwre. In VisulDSP++, the LDF must include the PACKING() commnd, enbling the linker to generte ddresses tht the Prllel Port cn use. Listings 1 nd 2 provide exmple pcking commnds for vriety of possible cses when pcking into 8-bit memory nd 16-bit memory, respectively. The only cse where PACKING() commnd would not be required is when initilizing 16-bit externl memory with 16-bit dt. In this one cse, it so hppens tht the logicl ddresses directly mtch the physicl ddresses, so no trnsltion/pcking is needed. The PACKING() commnd directs the linker to reformt the dt s it is plced into the DXE. For memory section of TYPE(DM RAM), ech memory ddress holds five bytes in the DXE (regrdless of whether the dt is 40-, 32-, or 16- bit logicl dt). For TYPE(PM RAM) section, ech ddress corresponds to six bytes (regrdless of whether the dt is 48-, 40-, 32-, or 16-bit logicl dt). Before ech word of dt is ssigned n ddress by the linker, the PACKING() commnd reorgnizes the order of the bytes in Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 2 of 11

3 the DXE, nd cn dd null bytes to the DXE, if needed. The loder nd debugging tools (simultor nd emultor) expect the externl memory sections DXE to be in certin formt to initilize externl memory correctly. For exmple, when DM (5-byte) word is mpped into n ddress in memory segment tht is WIDTH(8), only the dt in the fourth most significnt byte is plced t tht externl ddress. Similrly, for DM (5-byte) words mpped to memory segment tht is WIDTH(16), only the dt in the third nd fourth most significnt bytes re plced into the externl ddress. (See Listings 1 nd 2 for exmples.) This mens tht if 32-bit dt is mpped into externl 8-bit memory, 3 bytes of dt re uninitilized. To remedy this, trnslte the 32-bit word into four words, plcing the vlid dt into the 4 th most significnt byte of ech new word, s shown in Tble 3. (Refer to the Prllel Port chpter of ADSP-2126x SHARC DSP Peripherls Mnul [1] for informtion bout how dt is pcked in externl memory.) The DSP s internl memory is orgnized s four 16-bit-wide by 64K-deep columns which re ddressble s vriety of word sizes: 64-bit long word dt (four columns) 48-bit instruction words or 40-bit extendedprecision norml word dt (3 columns) 32-bit norml word dt (2 columns) 16-bit short word dt (1 column) The four-columned memory rchitecture of the third genertion SHARC fmily llows ech loction in internl memory to be ccessed in ny of the bove formts, depending on the ddress used. However, every ccess to the Prllel Port is 32-bits (ccesses re to 32-bit norml word spce, nd counted in number of 32-bit words). Externl Width Corresponding Address DM Pcked for Externl Memory PM Pcked for Externl Memory 32-bit Word Trnsferred by the Processor WIDTH(8) 0x x x x x x x x x x x x x WIDTH(16) 0x x x x x x x Tble 3. Pcking in the DXE file for externl memory. When trnsferring words tht re not 32-bits long, the Externl Count register must contin whole number of 32-bit words (i.e. it must be multiple of four). If it is not, the reminder bytes re not trnsferred s expected. It is lso necessry to trnslte the internl ddress to 32- bit word spce. Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 3 of 11

4 48-bit Address Trnsltion The following exmple trnsltes the 48-bit ddress 0x82694 to its 32-bit equivlent. Trnslting from 16- or 64-bit spce to 32-bit spce is s simple s shifting the entire ddress by one bit (left-shift for 16-bit ddresses, nd right-shift for 64-bit ddresses). For 40/48-bit ddresses, which lso use the norml word spce ddresses, 48-bit ddresses re offset from the bse ddress (0x80000 or 0xC0000) by twothirds of the offset of the 32-bit word. Word spce msk = 0x80000 or 0xC0000 (0x80000 in this cse) First remove the word spce msk. 48-bit Offset = 0x x80000 = 0x2694 Then multiply the offset by 3/2. 32-bit Offset = 0x2694 * 3/2 = 0x39DE Finlly, reinsert the word spce msk. 32-bit equivlent ddress = 0x839DE When trnslting from 48-bit to 32-bit ddress, only even 48-bit ddress trnsltions re vlid. Odd 48-bit ddresses fll in the middle of 32- bit word, nd cnnot be ccessed properly. See the ADSP-2126x or ADSP-2136x Core Mnul for more informtion. Opertion of the Prllel Port DMA Count (ECPP, ICPP) Registers The Prllel Port trnsfers dt between internl nd externl memory using the DMA controller. As ech trnsfer occurs, the DMA controller first decrements the count register vlues (ECPP nd ICPP), performs the requested trnsfer, then checks the left over count. The trnsfers continue to tke plce until the count registers decrement to zero (ECPP ICPP=0). At this point, the Prllel Port will stop trnsferring dt, but both the Prllel Port nd its DMA will remin enbled until explicitly disbled by the user. Due to the bove mentioned sequence of events by the DMA controller, problem rises when enbling DMA with count registers set to zero. With the count registers vlue set to zero, enbling DMA decrements ICPP to 0xFFFF nd ECPP to 0xFFFF nd check is mde on these vlues which llows 64 K 32-bit trnsfers. Therefore, it is undvisble to enble DMA with ECPP or ICPP=0; This behvior does not pply to core-driven ccesses, since the count register is ignored by the Prllel Port. (Core driven ccesses re hrdwired to operte single 32-bit word trnsfers, regrdless of the vlue of the count register. Multiple trnsfers in core driven mode re bsed on loops rther thn the vlue of count register. ) Using the Emultor to View the Contents of Externl Memory VisulDSP++ includes support for viewing the contents of externl memory. By chnging the ddress to the loction of your externl memory, the Externl Byte Memory window cn be used for 8-bit externl memory, nd the Short Word Memory window for 16-bit externl memory is used. (In the Short word memory window ech ddress represents 16-bit dt word wheres in Externl Byte Memory ech ddress vlue points to n 8-bit dt word.) Figure 1. Exmple Externl Byte Memory Window t n Externl Address. Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 4 of 11

5 Figure 1 shows n exmple of the Externl Byte memory window displying n externl ddress, nd Figure 2 shows the sme for Short Word memory window. Figure 2. Exmple Short Word Memory Window t n Externl Address. Since there is no direct core ccess to the externl memory, the emultor must the Prllel Port to disply the contents of externl memory. This my hve n impct on settings from softwre tht exist when the window is opened or updted. To populte the memory windows, the emultor uses the Prllel Port in core driven mode. For core driven ccess the externl DMA prmeter registers (EIPP, ECPP, EMPP) of the prllel port provide n interfce to externl memory. Therefore, populting the vlues in memory window consists of three steps: 1. The emultor stores the current stte of prllel port prmeter (EIPP, ECPP, EMPP) nd control (PPCTL) registers tht will be chnged during the popultion process. 2. The emultor enbles the prllel port in core driven mode for receiving dt nd reds enough dt to populte the entire window. 3. The prllel port is disbled gin nd then the stored vlues of the prllel port prmeter nd then control registers re restored. Since the emultor uses the prllel port to disply the externl memory vlues, it is dvisble to view externl ddress vlues in memory window only fter the prllel port ccesses re completely executed nd the Prllel Port hs been disbled. Even though the count is zero, if the PPDEN nd PPEN bits in PPCTL re set, there is possibility of dt corruption fter the emultor reds the contents of the memory s described in the Opertion of the Prllel Port DMA Count Registers. When the Emultor restores the vlues of the ECPP nd PPCTL registers under these conditions (ECPP=0 nd PPDEN nd PPEN re set), the Prllel Port will begin n undesired DMA opertion which will overwrite vlues in either internl or externl memory depending upon the vlue of the PPTRAN bit. The only wy to void possible dt corruption is to ensure tht PPDEN is not set before you view the contents of externl memory in window in VisulDSP++. Strting from VisulDSP++ 4.0, we hve dded check for this condition to void the corruption of vlues in the externl memory. To void this issue, the emultor will utomticlly disble the PPDEN bit nd provide wrning tht the setting of the PPCTL register hs been chnged. Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 5 of 11

6 8-bit Externl Memory Exmples MEMORY seg_ext8 TYPE(DM RAM) WIDTH(8) START(0x ) LENGTH(0x3FFF) seg_extpm8 TYPE(PM RAM) WIDTH(8) START(0x ) LENGTH(0x3FFF) PROCESSOR p0 LINK_AGAINST( $COMMAND_LINE_LINK_AGAINST) OUTPUT( $COMMAND_LINE_OUTPUT_FILE ) SECTIONS seg_ext40into8 INPUT_SECTIONS( $OBJECTS(seg_ext40into8)) PACKING(5 B0 B0 B0 B5 B0 B0 B0 B0 B4 B0 B0 B0 B0 B3 B0 B0 B0 B0 B2 B0 B0 B0 B0 B1 B0) > seg_ext8 seg_ext32into8 INPUT_SECTIONS( $OBJECTS(seg_ext32into8)) PACKING(5 B0 B0 B0 B4 B0 B0 B0 B0 B3 B0 B0 B0 B0 B2 B0 B0 B0 B0 B1 B0) > seg_ext8 seg_ext16into8 INPUT_SECTIONS( $OBJECTS(seg_ext16into8)) PACKING(5 B0 B0 B0 B2 B0 B0 B0 B0 B1 B0) > seg_ext8 seg_extpm8 INPUT_SECTIONS( $OBJECTS(seg_extpm8)) PACKING (6 B0 B0 B0 B6 B0 B0 B0 B0 B0 B5 B0 B0 B0 B0 B0 B4 B0 B0 B0 B0 B0 B3 B0 B0 B0 B0 B0 B2 B0 B0 B0 B0 B0 B1 B0 B0) > seg_extpm8 Listing 1. Pcking Exmples for 8-bit Externl Memory Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 6 of 11

7 16-bit Externl Memory Exmples MEMORY seg_ext16 TYPE(DM RAM) WIDTH(16) START(0x ) LENGTH(0x3FFF) seg_extpm16 TYPE(PM RAM) WIDTH(16) START(0x ) LENGTH(0x3FFF) PROCESSOR p0 LINK_AGAINST( $COMMAND_LINE_LINK_AGAINST) OUTPUT( $COMMAND_LINE_OUTPUT_FILE ) SECTIONS seg_ext40into16 INPUT_SECTIONS( $OBJECTS(seg_ext40into16)) PACKING(5 B0 B0 B5 B0 B0 B0 B0 B3 B4 B0 B0 B0 B1 B2 B0) > seg_ext16 seg_ext32into16 INPUT_SECTIONS( $OBJECTS(seg_ext32into16)) PACKING(5 B0 B0 B3 B4 B0 B0 B0 B1 B2 B0) > seg_ext16 seg_ext16into16 INPUT_SECTIONS( $OBJECTS(seg_ext16into16)) > seg_ext16 seg_extpm16 INPUT_SECTIONS( $OBJECTS(seg_extpm16)) PACKING (6 B0 B0 B0 B5 B6 B0 B0 B0 B0 B3 B4 B0 B0 B0 B0 B1 B2 B0) > seg_extpm8 Listing 2. Pcking Exmples for 16-bit Externl Memory Symbols in Externl Memory The Symbol Mnger in VisulDSP++ supports the use of logicl ddresses only. Therefore, ny symbol tht resides in externl memory, except for the first in declred memory section, will be incorrect by vlue dependent upon the width of the externl memory nd the ddress decoder setup. As explined bove, the Prllel Port uses physicl ddresses. The difference between the logicl nd physicl ddress depends on memory type used (PM or DM), the width of the externl memory (8- or 16-bits), nd the pcking. Since this difference is predictble, it is possible to use preprocessor mcro to obtin the correct ddress. (Declring seprte memory section in the LDF for ech externl buffer would lso void this problem, since ech buffer would be Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 7 of 11

8 the first in its declred memory section. Becuse this method requires pre-build knowledge of the desired externl buffers nd hrd coding the sizes into the LDF, it my be undesirble.) The pcking commnds in Listings 1 nd 2 clerly shows the reltionship between the logicl nd physicl ddress. Ech pcking commnd represents one logicl word, nd ech line within the pcking commnd represents one physicl ddress. In the exmples in Listings 3 nd 4, one 32-bit logicl word is pcked into four 8-bit physicl words. If two contiguous symbols re declred, the second symbol will overlp with the first by 3 bytes (e.g., if the first resides physiclly t 0x nd the second t 0x , the logicl ddresses stored by the Symbol Mnger will be 0x nd 0x , respectively). If these symbols re used s presented by the Symbol Mnger, ccess to the second word would begin t the second byte of the first word nd end with the first byte of the second word. If third 32-bit word is lso declred, ccess to this word would begin t the third byte of the first word nd end with the second byte of the second word. Therefore, simple mcro is necessry to correct the inccurcy of the Symbol Mnger (see the EXTERNAL_ADDRESS() mcro in Listing 3). Address Trnsltion Mcro Use Exmple //Width of Externl Memory to be ccessed (either 8 or 16 bits) #define EXTERNAL_MEMORY_WIDTH 8 //Msk for ddress bits used by the ddress decoder #define DECODER_MASK 0xFFFFFC00 //Msk for ddress bits used on the memory chip #define ADDRESS_MASK 0x000003FF //Define mcro to perform the clcultion #define EXTERNAL_ADDRESS(ADDR) ((ADDR & DECODER_MASK) \ ((ADDR & ADDRESS_MASK)*(32 / EXTERNAL_MEMORY_WIDTH))) #include <def21262.h>.section/dm seg_dm32;.vr ext8holder[5]; // ****************************************************************** // Externl.section/dm seg_ext8;.vr ext8zeros[95];.vr ext8[5] = 0xE , 0xE , 0xE , 0xE , 0xE ; // ******************************************************************.globl _min; //Min code section.section/pm seg_pmco; _min: //Enble the Prllel Port interrupt. bit set lirptl PPIMSK; bit set mode1 IRPTEN; Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 8 of 11

9 //Red in the Externl DM sections on vrible t time r4=0; dm(ppctl)=r4; r0=ext8holder; dm(iipp)=r0; r0=1; dm(impp)=r0; dm(empp)=r0; r0=@ext8holder; dm(icpp)=r0; /*Clculte the correct loction of the externl buffer (The symbol mnger does not correctly clculte externl loctions) r0=(ext8&0xfffffc00) ((0x3FF&ext8)*4); dm(eipp)=r0; So use the Externl Address Mcro. */ r0=external_address(ext8); dm(eipp)=r0; //Externl Count is 4x the internl count r0=@ext8*4; dm(ecpp)=r0; //Enble the Prllel Port ustt1= PPBHC PPDUR4 PPEN PPDEN; dm(ppctl)=ustt1; nop; idle; r0=0; dm(ppctl)=r0; r0=ext8zerosholder; dm(iipp)=r0; r0=1; dm(impp)=r0; dm(empp)=r0; r0=@ext8zerosholder; dm(icpp)=r0; /*Use the externl ddress mcro gin.*/ r0=external_address(ext8zeros); dm(eipp)=r0; //Externl Count is 4x the internl count r0=@ext8zeros*4; dm(ecpp)=r0; //Enble the Prllel Port ustt1= PPBHC PPDUR4 PPEN PPDEN; dm(ppctl)=ustt1; nop; idle; _min.end: jump(pc,0); Listing 3. Using the Address Trnsltion Mcro Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 9 of 11

10 Memory Lyout for Listing 3 MEMORY seg_rth TYPE(PM RAM) START(0x ) END(0x000800ff) WIDTH(48) seg_pmco TYPE(PM RAM) START(0x ) END(0x000803ff) WIDTH(48) seg_dm32 TYPE(DM RAM) START(0x000c0400) END(0x000c2fff) WIDTH(32) seg_ext8 TYPE(DM RAM) WIDTH(8) START(0x ) LENGTH(0x3FF) PROCESSOR p0 LINK_AGAINST( $COMMAND_LINE_LINK_AGAINST) OUTPUT( $COMMAND_LINE_OUTPUT_FILE ) SECTIONS seg_rth INPUT_SECTIONS( $OBJECTS(seg_rth)) >seg_rth seg_pmco INPUT_SECTIONS( $OBJECTS(seg_pmco)) >seg_pmco seg_dm32 INPUT_SECTIONS( $OBJECTS(seg_dm32)) > seg_dm32 seg_ext8 INPUT_SECTIONS( $OBJECTS(seg_ext8)) PACKING(5 B0 B0 B0 B4 B0 B0 B0 B0 B3 B0 B0 B0 B0 B2 B0 B0 B0 B0 B1 B0) > seg_ext8 Listing 4. LDF Memory Section for Exmple in Listing 3 Listing 3 shows the EXTERNAL_ADDRESS() mcro s it pplies to the ADSP EZ-KIT Lite development bord. It is not sufficient to simply multiply the vlue of the symbol by the rtio of logicl to physicl words. Msk off the rnge tht is used by the ddress decoder before the clcultion, nd OR it bck in fter the lower bits hve been trnsformed. For this exmple, the ddress decoder rnge consists of the upper 3 ddress bits tht re physiclly connected to the ddress decoder on the ADSP EZ-KIT Lite nd the ddress rnge tht memory sections defined in the LDF hve in common. The vlues of the msks in the EXTERNAL_ADDRESS() mcro chnge, depending upon the specific memory lyout in use. Using the EXTERNAL_ADDRESS() Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge10 of 11

11 mcro does not ffect the performnce of the DSP, s the clcultions re performed t buildtime by the preprocessor. Conclusion When using the Prllel Port of the third genertion SHARC fmily, specil considertions must be mde regrding externl ddresses. The mcro provided in this document llows the symbols provided in VisulDSP++ to be useful when developing code tht uses externl memory. Plese review the VisulDSP++ documenttion for more informtion on the linker, PACKING commnd, nd the preprocessor. See ADSP-2126x SHARC DSP Peripherls Mnul [1] for more informtion on using the Prllel Port. References [1] ADSP-2126x SHARC DSP Peripherls Mnul. Revision 2.0, Jnury Anlog Devices, Inc. [2] VisulDSP Linker nd Utilities Mnul for SHARC DSPs. Fourth Revision, Jnury Anlog Devices, Inc. Document History Version Rev 2 Mrch 8, 2005 by Brin M. nd Divy S. Rev 1 Jnury 12, 2004 by Brin M. Description Added relevnt ADSP-2136x processors to discussion. Added Externl Memory Window section. Initil Relese Using Externl Memory with Third Genertion SHARC Processors nd the Prllel Port (EE-220) Pge 11 of 11

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-280 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-265 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-56 Technicl notes on using Anlog Devices DSPs, processors nd development tools Visit our Web resources http://www.nlog.com/ee-notes nd http://www.nlog.com/processors or e-mil

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-234 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our

More information

ClearPeaks Customer Care Guide. Business as Usual (BaU) Services Peace of mind for your BI Investment

ClearPeaks Customer Care Guide. Business as Usual (BaU) Services Peace of mind for your BI Investment ClerPeks Customer Cre Guide Business s Usul (BU) Services Pece of mind for your BI Investment ClerPeks Customer Cre Business s Usul Services Tble of Contents 1. Overview...3 Benefits of Choosing ClerPeks

More information

Quick Reference Guide: One-time Account Update

Quick Reference Guide: One-time Account Update Quick Reference Guide: One-time Account Updte How to complete The Quick Reference Guide shows wht existing SingPss users need to do when logging in to the enhnced SingPss service for the first time. 1)

More information

Data replication in mobile computing

Data replication in mobile computing Technicl Report, My 2010 Dt repliction in mobile computing Bchelor s Thesis in Electricl Engineering Rodrigo Christovm Pmplon HALMSTAD UNIVERSITY, IDE SCHOOL OF INFORMATION SCIENCE, COMPUTER AND ELECTRICAL

More information

EasyMP Network Projection Operation Guide

EasyMP Network Projection Operation Guide EsyMP Network Projection Opertion Guide Contents 2 About EsyMP Network Projection Functions of EsyMP Network Projection... 5 Vrious Screen Trnsfer Functions... 5 Instlling the Softwre... 6 Softwre Requirements...6

More information

AntiSpyware Enterprise Module 8.5

AntiSpyware Enterprise Module 8.5 AntiSpywre Enterprise Module 8.5 Product Guide Aout the AntiSpywre Enterprise Module The McAfee AntiSpywre Enterprise Module 8.5 is n dd-on to the VirusScn Enterprise 8.5i product tht extends its ility

More information

Use Geometry Expressions to create a more complex locus of points. Find evidence for equivalence using Geometry Expressions.

Use Geometry Expressions to create a more complex locus of points. Find evidence for equivalence using Geometry Expressions. Lerning Objectives Loci nd Conics Lesson 3: The Ellipse Level: Preclculus Time required: 120 minutes In this lesson, students will generlize their knowledge of the circle to the ellipse. The prmetric nd

More information

Binary Representation of Numbers Autar Kaw

Binary Representation of Numbers Autar Kaw Binry Representtion of Numbers Autr Kw After reding this chpter, you should be ble to: 1. convert bse- rel number to its binry representtion,. convert binry number to n equivlent bse- number. In everydy

More information

Graphs on Logarithmic and Semilogarithmic Paper

Graphs on Logarithmic and Semilogarithmic Paper 0CH_PHClter_TMSETE_ 3//00 :3 PM Pge Grphs on Logrithmic nd Semilogrithmic Pper OBJECTIVES When ou hve completed this chpter, ou should be ble to: Mke grphs on logrithmic nd semilogrithmic pper. Grph empiricl

More information

Experiment 6: Friction

Experiment 6: Friction Experiment 6: Friction In previous lbs we studied Newton s lws in n idel setting, tht is, one where friction nd ir resistnce were ignored. However, from our everydy experience with motion, we know tht

More information

Mathematics. Vectors. hsn.uk.net. Higher. Contents. Vectors 128 HSN23100

Mathematics. Vectors. hsn.uk.net. Higher. Contents. Vectors 128 HSN23100 hsn.uk.net Higher Mthemtics UNIT 3 OUTCOME 1 Vectors Contents Vectors 18 1 Vectors nd Sclrs 18 Components 18 3 Mgnitude 130 4 Equl Vectors 131 5 Addition nd Subtrction of Vectors 13 6 Multipliction by

More information

trademark and symbol guidelines FOR CORPORATE STATIONARY APPLICATIONS reviewed 01.02.2007

trademark and symbol guidelines FOR CORPORATE STATIONARY APPLICATIONS reviewed 01.02.2007 trdemrk nd symbol guidelines trdemrk guidelines The trdemrk Cn be plced in either of the two usul configurtions but horizontl usge is preferble. Wherever possible the trdemrk should be plced on blck bckground.

More information

Network Configuration Independence Mechanism

Network Configuration Independence Mechanism 3GPP TSG SA WG3 Security S3#19 S3-010323 3-6 July, 2001 Newbury, UK Source: Title: Document for: AT&T Wireless Network Configurtion Independence Mechnism Approvl 1 Introduction During the lst S3 meeting

More information

Lecture 3 Gaussian Probability Distribution

Lecture 3 Gaussian Probability Distribution Lecture 3 Gussin Probbility Distribution Introduction l Gussin probbility distribution is perhps the most used distribution in ll of science. u lso clled bell shped curve or norml distribution l Unlike

More information

9.3. The Scalar Product. Introduction. Prerequisites. Learning Outcomes

9.3. The Scalar Product. Introduction. Prerequisites. Learning Outcomes The Sclr Product 9.3 Introduction There re two kinds of multipliction involving vectors. The first is known s the sclr product or dot product. This is so-clled becuse when the sclr product of two vectors

More information

Application Bundles & Data Plans

Application Bundles & Data Plans Appliction Appliction Bundles & Dt Plns We ve got plns for you. Trnsporttion compnies tody ren t one-size-fits-ll. Your fleet s budget, size nd opertions re unique. To meet the needs of your fleet nd help

More information

Small Business Networking

Small Business Networking Why network is n essentil productivity tool for ny smll business Effective technology is essentil for smll businesses looking to increse the productivity of their people nd business. Introducing technology

More information

Section 5.2, Commands for Configuring ISDN Protocols. Section 5.3, Configuring ISDN Signaling. Section 5.4, Configuring ISDN LAPD and Call Control

Section 5.2, Commands for Configuring ISDN Protocols. Section 5.3, Configuring ISDN Signaling. Section 5.4, Configuring ISDN LAPD and Call Control Chpter 5 Configurtion of ISDN Protocols This chpter provides instructions for configuring the ISDN protocols in the SP201 for signling conversion. Use the sections tht reflect the softwre you re configuring.

More information

How To Network A Smll Business

How To Network A Smll Business Why network is n essentil productivity tool for ny smll business Effective technology is essentil for smll businesses looking to increse the productivity of their people nd processes. Introducing technology

More information

1.00/1.001 Introduction to Computers and Engineering Problem Solving Fall 2011 - Final Exam

1.00/1.001 Introduction to Computers and Engineering Problem Solving Fall 2011 - Final Exam 1./1.1 Introduction to Computers nd Engineering Problem Solving Fll 211 - Finl Exm Nme: MIT Emil: TA: Section: You hve 3 hours to complete this exm. In ll questions, you should ssume tht ll necessry pckges

More information

Small Business Networking

Small Business Networking Why network is n essentil productivity tool for ny smll business Effective technology is essentil for smll businesses looking to increse the productivity of their people nd processes. Introducing technology

More information

Small Business Networking

Small Business Networking Why network is n essentil productivity tool for ny smll business Effective technology is essentil for smll businesses looking to increse the productivity of their people nd processes. Introducing technology

More information

Small Business Networking

Small Business Networking Why network is n essentil productivity tool for ny smll business Effective technology is essentil for smll businesses looking to increse the productivity of their people nd business. Introducing technology

More information

Math 135 Circles and Completing the Square Examples

Math 135 Circles and Completing the Square Examples Mth 135 Circles nd Completing the Squre Exmples A perfect squre is number such tht = b 2 for some rel number b. Some exmples of perfect squres re 4 = 2 2, 16 = 4 2, 169 = 13 2. We wish to hve method for

More information

Treatment Spring Late Summer Fall 0.10 5.56 3.85 0.61 6.97 3.01 1.91 3.01 2.13 2.99 5.33 2.50 1.06 3.53 6.10 Mean = 1.33 Mean = 4.88 Mean = 3.

Treatment Spring Late Summer Fall 0.10 5.56 3.85 0.61 6.97 3.01 1.91 3.01 2.13 2.99 5.33 2.50 1.06 3.53 6.10 Mean = 1.33 Mean = 4.88 Mean = 3. The nlysis of vrince (ANOVA) Although the t-test is one of the most commonly used sttisticl hypothesis tests, it hs limittions. The mjor limittion is tht the t-test cn be used to compre the mens of only

More information

Vendor Rating for Service Desk Selection

Vendor Rating for Service Desk Selection Vendor Presented By DATE Using the scores of 0, 1, 2, or 3, plese rte the vendor's presenttion on how well they demonstrted the functionl requirements in the res below. Also consider how efficient nd functionl

More information

Section 7-4 Translation of Axes

Section 7-4 Translation of Axes 62 7 ADDITIONAL TOPICS IN ANALYTIC GEOMETRY Section 7-4 Trnsltion of Aes Trnsltion of Aes Stndrd Equtions of Trnslted Conics Grphing Equtions of the Form A 2 C 2 D E F 0 Finding Equtions of Conics In the

More information

Protocol Analysis. 17-654/17-764 Analysis of Software Artifacts Kevin Bierhoff

Protocol Analysis. 17-654/17-764 Analysis of Software Artifacts Kevin Bierhoff Protocol Anlysis 17-654/17-764 Anlysis of Softwre Artifcts Kevin Bierhoff Tke-Awys Protocols define temporl ordering of events Cn often be cptured with stte mchines Protocol nlysis needs to py ttention

More information

Welch Allyn CardioPerfect Workstation Installation Guide

Welch Allyn CardioPerfect Workstation Installation Guide Welch Allyn CrdioPerfect Worksttion Instlltion Guide INSTALLING CARDIOPERFECT WORKSTATION SOFTWARE & ACCESSORIES ON A SINGLE PC For softwre version 1.6.5 or lter For network instlltion, plese refer to

More information

JaERM Software-as-a-Solution Package

JaERM Software-as-a-Solution Package JERM Softwre-s--Solution Pckge Enterprise Risk Mngement ( ERM ) Public listed compnies nd orgnistions providing finncil services re required by Monetry Authority of Singpore ( MAS ) nd/or Singpore Stock

More information

2 DIODE CLIPPING and CLAMPING CIRCUITS

2 DIODE CLIPPING and CLAMPING CIRCUITS 2 DIODE CLIPPING nd CLAMPING CIRCUITS 2.1 Ojectives Understnding the operting principle of diode clipping circuit Understnding the operting principle of clmping circuit Understnding the wveform chnge of

More information

STRM Log Manager Installation Guide

STRM Log Manager Installation Guide Security Thret Response Mnger Relese 2012.0 Juniper Networks, Inc. 1194 North Mthild Avenue Sunnyvle, CA 94089 USA 408-745-2000 www.juniper.net Pulished: 2012-09-12 Copyright Notice Copyright 2012 Juniper

More information

Polynomial Functions. Polynomial functions in one variable can be written in expanded form as ( )

Polynomial Functions. Polynomial functions in one variable can be written in expanded form as ( ) Polynomil Functions Polynomil functions in one vrible cn be written in expnded form s n n 1 n 2 2 f x = x + x + x + + x + x+ n n 1 n 2 2 1 0 Exmples of polynomils in expnded form re nd 3 8 7 4 = 5 4 +

More information

PROF. BOYAN KOSTADINOV NEW YORK CITY COLLEGE OF TECHNOLOGY, CUNY

PROF. BOYAN KOSTADINOV NEW YORK CITY COLLEGE OF TECHNOLOGY, CUNY MAT 0630 INTERNET RESOURCES, REVIEW OF CONCEPTS AND COMMON MISTAKES PROF. BOYAN KOSTADINOV NEW YORK CITY COLLEGE OF TECHNOLOGY, CUNY Contents 1. ACT Compss Prctice Tests 1 2. Common Mistkes 2 3. Distributive

More information

DlNBVRGH + Sickness Absence Monitoring Report. Executive of the Council. Purpose of report

DlNBVRGH + Sickness Absence Monitoring Report. Executive of the Council. Purpose of report DlNBVRGH + + THE CITY OF EDINBURGH COUNCIL Sickness Absence Monitoring Report Executive of the Council 8fh My 4 I.I...3 Purpose of report This report quntifies the mount of working time lost s result of

More information

Kofax Reporting. Administrator's Guide 2.0.0 2013-09-19

Kofax Reporting. Administrator's Guide 2.0.0 2013-09-19 Kofx Reporting 2.0.0 Administrtor's Guide 2013-09-19 2013 Kofx, Inc. All rights reserved. Use is subject to license terms. Third-prty softwre is copyrighted nd licensed from Kofx s suppliers. THIS SOFTWARE

More information

LINEAR TRANSFORMATIONS AND THEIR REPRESENTING MATRICES

LINEAR TRANSFORMATIONS AND THEIR REPRESENTING MATRICES LINEAR TRANSFORMATIONS AND THEIR REPRESENTING MATRICES DAVID WEBB CONTENTS Liner trnsformtions 2 The representing mtrix of liner trnsformtion 3 3 An ppliction: reflections in the plne 6 4 The lgebr of

More information

Understanding Basic Analog Ideal Op Amps

Understanding Basic Analog Ideal Op Amps Appliction Report SLAA068A - April 2000 Understnding Bsic Anlog Idel Op Amps Ron Mncini Mixed Signl Products ABSTRACT This ppliction report develops the equtions for the idel opertionl mplifier (op mp).

More information

Humana Critical Illness/Cancer

Humana Critical Illness/Cancer Humn Criticl Illness/Cncer Criticl illness/cncer voluntry coverges py benefits however you wnt With our criticl illness nd cncer plns, you'll receive benefit fter serious illness or condition such s hert

More information

UNLOCKING TECHNOLOGY IVECO

UNLOCKING TECHNOLOGY IVECO UNLOCKING TECHNOLOGY IVECO IVECO - CONTENTS PPLICTIONS PGE DS136 IVECO 3 DS177 IVECO CN 3 DIGNOSTIC SOCKETS LOCTIONS IVECO 4 GENERL OPERTION 5 6 TIPS & HINTS 15 2 Version: 2.3 July 2011 Copyright 2009

More information

Small Business Cloud Services

Small Business Cloud Services Smll Business Cloud Services Summry. We re thick in the midst of historic se-chnge in computing. Like the emergence of personl computers, grphicl user interfces, nd mobile devices, the cloud is lredy profoundly

More information

Enterprise Risk Management Software Buyer s Guide

Enterprise Risk Management Software Buyer s Guide Enterprise Risk Mngement Softwre Buyer s Guide 1. Wht is Enterprise Risk Mngement? 2. Gols of n ERM Progrm 3. Why Implement ERM 4. Steps to Implementing Successful ERM Progrm 5. Key Performnce Indictors

More information

Recognition Scheme Forensic Science Content Within Educational Programmes

Recognition Scheme Forensic Science Content Within Educational Programmes Recognition Scheme Forensic Science Content Within Eductionl Progrmmes one Introduction The Chrtered Society of Forensic Sciences (CSoFS) hs been ccrediting the forensic content of full degree courses

More information

Total Data Protection for Sensitive Data Wherever It May Flow

Total Data Protection for Sensitive Data Wherever It May Flow Totl Dt Protection for Sensitive Dt Wherever It My Flow PGP Corportion nd Protegrity protect sensitive dt throughout its lifecycle, while enforcing nd verifying policy requirements for complince. Protegrity

More information

Version X3450. Version X3510. Features. Release Note Version X3510. Product: 24online Release Number: X3510

Version X3450. Version X3510. Features. Release Note Version X3510. Product: 24online Release Number: X3510 Relese Note Version X3510 Version X3510 Product: 24online Relese Number: X3510 Customer Support: For more informtion or support, plese visit us t www.24onlinebilling.com or emil support@24onlinebilling.com

More information

Operations with Polynomials

Operations with Polynomials 38 Chpter P Prerequisites P.4 Opertions with Polynomils Wht you should lern: Write polynomils in stndrd form nd identify the leding coefficients nd degrees of polynomils Add nd subtrct polynomils Multiply

More information

2. Transaction Cost Economics

2. Transaction Cost Economics 3 2. Trnsction Cost Economics Trnsctions Trnsctions Cn Cn Be Be Internl Internl or or Externl Externl n n Orgniztion Orgniztion Trnsctions Trnsctions occur occur whenever whenever good good or or service

More information

Project 6 Aircraft static stability and control

Project 6 Aircraft static stability and control Project 6 Aircrft sttic stbility nd control The min objective of the project No. 6 is to compute the chrcteristics of the ircrft sttic stbility nd control chrcteristics in the pitch nd roll chnnel. The

More information

9 CONTINUOUS DISTRIBUTIONS

9 CONTINUOUS DISTRIBUTIONS 9 CONTINUOUS DISTIBUTIONS A rndom vrible whose vlue my fll nywhere in rnge of vlues is continuous rndom vrible nd will be ssocited with some continuous distribution. Continuous distributions re to discrete

More information

How To Set Up A Network For Your Business

How To Set Up A Network For Your Business Why Network is n Essentil Productivity Tool for Any Smll Business TechAdvisory.org SME Reports sponsored by Effective technology is essentil for smll businesses looking to increse their productivity. Computer

More information

Introducing Kashef for Application Monitoring

Introducing Kashef for Application Monitoring WextWise 2010 Introducing Kshef for Appliction The Cse for Rel-time monitoring of dtcenter helth is criticl IT process serving vriety of needs. Avilbility requirements of 6 nd 7 nines of tody SOA oriented

More information

Economics Letters 65 (1999) 9 15. macroeconomists. a b, Ruth A. Judson, Ann L. Owen. Received 11 December 1998; accepted 12 May 1999

Economics Letters 65 (1999) 9 15. macroeconomists. a b, Ruth A. Judson, Ann L. Owen. Received 11 December 1998; accepted 12 May 1999 Economics Letters 65 (1999) 9 15 Estimting dynmic pnel dt models: guide for q mcroeconomists b, * Ruth A. Judson, Ann L. Owen Federl Reserve Bord of Governors, 0th & C Sts., N.W. Wshington, D.C. 0551,

More information

Reasoning to Solve Equations and Inequalities

Reasoning to Solve Equations and Inequalities Lesson4 Resoning to Solve Equtions nd Inequlities In erlier work in this unit, you modeled situtions with severl vriles nd equtions. For exmple, suppose you were given usiness plns for concert showing

More information

Physics 43 Homework Set 9 Chapter 40 Key

Physics 43 Homework Set 9 Chapter 40 Key Physics 43 Homework Set 9 Chpter 4 Key. The wve function for n electron tht is confined to x nm is. Find the normliztion constnt. b. Wht is the probbility of finding the electron in. nm-wide region t x

More information

Warm-up for Differential Calculus

Warm-up for Differential Calculus Summer Assignment Wrm-up for Differentil Clculus Who should complete this pcket? Students who hve completed Functions or Honors Functions nd will be tking Differentil Clculus in the fll of 015. Due Dte:

More information

Space Vector Pulse Width Modulation Based Induction Motor with V/F Control

Space Vector Pulse Width Modulation Based Induction Motor with V/F Control Interntionl Journl of Science nd Reserch (IJSR) Spce Vector Pulse Width Modultion Bsed Induction Motor with V/F Control Vikrmrjn Jmbulingm Electricl nd Electronics Engineering, VIT University, Indi Abstrct:

More information

Morgan Stanley Ad Hoc Reporting Guide

Morgan Stanley Ad Hoc Reporting Guide spphire user guide Ferury 2015 Morgn Stnley Ad Hoc Reporting Guide An Overview For Spphire Users 1 Introduction The Ad Hoc Reporting tool is ville for your reporting needs outside of the Spphire stndrd

More information

FortiClient (Mac OS X) Release Notes VERSION 5.0.10

FortiClient (Mac OS X) Release Notes VERSION 5.0.10 FortiClient (Mc OS X) Relese Notes VERSION 5.0.10 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO LIBRARY http://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE

More information

Unleashing the Power of Cloud

Unleashing the Power of Cloud Unleshing the Power of Cloud A Joint White Pper by FusionLyer nd NetIQ Copyright 2015 FusionLyer, Inc. All rights reserved. No prt of this publiction my be reproduced, stored in retrievl system, or trnsmitted,

More information

TITLE THE PRINCIPLES OF COIN-TAP METHOD OF NON-DESTRUCTIVE TESTING

TITLE THE PRINCIPLES OF COIN-TAP METHOD OF NON-DESTRUCTIVE TESTING TITLE THE PRINCIPLES OF COIN-TAP METHOD OF NON-DESTRUCTIVE TESTING Sung Joon Kim*, Dong-Chul Che Kore Aerospce Reserch Institute, 45 Eoeun-Dong, Youseong-Gu, Dejeon, 35-333, Kore Phone : 82-42-86-231 FAX

More information

Econ 4721 Money and Banking Problem Set 2 Answer Key

Econ 4721 Money and Banking Problem Set 2 Answer Key Econ 472 Money nd Bnking Problem Set 2 Answer Key Problem (35 points) Consider n overlpping genertions model in which consumers live for two periods. The number of people born in ech genertion grows in

More information

Virtual Machine. Part II: Program Control. Building a Modern Computer From First Principles. www.nand2tetris.org

Virtual Machine. Part II: Program Control. Building a Modern Computer From First Principles. www.nand2tetris.org Virtul Mchine Prt II: Progrm Control Building Modern Computer From First Principles www.nnd2tetris.org Elements of Computing Systems, Nisn & Schocken, MIT Press, www.nnd2tetris.org, Chpter 8: Virtul Mchine,

More information

GFI MilArchiver 6 vs C2C Archive One Policy Mnger GFI Softwre www.gfi.com GFI MilArchiver 6 vs C2C Archive One Policy Mnger GFI MilArchiver 6 C2C Archive One Policy Mnger Who we re Generl fetures Supports

More information

Vectors 2. 1. Recap of vectors

Vectors 2. 1. Recap of vectors Vectors 2. Recp of vectors Vectors re directed line segments - they cn be represented in component form or by direction nd mgnitude. We cn use trigonometry nd Pythgors theorem to switch between the forms

More information

Decision Rule Extraction from Trained Neural Networks Using Rough Sets

Decision Rule Extraction from Trained Neural Networks Using Rough Sets Decision Rule Extrction from Trined Neurl Networks Using Rough Sets Alin Lzr nd Ishwr K. Sethi Vision nd Neurl Networks Lbortory Deprtment of Computer Science Wyne Stte University Detroit, MI 48 ABSTRACT

More information

Bayesian Updating with Continuous Priors Class 13, 18.05, Spring 2014 Jeremy Orloff and Jonathan Bloom

Bayesian Updating with Continuous Priors Class 13, 18.05, Spring 2014 Jeremy Orloff and Jonathan Bloom Byesin Updting with Continuous Priors Clss 3, 8.05, Spring 04 Jeremy Orloff nd Jonthn Bloom Lerning Gols. Understnd prmeterized fmily of distriutions s representing continuous rnge of hypotheses for the

More information

4. DC MOTORS. Understand the basic principles of operation of a DC motor. Understand the operation and basic characteristics of simple DC motors.

4. DC MOTORS. Understand the basic principles of operation of a DC motor. Understand the operation and basic characteristics of simple DC motors. 4. DC MOTORS Almost every mechnicl movement tht we see round us is ccomplished by n electric motor. Electric mchines re mens o converting energy. Motors tke electricl energy nd produce mechnicl energy.

More information

Regular Sets and Expressions

Regular Sets and Expressions Regulr Sets nd Expressions Finite utomt re importnt in science, mthemtics, nd engineering. Engineers like them ecuse they re super models for circuits (And, since the dvent of VLSI systems sometimes finite

More information

ffiiii::#;#ltlti.*?*:j,'i#,rffi

ffiiii::#;#ltlti.*?*:j,'i#,rffi 5..1 EXPEDTNG A PROJECT. 187 700 6 o 'o-' 600 E 500 17 18 19 20 Project durtion (dys) Figure 6-6 Project cost vs. project durtion for smple crsh problem. Using Excel@ to Crsh Project T" llt ffiiii::#;#ltlti.*?*:j,'i#,rffi

More information

Integration by Substitution

Integration by Substitution Integrtion by Substitution Dr. Philippe B. Lvl Kennesw Stte University August, 8 Abstrct This hndout contins mteril on very importnt integrtion method clled integrtion by substitution. Substitution is

More information

Basic Analysis of Autarky and Free Trade Models

Basic Analysis of Autarky and Free Trade Models Bsic Anlysis of Autrky nd Free Trde Models AUTARKY Autrky condition in prticulr commodity mrket refers to sitution in which country does not engge in ny trde in tht commodity with other countries. Consequently

More information

Hillsborough Township Public Schools Mathematics Department Computer Programming 1

Hillsborough Township Public Schools Mathematics Department Computer Programming 1 Essentil Unit 1 Introduction to Progrmming Pcing: 15 dys Common Unit Test Wht re the ethicl implictions for ming in tody s world? There re ethicl responsibilities to consider when writing computer s. Citizenship,

More information

5 a LAN 6 a gateway 7 a modem

5 a LAN 6 a gateway 7 a modem STARTER With the help of this digrm, try to descrie the function of these components of typicl network system: 1 file server 2 ridge 3 router 4 ckone 5 LAN 6 gtewy 7 modem Another Novell LAN Router Internet

More information

SPECIAL PRODUCTS AND FACTORIZATION

SPECIAL PRODUCTS AND FACTORIZATION MODULE - Specil Products nd Fctoriztion 4 SPECIAL PRODUCTS AND FACTORIZATION In n erlier lesson you hve lernt multipliction of lgebric epressions, prticulrly polynomils. In the study of lgebr, we come

More information

Implementation Evaluation Modeling of Selecting ERP Software Based on Fuzzy Theory

Implementation Evaluation Modeling of Selecting ERP Software Based on Fuzzy Theory Implementtion Evlution Modeling of Selecting ERP Softwre Bsed on Fuzzy Theory Xukn Xu 1, Ydong Jing 1 nd Zheng Shi 2 1 Informtion Mngement Deprtment, Chngzhou Cmpus, Hohi University, Chngzhou 213022, Jingsu,

More information

VMware Horizon FLEX Administration Guide

VMware Horizon FLEX Administration Guide VMwre Horizon FLEX Administrtion Guide Horizon FLEX 1.5 This document supports the version of ech product listed nd supports ll susequent versions until the document is replced y new edition. To check

More information

2001 Attachment Sequence No. 118

2001 Attachment Sequence No. 118 Form Deprtment of the Tresury Internl Revenue Service Importnt: Return of U.S. Persons With Respect to Certin Foreign Prtnerships Attch to your tx return. See seprte instructions. Informtion furnished

More information

EQUATIONS OF LINES AND PLANES

EQUATIONS OF LINES AND PLANES EQUATIONS OF LINES AND PLANES MATH 195, SECTION 59 (VIPUL NAIK) Corresponding mteril in the ook: Section 12.5. Wht students should definitely get: Prmetric eqution of line given in point-direction nd twopoint

More information

Meeting Your Data-Sharing Needs Now that Oracle Streams is Deprecated

Meeting Your Data-Sharing Needs Now that Oracle Streams is Deprecated Meeting Your Dt-Shring Needs Now tht Orcle Strems is Deprected Switch to ShrePlex Written by Jim Collings, senior product rchitect, Dell Softwre Abstrct Now tht Orcle hs formlly nnounced 1 the deprection

More information

Facilitating Rapid Analysis and Decision Making in the Analytical Lab.

Facilitating Rapid Analysis and Decision Making in the Analytical Lab. Fcilitting Rpid Anlysis nd Decision Mking in the Anlyticl Lb. WHITE PAPER Sponsored by: Accelrys, Inc. Frnk Brown, Ph.D., Chief Science Officer, Accelrys Mrch 2009 Abstrct Competitive success requires

More information

Commercial Cooling Rebate Application

Commercial Cooling Rebate Application Commercil Cooling Rebte Appliction Generl Informtion April 1 st 2015 through Mrch 31 st 2016 AMU CUSTOMER INFORMATION (Plese print clerly) Business Nme: Phone #: Contct Nme: Miling Address: City: Stte:

More information

Helicopter Theme and Variations

Helicopter Theme and Variations Helicopter Theme nd Vritions Or, Some Experimentl Designs Employing Pper Helicopters Some possible explntory vribles re: Who drops the helicopter The length of the rotor bldes The height from which the

More information

the machine and check the components

the machine and check the components Quick Setup Guide Strt Here DCP-7055W / DCP-7057W DCP-7070DW Plese red the Sfety nd Legl ooklet first efore you set up your mchine. Then, plese red this Quick Setup Guide for the correct setup nd instlltion.

More information

Module Summary Sheets. C3, Methods for Advanced Mathematics (Version B reference to new book) Topic 2: Natural Logarithms and Exponentials

Module Summary Sheets. C3, Methods for Advanced Mathematics (Version B reference to new book) Topic 2: Natural Logarithms and Exponentials MEI Mthemtics in Ection nd Instry Topic : Proof MEI Structured Mthemtics Mole Summry Sheets C, Methods for Anced Mthemtics (Version B reference to new book) Topic : Nturl Logrithms nd Eponentils Topic

More information

Integration. 148 Chapter 7 Integration

Integration. 148 Chapter 7 Integration 48 Chpter 7 Integrtion 7 Integrtion t ech, by supposing tht during ech tenth of second the object is going t constnt speed Since the object initilly hs speed, we gin suppose it mintins this speed, but

More information

the machine and check the components

the machine and check the components Quick Setup Guide Strt Here HL-2270DW Before using this mchine for the first time, red this Quick Setup Guide to setup nd instll your mchine. To view the Quick Setup Guide in other lnguges, plese visit

More information

Prescriptive Program Rebate Application

Prescriptive Program Rebate Application Prescriptive Progrm Rebte Appliction Check the pproprite progrm box for your rebte. OID Internl Use Only Cooling FSO (Fluid System Optimiztion) Foodservice Equipment Heting Lighting Motors & Drives Customer

More information

Pentominoes. Pentominoes. Bruce Baguley Cascade Math Systems, LLC. The pentominoes are a simple-looking set of objects through which some powerful

Pentominoes. Pentominoes. Bruce Baguley Cascade Math Systems, LLC. The pentominoes are a simple-looking set of objects through which some powerful Pentominoes Bruce Bguley Cscde Mth Systems, LLC Astrct. Pentominoes nd their reltives the polyominoes, polycues, nd polyhypercues will e used to explore nd pply vrious importnt mthemticl concepts. In this

More information

Tutorial on How to Create Electric Machine Models

Tutorial on How to Create Electric Machine Models PSIM Sotwre Tutoril on How to Crete Electric Mchine Models Powersi Inc. Septber 2009 www.powersitech.co Tutoril on Creting Electric Mchine Models Users cn crete electric chine odels using the bsic unction

More information

Engineer-to-Engineer Note

Engineer-to-Engineer Note Engineer-to-Engineer Note EE-178 Technicl notes on using Anlog Devices DSPs, processors nd development tools Contct our technicl support t dsp.support@nlog.com nd t dsptools.support@nlog.com Or visit our

More information

New Internet Radio Feature

New Internet Radio Feature XXXXX XXXXX XXXXX /XW-SMA3/XW-SMA4 New Internet Rdio Feture EN This wireless speker hs een designed to llow you to enjoy Pndor*/Internet Rdio. In order to ply Pndor/Internet Rdio, however, it my e necessry

More information

Traffic Rank Based QoS Routing in Wireless Mesh Network

Traffic Rank Based QoS Routing in Wireless Mesh Network Trffic Rnk Bsed QoS Routing in Wireless Mesh Network Deep P Kmble #1, Sujth P Terdl *2 #1 Deprtment of Computer Science nd Engineering, Poojy Doddp App College of Engineering, Gulbrg, Krntk, Indi. *2 Deprtment

More information

Wireless Wakeups Revisited: Energy Management for VoIP over Wi-Fi Smartphones

Wireless Wakeups Revisited: Energy Management for VoIP over Wi-Fi Smartphones Wireless Wkeups Revisited: Energy Mngement for VoIP over Wi-Fi Smrtphones Yuvrj Agrwl, Rnveer Chndr,AlecWolmn, Prmvir Bhl, Kevin Chin, Rjesh Gupt Microsoft Reserch, Microsoft Corportion, University of

More information

The Velocity Factor of an Insulated Two-Wire Transmission Line

The Velocity Factor of an Insulated Two-Wire Transmission Line The Velocity Fctor of n Insulted Two-Wire Trnsmission Line Problem Kirk T. McDonld Joseph Henry Lbortories, Princeton University, Princeton, NJ 08544 Mrch 7, 008 Estimte the velocity fctor F = v/c nd the

More information

Visualization of Time-Varying Volumetric Data using Differential Time-Histogram Table

Visualization of Time-Varying Volumetric Data using Differential Time-Histogram Table Volume Grphics (5) E. Gröller, I. Fujishiro (Editors) Visuliztion of Time-Vrying Volumetric Dt using Differentil Time-Histogrm Tble Hmid Younesy, Torsten Möller, Hmish Crr Simon Frser University, Simon

More information

Quick Reference Guide: Reset Password

Quick Reference Guide: Reset Password Quick Reference Guide: Reset Pssword How to reset pssword This Quick Reference Guide shows you how to reset your pssword if you hve forgotten it. There re three wys to reset your SingPss pssword: 1) Online

More information

Outline of the Lecture. Software Testing. Unit & Integration Testing. Components. Lecture Notes 3 (of 4)

Outline of the Lecture. Software Testing. Unit & Integration Testing. Components. Lecture Notes 3 (of 4) Outline of the Lecture Softwre Testing Lecture Notes 3 (of 4) Integrtion Testing Top-down ottom-up ig-ng Sndwich System Testing cceptnce Testing istriution of ults in lrge Industril Softwre System (ISST

More information