Memory Management. What to do when coalescing fails. The Need for Relocation. Memory Compaction. Pure Swapping. Why we swap 4/15/2018

Size: px
Start display at page:

Download "Memory Management. What to do when coalescing fails. The Need for Relocation. Memory Compaction. Pure Swapping. Why we swap 4/15/2018"

Transcription

1 Memory Mngement Wht to do when colescing fils 5H. Memory Compction 6A. Swpping to secondry storge 5E. Dynmic Reloction 6B. Pging Memory Mngement Units 6C. Demnd Pging 6D. Replcement Algorithms 6F. Optimiztions 6H Pging nd Segmenttion 6I. Virtul Memory nd I/O grge collection is just nother wy to free doesn t gretly help or hurt frgmenttion ongoing ctivity cn strve colescing chunks rellocted efore neighors ecome free we could stop ccepting new lloctions convoy on memory mnger would trsh throughput we need wy to rerrnge ctive memory re-pck ll processes in one end of memory crete one ig chunk of free spce t other end Memory mngement 1 Memory mngement 2 Memory Compction P F P D P C P E swp device The Need for Reloction Memory compction moves process from where we originlly loded it to new plce so we cn compct the llocted memory colesce free spce to cure externl frgmenttion But progrm is full of ddresses conditionl rnches, suroutine clls dt ddresses in the code, nd in pointers We cn t find/updte ll of these pointers s we just sw with Grge Collection Memory mngement 3 Why we swp mke est use of limited mount of memory process cn only execute if it is in memory cn t keep ll processes in memory ll the time if it isn't READY, it doesn't need to e in memory swp it out nd mke room for other processes improve CPU utiliztion when there re no READY processes, CPU is idle CPU idle time mens reduced system throughput more READY processes mens etter utiliztion 5 Pure Swpping ech segment is contiguous in memory, nd on secondry storge ll in memory, or ll on swp device swpping tkes gret del of time trnsferring entire dt (nd text) segments swpping wstes gret del of memory processes seldom need the entire segment vrile length memory/disk lloction complex, expensive, externl frgmenttion 6 1

2 The Need for Dynmic Reloction there re few resons to move process needs lrger chunk of memory swpped out, swpped ck in to new loction to compct frgmented free spce ll ddresses in the progrm will e wrong references in the code, pointers in the dt it is not fesile to re-linkge edit the progrm new pointers hve een creted during run-time 0x shred code DLL 1 Virtul Address Trnsltion privte dt privte stck 0xFFFFFFFF physicl ddress spce (s on CPU/memory us) ddress trnsltion unit (mgicl) virtul ddress spce (s seen y process) Memory mngement 7 Memory mngement 8 Segment Reloction nturl unit of lloction nd reloction process ddress spce mde up of segments ech segment is contiguous w/no holes CPU hs segment se registers point to (physicl memory) se of ech segment CPU utomticlly reloctes ll references OS uses for virtul ddress trnsltion set se to region where segment is loded efficient: CPU cn relocte every reference trnsprent: ny segment cn move nywhere 0x shred code DLL 1 Segment Reloction virtul ddress spce privte dt privte stck 0xFFFFFFFF code se register dt se register ux se register stck se register physicl memory physicl = virtul + se seg stck code dt DLL Memory mngement 9 Memory mngement 10 0x shred code privte dt Moving Segment The virtul ddress of the stck doesn t chnge DLL 1 DLL 2 DLL 3 code se register ux se register privte stck 0xFFFFFFFF dt se register stck se register physicl = virtul + se seg We just chnge the vlue in the stck se register Let s sy we need to move the stck in physicl memory code stck Physiclmemory DLL dt Privcy nd Protection confine process to its own ddress spce ech segment lso hs length/limit register CPU verifies ll offsets re within rnge genertes ddressing exception if not protecting red-only segments ssocite red/write ccess with ech segment CPU ensures integrity of red-only segments segmenttion register updte is privileged only kernel-mode code cn do this Memory mngement 12 2

3 Are Segments the Answer? very nturl unit of ddress spce vrile length, contiguous dt los ll-or-none with uniform r/w or r/o ccess convenient/powerful virtul ddress strction ut they re vrile length they require contiguous physicl memory ultimtely leding to externl frgmenttion requiring expensive swpping for compction nd in tht moment he ws enlightened pged ddress trnsltion process virtul ddress spce CODE DATA STACK physicl memory Memory mngement Pging nd Frgmenttion Pging Memory Mngement Unit virtul ddress physicl ddress pge # offset pge # offset segment is implemented s set of virtul pges internl frgmenttion verges only ½ pge (hlf of the lst one) externl frgmenttion completely non-existent (we never crve up pges) virtul pge # is used s n index into the pge tle vlid it is checked to ensure tht this virtul pge # is legl. V pge # V pge # V pge # 0 V pge # 0 V pge # V pge # pge tle offset within pge remins the sme. selected entry contins physicl pge numer Pging Reloction Exmples Swpping is Wsteful virtul ddress physicl ddress C08 3E C20 041F 1C pge fult V V V 0C A1 0 V 041F 0 V V 0D10 0AC3 pge tle process does not use ll its pges ll the time code nd dt oth exhiit reference loclity some code/dt my seldom e used keeping ll pges in memory wstes spce more spce/process = fewer processes in memory swpping them ll in nd out wstes time longer trnsfers, longer wits for disk it ritrrily limits the size of process process must e smller thn ville memory

4 Loding Pges On Demnd Pge Fult Hndling pging MMU supports not present pges CPU ccess of present pges proceeds normlly ccessing not present pge genertes trp operting system cn process this pge fult recognize tht it is request for nother pge red tht pge in nd resume process execution entire process needn t e in memory to run strt ech process with suset of its pges lod dditionl pges s progrm demnds them initilize pge tle entries to not present CPU fults when invlid pge is referenced 1. trp forwrded to pge fult hndler 2. determine which pge, where it resides 3. find nd llocte free pge frme 4. lock process, schedule I/O to red pge in 5. updte pge tle point t newly red-in pge 6. ck up user-mode PC to retry filed instruction 7. unlock process, return to user-mode Menwhile, other processes cn run Demnd Pging dvntges improved system performnce fewer in-memory pges per process more processes in primry memory more prllelism, etter throughput etter response time for processes lredy in memory less time required to pge processes in nd out less disk I/O mens reduced queuing delys fewer limittions on process size process cn e lrger thn physicl memory process cn hve huge (sprse) virtul spce Are Pge Fults Prolem? Pge fults should not ffect correctness fter fult is hndled, desired pge is in RAM process runs gin, nd cn now use tht pge (ssuming the OS properly sves/restores stte) But progrms might run veryslowly dditionl context switches wste ville CPU dditionl disk I/O wstes ville throughput processes re delyed witing for needed pges We must minimize the numer of pge fults 21 Minimizing Numer of Pge Fults There re two wys: keep the right pges in memory give process more pges of memory How do we keep right pges in memory? we hve no control over wht pges we ring in ut we cn decide which pges to evict this is clled replcement strtegy How mny pges does process need? tht depends on which process nd when this is clled the process working set Beldy's Optiml Algorithm Q: which pge should we replce? A: the one we won't need for the longest time Why is this the right pge? it delys the next pge fult s long s possile minimum numer of pge fults per unit time How cn we predict future references? Beldycnnot e implemented in rel system ut we cn run implement it for test dt strems we cn compre other lgorithms ginst it

