CHAPTER 2 RELATIONAL MODEL

Size: px
Start display at page:

Download "CHAPTER 2 RELATIONAL MODEL"

Transcription

1 CHAPTER RELATIONAL MODEL

2 Chpter : Reltionl Model Structure of Reltionl Dtbses Fundmentl Reltionl Algebr Opertions Additionl Reltionl Algebr Opertions Extended Reltionl-Algebr-Opertions Null Vlues Modifiction of the Dtbse Copyright by S.-g. Lee Chp -

3 Exmple of Reltion Copyright by S.-g. Lee Chp - 3

4 Bsic Structure Formlly, given sets D, D,. D n reltion r is subset of D x D x x D n or R D, X.. X D n (n: degree of R) R = { <d,..., d n > d D,..., d n D n } (set of tuples) Exmple: customer-nme = {Jones, Smith, Curry, Lindsy} customer-street = {Min, North, Prk} customer-city = {Hrrison, Rye, Pittsfield} Then r = { (Jones, Min, Hrrison), (Smith, North, Rye), (Curry, North, Rye), (Lindsy, Prk, Pittsfield)} is reltion over customer-nme x customer-street x customer-city Copyright by S.-g. Lee Chp - 4

5 Attribute Types Ech ttribute of reltion hs nme The set of llowed vlues for ech ttribute is clled the domin of the ttribute Attribute vlues re (normlly) required to be tomic, tht is, indivisible E.g. multivlued ttribute vlues re not tomic E.g. composite ttribute vlues re not tomic The specil vlue null is member of every domin The null vlue cuses complictions in the definition of mny opertions we shll ignore the effect of null vlues in our min presenttion nd consider their effect lter Copyright by S.-g. Lee Chp - 5

6 Reltion Schem A, A,, A n re ttributes R = (A, A,, A n ) is reltion schem E.g. Customer-schem = (customer-nme, customer-street, customer-city) r(r) is reltion (vrible) on the reltion schem R E.g. customer(customer-schem) Copyright by S.-g. Lee Chp - 6

7 Reltion Instnce The current vlues (reltion instnce) of reltion re specified by tble An element t of r is tuple, represented by row in tble ttributes customer-nme customer-street customer-city Jones Smith Curry Lindsy Min North North Prk Hrrison Rye Rye Pittsfield tuples customer Copyright by S.-g. Lee Chp - 7

8 Reltions re Unordered Order of tuples is irrelevnt (tuples my be stored in n rbitrry order) E.g. ccount reltion with unordered tuples Copyright by S.-g. Lee Chp - 8

9 Reltionl Dtbse A dtbse consists of multiple reltions Informtion bout n enterprise is broken up into prts, with ech reltion storing one prt of the informtion E.g.: ccount : informtion bout ccounts customer : informtion bout customers depositor : informtion bout which customer owns which ccount Storing ll informtion s single reltion such s results in repetition of informtion (e.g. two customers own n ccount) the need for null vlues (e.g. represent customer without n ccount) bnk(ccount-number, blnce, customer-nme,... ) Reltionl dtbse design (Chpter 6 & 7) dels with how to design reltionl schems Copyright by S.-g. Lee Chp - 9

10 The customer reltion & depositor reltion Copyright by S.-g. Lee Chp - 0

11 Keys Let K R K is superkey of R if vlues for K re sufficient to identify unique tuple of ech possible reltion r(r). By possible r we men reltion r tht could exist in the enterprise we re modeling. Exmple: {customer-nme, customer-street} nd {customer-nme} re both superkeys of Customer, if no two customers cn possibly hve the sme nme. K is cndidte key if K is miniml Exmple: {customer-nme} is cndidte key for Customer, since it is superkey, nd no subset of it is superkey. Copyright by S.-g. Lee Chp -

12 Schem Digrm for the Bnking Enterprise Copyright by S.-g. Lee Chp -

13 Query Lnguges Lnguge in which user requests informtion from the dtbse. Ctegories of lnguges procedurl specify wht dt re needed nd how to get those dt nonprocedurl declrtive specify only wht dt re needed Pure lnguges: Reltionl Algebr Tuple Reltionl Clculus Domin Reltionl Clculus Pure lnguges form underlying bsis of query lnguges tht people use. Copyright by S.-g. Lee Chp - 3

14 Reltionl Algebr Algebr : opertors nd opernds Reltionl lgebr opernds : reltions opertors : bsic opertors (+ dditionl opertions) tke two or more reltions s inputs nd give new reltion s result. Procedurl lnguge 6 Fundmentl Opertors select project union set difference Crtesin product renme Copyright by S.-g. Lee Chp - 4

15 Select Opertion? Exmple Reltion r: A B C D A=B ^ D>5 (r) : A B C D Copyright by S.-g. Lee Chp - 5

16 Select Opertion Nottion: p (r) p is clled the selection predicte Defined s: p (r) = {t t r nd p(t)} Where p is formul in propositionl clculus consisting of terms connected by : (nd), (or), (not) Ech term is one of: <ttribute> op <ttribute> or <constnt> where op is one of: =,, >,, <, Exmple: brnch-nme= Perryridge (ccount) Copyright by S.-g. Lee Chp - 6

17 Project Opertion? Exmple Reltion r: A B C A,C (r) A C A C = Copyright by S.-g. Lee Chp - 7

18 Project Opertion Nottion: A, A,, Ak (r) where A, A re ttribute nmes nd r is reltion nme. The result is defined s the reltion of k columns obtined by ersing the columns tht re not listed Duplicte rows removed from result? since reltions re sets Exmple: To eliminte the brnch-nme ttribute of ccount ccount-number, blnce (ccount) Copyright by S.-g. Lee Chp - 8

19 Union Opertion? Exmple Reltions r, s: A B A B 3 r s r s: A B 3 Copyright by S.-g. Lee Chp - 9

20 Union Opertion Nottion: r s Defined s: r s = {t tr or ts} For r s to be vlid (Union comptible). r, s must hve the sme rity (sme number of ttributes). The ttribute domins must be comptible (e.g., nd column of r dels with the sme type of vlues s does the nd column of s) E.g.: to find ll customers with either n ccount or lon customer-nme (depositor) customer-nme (borrower) Copyright by S.-g. Lee Chp - 0

21 Set Difference Opertion? Exmple Reltions r, s: A B A B 3 r s r? s: A B Copyright by S.-g. Lee Chp -

22 Set Difference Opertion Nottion r? s Defined s: r? s = {t t r nd t s} Set differences must be tken between comptible reltions. r nd s must hve the sme rity ttribute domins of r nd s must be comptible Copyright by S.-g. Lee Chp -