5 Do we need n Optiml lgorithm? Be very cler on wht our gol is we re not trying minimize the # of pge fults we re trying to minimize the cost of pging TANSTAAFL we py price for every pge fult we lso py for every replcement decision some decisions re more expensive thn fults we must do cost/enefit nlysis Approximting Optiml Replcement note which pges hve recently een used use this dt to predict future ehvior Possile replcement lgorithms rndom, FIFO: strw-men... forget them Lest Recently Used ssert ner future will e like recent pst progrms do exhiit temporl nd sptil loclity if we hven t used it recently, we proly won t soon we don t hve to e right 100% of the time the more right we re, the more pge fults we sve Why Progrms Exhiit Loclity Code loclity code in sme routine is in sme/djcent pge loops iterte over the sme code few routines re clled repetedly intr-module clls re common Stck loclity ctivity focuses on this nd djcent cll frmes Dt reference loclity this is common, ut not ssured True LRU is hrd to implement mintin this informtion in the MMU? MMU notes the time, every time pge is referenced mye we cn get per-pge red/written it mintin this informtion in softwre? mrk ll pges invlid, even if they re in memory tke fult the first time ech pge is referenced then mrk this pge vlid for the rest of the time slice finding oldest pge is prohiitively expensive 16GB memory / 4K pge = 4M pges to scn Prcticl LRU surrogtes True Glol LRU Replcement must e chep cn t cuse dditionl pge fults void scnning the whole pge tle (it is ig) clock lgorithms surrogte for LRU orgnize ll pges in circulr list position round the list is surrogte for ge progressive scn whenever we need nother pge for ech pge, sk MMU if pge hs een referenced if so, reset the reference it in the MMU; skip pge if not, consider this pge to e the lest recently used 29 reference True LRU frme 0 frme 1 frme 2 frme 3 c d d e f c d e d lods 4, replcements 7! f d!!! c e c d! e 30 5

6 LRU Clock Algorithm Working Sets per process LRU reference LRU clock frme 0 frme 1 frme 2 frme 3 clock pos True LRU frme 0 frme 1 frme 2 frme 3 c d d e f c d e d lods 4, replcements 7! c d!!! f d!!!!!! e e!!! c lods 4, replcements 7 f d d c e c d d e E 2 Glol LRU is proly lunder d interction with round-roin scheduling etter to give ech process it's own pge pool do LRU replcement within tht pool fixed # of pges per process is lso d different processes exhiit different loclity which pges re needed chnges over time numer of pges needed chnges over time much like different nturl scheduling intervls we clerly wnt dynmic working sets nturl working set size (Optiml Working Sets) numer of pge fults thrshing in insufficient spce It cn t e done! the sweet spot working set size little mrginl enefit for dditionl spce More, is just more. Wht is optiml working set for process? numer of pges needed during next time slice wht if try to run process in fewer pges? needed pges replce one nother continuously this is clled "thrshing" how cn we know wht working set size is? y oserving the process ehvior which pges should e in the working-set? no need to guess, the process will fult for them Implementing Working Sets Working Set Clock Algorithm mnged working set size ssign pge frmes to ech in-memory process processes pge ginst themselves in working set oserve pging ehvior (fults per unit time) djust numer of ssigned pge frmes ccordingly pge steling (WS-Clock) lgorithms trck lst use time for ech pge, for owning process find pge lest recently used (y its owner) processes tht need more pges tend to get more processes tht don't use their pges tend to lose them pge frme referenced process lst ref clock ptr P 0 P 0 P 1 P 2 P 2 P 1 P 1 P 0 P 2 P 0 P 1 P 2 P 0 P 1 P current execution times P 0 = 55 P 1 = 75 P 2 = 80 P 0 gets fult pge 6 ws just referenced cler ref it, updte time pge 7 is (55-33=22) ms old P 0 replces his own pge t =

7 Working Set Clock Algorithm Thrshing Prevention pge frme referenced process lst ref clock ptr P 0 P 0 P 1 P 2 P 2 P 1 P 1 P 0 P 2 P 0 P 10 P 2 P 0 P 1 P current execution times P 0 = 55 P 1 = 75 P 2 = 80 P 0 gets fult pge 6 ws just referenced pge 7 is (55-33=22) ms old P 0 replces his own pge t = 25 P 0 gets fult pge 6 ws just referenced pge 7 is (55-33=22) ms old pge 8 is (80-72=8) ms old pge 9 is (55-54=1) ms old pge 10 is (75-23=52) ms old P 0 stels this pge from P 1 E 7 working set size chrcterizes ech process how mny pges it needs to run for τmilliseconds Wht if we don t hve enough memory? sum of our working sets exceeds ville memory we cnnot squeeze working set sizes this will result in thrshing reduce numer of competing processes swp some of the redyprocesses out to ensure enough memory for the rest to run we cn round-roin who is in nd out Pre-loding pge/swp hyrid Clen nd Dirty Pges wht hppens when process swps in pure swpping ll pges present efore process is run, no pge fults pure demnd pging pges re only rought in s needed fewer pges per process, more processes in memory wht if we pre-lod the lst working set? fr fewer pges to e red in thn swpping prolythe sme disk reds s pure demnd pging fr fewer initil pge fults thn pure demnd pging consider pge, recently pged in from disk there re two copies, on on disk, one in memory if the in-memory copy hs not een modified there is still vlid copy on disk the in-memory copy is sid to e "clen" we cn replce pge without writing it ck to disk if the in-memory copy hs een modified the copy on disk is no longer up-to-dte the in-memory copy is sid to e "dirty" if we write it out to disk, it ecomes "clen" gin preemptive pge lundering Copy on Write clen pges cn e replced t ny time copy on disk is lredy up to dte clen pges give flexiility to memory scheduler mny pges tht cn, if necessry, e replced ongoing ckground write-out of dirty pges find nd write-out ll dirty, non-running pges no point in writing out pge tht is ctively in use on ssumption we will eventully hve to pge out mke them clen gin, ville for replcement this is the outgoing equivlent of pre-loding fork(2) is very expensive opertion we must copy ll privte dt/stck pges sdly most will e discrded y next exec(2) ssume child will not updte most pges shre ll privte pges, mrk them copy on write chnge them to e red-only for prent nd child on write-pge fult, mke copy of tht pge on exec, remining pges ecome privte gin copy on write is common optimiztion

8 pging nd segmenttion segmenttion on top of pging pges re very nice memory lloction unit they eliminte internl nd externl frgmenttion they dmit of very simple nd powerful MMU they re not prticulrly nturl unit of dt progrms re comprised of, nd operte on, segments segments re the nturl chunks of virtul ddress spce e.g. we mp new segment into the virtul ddress spce ech code, dt, stck segment contins mny pges two levels of memory mngement strction virtul ddress spce is comprised of segments reloction & swpping is done on pge sis segment se ddressing, with pge sed reloction user processes see segments, pging is invisile segment se registers cs ds es ss process virtul ddress spce Segments collections of pges segment is nmed collection of pges ech pge hs home on secondry storge opertions on segments: crete/open/destroy mp/unmp segment to/from process find physicl pge numer of virtul pge n connection etween pging & segmenttion segment mpping implemented w/pge mpping pge fulting uses segments to find requested pge B 1 Mnging Secondry Storge where do pges live when not in memory? we swp them out to secondry storge (disk) how do we mnge our swp spce? s pool of vrile length prtitions? D llocte contiguous region for ech process 2 s rndom collection of pges? just use it-mp to keep trck of which re free s file system? crete file per process (or segment) file offsets correspond to virtul ddress offsets Pging nd Shred Segments Virtul Memory nd I/O shred memory, executles nd DLLs creted/mnged s mpple segments one copy mpped into multiple processes demnd pging sme s with ny other pges 2ndry home my e in file system shred pges don't fit working set model my not e ssocited with just one process glol LRU my e more pproprite shred pges often need/get specil hndling F 4 user I/O requests use virtul uffer ddress how cn device controller find tht dt kernel cn copy dt into physicl uffers ccessing user dt through stndrd mechnismsg 1 kernel my trnslte virtul to physicl give device the corresponding physicl ddress CPU my include n I/O MMU use pge tles to trnslte virtddrsto phys ll DMA I/O references go through the I/O MMU