23 Crtesin-Product Opertion? Exmple Reltions r, s: A B C D E r b b s r x s: A B C D E b b b b Copyright by S.-g. Lee Chp - 3

24 Crtesin-Product Opertion Nottion: r x s Defined s: r x s = { t q t r nd q s} Assume tht ttributes of r(r) nd s(s) re disjoint; i.e., R S =. If not, renming of ttributes is needed. Copyright by S.-g. Lee Chp - 4

25 Composition of Opertions Cn build expressions using multiple opertions Exmple: A=C (r x s) r x s A B C D E b b b b A=C (r x s) A B C D E b Copyright by S.-g. Lee Chp - 5

26 Renme Opertion Allows us to nme, nd therefore to refer to, the results of reltionl-lgebr expressions. Allows us to refer to reltion by more thn one nme. N (E) returns the expression E under the nme N If reltionl-lgebr expression E hs rity n, then N (A, A,, An ) (E) returns the result of expression E under the nme N, nd with the ttributes renmed to A, A,., An. Copyright by S.-g. Lee Chp - 6

27 Bnking Exmple brnch (brnch-nme, brnch-city, ssets) customer (customer-nme, customer-street, customer-only) ccount (ccount-number, brnch-nme, blnce) lon (lon-number, brnch-nme, mount) depositor (customer-nme, ccount-number) borrower (customer-nme, lon-number) Copyright by S.-g. Lee Chp - 7

28 Exmple Queries Find ll lons of over $00 mount >00 (lon) Find the lon number for ech lon of n mount greter thn $00 lon-number ( mount>00 (lon)) Copyright by S.-g. Lee Chp - 8

29 Exmple Queries Find the nmes of ll customers who hve lon, n ccount, or both, from the bnk customer-nme (borrower) customer-nme (depositor) Find the nmes of ll customers who hve lon nd n ccount t bnk. customer-nme (borrower) customer-nme (depositor) Copyright by S.-g. Lee Chp - 9

30 Exmple Queries Find the nmes of ll customers who hve lon t the Perryridge brnch. customer-nme ( brnch-nme= Perryridge ( borrower.lon-number = lon.lon-number (borrower x lon))) Find the nmes of ll customers who hve lon t the Perryridge brnch but do not hve n ccount t ny brnch of the bnk. customer-nme ( brnch-nme = Perryridge ( borrower.lon-number = lon.lon-number (borrower x lon)))? customer-nme (depositor) Copyright by S.-g. Lee Chp - 30