9 Sctter/Gther I/O gther writes from pged memory mny controllers support DMA trnsfers entire trnsfer must e contiguous in physicl memory user uffers re in pged virtul memory user uffer my e spred ll over physicl memory sctter: red from device to multiple pges gther: writing from multiple pges to device sme three sic pproches pply copy ll user dt into contiguous physicl uffer split logicl req into chin-scheduled pge requests I/O MMU my utomticlly hndle sctter/gther process virtul ddress spce physicl memory DMA I/O strem user I/O uffer sctter reds into pged memory Kernel Spce vs. User Spce process virtul ddress spce physicl memory DMA I/O strem user I/O uffer user spce multiple segments: code, dt, stck, DLLs segments re llocted in one-pge units dt spce mnged s hep y user-mode code Kernel spce (my e virtul or physicl) lso includes ll system code nd dt structures lso includes mpped I/O spce physicl memory divided into two clsses most mnged s pges, for use y processes some mnged s storge hep for kernel lloction Typicl Kernel Virtul Address Spce user mode virtul ddress spce In kernel mode the second hlf of the virtul ddress spce ecomes ccessile. stck user code DLL DLL kernel code user dt ll of physicl memory Not to Scle (density is gretly exggerted) user stck I/O spce Moving Dt etween Kernel/User kernel often needs to ccess user dt to ccess system cll prmeters to perform red nd write system clls kernel my run in virtul ddress spce which includes current process' ddress spce specil instructions for cross-spce ccess e.g. "move from previous dt" kernel my execute w/physicl ddresses softwre trnsltion of user-spce ddresses

10 Assignments For next Lecture Introduction to IPC send(2), recv(2), nmed pipes, mmp(2) Arpci C25, 26, user-mode threds Project try to get P1B working efore l order your BegleBone Supplementry Slides Memory mngement 55 implementing pging MMU MMUs used to sit etween the CPU nd us now they re typiclly integrted into the CPU pge tles originlly implemented in specil fst registers now, w/lrger ddress spces, stored in memory entries cched in veryfst registers s they re used which mkes cche invlidtion n issue optionl fetures red/write ccess control, referenced/dirty its seprte pge tles for ech processor mode updting pging MMU dding/removing pges for current process directly updte ctive pge tle in memory privileged instruction to flush (stle) cched entries switching from one process to nother mintin seprte pge tles for ech process privileged instruction lods pointer to new pge tle relod instruction flushes previously cched entries shring pges etween multiple processes mke ech pge tle point to sme physicl pge cn e red-only or red/write shring Discussion Slides 10

What to do when coalescing fails. The Need for Relocation. Memory Compaction. Why we swap. Pure Swapping 4/14/2017. Virtual Memory and Demand Paging

What to do when coalescing fails. The Need for Relocation. Memory Compaction. Why we swap. Pure Swapping 4/14/2017. Virtual Memory and Demand Paging Wht to o when olesing fils 5H. Memory Comption 6A. Swpping to Seonry Storge 5E. Dynmi Relotion 6B. Pging Memory Mngement Units 6C. Demn Pging 6D. Replement Algorithms 6E. Thrshing n Working Sets 6F. Pging

More information

Operating Systems Principles. Page Replacement Algorithms

Operating Systems Principles. Page Replacement Algorithms Operting Systems Priniples Pge Replement Algorithms Steve Gor gor@se.unl.eu http://www.se.unl.eu/~gor/courses/csce45 Virtul Memory Mngement Funmentl issues Plement strtegy Replement strtegies Lo ontrol

More information

Chapter 02 Crime-Scene Investigation and Evidence Collection

Chapter 02 Crime-Scene Investigation and Evidence Collection Nme: Clss: Dte: Chpter 02 Crime-Scene Investigtion nd Evidence Collection 1. The terms grid, liner, qudrnt, zone, nd spirl re typiclly used to descrie dtum points... Flse Flse 2. An evidence log nd chin

More information

Review TEACHING FOR GENERALIZATION & MAINTENANCE

Review TEACHING FOR GENERALIZATION & MAINTENANCE Gols By the end of clss, you should be ble to: Explin wht generliztion is, why it is criticl for techers to know how to tech so tht it occurs, nd give n exmple of it from your own experience in the clssroom

More information

2. Hubs and authorities, a more detailed evaluation of the importance of Web pages using a variant of

2. Hubs and authorities, a more detailed evaluation of the importance of Web pages using a variant of 5 Web Serch Outline: 1. Pge rnk, for discovering the most ëimportnt" pges on the Web, s used in Google. 2. Hubs nd uthorities, more detiled evlution of the importnce of Web pges using vrint of the eigenvector

More information

Agilent G6825AA MassHunter Pathways to PCDL Software Quick Start Guide

Agilent G6825AA MassHunter Pathways to PCDL Software Quick Start Guide Agilent G6825AA MssHunter Pthwys to PCDL Softwre Quick Strt Guide Wht is Agilent Pthwys to PCDL? Fetures of Pthwys to PCDL Agilent MssHunter Pthwys to PCDL converter is stnd-lone softwre designed to fcilitte

More information

WORKSHOP FOR SYRIA. A SHORT TERM PROJECT A Collaborative Map proposal Al Moadamyeh, Syria

WORKSHOP FOR SYRIA. A SHORT TERM PROJECT A Collaborative Map proposal Al Moadamyeh, Syria Al Modmyeh is city locted south-west Dmscus, in Syri. It is fcing post-conflict sitution, fter yers of siege nd displcement of its inhbitnts. Now, the popultion is coming bck, s lso new incomers. Therefore,

More information

Satoshi Yoshida* and Takuya Kida* *Hokkaido University Graduate school of Information Science and Technology Division of Computer Science

Satoshi Yoshida* and Takuya Kida* *Hokkaido University Graduate school of Information Science and Technology Division of Computer Science Stoshi Yoshid* nd Tkuy Kid* *Hokkido University Grdute school of Informtion Science nd Technology Division of Computer Science 1 Compressed Dt 01110101110111 0100101001 Serch Directly Progrm Serching on

More information

Finite-Dimensional Linear Algebra Errata for the first printing

Finite-Dimensional Linear Algebra Errata for the first printing Finite-Dimensionl Liner Algebr Errt for the first printing Mrk S. Gockenbch Jnury 6, 011 The following corrections will be mde in the second printing of the text, expected in 011. Pge 41: Exercise 5: S

More information

Using Paclobutrazol to Suppress Inflorescence Height of Potted Phalaenopsis Orchids

Using Paclobutrazol to Suppress Inflorescence Height of Potted Phalaenopsis Orchids Using Pcloutrzol to Suppress Inflorescence Height of Potted Phlenopsis Orchids A REPORT SUBMITTED TO FINE AMERICAS Linsey Newton nd Erik Runkle Deprtment of Horticulture Spring 28 Using Pcloutrzol to Suppress

More information

Thebiotutor.com A2 Biology OCR Unit F215: Control, genomes and environment Module 1.2 Meiosis and variation Answers

Thebiotutor.com A2 Biology OCR Unit F215: Control, genomes and environment Module 1.2 Meiosis and variation Answers Theiotutor.com A2 Biology OCR Unit F215: Control, genomes nd environment Module 1.2 Meiosis nd vrition Answers Andy Todd 1 1. () (i) gene length of DNA; codes for (specific), polypeptide / protein / RNA;

More information

XII. HIV/AIDS. Knowledge about HIV Transmission and Misconceptions about HIV

XII. HIV/AIDS. Knowledge about HIV Transmission and Misconceptions about HIV XII. HIV/AIDS Knowledge bout HIV Trnsmission nd Misconceptions bout HIV One of the most importnt prerequisites for reducing the rte of HIV infection is ccurte knowledge of how HIV is trnsmitted nd strtegies

More information

Input from external experts and manufacturer on the 2 nd draft project plan Stool DNA testing for early detection of colorectal cancer

Input from external experts and manufacturer on the 2 nd draft project plan Stool DNA testing for early detection of colorectal cancer Input externl experts nd mnufcturer on the 2 nd drft project pln Stool DNA testing for erly detection of colorectl cncer (Project ID:OTJA10) All s nd uthor s replies on the 2nd drft project pln Stool DNA

More information

Java Application Development

Java Application Development In order to lern whih questions hve een nswered orretly: 1. Print these pges. 2. Answer the questions. 3. Send this ssessment with the nswers vi:. FAX to (212) 967-3498. Or. Mil the nswers to the following

More information

Check your understanding 3

Check your understanding 3 1 Wht is the difference etween pssive trnsport nd ctive trnsport? Pssive trnsport is the movement of prticles not requiring energy. Movement of prticles in ctive trnsport uses energy. 2 A gs tp in the

More information

build Firm, sexy arms

build Firm, sexy arms w uild Firm, sexy rms Wnt toned, strong rms tht crown you pushup queen t oot cmp? Wnt to rock tnk top? These four moves re wht you need. Achieve Totl Arm Envy Mny women zero in on the show-off muscles,

More information

Maximize Your Genetic Return. Find your Genetic Solution with Boviteq West

Maximize Your Genetic Return. Find your Genetic Solution with Boviteq West Mximize Your Genetic Return. Find your Genetic Solution with Boviteq West Boviteq West is comprehensive reproductive solutions provider, imed t finding the right genetic solution for every niml nd every

More information

Reducing the Risk. Logic Model

Reducing the Risk. Logic Model Reducing the Risk Logic Model ETR (Eduction, Trining nd Reserch) is nonprofit orgniztion committed to providing science-bsed innovtive solutions in helth nd eduction designed to chieve trnsformtive chnge

More information

Chapter 5: The peripheral nervous system Learning activity suggested answers

Chapter 5: The peripheral nervous system Learning activity suggested answers Chpter 5: The peripherl nervous system Lerning ctivity suggested nswers Lerning Activity 5.1 (p. 222) 1 Briefly descrie the two min functions of the somtic nervous system. Description should refer to:

More information

THE EVALUATION OF DEHULLED CANOLA MEAL IN THE DIETS OF GROWING AND FINISHING PIGS

THE EVALUATION OF DEHULLED CANOLA MEAL IN THE DIETS OF GROWING AND FINISHING PIGS THE EVALUATION OF DEHULLED CANOLA MEAL IN THE DIETS OF GROWING AND FINISHING PIGS THE EVALUATION OF DEHULLED CANOLA MEAL IN THE DIETS OF GROWING AND FINISHING PIGS John F. Ptience nd Doug Gillis SUMMARY

More information

Not for Citation or Publication Without Consent of the Author

Not for Citation or Publication Without Consent of the Author Not for Cittion or Puliction Without Consent of the Author AN AUTOMATED SEX PHEROMONE TRAP FOR MONITORING ADULT CM AND OFM AND THE INFLUENCE OF TRAP COLOR ON MOTH AND NON-TARGET CAPTURES Brin L. Lehmn

More information

Appendix J Environmental Justice Populations

Appendix J Environmental Justice Populations Appendix J Environmentl Justice s [This pge intentionlly left blnk] Tble of Contents REFERENCES...J-2 Pge LIST OF TABLES Pge Tble J-1: Demogrphic Overview of Bruinsburg Site Project Are... J-3 Tble J-2:

More information

ET 100 EXTERIOR FRONT DOOR BLACK OUT TAPE INSTALLATION

ET 100 EXTERIOR FRONT DOOR BLACK OUT TAPE INSTALLATION 100 EXTERIOR FRONT DOOR BLCK OUT TPE INSTLLTION The procedure descried elow is for the LH side. Use the sme procedure for oth the RH nd LH sides, unless otherwise specified. 1. INSTLL NO. 2 BLCK OUT TPE

More information

Optimisation of diets for Atlantic cod (Gadus morhua) broodstock: effect of arachidonic acid on egg & larval quality

Optimisation of diets for Atlantic cod (Gadus morhua) broodstock: effect of arachidonic acid on egg & larval quality Optimistion of diets for Atlntic cod (Gdus morhu) roodstock: effect of rchidonic cid on egg & lrvl qulity Dr Gordon Bell, Ms. An Blnco, Dr Bill Roy, Dr Derek Roertson, Dr Jim Henderson nd Mr Richrd Prickett,

More information

An Intuitive Model of Perceptual Grouping for HCI Design

An Intuitive Model of Perceptual Grouping for HCI Design An Intuitive Model of Perceptul Grouping for HCI Design Ruth Rosenholtz MIT Cmridge, MA rruth@mit.edu Nthniel R. Twrog MIT Cmridge, MA ntwrog@mit.edu Ndj Schinkel-Bielefeld MIT Cmridge, MA schinkel@mit.edu

More information

LALR Analysis. LALR Analysis. LALR Analysis. LALR Analysis

LALR Analysis. LALR Analysis. LALR Analysis. LALR Analysis LLR nlysis Motivtion s eplined efore, in LR() prsers there re mny more sttes thn in the previous procedures, LR() nd LR(). This is ecuse there re sttes which contin the sme configurtions, ut with different

More information

An Energy Efficient Seizure Prediction Algorithm

An Energy Efficient Seizure Prediction Algorithm An Energy Efficient Seizure Prediction Algorithm Zhongnn Fng Electricl Engineering Stnford University zhongnn@stnford.edu Yun Yun Sttistics Stnford University yun@stnford.edu Andrew Weitz Bioengineering

More information

Directional Valves electro-hydraulically operated (new series) Huade América 1

Directional Valves electro-hydraulically operated (new series) Huade América 1 Directionl Vlves electro-hydruliclly operted (new series) Hude Améric 1 BEIJING HUADE HYDRAULIC INDUSTRIAL GROUP CO.,LTD. Directionl vlves electro-hydruliclly operted (new series) Size 10 to 32 up to 35

More information

SOME MECHANISTIC CONCEPTS IN ELECTROPHILIC ADDITION REACTIONS TO C=C BONDS

SOME MECHANISTIC CONCEPTS IN ELECTROPHILIC ADDITION REACTIONS TO C=C BONDS SM MANISTI NPTS IN LTPILI AITIN ATINS T = BNS The = ond is considered to e wek se/nucleophile. The high concentrtion of electron density mkes the pi ond Lewis se, ut in order to donte electrons the pi

More information

PNEUMOVAX 23 is recommended by the CDC for all your appropriate adult patients at increased risk for pneumococcal disease 1,2 :