31 Exmple Queries Find the nmes of ll customers who hve lon t the Perryridge brnch. Query customer-nme ( brnch-nme = Perryridge ( borrower.lon-number = lon.lon-number (borrower x lon))) Query customer-nme ( ( lon.lon-number = borrower.lon-number ( ( brnch-nme = Perryridge (lon) ) x borrower ) ) Copyright by S.-g. Lee Chp - 3

32 Exmple Queries Find the lrgest ccount blnce Renme ccount reltion s d The query is: blnce (ccount)? ccount.blnce ( ccount.blnce < d.blnce (ccount x d (ccount) ) ) Copyright by S.-g. Lee Chp - 3

33 Forml Definition A bsic expression in the reltionl lgebr consists of either one of the following: A reltion in the dtbse A constnt reltion Let E nd E be reltionl-lgebr expressions; the following re ll reltionl-lgebr expressions: E E E? E E x E p (E ), P is predicte on ttributes in E s (E ), S is list consisting of some of the ttributes in E N (E ), N is the new nme for the result of E Copyright by S.-g. Lee Chp - 33

34 Additionl Opertions We define dditionl opertions tht do not dd ny power to the reltionl lgebr, but tht simplify common queries. Set intersection Nturl join Division Assignment Copyright by S.-g. Lee Chp - 34

35 Set-Intersection Opertion Nottion: r s Defined s: r s ={ t t r nd t s } Assume union comptibility: r, s hve the sme rity ttributes of r nd s re comptible Note: r s = r? ( r? s ) Copyright by S.-g. Lee Chp - 35

36 Set-Intersection Opertion? Exmple Reltion r, s: A B A B 3 r s r s A B Copyright by S.-g. Lee Chp - 36

37 Nturl-Join Opertion Nottion: r s Let r nd s be reltions on schems R nd S, respectively. The result is reltion on schem R S which is obtined by considering ech pir of tuples t r from r nd t s from s. If t r nd t s hve the sme vlue on ech of the ttributes in R S, tuple t is dded to the result, where Exmple: t hs the sme vlue s t r on r t hs the sme vlue s t s on s R = (A, B, C, D) S = (E, B, D) Result schem = (A, B, C, D, E) r s is defined s: r.a, r.b, r.c, r.d, s.e ( r.b = s.b r.d = s.d (r x s)) Copyright by S.-g. Lee Chp - 37

38 Copyright by S.-g. Lee Chp - 38 Nturl-Join Opertion? Exmple Reltions r, s: A B 4 C D b b B 3 3 D b b E r A B C D b E s r s

39 Properties A,, A k (r) A,, A k (s) = A,, A k (r s) (r s) t = r (s t) If R S= then r s = r s (importnt) If R=S then r s = r s Thet Join combine selection with Crtesin product r s = σ (r s) where is predicte on RS Copyright by S.-g. Lee Chp - 39

40 Assignment Opertion The ssignment opertion () provides convenient wy to express complex queries, write query s sequentil progrm consisting of series of ssignments followed by n expression whose vlue is displyed s result of the query. Assignment must lwys be mde to temporry reltion vrible. Exmple: Write r s s temp R-S (r) temp R-S ((temp s)? R-S,S (r)) result = temp? temp The result to the right of the is ssigned to the reltion vrible on the left of the. My use the vrible in subsequent expressions. Copyright by S.-g. Lee Chp - 40

41 Exmple Queries Find ll customers who hve n ccount from t lest the Downtown nd the Uptown brnches. Query customer-nme ( brnch-nme= Downtown (depositor customer-nme ( brnch-nme= Uptown (depositor ccount)) ccount)) Query customer-nme, brnch-nme (depositor ccount) temp(brnch-nme) ({( Downtown ), ( Uptown )}) Copyright by S.-g. Lee Chp - 4

42 Exmple Queries Find ll customers who hve n ccount t ll brnches locted in Brooklyn city. customer-nme, brnch-nme (depositor ccount) brnch-nme ( brnch-city = Brooklyn (brnch)) Copyright by S.-g. Lee Chp - 4

43 END OF CHAPTER

Chapter 9. Quadratics

Chapter 9. Quadratics Chpter 9 Qudrtics Artificil Body Prts 9.1 Solving Qudrtic Equtions by Fctoring 9. Completing the Squre 9.3 The Qudrtic Formul 9.4 Eponentil Functions (Growth nd Decy) Chpter Review Chpter Test 147 Section

More information

Crystal Structure. Dragica Vasileska and Gerhard Klimeck

Crystal Structure. Dragica Vasileska and Gerhard Klimeck Crystl Structure Drgic Vsilesk nd Gerhrd Klimeck Crystl Structure Issues tht re ddressed in this lecture include:. Periodic rry of toms. Fundmentl types of lttices 3. Index system for crystl plnes 4. Simple

More information

[ HOCl] Chapter 16. Problem. Equilibria in Solutions of Weak Acids. Equilibria in Solutions of Weak Acids

[ HOCl] Chapter 16. Problem. Equilibria in Solutions of Weak Acids. Equilibria in Solutions of Weak Acids Equilibri in Solutions of Wek Acids Chpter 16 Acid-Bse Equilibri Dr. Peter Wrburton peterw@mun.c http://www.chem.mun.c/zcourses/1011.php The dissocition of wek cid is n equilibrium sitution with n equilibrium

More information

1. Course title Logic Design 2. Course number

1. Course title Logic Design 2. Course number Course Syllbus 1. Course title Logic Design 2. Course number 1901204 3. Credit hours (theory, prcticl) 3 Contct hours (theory, prcticl) 3 4. Prerequisites/corequisites Discrete Mthemtics (1901101) 5. Progrm

More information

The basic model for inventory analysis

The basic model for inventory analysis The bsic model for inventory nlysis Lecture Notes for ME515 Prepred by Joyce Smith Cooper Professor of Mechnicl Engineering University of Wshington cooperjs@uw.edu See Chpter 2 of Heijungs nd Suh (22)

More information

6.1 Damage Tolerance Analysis Procedure

6.1 Damage Tolerance Analysis Procedure 6. Dmge Tolernce Anlysis Procedure For intct structure the nlysis procedures for Slow Crck Growth nd Fil Sfe structure re essentilly the sme. An initil flw is ssumed nd its growth is nlyzed until filure

More information

Three-Phase Wound-Rotor Induction Machine with Rotor Resistance

Three-Phase Wound-Rotor Induction Machine with Rotor Resistance Exercise 2 Three-Phse Wound-Rotor Induction Mchine with Rotor Resistnce EXERCISE OBJECTIVE When you hve completed this exercise, you will know the effects of vrying the rotor resistnce of three-phse wound-rotor

More information

Name Period Date. Grade 7 Unit 1 Assessment. 1. The number line below shows the high temperature in Newark, in degrees Fahrenheit, on Monday.

Name Period Date. Grade 7 Unit 1 Assessment. 1. The number line below shows the high temperature in Newark, in degrees Fahrenheit, on Monday. Nme Period Dte Grde 7 Unit 1 Assessment For multiple choice questions, circle the est nswer. For ll other questions, respond in the spce provided. 1. The numer line elow shows the high temperture in Newrk,

More information

Chapter 9: Phase Diagrams

Chapter 9: Phase Diagrams Chpter 9: Phse Digrms ISSUES TO ADDRESS... When we combine two elements... wht is the resulting equilibrium stte? In prticulr, if we specify... -- the composition (e.g., wt% Cu - wt% Ni), nd -- the temperture

More information

Chapter 9: Phase Diagrams

Chapter 9: Phase Diagrams hpter 9: Phse Digrms ISSUES TO ADDRESS... oncepts of Phse, omponent, Equilibrium Phse digrm In prticulr, if we specify... -- composition (e.g., wt% u - wt% Ni), nd -- temperture (T) then... How mny phses

More information

p Coaches j i m Recruitment Dimensions Report Name Ali Example Date of Report: 29/06/2016 Elements report 3

p Coaches j i m Recruitment Dimensions Report Name Ali Example Date of Report: 29/06/2016 Elements report 3 Report Nme Ali Exmple Dte of Report: 29/06/2016 Elements report 3 Also Recommended: Trit Profile, Competency Report Who could use components of this report: p Coches j i HR professionls Trined prctitioners

More information

2016 Prelim Essay Question 2

2016 Prelim Essay Question 2 216 Prelim Essy Question 2 In recent yers, the price of nturl fertilisers for orgnic brown rice production hs risen nd helthy living cmpigns re seeing more consumers switching from nonorgnic white rice

More information

Three-Phase Wound-Rotor Induction Machine with a Short- Circuited Rotor

Three-Phase Wound-Rotor Induction Machine with a Short- Circuited Rotor Exercise 1 Three-Phse Wound-Rotor Induction Mchine with Short- Circuited Rotor EXERCISE OBJECTIVE When you hve completed this exercise, you will know how three-phse woundrotor induction mchine cn operte

More information

The Effect of SFAS No. 131 on the Diversification Discount

The Effect of SFAS No. 131 on the Diversification Discount The Effect of SFAS No. 131 on the Diversifiction Discount Seoungpil Ahn Sogng Business School, Sogng University PA706, 35 Bekbeom-ro, Mpo-gu, Seoul 121-742, Kore E-mil: sphn@sogng.c.kr Received: July 2,

More information

The Retail Ombudsman complaint form

The Retail Ombudsman complaint form The Retil Ombudsmn complint form Welcome to our retil complints form. To proceed with your complint plese follow the 6 steps below nd provide ll of the informtion reuested. To be eligible to mke complint

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

Academic. Grade 9 Assessment of Mathematics. Spring 2009 SAMPLE ASSESSMENT QUESTIONS

Academic. Grade 9 Assessment of Mathematics. Spring 2009 SAMPLE ASSESSMENT QUESTIONS Acdemic Grde 9 Assessment of Mthemtics Spring 009 SAMPLE ASSESSMENT QUESTIONS Record our nswers to the multiple-choice questions on the blnk Student Answer Sheet (Spring 009, Acdemic). Plese note: The

More information

Nonlinear Mixed Effects Model for Swine Growth

Nonlinear Mixed Effects Model for Swine Growth Nonliner Mixed Effects Model for Swine Growth A. P. Schinckel nd B. A. Crig Deprtment of Animl Sciences nd Deprtment of Sttistics, Purdue University Introduction Severl nonliner growth functions model

More information

1 Information, Persuasion, and Signalling

1 Information, Persuasion, and Signalling ECON 312: Advertising 1 We will now exmine nother strtegic vrible vilble to firms, tht of dvertising. Industril Orgniztion Advertising 1 Informtion, Persusion, nd Signlling 1.1 Persusion versus Informtion

More information

Business Continuity Software Buyer s Guide

Business Continuity Software Buyer s Guide Business Continuity Softwre Buyer s Guide Opertionlly strtegic nd deployble, business continuity plns re criticl to ensuring your orgniztion cn survive nd succeed following n unplnned incident. Mny orgniztions

More information

European Treaty Series - No. 158 ADDITIONAL PROTOCOL TO THE EUROPEAN SOCIAL CHARTER PROVIDING FOR A SYSTEM OF COLLECTIVE COMPLAINTS

European Treaty Series - No. 158 ADDITIONAL PROTOCOL TO THE EUROPEAN SOCIAL CHARTER PROVIDING FOR A SYSTEM OF COLLECTIVE COMPLAINTS Europen Trety Series - No. 158 ADDITIONAL PROTOCOL TO THE EUROPEAN SOCIAL CHARTER PROVIDING FOR A SYSTEM OF COLLECTIVE COMPLAINTS Strsbourg, 9.XI.1995 2 ETS 158 - Europen Socil Chrter (Additionl Protocol),

More information

Observing Patterns in Inherited Traits. Chapter 10

Observing Patterns in Inherited Traits. Chapter 10 Observing Ptterns in Inherited Trits Chpter 10 10.1 Mendel, Pe Plnts, nd Inheritnce Ptterns By experimenting with pe plnts, Mendel ws the first to gther evidence of ptterns by which prents trnsmit genes

More information

Table 1: Basic Data. 1. Process Thresholds, Review and 18-Month Procurement Plan

Table 1: Basic Data. 1. Process Thresholds, Review and 18-Month Procurement Plan A. Pln Tble 1: Bsic Dt Project Nme: Hubei Hungshi Urbn Pollution Control nd Environmentl Mngement Project Country: People s Republic of Chin Executing Agency: Hungshi Municipl Government Lon Amount: $100

More information

Primer in Population Genetics

Primer in Population Genetics Primer in Popultion Genetics Hierrchicl Orgniztion of Genetics Diversity Primer in Popultion Genetics Defining Genetic Diversity within Popultions Polymorphism number of loci with > 1 llele Number of lleles

More information

The point at which quantity demanded and quantity supplied come together is known as equilibrium. Price of a slice of pizza $2.00. Demand $2.50 $3.

The point at which quantity demanded and quantity supplied come together is known as equilibrium. Price of a slice of pizza $2.00. Demand $2.50 $3. Blncing the Mrket The point t which quntity demnded nd quntity supplied come together is known s equilibrium. Finding Equilibrium per slice $3.5 $3. $2.5 $2. $1.5 $1. $.5 Equilibrium Point Equilibrium

More information

High strength fine grained structural steel, thermo-mechanically rolled, for high temperature application

High strength fine grained structural steel, thermo-mechanically rolled, for high temperature application P420M HT High strength fine grined structurl steel, thermo-mechniclly rolled, for high temperture ppliction Specifiction DH-E52-D, edition April 2016 1 P420M HT is high strength thermomechniclly rolled

More information

ISO 6947 INTERNATIONAL STANDARD. Welding and allied processes Welding positions. Soudage et techniques connexes Positions de soudage

ISO 6947 INTERNATIONAL STANDARD. Welding and allied processes Welding positions. Soudage et techniques connexes Positions de soudage Provläsningsexemplr / Preview INTERNATIONAL STANDARD ISO 6947 Third edition 2011-05-15 Welding nd llied processes Welding positions Soudge et techniques connexes Positions de soudge Reference number ISO

More information

Theoretical Foundation for Mechanical Products Service Life Prediction

Theoretical Foundation for Mechanical Products Service Life Prediction Theoreticl Foundtion for Mechnicl Products Service Life Prediction V V Konovodov 1, A V Vlentov, T V Lfetov 1, M N Bslev 1 Novosibirsk Stte Agrrin University 147 Nikitin St, 630039 Novosibirsk, Russi;

More information

GENERAL APPLICATION FOR FARM CLASSIFICATION

GENERAL APPLICATION FOR FARM CLASSIFICATION SCHEDULE 1 (section 1) Plese return to: DEADLINE: Plese return this form to your locl BC Assessment office y Octoer 31. Assessment Roll Numer(s) GENERAL APPLICATION FOR FARM CLASSIFICATION Section 23 (1)

More information

Service Architecture. T.C. Lea-Cox, A Lesson for the CMDB from Containerised Cargo Services. Introduction. Overview of Container Movement

Service Architecture. T.C. Lea-Cox, A Lesson for the CMDB from Containerised Cargo Services. Introduction. Overview of Container Movement A Lesson for the CMDB from Continerised Crgo Services Trevor LeCox Introduction The Problem Are: Continerised Crgo Importtion Service Time to deliver crgo to the Consignee ws tking longer thn tht benchmrked

More information

Population Distribution

Population Distribution Nme: Period: Why? Popultion Distriution How does popultion distriution ffect the environment? Alsk contins over 127 million cres of untouched forest lnd. It is the lrgest stte in the United Sttes, yet

More information

15V530AD-DC DRAWN BY DATE CHK SCALE SIZE

15V530AD-DC DRAWN BY DATE CHK SCALE SIZE THIS COPY IS PROVIDED ON RESTRICTED SIS ND IS NOT TO E USED IN NY WY DETRIMENTL TO THE INTERESTS OF PNDUIT CORP. SLIDING DOORS MID-SPN POST END OF ROW CP INFORMTION NEEDED TO CONFIGURE UNIVERSL ISLE CONTINMENT

More information

recessive lozenge-shaped-fly-eye "alleles" in trans: recessive lozenge-shaped-fly-eye "alleles" in trans:

recessive lozenge-shaped-fly-eye alleles in trans: recessive lozenge-shaped-fly-eye alleles in trans: Wht do we men (wht hve we ment) y " gene": Reding for lectures 15-17 (We F27, Fr F29, We M5) Chp 8: from 258 (Nonoverlpping...) to 261 ( Crcking) & from 285 (8.6) to 293 (end of "essentil concepts) Chp

More information

Introduction. and Hispanics as $1.3 trillion.

Introduction. and Hispanics as $1.3 trillion. Introduction Supplier diversity is the proctive business progrm supporting minority owned, women owned, vetern owned, LGBT owned, service disbled vetern owned, historiclly underutilized business nd SBA

More information

Copyright 1982 by ASME. Combined Cycles

Copyright 1982 by ASME. Combined Cycles THE AMERICAN OCIETY OF MECHANICAL ENGINEER 345 E. 47 t., New York, N.Y. 117 82-GT-38 ^,+ w The ociety shll not be responsible for sttements or opinions dvnced in ppers or in C discussion t meetings of

More information

Best Practices for PCR Assays in Seed Health Tests Version 3.0; June 2018

Best Practices for PCR Assays in Seed Health Tests Version 3.0; June 2018 Best Prctices for PCR Assys in Seed Helth Tests Version 3.0; June 2018 Polymerse Chin Rection (PCR) is currently the most commonly utilized moleculr technique in seed helth testing. This document provides

More information

Construction of a De Bruijn Graph for Assembly from a Truncated Sux Tree

Construction of a De Bruijn Graph for Assembly from a Truncated Sux Tree Construction of De Bruijn Grph for Assemly from Truncted Sux Tree Bstien Czux, Thierry Lecroq, Eric Rivls LIRMM & IBC, Montpellier - LITIS Rouen Mrs 3, 2015 Introduction De Bruijn Grph for ssemly R = {c,

More information

E112b.de. REVO 25 Variant. Access panel for wall and ceiling systems. Drywall Systems. Product Data Sheet

E112b.de. REVO 25 Variant. Access panel for wall and ceiling systems. Drywall Systems. Product Data Sheet Note on English trnsltion / Hinweise zur englischen Fssung This is trnsltion of the technicl dt sheet vlid in Germny. All stted detils nd properties re in complince with the regultions of the Germn stndrds

More information

THERMODYNAMICS OF As, Sb AND Bi DISTRIBUTION DURING REVERB FURNACE SMELTING

THERMODYNAMICS OF As, Sb AND Bi DISTRIBUTION DURING REVERB FURNACE SMELTING Journl of Mining nd Metllurgy, 38 (1 2) B (2002) 93-102 THERMODYNAMICS OF As, Sb AND Bi DISTRIBUTION DURING REVERB FURNACE SMELTING N.Mitevsk* nd @.D.@ivkovi}** *RTB BOR, Copper Institute, 19210 Bor, Yugoslvi

More information

Platform quick guide. Stockbroking Pro platform. stockbroking

Platform quick guide. Stockbroking Pro platform. stockbroking Stockbroking Pro pltform Pltform quick guide This concise guide hs been put together to help you quickly fmilirise yourself with the mny fetures nd tools vilble on the CMC Mrkets Stockbroking Pro pltform.

More information

Phase Equilibria: Solubility Limit PHASE DIAGRAMS 10 0 Solubility 8 0 Limit ENT 145 Materials Engineering (liquid) atu (liquid solution 4 0

Phase Equilibria: Solubility Limit PHASE DIAGRAMS 10 0 Solubility 8 0 Limit ENT 145 Materials Engineering (liquid) atu (liquid solution 4 0 Temperture (ºC) ter ugr Temperture (ºC) Phse Equilibri: olubility imit PHE DIGM ENT 145 Mterils Engineering Chpter 9 - olution solid, liquid, or gs solutions, single phse Mixture more thn one phse olubility

More information

STATUS OF LAND-BASED WIND ENERGY DEVELOPMENT IN GERMANY

STATUS OF LAND-BASED WIND ENERGY DEVELOPMENT IN GERMANY Yer STATUS OF LAND-BASED WIND ENERGY Deutsche WindGurd GmbH - Oldenburger Strße 65-26316 Vrel - Germny +49 (4451)/9515 - info@windgurd.de - www.windgurd.com Annul Added Cpcity [MW] Cumultive Cpcity [MW]

More information

Report to the Southwest Florida Water Management District. Effects of Microsprinkler Irrigation Coverage on Citrus Performance

Report to the Southwest Florida Water Management District. Effects of Microsprinkler Irrigation Coverage on Citrus Performance Report to the Southwest Florid Wter Mngement District Effects of Microsprinkler Irrigtion Coverge on Citrus Performnce L. R. Prsons University of Florid Institute of Food nd Agriculturl Sciences Citrus

More information

Coordinate geometry. In this chapter. Areas of study. Units 3 & 4 Functions, relations and graphs Algebra

Coordinate geometry. In this chapter. Areas of study. Units 3 & 4 Functions, relations and graphs Algebra Coordinte geometr VCEcoverge Ares of stud Units & Functions, reltions nd grphs Alger In this chpter A Sketch grphs of = m + n + c where m = or nd n = or B Reciprocl grphs C Grphs of circles nd ellipses

More information

CITY OF BELL GARDENS THE SUCCESSOR AGENCY TO THE COMMUNITY DEVELOPMENT COMMISSION REGULAR MEETING MONDAY, SEPTEMBER 11, 2017, 6:00 PM AGENDA

CITY OF BELL GARDENS THE SUCCESSOR AGENCY TO THE COMMUNITY DEVELOPMENT COMMISSION REGULAR MEETING MONDAY, SEPTEMBER 11, 2017, 6:00 PM AGENDA CITY OF BELL GARDENS THE SUCCESSOR AGENCY TO THE COMMUNITY DEVELOPMENT COMMISSION REGULAR MEETING MONDAY, SEPTEMBER 11, 2017, 6:00 PM AGENDA LOCATION: CITY COUNCIL CHAMBER, 7100 GARFIELD AVENUE, BELL GARDENS,

More information

Fibre-reinforced plastic composites Declaration of raw material characteristics Part 4: Additional requirements for fabrics

Fibre-reinforced plastic composites Declaration of raw material characteristics Part 4: Additional requirements for fabrics CEN/TC 249 N493 Dte: 2010-02 pren xxxx-4:2010 CEN/TC 249 Secretrit: NBN Fibre-reinforced plstic composites Declrtion of rw mteril chrcteristics Prt 4: Additionl requirements for fbrics Einführendes Element

More information

PY2N20 Material Properties and Phase Diagrams

PY2N20 Material Properties and Phase Diagrams PY2N20 Mteril Properties nd Phse Digrms ecture 5 P. tmenov, PhD chool of Physics, TCD PY2N20-5 Phse Digrms - Introduction How much cn be done with pure elementl compounds? How mny combintions of elements

More information

Irrigation systems and techniques for saline water

Irrigation systems and techniques for saline water Irrigtion systems nd techniques for sline wter Cvzz L. in Bouchet R. (ed.). Reuse low qulity wter for irrigtion Bri : CIHEAM Options Méditerrnéennes : Série A. Séminires Méditerrnéens; n. 1 1989 pges 49-57

More information

Drug, Alcohol, and Medical Testing Guidelines for Commercial Driver's License Holders and Other Identified Positions

Drug, Alcohol, and Medical Testing Guidelines for Commercial Driver's License Holders and Other Identified Positions Virgini Polytechnic Institute nd Stte University Drug, Alcohol, nd Medicl Testing Guidelines for Commercil Driver's License Holders nd Other Identified Positions NO. 4061 Policy Effective Dte: 7/13/1995

More information

Demonstrate understanding of customer service

Demonstrate understanding of customer service Unit 301 Demonstrte understnding of customer service Level: 3 Credit vlue: 6 NDAQ numer: K/601/1622 Unit im This unit is out eing le to understnd nd explin the principles of customer service nd the wy

More information

Pig breeding, selection and hybridisation in Italy

Pig breeding, selection and hybridisation in Italy Pig breeding, selection nd hybridtion in Itly Russo V. in Aumître A. (ed.). The production pig met in Mediterrnen Countries Pr : CIHEAM Options Méditerrnéennes : Série Etudes; n. 1989-I 1989 pges 91-97

More information

Linked List Implementation of Discount Pricing in Cloud

Linked List Implementation of Discount Pricing in Cloud Linked List Implementtion of Discount Pricing in Cloud Mlr.J 1, S.Jesinth Strvin 2 Mster of Engineering in computer Science, Assistnt professor IT deprtment Ponjesly College of Engineering Abstrct: In

More information

Fabrication and Manufacturing (Basics) Batch processes

Fabrication and Manufacturing (Basics) Batch processes Fbriction nd Mnufcturing (Bsics) Btch processes Fbriction time independent of design complexity Stndrd process Customiztion by msks Ech msk defines geometry on one lyer Lower-level msks define trnsistors

More information

Invasive Pneumococcal Disease Quarterly Report. January March 2017

Invasive Pneumococcal Disease Quarterly Report. January March 2017 Invsive Pneumococcl Disese Qurterly Report Jnury Mrch 2017 Prepred s prt of Ministry of Helth contrct for scientific services by Ali Bormn Helen Heffernn My 2017 Acknowledgements This report could not

More information

(b) Is already deposited in a waste disposal site without methane recovery.

(b) Is already deposited in a waste disposal site without methane recovery. TYPE III - OTHER PROJECT ACTIVITIES Project prticipnts must tke into ccount the generl guidnce to the methodologies, informtion on dditionlity, bbrevitions nd generl guidnce on lekge provided t http://cdm.unfccc.int/methodologies/sscmethodologies/pproved.html.

More information

Great marketing begins with a great story. It s the story you tell your customers. And the story they tell their friends.

Great marketing begins with a great story. It s the story you tell your customers. And the story they tell their friends. Gret mrketing begins with gret story. It s the story you tell your customers. And the story they tell their friends. Delivering custom, effective solutions in print, digitl medi. since 2008 We build websites

More information

AN EXTENDED NEWSVENDOR MODEL FOR SOLVING CAPACITY CONSTRAINT PROBLEMS IN A MULTI-ITEM, MULTI-PERIOD ENVIROMENT

AN EXTENDED NEWSVENDOR MODEL FOR SOLVING CAPACITY CONSTRAINT PROBLEMS IN A MULTI-ITEM, MULTI-PERIOD ENVIROMENT Production Systems nd Informtion Engineering Volume V (2009), pp. 3-7 3 AN EXTENDED NEWSVENDOR MODEL FOR SOLVING CAPACITY CONSTRAINT PROBLEMS IN A MULTI-ITEM, MULTI-PERIOD ENVIROMENT PETER MILEFF University

More information

COMPUTER PROGRAM FOR CLIMATOLOGICAL PARAMETERS CALCULATION AND RADIATION SIMULATION

COMPUTER PROGRAM FOR CLIMATOLOGICAL PARAMETERS CALCULATION AND RADIATION SIMULATION COMPUTER PROGRAM FOR CLIMATOLOGICAL PARAMETERS CALCULATION AND RADIATION SIMULATION L. COSTE E. EFTIMIE Abstrct: The pper presents softwre developed for the determintion of the bsic input dt used to design

More information

Solutions to the Extra Problems for Chapter The temperature is K. To convert to Kelvin, we use Equation (10.4):

Solutions to the Extra Problems for Chapter The temperature is K. To convert to Kelvin, we use Equation (10.4): Solutions to the Extr roblems for Chpter 0. he temperture is 98. K. o convert to Kelvin, we use Eqution (0.4): K ºC + 73.5 5.0 + 73.5 98. Since we re dding, the significnt figures re determined by precision.

More information

phenylalanine alanine

phenylalanine alanine END F UNIT TET ENGINEERING PRTEIN TET 60 mrks (1 hour) A copy of the EP Informtion heet is required for this test, together with the spectroscopic dt (n.m.r.) from Tble 23 in the Dt heets. 1 nylketonuri

More information

p Coaches j i n C Dimensions Report Name Ali Example Date of Report: 29/06/2016 Team Profile 3

p Coaches j i n C Dimensions Report Name Ali Example Date of Report: 29/06/2016 Team Profile 3 Report Nme Ali Exmple Dte of Report: 29/06/2016 Tem Profile 3 Also Recommended: Behviourl Type t Work Profile, Composite Tem Report Who could use components of this report: p Coches j i HR professionls

More information

Genetics of heredity. October 10 Lecture notes Genetics of heredity

Genetics of heredity. October 10 Lecture notes Genetics of heredity October 10 Lecture notes Review: Meiosis, digrmmed on blckbord. Meiosis: The division of single nucleus (nd the cell tht contins it) into four dughter nuclei (nd cells tht contin them). The four dughter

More information

Demonstrate understanding of customer service management

Demonstrate understanding of customer service management Unit 401 Demonstrte understnding of customer service mngement Level: 4 Credit vlue: 10 NDAQ numer: J/601/1630 Unit im This unit covers the key principles of customer service tht influence how it is mnged

More information

P6.1. Magnetic position sensor with low coercivity material

P6.1. Magnetic position sensor with low coercivity material P6. Mgnetic position sensor with low coercivity mteril Jernce N., Frchon D. Moving Mgnet Technologies rue Christin Huygens, 25 Besnçon, Frnce. Introduction Mgnetic position sensors re widely used, especilly

More information

The advanced agronomic training system in Morocco

The advanced agronomic training system in Morocco The dvnced gronomic trining system in Morocco Firdwcy L. in Hervieu B. (ed.). Agronomic trining in countries the Mediterrnen region Montpellier : CIHEAM Options Méditerrnéennes : Série Etudes; n. 1988II

More information

many different types exist for environmental engineering generally designed to emphasize suspended growth or biofilms

many different types exist for environmental engineering generally designed to emphasize suspended growth or biofilms Chpter 5. Rectors Rectors mny different types exist for environmentl engineering generlly designed to emphsize suspended growth or biofilms tht mke use of suspended growth re lso clled: suspended-floc,

More information

SEEDING CLOVERS OR GRASSES INTO OLDER ALFALFA BENEFITS AND HAZARDS ABSTRACT INTRODUCTION

SEEDING CLOVERS OR GRASSES INTO OLDER ALFALFA BENEFITS AND HAZARDS ABSTRACT INTRODUCTION SEEDING CLOVERS OR GRASSES INTO OLDER ALFALFA BENEFITS AND HAZARDS STANDS- Mick Cnevri1, Dn Putnm2, Brbr Reed3, Rchel Long4, Steve Orlo~, Tom Lnini6, nd Lrry Godfrey7 ABSTRACT Deciding wht to do with n

More information

Protein sources for pig feeding in Yugoslavia

Protein sources for pig feeding in Yugoslavia Prote sources for pig feedg Yugoslvi Zltic H. Aumître A. (ed.). The production pig met Mediterrnen Countries Pr : CIHEAM Options Méditerrnéennes : Série Etudes; n. 1989-I 1989 pges 139-145 Article vilble

More information

Creating a Retail Space that Sells

Creating a Retail Space that Sells Creting Retil Spce tht Sells Wednesdy, November 9, 2016 Ron Vitkun, CPO Leisure Systems, Inc. Lerning Outcomes: Upon completion, lerners will be ble to 1. Describe the criticl components to mnging your

More information

NOTICE CONCERNING COPYRIGHT RESTRICTIONS

NOTICE CONCERNING COPYRIGHT RESTRICTIONS NOTICE CONCERNING COPYRIGHT RESTRICTIONS This document my contin copyrighted mterils. These mterils hve been mde vilble for use in reserch, teching, nd privte study, but my not be used for ny commercil

More information

Spatiotemporal Variability of Productivity and Nutrient Availability in Flooded Rice Soils across Field Scales

Spatiotemporal Variability of Productivity and Nutrient Availability in Flooded Rice Soils across Field Scales 2006-2011 Mission Kerney Foundtion of Soil Science: Understnding nd Mnging Soil-Ecosystem Functions Across Sptil nd Temporl Scles Finl Report: 2007017, 1/1/2009-12/31/2009 Sptiotemporl Vribility of Productivity

More information

Web Crippling of Wide Deck Sections

Web Crippling of Wide Deck Sections Missouri University of Science nd Technology Scholrs' Mine Interntionl Specilty Conference on Cold- Formed Steel Structures (1990) - 10th Interntionl Specilty Conference on Cold-Formed Steel Structures

More information

The Construction of Long-Run Market Supply Curves: Some Notes on Sraffa s Critique of Partial Equilibrium Analysis

The Construction of Long-Run Market Supply Curves: Some Notes on Sraffa s Critique of Partial Equilibrium Analysis 9 The Construction of Long-Run Mrket Supply Curves: Some Notes on Srff s Critique of Prtil Equilibrium Anlysis Giuseppe Freni nd Neri Slvdori* 9.1 Introduction The 1925 pper by Piero Srff, On the reltions

More information

2nd International Conference on Electronic & Mechanical Engineering and Information Technology (EMEIT-2012)

2nd International Conference on Electronic & Mechanical Engineering and Information Technology (EMEIT-2012) 2nd Interntionl Conference on Electronic & Mechnicl Engineering nd Informtion Technology (EMEIT-2012) Comprehensive Evlution of Air Conditioning Cold/Het Source System Bsed on Fuzzy Mthemtics Theory Gng

More information

described in further detail in Volumes II and III

described in further detail in Volumes II and III .4.6 1 8 A common prctice in both mbient ir monitoring nd i. source emission monitoring includes pretest preprsttionry high.nd representtive monitoring dt. These viding qulity described in further detil

More information

Chickpeas Respond Well To Inoculation With TagTeam

Chickpeas Respond Well To Inoculation With TagTeam Chickpes Respond Well To Inocultion With TgTem S.M. Phelps, nd E. Hgele Philom Bios Inc., 318-111 Reserch Drive, Ssktoon, SK S7N 3R2 Abstrct Rhizobi strins were tested in TgTem pet nd grnule formultions

More information

Process Costing 8-1. Chapter 8

Process Costing 8-1. Chapter 8 8-1 2014 by McGrw-Hill Eduction. This is proprietry mteril solely for uthorized instructor use. Not uthorized for sle or distribution in ny mnner. This document my not be copied, scnned, duplicted, forwrded,

More information

Topic 7. Acids, Bases, Buffers, Titrations, Polyprotic acids

Topic 7. Acids, Bases, Buffers, Titrations, Polyprotic acids Topic 7 cids, Bses, Buffers, Titrtions, Polyprotic cids Conjugte cids & bses Strengths of cids & bses strong cid or strong bse is completely dissocited in queous solution. Wek cids nd Wek Bses Crboxylic

More information

CERTIFICATE OF LIABILITY INSURANCE

CERTIFICATE OF LIABILITY INSURANCE THIS CERTIFICTE IS ISSUED S MTTER OF INFORMTION ONLY ND CONFERS NO RIGHTS UPON THE CERTIFICTE HOLDER. THIS CERTIFICTE DOES NOT FFIRMTIVELY OR NEGTIVELY MEND, ETEND OR LTER THE COVERGE FFORDED BY THE POLICIES

More information

PAPER CHEMISTRY, APPLETON, WISCONSIN IPC TECHNICAL PAPER SERIES NUMBER 163 W. J. WHITSITT OCTOBER, 1985

PAPER CHEMISTRY, APPLETON, WISCONSIN IPC TECHNICAL PAPER SERIES NUMBER 163 W. J. WHITSITT OCTOBER, 1985 163 THE INSTITUTE OF PAPER CHEMISTRY, APPLETON, WISCONSIN O E G? o IPC TECHNICAL PAPER SERIES NUMBER 163 O4 o= o COMPRESSIVE STRENGTH RELATIONSHIPS AND FACTORS, C) t C= c. Md Qy W. J. WHITSITT OCTOBER,

More information

A Fuzzy GM(1,1) Model Based Possibility Check for Predicting CO2 Emissions

A Fuzzy GM(1,1) Model Based Possibility Check for Predicting CO2 Emissions Interntionl Journl of Mchine Lerning nd Computing, Vol. 5, No., Februry 05 A Fuzzy GM(,) Model Bsed Possibility Check for Predicting CO Emissions Zhiyi Meng intensity in this region hs incresed quickly

More information

Chapter 9: PHASE DIAGRAM

Chapter 9: PHASE DIAGRAM Chpter 9: PHASE DIAGRAM ISSUES TO ADDRESS... When we combine two elements... wht is the resulting equilibrium stte? In prticulr, if we specify... -- the composition (e.g., wt% Cu - wt% Ni), nd -- the temperture

More information

Quantifying the Total Cost of Ownership for Entry-Level and Mid-Range Server Clusters

Quantifying the Total Cost of Ownership for Entry-Level and Mid-Range Server Clusters Quntifying the Totl Cost of Ownership for Entry-Level nd Mid-Rnge Server Clusters A Detiled Anlysis of the Totl Cost of Ownership of OpenVMS, IBM AIX nd Sun Solris server clusters. June 2007 Version 1.0

More information

The Structure of Metals

The Structure of Metals Chpter 1 The Structure of Metls QUALITATIVE PROBLEMS 1.21 Explin your understnding of why the study of the crystl structure of metls is importnt. The study of crystl structure is importnt for number of

More information

BRANDED. f t. INTEGRATED MARKETING IS NO LONGER ENOUGH: Why B2B Brands Need to be Synchronized. Fresh Thinking About Branding And Marketing

BRANDED. f t. INTEGRATED MARKETING IS NO LONGER ENOUGH: Why B2B Brands Need to be Synchronized. Fresh Thinking About Branding And Marketing BRANDED Fresh Thinking About Brnding And Mrketing INTEGRATED MARKETING IS NO LONGER ENOUGH: Why B2B Brnds Need to be Synchronized f t In tody s connected mrketing environment, where the converstion never

More information

Design and Implementation of an Optimal Travel Route Recommender System on Big Data for Tourists in Jeju

Design and Implementation of an Optimal Travel Route Recommender System on Big Data for Tourists in Jeju processes Article Design Implementtion n Optiml Trvel Route Recommender System on Big Dt for Tourts in Jeju Lei Hng, Sng-Hun Kng, Wenqun Jin ID Do-Hyeun Kim * Deprtment Computer Engineering, Jeju Ntionl

More information

A Genetic Algorithm based Approach for Cost worthy Route Selection in Complex Supply Chain Architecture

A Genetic Algorithm based Approach for Cost worthy Route Selection in Complex Supply Chain Architecture A Genetic Algorithm bsed Approch for Cost worthy Route Selection in Complex Supply Chin Architecture Arft Hbib ~, Nfi Rhmn*, Jhid Alm *, Asif Jorder *, Mrji Hque * ~ Deprtment of Computer Science nd Engineering,

More information

ESTIMATION AND UTILIZATION OF STRUCTURE ANISOTROPY IN FORMING PIECES

ESTIMATION AND UTILIZATION OF STRUCTURE ANISOTROPY IN FORMING PIECES www.cermics-silikty.cz Cermics-Silikáty 61 (), 141-146 (17) doi: 1.13168/cs.17.9 ESTIMATION AND UTILIZATION OF STRUCTURE ANISOTROPY IN FORMING PIECES MAROS MARTINKOVIC Slovk University of Technology in

More information

Controlled Vocabularies

Controlled Vocabularies Controlled Vocbulries Controlled Vocbulries Existing DDI-CVs re vilble in RDF Represented in SKOS formt Ech CV is skos:conceptscheme Ech CV entry is skos:concept Versioning is considered Avilble t https://github.com/linkedsttistics/ddi-controlled-vocbulries

More information

Setting Standards for Sustainable Development Update and Review of the World Bank s Safeguard Policies Country Case Studies

Setting Standards for Sustainable Development Update and Review of the World Bank s Safeguard Policies Country Case Studies Setting Stndrds for Sustinble Development Updte nd Review of the World Bnk s Sfegurd Policies Country Cse Studies Phse 3 Consulttion Rbt Jnury 25, 2016 Content Rod Testing the new ESSF for opertionl implictions

More information

STATUS OF LAND-BASED WIND ENERGY DEVELOPMENT IN GERMANY

STATUS OF LAND-BASED WIND ENERGY DEVELOPMENT IN GERMANY First Hlf STATUS OF LAND-BASED WIND ENERGY On behlf of: Deutsche WindGurd GmbH - Oldenburger Strße 65-26316 Vrel - Germny +49 (4451)/95150 - info@windgurd.de - www.windgurd.com Cumultive Development First

More information

Building initial configuration. Ideal crystals (I)

Building initial configuration. Ideal crystals (I) Building initil configurtion. Idel crstls (I) An crstlline solid cn be defined in terms of Brvis lttice which specifies the periodic rr in which the repeted units of the crstl re rrnged. Brvis lttice is

More information

ESTIMATION OF FATIGUE STRESS CONCENTRATION FACTOR IN THE ZONE OF ELASTIC-PLASTIC STRAIN

ESTIMATION OF FATIGUE STRESS CONCENTRATION FACTOR IN THE ZONE OF ELASTIC-PLASTIC STRAIN ESTIMATIO OF FATIGUE STRESS COCETRATIO FACTOR I THE ZOE OF ELASTIC-PLASTIC STRAI D. JELASA Fculty of Electricl Engineering, Mechnicl Engineering nd vl Architecture, University of Split, R. Bošković b.b.,

More information

The higher education strategy for agriculture in Yugoslavia

The higher education strategy for agriculture in Yugoslavia The higher eduction strtegy for griculture in Yugoslvi Numic R. in Hervieu B. (ed.). Agronomic trining in countries the Mediterrnen region Montpellier : CIHEAM Options Méditerrnéennes : Série Etudes; n.

More information

Chapter 02 - Putting the Customer First

Chapter 02 - Putting the Customer First 1. About hlf of every dollr tht consumers spend on products pys for mrketing costs. LEARNING OBJECTIVES: SEM.KO.4.LO: 2.1-1 - LO: 2.1-1 2. The mrketing concept requires mintennce of importnt reltionships

More information

Two level production inventory model with exponential demand and time dependent deterioration rate

Two level production inventory model with exponential demand and time dependent deterioration rate Mly Journl of Mtemtik, Vol. S, No., 0-4, 08 https://doi.org/0.667/mjm0s0/06 wo level production inventory model with exponentil demnd nd time dependent deteriortion rte Nrendr Kumr *, Dhrmendr Ydv nd Rchn

More information

Study on the initial allocation of carbon emission permits in the. provinces of China based on Shapley method

Study on the initial allocation of carbon emission permits in the. provinces of China based on Shapley method Study on the initil lloction of crbon emission permits in the provinces of Chin bsed on Shpley method Mu Hilin1, Hung Yuxun1,, Li Nn1, Xue Zhoqun1, LI Longxi1 1805, College of Energy nd Power Engineering,

More information

Dynamic AGV-Container Job Deployment Strategy

Dynamic AGV-Container Job Deployment Strategy Dynmic AGV-Continer Job Deployment Strtegy Hoc Chn, Sen HPCES Progrmme, Singpore-MIT Allince E-mil: hocchn@finiqcomsg Abstrct- Automted Guided Vehicles (AGVs) re now becoming populr in continer-hndling

More information