PNEUMOVAX 23 is recommended by the CDC for all your appropriate adult patients at increased risk for pneumococcal disease 1,2 : PNEUMOVAX 23 is recommended y the CDC for ll your pproprite dult ptients t incresed risk for pneumococcl disese 1,2 : Adults ged

More information

Technical Report GIT-CC Some Layouts Using the Sleepy Stack Approach

Technical Report GIT-CC Some Layouts Using the Sleepy Stack Approach Technicl Report GIT-CC-04-05 Some Lyouts Using the Sleepy Stck Approch Philipp Pfeiffenerger, Jun Cheol Prk nd Vincent J. Mooney III Center for Reserch on Emedded Systems nd Technology Georgi Institute

More information

CSE 5311 Notes 2: Binary Search Trees

CSE 5311 Notes 2: Binary Search Trees S Notes : inry Ser Trees (Lst upte /7/ 8:7 M) ROTTIONS Single left rottion t (K rotting ege ) Single rigt rottion t (K rotting ege ) F oule rigt rottion t F G F G Wt two single rottions re equivlent? (OTTOM-UP)

More information

Effect of linear and random non-linear programming on environmental pollution caused by broiler production

Effect of linear and random non-linear programming on environmental pollution caused by broiler production Journl of Novel Applied Sciences Aville online t www.jnsci.org 24 JNAS Journl-24-3-/43-434 ISSN 2322-549 24 JNAS Effect of liner nd rndom non-liner progrmming on environmentl pollution cused y roiler production

More information

Math 254 Calculus Exam 1 Review Three-Dimensional Coordinate System Vectors The Dot Product

Math 254 Calculus Exam 1 Review Three-Dimensional Coordinate System    Vectors   The Dot Product Mth 254 Clculus Exm 1 Review Your first exm is Fridy, April 26. I will provide one pge of notes. You my bring in one 3- inch by 5-inch note crd with notes on both sides. You should hve been working on

More information

3/10/ Energy metabolism o How to best supply energy to the pig o How the pig uses energy for growth

3/10/ Energy metabolism o How to best supply energy to the pig o How the pig uses energy for growth Keeping Control of Feed Costs in n Uncertin Mrket Presented To: Iow Pork Producers Assocition Regionl Meetings Februry, 2009 John F. Ptience Iow Stte University Ames, IA Outline Wht s new in swine nutrition

More information

Computer-Aided Learning in Insulin Pump Training

Computer-Aided Learning in Insulin Pump Training Journl of Dibetes Science nd Technology Volume 4, Issue 4, July 2010 Dibetes Technology Society TECHNOLOGY REPORTS Computer-Aided Lerning in Insulin Pump Trining Sergey V., M.Sc., 1 nd Chrles J. George,

More information

PROVEN ANTICOCCIDIAL IN NEW FORMULATION

PROVEN ANTICOCCIDIAL IN NEW FORMULATION PROVEN ANTICOCCIDIAL IN NEW FORMULATION Coxidin 100 microgrnulte A coccidiosttic dditive for roilers, chickens rered for lying nd turkeys Contins 100 g of monensin sodium per kg Aville s homogenous grnules

More information

Sleepy Stack Reduction of Leakage Power

Sleepy Stack Reduction of Leakage Power y Reduction of Lekge Power Jun Cheol Prk, Vincent J. Mooney III, nd Philipp Pfeiffenerger Center for Reserch on Emedded Systems nd Technology School of Electricl nd Computer Engineering, Georgi Institute

More information

SEIZURES AND EPILEPSY

SEIZURES AND EPILEPSY SEIZURES AND EPILEPSY CONTENT CREATED BY Lern more t www.helth.hrvrd.edu TALK WITH YOUR DOCTOR Tble of Contents WHAT IS A SEIZURE? 4 WHAT IS EPILEPSY? 6 TESTING 7 TREATMENT OPTIONS 9 ANTI-SEIZURE MEDICATION

More information

Single-Molecule Studies of Unlabelled Full-Length p53 Protein Binding to DNA

Single-Molecule Studies of Unlabelled Full-Length p53 Protein Binding to DNA Single-Molecule Studies of Unlbelled Full-Length p53 Protein Binding to DNA Philipp Nuttll, 1 Kidn Lee, 2 Pietro Ciccrell, 3 Mrco Crminti, 3 Giorgio Ferrri, 3 Ki- Bum Kim, 2 Tim Albrecht 1* 1 Imperil College

More information

The Dynamics of Varicella-Zoster Virus Epithelial Keratitis in Herpes Zoster Ophthalmicus

The Dynamics of Varicella-Zoster Virus Epithelial Keratitis in Herpes Zoster Ophthalmicus Chpter 2 The Dynmics of Vricell-Zoster Virus Epithelil Kertitis in Herpes Zoster Ophthlmicus The morphology of n individul VZV lesion reflects sequence of events triggered y the virus impct on cornel epithelil

More information

CEO MESSAGE STEPHANIE HARVEY. As we take these first steps into the New Year, it s a good time to reflect upon our journey.

CEO MESSAGE STEPHANIE HARVEY. As we take these first steps into the New Year, it s a good time to reflect upon our journey. 2 CEO MESSAGE STEPHANIE HARVEY As we tke these first steps into the New Yer, it s good time to reflect upon our journey. At ICV we re guided by the knowledge tht Aboriginl nd Torres Strit Islnder communities

More information

Scientific research on the biological value of olive oil

Scientific research on the biological value of olive oil Scientific reserch on the biologicl vlue olive oil Cov F.G. Ally M. (ed.). L' économie de l' olivier Pr : CIHEAM Options Méditerrnéennes : Série Etudes; n. 1988-V 1988 pges 149-152 Article vilble on le

More information

2 nd Properties of the Exponential Functions

2 nd Properties of the Exponential Functions Dte:/26/25 2 nd Clss Objective: Appl the concept to eplore the properties of functions of the form = bˣ. Appl the concept to grph eponentil functions tht hve bse e Agend: Bell ringer (e: 3,32 pge 44) vocbulr

More information

Analytic hierarchy process-based recreational sports events development strategy research

Analytic hierarchy process-based recreational sports events development strategy research ISSN : 0974-7435 Volume 0 Issue 6 An Indin Journl Anlytic hierrchy process-bsed recretionl sports events development strtegy reserch Weihu Yo School of hysicl Eduction, Luoyng Norml University, Luoyng

More information

Course Syllabus. Operating Systems, Spring 2016, Meni Adler, Danny Hendler and Amnon Meisels 1 3/14/2016

Course Syllabus. Operating Systems, Spring 2016, Meni Adler, Danny Hendler and Amnon Meisels 1 3/14/2016 Course Syllabus. Introduction - History; Views; Concepts; Structure 2. Process Management - Processes; State + Resources; Threads; Unix implementation of Processes 3. Scheduling Paradigms; Unix; Modeling

More information

Fast Support Vector Machines for Structural Kernels

Fast Support Vector Machines for Structural Kernels ECML PK 2011 Fst Support ector Mchines for Structurl Kernels Aliksei Severyn nd Alessndro Moschi: University of Trento, Itly September 7, 2011 1 Structured t Much of rel dt is structured: Sequences Trees

More information

10 Read and match. 11 2: : Play the game. HOME SCHOOL

10 Read and match. 11 2: : Play the game. HOME SCHOOL film str Jos Wht do you know? :0 Listen nd chnt Circle the jos : Wht do you wnt to e? (x) I wnt to e, I wnt to e, I wnt to e film str I don t wnt to e frmer I don t wnt to e firefighter I wnt to e, I wnt

More information

EVALUATION OF DIFFERENT COPPER SOURCES AS A GROWTH PROMOTER IN SWINE FINISHING DIETS 1

EVALUATION OF DIFFERENT COPPER SOURCES AS A GROWTH PROMOTER IN SWINE FINISHING DIETS 1 Swine Dy 2001 Contents EVALUATION OF DIFFERENT COPPER SOURCES AS A GROWTH PROMOTER IN SWINE FINISHING DIETS 1 C. W. Hstd, S. S. Dritz 2, J. L. Nelssen, M. D. Tokch, nd R. D. Goodbnd Summry Two trils were

More information

SYNOPSIS Final Abbreviated Clinical Study Report for Study CA ABBREVIATED REPORT

SYNOPSIS Final Abbreviated Clinical Study Report for Study CA ABBREVIATED REPORT Finl Arevited Clinicl Study Report Nme of Sponsor/Compny: Bristol-Myers Squi Ipilimum Individul Study Tle Referring to the Dossier (For Ntionl Authority Use Only) Nme of Finished Product: Yervoy Nme of

More information

Addendum to the Evidence Review Group Report on Aripiprazole for the treatment of schizophrenia in adolescents (aged years)

Addendum to the Evidence Review Group Report on Aripiprazole for the treatment of schizophrenia in adolescents (aged years) Addendum to the Evidence Review Group Report on Aripiprzole for the tretment of schizophreni in dolescents (ged 15-17 yers) Produced by Authors Correspondence to Southmpton Helth Technology Assessments

More information

What is it? Flexibility Training involves stretching exercises to improve joint and muscle function.

What is it? Flexibility Training involves stretching exercises to improve joint and muscle function. Helthy Living Fitness Progrm Flexiility nd Resistnce Trining Progrm Wht is it? Flexiility Trining involves stretching exercises to improve joint nd muscle function. Stretching cn e n importnt prt of complete

More information

Low Power Integrated Scan-Retention Mechanism

Low Power Integrated Scan-Retention Mechanism Low Power Integrted cn-etention echnism Victor Zyun I T.J. Wtson eserch enter, Yorktown Heights, NY zyun@us.im.com tephen V. Kosonocky I T.J. Wtson eserch enter, Yorktown Heights, NY stevekos@us.im.com

More information

Making/Answering Calls

Making/Answering Calls Mking/Answering Clls Mking Cll Mking Cll... 52 Clling the Sme Prty Agin... 54 Showing/Hiding Cller ID for Ech Cll... 56 Sending Touch-tone Signls Quickly... 57 Mking Interntionl

More information

Fast ensemble representations for abstract visual impressions

Fast ensemble representations for abstract visual impressions Received Oct 2 Accepted Sep 2 Pulished Nov 2 Fst ensemle representtions for strct visul impressions Allison Ymnshi Lei, Ann Kosovichev 2 & Dvid Whitney DOI:./ncomms OPEN Much of the richness of perception

More information

Invasive Pneumococcal Disease Quarterly Report July September 2018

Invasive Pneumococcal Disease Quarterly Report July September 2018 Invsive Pneumococcl Disese Qurterly Report July Septemer Introduction Since 17 Octoer 2008, invsive pneumococcl disese (IPD) hs een notifile to the locl Medicl Officer of Helth under the Helth Act 1956.

More information

Invasive Pneumococcal Disease Quarterly Report. July September 2017

Invasive Pneumococcal Disease Quarterly Report. July September 2017 Invsive Pneumococcl Disese Qurterly Report July September 2017 Prepred s prt of Ministry of Helth contrct for scientific services by Rebekh Roos Helen Heffernn October 2017 Acknowledgements This report

More information

General Microscopic Changes

General Microscopic Changes Generl Microscopic Chnges 2 This chpter covers collection of microscopic chnges tht lck dignostic specificity ut occur in different specific diseses, s will ecome pprent in susequent chpters. Almost ll

More information

Supplementary figure 1

Supplementary figure 1 Supplementry figure 1 Dy 8 post LCMV infection Vsculr Assoc. Prenchym Dy 3 post LCMV infection 1 5 6.7.29 1 4 1 3 1 2 88.9 4.16 1 2 1 3 1 4 1 5 1 5 1.59 5.97 1 4 1 3 1 2 21.4 71 1 2 1 3 1 4 1 5 1 5.59.22

More information

The concept that reduces food waste, keeps your product fresher and saves money! Sales presentation PerfoLid // 2017

The concept that reduces food waste, keeps your product fresher and saves money! Sales presentation PerfoLid // 2017 The concept tht reduces food wste, keeps your product fresher nd sves money! Sles presenttion PerfoLid // 2017 Pge 2 of 16 Sles presenttion PerfoLid // 2017 The issue of food wste Almost 50% of ll fresh

More information

Prime Enrollees Consumer Watch NHC Patuxent River FY 2016 Defense Health Cost Assessment & Program Evaluation

Prime Enrollees Consumer Watch NHC Patuxent River FY 2016 Defense Health Cost Assessment & Program Evaluation Prime Enrollees Consumer Wtch NHC Ptuxent River 16 Defense Helth Cost Assessment & Progrm Evlution NHC Ptuxent River: Smple size-1,457 Response rte-1.2% Source: Helth Cre Survey of DoD Beneficiries Inside

More information

The Effect of Substituting Sugar with Artificial. Sweeteners on the Texture and Palatability of Pancakes

The Effect of Substituting Sugar with Artificial. Sweeteners on the Texture and Palatability of Pancakes The Effect of Sustituting Sugr with Artificil NUTR 453 Sweeteners on the Texture nd Pltility of Pnckes Jmie Wldron, Rquel Reyes, nd Reecc Legi 1 I. Astrct The effects of replcing sugr with Stevi nd Splend

More information

advm.sql bin/acfsload start asmfs

advm.sql bin/acfsload start asmfs cler screen dm.sql rem demo ADVM nd ACFS use rem clen up to strt oer rem mke sure driers re loded 01/pp pp/orcle orcle/product bin/cfslod strt rem unmount the mount point host sudo umount rem now remoe

More information

Using Load Research Data to Model Weather Response

Using Load Research Data to Model Weather Response 30 25 20 15 10-5 1,950 2,025 2,100 2,175 2,250 2,325 2,400 2,475 2,550 2,625 2,700 2,775 2,850 2,925 3,000 3,075 3,150 3,225 3,300 3,375 3,450 3,525 3,600 MW 100% 90% 80% 70% 60% 50% 40% 30% 20% 10% 0%

More information

WSU Tree Fruit Research and Extension Center, Wenatchee (509) ext. 265;

WSU Tree Fruit Research and Extension Center, Wenatchee (509) ext. 265; FINAL REPORT WTFRC Project # AH-1-5 WSU Project # 13C-355-3 Project title: PI: Orgniztion: Coopertors: of Sunburn in Apples with RAYNOX Lrry Schrder, Horticulturist WSU Tree Fruit Reserch nd Extension

More information

METHOD 4010 SCREENING FOR PENTACHLOROPHENOL BY IMMUNOASSAY

METHOD 4010 SCREENING FOR PENTACHLOROPHENOL BY IMMUNOASSAY METHOD 4010 SCREENING FOR PENTACHLOROPHENOL BY IMMUNOASSAY 1.0 SCOPE AND APPLICATION 1.1 Method 4010 is procedure for screening solids such s soils, sludges, nd queous medi such s wste wter nd lechtes

More information

Adjectives. Demonstrative adjectives are used to point out which noun is being spoken of. That book belongs to Katy. This book belongs to me.

Adjectives. Demonstrative adjectives are used to point out which noun is being spoken of. That book belongs to Katy. This book belongs to me. Demonstrtive djectives re used to point out which noun is being spoken of. Tht book belongs to Kty. This book belongs to me. Choose demonstrtive djective from the box to use in ech spce. this tht these

More information

USE OF SORGHUM-BASED DISTILLERS GRAINS IN DIETS FOR NURSERY AND FINISHING PIGS

USE OF SORGHUM-BASED DISTILLERS GRAINS IN DIETS FOR NURSERY AND FINISHING PIGS Swine Dy 1996 USE OF SORGHUM-BASED DISTILLERS GRAINS IN DIETS FOR NURSERY AND FINISHING PIGS B. W. Senne, J. D. Hncock, I. Mvromichlis, S. L. Johnston, P. S. Sorrell, I. H. Kim, nd R. H. Hines Summry Two

More information

Current and New Tools for Controlling Postharvest Decay of Fresh Citrus

Current and New Tools for Controlling Postharvest Decay of Fresh Citrus Current nd New Tools for Controlling Posthrvest Decy of Fresh Citrus Mrk Ritenour & Jiqi Yn Indin River Reserch nd Eduction Center, Fort Pierce Control Options Prehrvest - No relile replcement yet for

More information

MUTATIONS. Mutagens. Point mutations substitutions. Mutations. Sickle-cell disease. Point mutations insertions & deletions

MUTATIONS. Mutagens. Point mutations substitutions. Mutations. Sickle-cell disease. Point mutations insertions & deletions MUTTIONS Mutgens Mutgens re physicl or chemicl gents tht give rise to muttions. High energy rdition UV, X, gmm. se nlogues, intercltors, chemicl chnge inducers. ffect DN structure, se piring, etc. 2004

More information

INFLUENCE OF DIFFERENT STRAINS AND WAYS OF INOCULATION ON THE RABBIT S RESPONSE TO EXPERIMENTAL INFECTION WITH PASTEURELLA MULTOCIDA

INFLUENCE OF DIFFERENT STRAINS AND WAYS OF INOCULATION ON THE RABBIT S RESPONSE TO EXPERIMENTAL INFECTION WITH PASTEURELLA MULTOCIDA Pthology nd Hygiene INFLUENCE OF DIFFERENT STRAINS AND WAYS OF INOCULATION ON THE RABBIT S RESPONSE TO EXPERIMENTAL INFECTION WITH PASTEURELLA MULTOCIDA Kulcsár G. 1, Fáián K. 1 *, Brn T. 1, Virág Gy.

More information

Clinical Study Report Synopsis Drug Substance Naloxegol Study Code D3820C00018 Edition Number 1 Date 01 February 2013 EudraCT Number

Clinical Study Report Synopsis Drug Substance Naloxegol Study Code D3820C00018 Edition Number 1 Date 01 February 2013 EudraCT Number EudrCT Number 2012-001531-31 A Phse I, Rndomised, Open-lbel, 3-wy Cross-over Study in Helthy Volunteers to Demonstrte the Bioequivlence of the Nloxegol 25 mg Commercil nd Phse III Formultions nd to Assess

More information

Consumer perceptions of meat quality and shelf-life in commercially raised broilers compared to organic free range broilers

Consumer perceptions of meat quality and shelf-life in commercially raised broilers compared to organic free range broilers Consumer perceptions of met qulity nd shelf-life in commercilly rised roilers compred to orgnic free rnge roilers C.Z. ALVARADO 1 *, E. WENGER 2 nd S. F. O KEEFE 3 1 Texs Tech University, Box 42141 Luock,

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION . Norml Physiologicl Conditions. SIRT1 Loss-of-Function S1. Model for the role of SIRT1 in the regultion of memory nd plsticity. () Our findings suggest tht SIRT1 normlly functions in coopertion with YY1,

More information

Temporal Target Integration Underlies Performance at Lag 1 in the Attentional Blink

Temporal Target Integration Underlies Performance at Lag 1 in the Attentional Blink Journl of Experimentl Psychology: Humn Perception nd Performnce 212, Vol. 38, No. 6, 1448 1464 212 Americn Psychologicl Assocition 96-1523/12/$12. DOI: 1.137/2761 Temporl Trget Integrtion Underlies Performnce

More information

Down Syndrome MILWAUKEE COUNTY ZOO 22 ND ANNUAL STATEWIDE WISCONSIN S FIRST AND LARGEST DOWN SYNDROME AWARENESS WALK

Down Syndrome MILWAUKEE COUNTY ZOO 22 ND ANNUAL STATEWIDE WISCONSIN S FIRST AND LARGEST DOWN SYNDROME AWARENESS WALK 22 ND ANNUAL STATEWIDE Down Syndrome Awreness Wlk WISCONSIN S FIRST AND LARGEST DOWN SYNDROME AWARENESS WALK JOIN US FOR A MARDI-GRAS THEMED AWARENESS PARTY WITH 3,000 OF YOUR CLOSEST FRIENDS! 9.23.18

More information

Optimizing Metam Sodium Fumigation in Fine-Textured Soils

Optimizing Metam Sodium Fumigation in Fine-Textured Soils Optimizing Metm Sodium Fumigtion in Fine-Textured Soils Neil C Gudmestd University Distinguished Professor & Endowed Chir of Potto Pthology Deprtment of Plnt Pthology North Dkot Stte University Erly Dying

More information

Provider How To. Software Process Service Results

Provider How To. Software Process Service Results Softwre Proess Servie Results Provier How To Copyright Glenwoo Systems LLC 2010. The informtion herein remins the property of Glenwoo Systems LLC. This informtion my not e reprinte or uplite, n is governe

More information

The Measurement of Interviewer Variance

The Measurement of Interviewer Variance 66 TWO STUDIES OF INTERVIEWER VARIANCE OF SOCIO- PSYCHOLOGICAL VARIABLES By: Leslie Kish nd Crol W. Slter Survey Reserch Center, University of Michign Introduction We report results obtined in two surveys

More information

EFFECTS OF INGREDIENT AND WHOLE DIET IRRADIATION ON NURSERY PIG PERFORMANCE

EFFECTS OF INGREDIENT AND WHOLE DIET IRRADIATION ON NURSERY PIG PERFORMANCE Swine Dy 21 EFFECTS OF INGREDIENT AND WHOLE DIET IRRADIATION ON NURSERY PIG PERFORMANCE J. M. DeRouchey, M. D. Tokch, J. L. Nelssen, R. D. Goodbnd, S. S. Dritz 1, J. C. Woodworth, M. J. Webster, B. W.

More information

Meat and Food Safety. B.A. Crow, M.E. Dikeman, L.C. Hollis, R.A. Phebus, A.N. Ray, T.A. Houser, and J.P. Grobbel

Meat and Food Safety. B.A. Crow, M.E. Dikeman, L.C. Hollis, R.A. Phebus, A.N. Ray, T.A. Houser, and J.P. Grobbel Met nd Food Sfety Needle-Free Injection Enhncement of Beef Strip Loins with Phosphte nd Slt Hs Potentil to Improve Yield, Tenderness, nd Juiciness ut Hrm Texture nd Flvor B.A. Crow, M.E. Dikemn, L.C. Hollis,

More information

Copy Number ID2 MYCN ID2 MYCN. Copy Number MYCN DDX1 ID2 KIDINS220 MBOAT2 ID2

Copy Number ID2 MYCN ID2 MYCN. Copy Number MYCN DDX1 ID2 KIDINS220 MBOAT2 ID2 Copy Numer Copy Numer Copy Numer Copy Numer DIPG38 DIPG49 ID2 MYCN ID2 MYCN c DIPG01 d DIPG29 ID2 MYCN ID2 MYCN e STNG2 f MYCN DIPG01 Chr. 2 DIPG29 Chr. 1 MYCN DDX1 Chr. 2 ID2 KIDINS220 MBOAT2 ID2 Supplementry

More information

Summary. Effect evaluation of the Rehabilitation of Drug-Addicted Offenders Act (SOV)

Summary. Effect evaluation of the Rehabilitation of Drug-Addicted Offenders Act (SOV) Summry Effect evlution of the Rehbilittion of Drug-Addicted Offenders Act (SOV) The Rehbilittion of Drug-Addicted Offenders Act (SOV) ws lunched on April first 2001. This lw permitted the compulsory plcement

More information

ENERGY CONTENT OF BARLEY

ENERGY CONTENT OF BARLEY ENERGY CONTENT OF BARLEY VARIATION IN THE DIETARY ENERGY CONTENT OF BARLEY Shwn Firbirn, John Ptience, Hnk Clssen nd Ruurd Zijlstr SUMMARY Formultion of commercil pig diets requires n incresing degree

More information

P AND K IN POTATOES. Donald A Horneck Oregon State University Extension Service

P AND K IN POTATOES. Donald A Horneck Oregon State University Extension Service P AND K IN POTATOES Donld A Hornek Oregon Stte University Extension Servie INTRODUCTION Phosphorous nd potssium re importnt to grow high yielding nd qulity pottoes. Muh of the northwest hs hd trditionlly

More information

CS Artificial Intelligence 2007 Semester 2. CompSci 366. Classical Planning: Regression Planning. Part II: Lecture 5 1 of 20

CS Artificial Intelligence 2007 Semester 2. CompSci 366. Classical Planning: Regression Planning. Part II: Lecture 5 1 of 20 CS 367 - Artifiil Intelligene 2007 Semester 2 CompSi 366 Clssil Plnning: Regression Plnning Prt II: Leture 5 1 of 20 CS 367 - Artifiil Intelligene 2007 Semester 2 Outline Review of Progression Plnning(PP)

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION doi:.38/nture72 Neurl correltes, computtion nd ehviourl impct of decision confidence Kepecs A., Uchid N., Zriwl H. nd Minen Z.F. Confidence estimtes in integrtor models of decision-mking Computing decision

More information

The potential future of targeted radionuclide therapy: implications for occupational exposure? P. Covens

The potential future of targeted radionuclide therapy: implications for occupational exposure? P. Covens The potentil future of trgeted rdionuclide therpy: implictions for occuptionl exposure? Introduction: Trgeted Rdionuclide Therpy (TRT) Systemic tretment Molecule lbelled with rdionuclide delivers toxic

More information

CLPNA Pressure Ulcers ecourse: Module 5.3 Quiz I page 1

CLPNA Pressure Ulcers ecourse: Module 5.3 Quiz I page 1 CLPNA Pressure Ulcers ecourse: Module 5.3 Quiz I 1. Clensing is the process of clening nd sterilizing pressure ulcer wound. 2. How often should pressure ulcer wound nd surrounding skin be clensed?. Every

More information

Cushion. Ride Designs JAVA

Cushion. Ride Designs JAVA Ride Designs JAVA Cushion University-level reserch indictes tht the new is etter thn the competition y every mesure: Lower pressures Greter sitting stility Less deep tissue deformtion Cooler nd dryer JAVA

More information

A LAYOUT-AWARE APPROACH FOR IMPROVING LOCALIZED SWITCHING TO DETECT HARDWARE TROJANS IN INTEGRATED CIRCUITS

A LAYOUT-AWARE APPROACH FOR IMPROVING LOCALIZED SWITCHING TO DETECT HARDWARE TROJANS IN INTEGRATED CIRCUITS A LAYOUT-AWARE APPROACH FOR IMPROVING LOCALIZED SWITCHING TO DETECT HARDWARE TROJANS IN INTEGRATED CIRCUITS Hssn Slmni, Mohmmd Tehrnipoor ECE Deprtment University of Connecticut {slmni h,tehrni}@engr.uconn.edu

More information

What constitutes an efficient reference frame for vision?

What constitutes an efficient reference frame for vision? Wht constitutes n efficient reference frme for vision? Duje Tdin, Joseph S. Lppin, Rndolph Blke nd Emily D. Grossmn Vnderilt Vision Reserch Center, 30 Wilson Hll, Vnderilt University, 2 st Avenue South,

More information

Arthroscopic Anatomy of Shoulder

Arthroscopic Anatomy of Shoulder Arthroscopic Antomy of Shoulder Murt Bozkurt, Mehmet Emin Simsek, nd Hlil İrhim Açr 2 2.1 Introduction In the lst 30 yers, shoulder rthroscopy hs ecome of greter importnce in the dignosis nd tretment of

More information

Study of Stress Distribution in the Tibia During Stance Phase Running Using the Finite Element Method

Study of Stress Distribution in the Tibia During Stance Phase Running Using the Finite Element Method Ksetsrt J. (Nt. Sci.) 48 : 729-739 (2014) Study of Stress Distriution in the Tii During Stnce Phse Running Using the Finite Element Method Thepwchr Ruchirh 1, Tumrong Puttpitukporn 1, * nd Siriporn Ssimontonkul

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION Prentl doi:.8/nture57 Figure S HPMECs LM Cells Cell lines VEGF (ng/ml) Prentl 7. +/-. LM 7. +/-.99 LM 7. +/-.99 Fold COX induction 5 VEGF: - + + + Bevcizum: - - 5 (µg/ml) Reltive MMP LM mock COX MMP LM+

More information

SAMPLE YEAR 6 MASTERING THE MATHEMATICS CURRICULUM. Written by Laura Sumner. Including CD-ROM for whiteboard use or printing

SAMPLE YEAR 6 MASTERING THE MATHEMATICS CURRICULUM. Written by Laura Sumner. Including CD-ROM for whiteboard use or printing Including CD-ROM for whiteord use or printing MASTERING THE MATHEMATICS CURRICULUM YEAR 6 Written y Lur Sumner MASTERING THE MATHEMATICS CURRICULUM YEAR 6 Written y Lur Sumner Acknowledgements: Author:

More information

Effects of physical exercise on working memory and prefrontal cortex function in post-stroke patients

Effects of physical exercise on working memory and prefrontal cortex function in post-stroke patients Effects of physicl exercise on working memory nd prefrontl cortex function in post-stroke ptients M Moriy, C Aoki, K Sktni Grdute School of Helth Sciences Reserch, Mjor of Physicl Therpy, TeikyoHeisei

More information

Table 1. Sequence and rates of insecticide sprays in experimental plots of apples, Columbus, Ohio, Treatment

Table 1. Sequence and rates of insecticide sprays in experimental plots of apples, Columbus, Ohio, Treatment Apple insect mngement by insecticides in Ohio, 2012 Finl report, 12/31/2012 Celeste Welty, Associte Professor of Entomology, The Ohio Stte University Rothenbuhler Lbortory, 2501 Crmck Rd., Columbus OH

More information

EECS150 - Digital Design Lecture 7 - Boolean Algebra II

EECS150 - Digital Design Lecture 7 - Boolean Algebra II EECS5 Digitl Design Leture 7 Boolen Alger II Ferury 2, 22 John Wwrzynek Spring 22 EECS5 Le7Bool2 Pge Cnonil Forms Outline They give us metho to go from TT to Boolen Equtions Twolevel Logi Simplifition

More information