Red Green Black Trees: Extension to Red Black Trees

Size: px
Start display at page:

Download "Red Green Black Trees: Extension to Red Black Trees"

Transcription

1 Red Green Black Trees: Extension to Red Black Trees Seyfeddine Zouana*, Djamel Eddine Zegour Laboratoire de la Communication dans les Systèmes Informatiques, Ecole nationale Supérieure d'informatique, ESI (ex:ini), Oued-Smar, Algiers, Algeria. * Corresponding autor. s_zouana, d_zegour@esi.dz Manuscript submitted April 15, 2017; accepted July 5, doi: /jcp Abstract: Tis paper propose an extended form of Red Black trees. It presents a new explicit balancing algoritm called Red Green Black trees. Tis structure tolerates some degree of imbalance tat allows a decrease of te number of rebalancing relaxing te update operations. Troug te use of tree color nodes, te structure tolerates series of two nodes between Black nodes and defines a less balanced tree. It is interesting because te imbalance doesn't affect te update time and save te same level of performances of Red Black trees of O(log(n)). In fact, Red Green Black trees can provide better performances in environment were te restructuring is most frequent wit Red Black trees. Key words: Red black trees, balanced trees, rebalancing, restructuring. 1. Introduction Binary Searc Trees are a very important and largely used data structure to implement dictionaries mainly, but also to represent symbol tables and key indexes. Tey ave simple updating algoritms and tey can be maintained wit only a limited number of restructuring per update. Tey are also used to implement task scedulers as interval trees and priority searc trees. Binary Searc Trees sort tasks automatically for te sceduler witout te need to re-sort tem. Te keys are sorted on update, te lesser keys are inserted to te left sub-tree and te greater keys to te rigt sub-tree. Te strategy of te sceduler is described by te tree distribution. Tis distribution is more significant wen te tree is balanced. Various balanced binary searc trees are used, AVL trees and Red Black trees [1], [2] are te most suited examples. In fact, tis is due to teir almost complete balance giving ig performances for searc and update of keys. But, tese almost balanced trees become poor wen used to represent scedulers because of te great number of rebalancing tey require. Tis problem becomes more complex wen te tasks are concurrent and run wit a set of relations. To reduce te number of restructuring, te structure must be relaxed. Relaxation can be done by uncoupling te rebalancing form te update and lifting some of its cases or by tolerating some imbalance on te structure. Wile te first only postpones te rebalancing, te tolerance of some imbalance decreases majorly te number of rebalancing allowing faster updates. However, tis goes against te searc time as te eigt of te tree increases. Tis creates a big tradeoff between accelerating updates and slowing searc. Tis idea can be applied to any balanced tree. AVL trees, for instance, are defined by te condition of te difference between te eigt of te left and te rigt sub-trees must at most be 1. We can define an imbalanced AVL[n] [3] by increasing tis amount. Wereas, Red Black trees, were eac node is eiter Red or Black and defined by te two restrictions of aving te same number of Black nodes on 461

2 eac pat from root to leaf and te no succession of Red nodes is allowed. Te imbalance can only be defined by allowing a series of Red nodes; for te first condition omitted, all te balance of te structure is gone. Te imbalanced AVL[n] trees require te same eigt update of te perfectly balanced AVL wic implies no gain in update. However, tolerating series of Red nodes decreases te number of Black nodes and te number of rebalancing as a consequence. We propose a partially balanced binary searc tree, called Red Green Black Trees, were we tolerate up to two nodes between two Black nodes extending te Red Black Trees condition of aving at most one node between two Black nodes. Te balance of te structure is defined by te number of Black nodes on eac pat. Te formal definition of te structure is given in section 3. We discuss te different cases and restructuring of te insert/delete operations in section 4. To prove te preservation of te same level of performances, we give a little analysis of te worst case eigt of te tree in section 5. Some experimental results are given in section 6 to illustrate te effects of te generalization of RB trees. 2. Related Works Balanced Binary Searc Trees ave great importance in bot organizing and sorting data. From te beginning of teir appearance, tey give an efficient implementation to dictionaries and scedulers, toug, tey require too muc maintenance (eac update require a number of rebalance operations). Te original papers of Adel'son Velski and Landis [1], and Bayer [4] introduced two self-balancing structures giving performance of O(log(n)) level. Tese two structures give amazing sort searc and update time. However, tey require a significant number of maintenance operations. Te balance of te structure can lower te performance wen too muc rebalancing cripples te application. Te AVL trees as seen generalizing works suc as AVL[n] [3] and HB[k] [5] tat aimed to offer some control on bot te degree of balance and te maintenance frequency, tis problem as only been mentioned by Bayer in is introduction of te Symmetric Binary B-trees (SBB-trees) [6] wic are a binarization of te B-trees were e defined a generalization idea of SBB[k] trees to limit te rebalancing. But no explicit algoritm as been given. Tese trees ave been modernized by te dicromatic framework of Guibass [2] as Red Black trees. Arne Anderson [7] defined anoter generalized form of SBB trees were te black nodes limit small trees tat are bound to be AVL. Tis structure didn't take a large use because of te number of conditions it requires. And RB trees and AVL trees preserved teir position wic led to relaxation works. Arne Anderson, for instance, gave a simple form for RB trees called AA trees tat takes only te left rebalancing cases into account lifting alf of te carge. Oter works aimed to uncouple te update from te rebalancing and adapted tem to more complex environments and applications suc as: Relaxed Balanced RB trees [8] wic define a relaxed balance by interleaving te updates, and Relativistic RB trees [9] tat give a wait-free solution to te problem of aving concurrent update operations. 3. Red Green Black Trees We define a Red Green Black tree as an extension of te RB trees were we find tree node colors. Tis provokes some imbalance on te structure as te balance conditions are ligtened by te tolerance of successions of two nodes between black nodes. We preserve te condition of te same number of Black nodes on eac pat. So formally, we can define a Red Green Black tree as a tree were: Eac node as eiter a Red, Green or Black color. A nil pointer is conventionally a Red Green Black tree and is of Black color. Eac pat from Root-to-Leaf as te same number of Black nodes. A Green node can't ave a Green node son and must at least as a Red node son. A Red node must ave only Black node sons. 462

3 4. Maintenance Algoritms Te update operations are as simple as te Red Black trees operations. Tey are similar to any BST update operation and followed by some restructuring to ensure te preservation of te defined balance. Te insertion and delete procedures are summarized as follows: 4.1. Insertion Any new key is inserted to te tree by searcing for its place designated by te nil pointer wic makes it a leaf node. Te new node is always of Red color. As te parent may be of Red color, tis could lead to imbalance in te tree defined by two Red nodes in a row. We distinguis different cases to rebalance as follows (Fig. 1): Fig. 1. Insertion cases. Case 1: Grand Parent is Black, te new node becomes Red and te Parent Green. Case 2: Grand Parent is Green, te sibling of te Grand Parent is (nil/black). First, te Parent becomes Green. If te Parent is a left son of te Grand Parent ten, we do a simple rotation on te Black node parent to te Grand Parent. Te Grand Parent becomes Black and te previous Black node becomes Red. Case 3: Grand Parent is Green, te sibling of te Grand Parent is (nil/black). First, te Parent becomes Green. If te Parent is a rigt son of te Grand Parent ten, we do a double rotation on te Black node parent to te Grand Parent. Te Parent becomes Black and te previous Black node becomes Green. Case 4: Grand Parent is Green, te sibling of te Grand Parent is Red. First, te Parent becomes Green. If te Parent is a left son of te Grand Parent ten, we do a simple rotation on te Black node parent to te Grand Parent. Te Grand Parent becomes Black and te previous Black node becomes Green. Case 5: Grand Parent is Green, te sibling of te Grand Parent is Red. First, te Parent becomes Green. If te Parent is a rigt son of te Grand Parent ten, we do a double rotation on te Black node parent to te Grand Parent. Te Parent becomes Black and te previous Black node becomes Green. Case 6: Grand Parent is Green, Parent is Red, Grand Uncle is Green. We flip te colors so as te Grand Parent and te Grand Uncle become Black, te Black node becomes Red. Tis color flip can provoke a series of rebalancing in a cascade penomenon towards te root of te tree as it adds a Red node tat may lead to te same previous situations. 463

4 4.2. Delete We searc for te node to delete like in any regular Binary Searc Tree. If te node as non leaf cildren, we find te minimum element in te Rigt sub-tree. We substitute te keys. We ten remove te node wic we took its value. Tis node must ave at most one leaf cild. Ten, te delete becomes muc simpler. If te node to remove is Green, we just link its cild in its place. If te node to remove is Black and its cild is Green, we link its cild in its place and color te cild Black. If te node is Black and as no cildren, it means te node to remove is te root and te tree becomes null. If te node is Red and its Parent Green, we update te color of te Parent from Green to Red, else if te Parent was Black, we undergo some rebalancing as follows (Fig. 2): Fig. 2. Delete cases. Case 1: if te node P as Red Parent and Black sibling wit no Green cild, flip colors suc as te Parent becomes Black, P becomes Red, its sibling Green. Case 2: if te node P as Red Parent and Black sibling wit Green cild, flip colors suc as te Parent becomes Black, P becomes Red, its sibling Green, ten rotate on te Parent to eliminate te series of Green nodes (a simple or double rotation depending on te case). 464

5 Case 3: if te node P as a non-red Parent GP wic implies tat it as a Green/Red sibling S. We find te first Black node N on te pat by going to te oter side of te Parent GP ten crossing to te side of P from tat node until finding te Black node. Tis Black node N as a Red Parent. Te sibling S is linked to its Grand Parent. Te non-red Parent GP takes P and te found Black node N as cildren, te non-red Parent GP becomes Red and cild to te Red Parent. Te Red Parent becomes Green and we continue wit eiter case 1 or case 2. Te flip of colors of case 1 and case 2 can lead to te same situations as before. Repairing tat require furter rebalancing on te upper levels of te tree. 5. Worst Heigt of te Tree Fig. 3. Worst case tree. Let te eigt of te RGB trees be te maximal number of nodes in any pat from te root to a leaf. Ten an RGB tree Tmin() of eigt wit te minimum number of nodes is of te form Fig. 3. Notice tat =3.j were j is te number of Black nodes in eac pat from Root-to-Leaf. Notice tat eac node of te longest pat of te root small tree is linked to te root of a perfectly balanced sub-tree Tbal(/3-1) wile te last one is also linked to a sub-tree Tmin (-3). Let N(T) be te number of nodes in te tree T. Ten: N(Tmin ()) = 3 N(T bal ( - 1)) N(Tmin ( - 3)) 3 since: N(Tbal (k)) = k-1 = 2k - 1 we obtain: 1 1 N(Tmin ()) = 3 (2 3-1) N(Tmin ( - 3)) = 3(2 3 ) + N(Tmin ( - 3)) = 3(2 3 ) + 3(2 3 ) + 3(2 3 ) + + 3(20 ) = 3 i3 0 2i = 3(2 3-1) 1 So te number of nodes of te tree N(T) is bound by: 3(2 3-1) N(Tmin ()) N(T) N(Tbal ()) = 2-1 Wic implies te in-equations: 3log(N + 3) - 3log(3) and log(n + 1) 465

6 Te eigt of te RGB tree is at most 3log(N + 3) - 3log(3) wic is a little worse tan RB trees eigt 2log(N+2) - 2. Tis could lead to a large difference wit large ordered sets. 6. Experimentation For a set of N keys, te RGB eigt is at most 3log(N + 3) - 3log(3) preserving te O(log(N)) performances of te RB trees. However, tis cost is muc less in practice. To define te beavior of te structure, we followed two main scenarios: Scenario 1: we insert files of randomly generated/ordered keys of sizes n={50000, , , , }. Ten we delete tem. Scenario 2: we insert te same files as in Scenario 1 and ten we use tose files to ceck if eac key is in te set, we delete it. Else, we re-insert it. (a) Scenario 1 (b) Scenario 2 Fig. 4. Tree construction time. 466

7 (a) Number of Restructuring in te construction pase (c) Tree maximum eigt (b) Tree searc time Fig. 5. Evolution of number of rebalancing, searc time and eigt of te tree. Tose two scenarios allowed defining te performances of insert/delete operations and te beavior in a real life situation were update operations come randomly. Te results for bot scenarios are very interesting for bot RGB trees and RB trees. Wen te keys are randomly generated, RGB and RB trees ave sligtly te same construction time (Fig. 4), te average insert operation in bot trees takes about te same time wit RGB trees taking an extended portion of time. But, in RGB trees, we observed tat te number of restructuring (Fig. 5-a) is muc less tan RB trees. Tis is explained by te design of RGB trees tat allows some imbalance on te structure by tolerating a series of two Red nodes (Red and Green), wic implies a less balanced structure wit a bigger eigt and a larger searc time as a consequence. Te increase in searc time and eigt of te tree is due to te increase of te number of Red nodes in eac pat in accordance wit teory. Te maximum eigt (Fig. 5-b) increased by one tird enlarging te searc time (Fig. 5-c) wic can be considered as a limitation for RGB trees. However, te RGB trees don't lose in performance globally and te gain in restructuring comes andy in environment were restructuring are costly. On te oter and, wen te keys are ordered, wic is te worst case for RGB trees, te eigt of te tree (Fig. 5-b) grows exponentially, te searc time (Fig. 5-c) and te update time multiply because of te tolerated imbalance. Tis is not te case for RB trees tat ave almost perfect balance. We observed owever a big increase of te number of restructuring (Fig. 5-a) for RB trees comparing to te randomly generated keys case suggesting tat even te worst case RGB trees is to consider for teir large gain in restructuring. 467

8 Like insertion, RGB trees and RB trees ave about te same time in delete (Fig. 6). Te RGB trees preserve teir low number of restructuring (Fig. 7). We found tat RGB trees ave sligtly better time for te delete operations even wen te keys are ordered. In bot scenarios, te RGB trees delete time (Fig. 6) is about te same of te RB trees delete time toug it as a large difference in te needed number of restructuring (Fig. 7). It is interesting to note tat in te Scenario 2 neiter te time nor te number of restructuring increased. So te update time isn't affected by te order of te update operations. Generally, we observed a major decrease in restructuring (rotations/ color flips) in RGB trees. Tis decrease provokes an increase of te eigt of te tree and consequently te searc time. However, tis increase isn't too big to cange te total time of te update. Furtermore, te gain in restructuring is too significant making RGB updates very fast wen te keys are randomly generated. If te keys are ordered, owever, te update time increases gradually. Te results sow tat RGB trees and RB trees ave almost te same update time wit a big difference in restructuring. Te RGB update as a sligtly bigger searc pase wit a very small restructuring pase. Tis caracteristic makes te proposed structure more suitable wit applications were restructuring is costly and searc operations are too few. Fig. 6. Second pase time. 468

9 (b) Scenario 2 (a) Scenario 1 Fig. 7. Number of restructuring in pase Conclusion In tis paper, we proposed a new and explicit form for extending Red Black trees called Red Green Black trees (RGB trees). We detailed te insert/delete procedures to expose te different aspects and cases of te update operations. Te RGB trees propose relaxed update operations tanks to te tolerated imbalance and te decrease in te number of restructuring. Tis structure is very interesting as a mean to define a faster update RB tree. Te relaxation led to some degree of imbalance, increasing te eigt of te tree and sligtly enlarging te searc time. Te increase is explained by te number of Red nodes were te worst case eigt is 3log(N + 3) - 3log(3) and a little number of restructuring is needed log(n + 3) - log(3). Tese results are in accordance wit te conducted experiments. In fact, wen te generated keys are random, te RGB trees give very fast update witout losing muc in balance. Tis caracteristic is very useful wen implementing scedulers wic by nature ave costly restructuring. It is true tat te searc time is increased comparing to RB trees. Tis is of course because of te increased eigt of te tree tat could lead to worst case tree of te form of vines. However, tis doesn't affect te update time because of te great gain in restructuring. Furtermore, in a randomized key environment, te experiment results assured tat tis case is quite improbable. Tis caracteristic defines a major gain in te sceduler environment especially wen tere is concurrency of access and some relational condition to maintain. More investigation on tis result would be appreciated between te researc communities. Tis structure can be extended to iger number of used colors, defining a generalized form of te RB trees were we can easily control of imbalance of te structure and adapt it to various environments. Tis generalization would lead to faster updates as te number of restructuring is decreased but would also provoke a considerable slower searc time. References [1] Landis E. M., & Adelson-Velskii, G. (1962). An algoritm for te organization of information. Doklady Akademii Nauk USSR, 146(2), [2] Guibas, L. J., & Sedgewick, R. (1978). A dicromatic framework for balanced trees. Proceedings of te 19t Annual Symposium on Foundations of Computer Science (pp. 8 21). [3] Foster, C. (1973). A generalization of avl trees. Commun. ACM, 16(8), [4] Bayer, R., & McCreigt, E. (1970). Organization and maintenance of large ordered indices. Proceedings of te 1970 ACM SIGFIDET (Now SIGMOD) Worksop on Data Description, Access and Control, SIGFIDET '70 (pp ). 469

10 [5] Karlton, P. L., Fuller, S. H., Scroggs, R. E., & Kaeler, E. B. (1976). Performance of eigt-balanced trees. Commun. ACM, 19(1), [6] Bayer, R. (1972). Symmetric binary b-trees: Data structure and maintenance algoritms. Acta Inf., 1, [7] Andersson, A. (1993). Balanced searc trees made simple. Proceedings of te 3rd Worksop on Algoritms and Data Structures (pp ). Springer. [8] Hanke, S., Ottmann, T., & Soisalon-Soininen, E. (1997). Relaxed balanced red-black trees. Proceedings of CIAC: Vol Lecture Notes in Computer Science (pp ). Springer. [9] Howard, P. W., & Walpole, J. (2014) Relativistic red-black trees. Concurrency and Computation: Practice and Experience, 26(16), Seyfeddine Zouana is a P.d student at ig Scool of Computer Sciences, Algiers (ESI: Ecole Supérieure d Informatique), wic specializes in data structures. He graduated as a computer sciences engineer and received is master degree in Djamel Eddine Zegour is a doctor in te Paris Daupine University and a professor in Hig Scool of Computer Science, Algiers (ESI: Ecole Supérieure d Informatique), wic as tirty years of experience, specializing in data structures and programming paradigms. He is te autor of several scientific publications and educational software. 470

Balanced Binary Trees

Balanced Binary Trees Balanced Binary Trees 1 Binary searc trees provide O(log N) searc times provided tat te nodes are distributed in a reasonably balanced manner. Unfortunately, tat is not always te case and performing a

More information

Optimization Model of Oil-Volume Marking with Tilted Oil Tank

Optimization Model of Oil-Volume Marking with Tilted Oil Tank Open Journal of Optimization 1 1 - ttp://.doi.org/1.36/ojop.1.1 Publised Online December 1 (ttp://www.scirp.org/journal/ojop) Optimization Model of Oil-olume Marking wit Tilted Oil Tank Wei Xie 1 Xiaojing

More information

Overall stability of multi-span portal sheds at right-angles to the portal spans

Overall stability of multi-span portal sheds at right-angles to the portal spans Overall stability of multi-span portal seds at rigt-angles to te portal spans SCI s Senior Manager for Standards, Carles M King, explains te approac for design of long-span portal seds. 1. Introduction

More information

Calculation of Theoretical Torque and Displacement in an Internal Gear Pump

Calculation of Theoretical Torque and Displacement in an Internal Gear Pump TECHNICAL REPORT Calculation of Teoretical Torque and Displacement in an Internal Gear Pump Y. INAGUMA Tis paper describes numerical determination of teoretical torque (ideal torque) and teoretical stroke

More information

Physics Engineering PC 1431 Experiment P2 Heat Engine. Section B: Brief Theory (condensed from Serway & Jewett)

Physics Engineering PC 1431 Experiment P2 Heat Engine. Section B: Brief Theory (condensed from Serway & Jewett) Pysics Engineering PC 1431 Experiment P2 Heat Engine Section A: Introduction Te invention of steam engine played a very significant role in te Industrial Revolution from te late 1700s to early 1800s. Te

More information

ANALYSIS OF WORK ROLL THERMAL BEHAVIOR FOR 1450MM HOT STRIP MILL WITH GENETIC ALGORITHM

ANALYSIS OF WORK ROLL THERMAL BEHAVIOR FOR 1450MM HOT STRIP MILL WITH GENETIC ALGORITHM Journal of Teoretical and Applied Information Tecnology 3 t September 2. Vol. 43 No.2 5-2 JATIT & LLS. All rigts reserved. ANALYSIS OF WORK ROLL THERMAL BEHAVIOR FOR 45MM HOT STRIP MILL WITH GENETIC ALGORITHM

More information

To find the volume of a pyramid and of a cone

To find the volume of a pyramid and of a cone - Volumes of Pyramids and Cones Common Core State Standards G-GMD.A. Use volume formulas for... pyramids, cones... to solve problems. G-MG.A. Use geometric sapes, teir measures, and teir properties to

More information

Ground Improvement Using Preloading with Prefabricated Vertical Drains

Ground Improvement Using Preloading with Prefabricated Vertical Drains DISCUSSION of: Ground Improvement Using Preloading wit Prefabricated Vertical Drains Full Reference: Dar, A.S., Siddique, A., Ameen, S.F., (211). Ground Improvement using Pre-loading wit Prefabricated

More information

Point Pollution Sources Dimensioning

Point Pollution Sources Dimensioning Point Pollution Sources Diensioning Georgeta CUCULEANU 1 ABSTRACT In tis paper a etod for deterining te ain pysical caracteristics of te point pollution sources is presented. It can be used to find te

More information

Prediction of steel plate deformation due to triangle heating using the inherent strain method

Prediction of steel plate deformation due to triangle heating using the inherent strain method J Mar Sci Tecnol (005) 10:11 16 DOI 10.1007/s00773-005-00-5 Prediction of steel plate deformation due to triangle eating using te inerent strain metod Cang Doo Jang 1, Tae Hoon Kim, Dae Eun Ko 3, Tomas

More information

Numerical Simulation of Stresses in Thin-rimmed Spur Gears with Keyway B. Brůžek, E. Leidich

Numerical Simulation of Stresses in Thin-rimmed Spur Gears with Keyway B. Brůžek, E. Leidich Numerical Simulation of Stresses in Tin-rimmed Spur Gears wit Keyway B. Brůžek, E. Leidic Tis paper contains an investigation of te key on a stress distribution in a tin-rimmed spur gear. A stress analysis

More information

OD DVOSTRUKO ZASTAKLJENOG PROZORA DO DVOSTRUKE FASADE INDIKATORI PRENOSA TOPLOTE STACIONARNOG STANJA

OD DVOSTRUKO ZASTAKLJENOG PROZORA DO DVOSTRUKE FASADE INDIKATORI PRENOSA TOPLOTE STACIONARNOG STANJA OD DVOSTRUKO ZASTAKLJENOG PROZORA DO DVOSTRUKE FASADE INDIKATORI PRENOSA TOPLOTE STACIONARNOG STANJA FROM DOUBLE-GLAZED WINDOW TO DOUBLE-SKIN FACADE STEADY STATE HEAT TRANSFER INDICATORS Gabriel NĂSTASE

More information

Revision Topic 12: Area and Volume Area of simple shapes

Revision Topic 12: Area and Volume Area of simple shapes Revision Topic : Area and Volume Area of simple sapes You need to learn ALL of te following area formulae: Rectangle Triangle W L b Area = lengt widt Area = base eigt = ½ b Parallelogram Trapezium a b

More information

Fixation effects: do they exist in design problem solving?

Fixation effects: do they exist in design problem solving? Environment and Planning B: Planning and Design, 1993, volume 20, pages 333-345 Fixation effects: do tey exist in design problem solving? A T Purcell, P Williams, J S Gero, B Colbron Department of Arcitectural

More information

青藜苑教育 Example : Find te area of te following trapezium. 7cm 4.5cm cm To find te area, you add te parallel sides 7

青藜苑教育 Example : Find te area of te following trapezium. 7cm 4.5cm cm To find te area, you add te parallel sides 7 青藜苑教育 www.tetopedu.com 00-6895997 3095457 Area of simple sapes Revision Topic : Area and Volume You need to learn ALL of te following area formulae: Rectangle Triangle W L Area = lengt widt Area = b base

More information

Variance Estimation of the Design Effect

Variance Estimation of the Design Effect JSM 013 - Survey Researc Metods Section Variance Estimation of te Design Effect Alberto Padilla Banco de México Abstract Sample size determination is a crucial part of te planning process of a survey and

More information

Study of microrelief influence on optical output coefficient of GaN-based LED

Study of microrelief influence on optical output coefficient of GaN-based LED Study of microrelief influence on optical output coefficient of GaN-based LED Danilina T.I., Cistoyedova I.A. and Popov A.A. Tomsk State University of Control Systems and Radioelectronics, Lenina prospect

More information

Calculation Methodology of Translucent Construction Elements in Buildings and Other Structures

Calculation Methodology of Translucent Construction Elements in Buildings and Other Structures MATEC Web of Conferences 96, 005 (08) ttps://doi.org/0.05/matecconf/0896005 XXVII R-S-P Seminar 08, Teoretical Foundation of Civil Engineering Calculation Metodology of Translucent Construction Elements

More information

Analysing the energy consumption of air handling units by Hungarian and international methods

Analysing the energy consumption of air handling units by Hungarian and international methods Analysing te energy consumption of air andling units by Hungarian and international metods László Kajtár 1, Miklós Kassai 2,* 1,2 Budapest University of Tecnology and Economics (BUTE), Budapest, Hungary

More information

1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE

1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE STERILE CONTAINER SYSTEMS BIO-BARRIER 1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE Aygün Bio-Barrier model sterilization container systems are designed wit mecanical valves

More information

Farm Structure Survey 2009/2010 Survey on agricultural production methods 2009/2010

Farm Structure Survey 2009/2010 Survey on agricultural production methods 2009/2010 Farm Structure Survey 2009/2010 Survey on agricultural production metods 2009/2010 National Metodological Report (NMR) According to Art. 12 of Regulation (EC) No 1166/2008 of te European Parliament and

More information

Installation the DELTABEAM Frame

Installation the DELTABEAM Frame Tese installation instructions are intended to be used togeter wit te project s erection metod statement were te instructions may be complemented. If tere are differences between te erection metod statement

More information

1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE

1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE BIO-BARRIER 1/1 FULL SIZE 3/4 QUARTER SIZE 1/2 HALF SIZE EXTRA LARGE SIZE EXTRA LONG SIZE Aygün Bio-Barrier model sterilization container systems are designed wit mecanical valves bot in bottom and lid

More information

Math GPS. 2. Art projects include structures made with straws this week.

Math GPS. 2. Art projects include structures made with straws this week. Number of Plants Mat GPS. List te measurements in order from greatest to least., inces,5 feet mile 75 yards Greatest. Art projects include structures made wit straws tis week. Number of Projects, p Total

More information

Math Practice Use a Formula

Math Practice Use a Formula 9.4 Volumes of Prisms How can you find te volume of a prism? ACTIVITY: Pearls in a Treasure Cest Work wit a partner. A treasure cest is filled wit valuable pearls. Eac pearl is about centimeter in diameter

More information

2 2D 2F. 1pc for each 20 m of wire. h (min. 45) h (min. 45) 3AC. see details J, E

2 2D 2F. 1pc for each 20 m of wire. h (min. 45) h (min. 45) 3AC. see details J, E TEXTILE AIR DIFFUSERS - - INSTRUCTIONS AIR FOR MOUNTING 1 1D 1F see details A, B, C 2 2D 2F see details A, B, C (min. 32) min. every 0 mm 1pc for eac 20 m of wire min. every 0 mm 1pc for eac 20 m of wire

More information

Description of Danish Practices in Retail Trade Statistics.

Description of Danish Practices in Retail Trade Statistics. Description of Danis Practices in Retail Trade Statistics. 1. Statistical units and reporting units Units and population Te enterprises in te Retail Trade Index are all legal units. In te Central Business

More information

Managing Measurement Uncertainty in Building Acoustics

Managing Measurement Uncertainty in Building Acoustics Buildings 2015, 5, 1389-1413; doi: 10.3390/buildings5041389 Article OPEN ACCESS buildings ISSN 2075-5309 www.mdpi.com/journal/buildings/ Managing Measurement Uncertainty in Building Acoustics Ciara Scrosati

More information

Background. Sample design

Background. Sample design Background Te National Statistics Centre (NSC) of te Lao Peoples Democratic Republic as conducted tree expenditure and consumption surveys in te last decade. Te first Lao Expenditure and Consumption Survey

More information

234 The National Strategies Secondary Mathematics exemplification: Y7

234 The National Strategies Secondary Mathematics exemplification: Y7 234 Te National Strategies Secondary Matematics exemplification: Y7 Pupils sould learn to: Deduce and use formulae to calculate lengts, perimeters, areas and volumes in 2-D and 3-D sapes As outcomes, Year

More information

László Mester. The new physical-mechanical theory of granular materials

László Mester. The new physical-mechanical theory of granular materials László Mester Te new pysical-mecanical teory of granular materials 9 - - Contents Introduction 3 Granular material as a distinct state of matter 4 Pysical properties of te granular material in relation

More information

16.1 Volume of Prisms and Cylinders

16.1 Volume of Prisms and Cylinders Name Class Date 16.1 Volume of Prisms and Cylinders Essential Question: How do te formulas for te volume of a prism and cylinder relate to area formulas tat you already know? Explore G.11.D Apply te formulas

More information

The household budget and expenditure data collection module (IOF 2014/2015) within a continuous multipurpose survey system (INCAF)

The household budget and expenditure data collection module (IOF 2014/2015) within a continuous multipurpose survey system (INCAF) MZ:2014:08 Te ouseold budget and expenditure data collection module (IOF 2014/2015) witin a continuous multipurpose survey system (INCAF) Report from a fift sort term mission to te National Statistical

More information

Using tree-grammars for training set expansion in page classification

Using tree-grammars for training set expansion in page classification Using tree-grammars for training set expansion in page classification Stefano Baldi Simone Marinai Gioanni Soda DSI - Uniersity of Florence - Italy Email: marinai@dsi.unifi.it Abstract In tis paper we

More information

THE REDESIGNED CANADIAN MONTHLY WHOLESALE AND RETAIL TRADE SURVEY: A POSTMORTEM OF THE IMPLEMENTATION

THE REDESIGNED CANADIAN MONTHLY WHOLESALE AND RETAIL TRADE SURVEY: A POSTMORTEM OF THE IMPLEMENTATION ASA Section on Survey Researc Metods THE REDESIGNED CANADIAN MONTHLY WHOLESALE AND RETAIL TRADE SURVEY: A POSTMORTEM OF THE IMPLEMENTATION Julie Trépanier, Statistics Canada Julie Trépanier, Business Survey

More information

2. The differential pressure across control valves must not vary too much

2. The differential pressure across control valves must not vary too much 2. Te differential pressre across control valves mst not vary too mc Common roblems roblems, typical indicating tat condition nmber two is not met: - Continos oscillation of room temperatre. - Room temperatres

More information

HCR OF HEAT PUMP ROOM AIR CONDITIONER IN CHINA. Beijing , China

HCR OF HEAT PUMP ROOM AIR CONDITIONER IN CHINA. Beijing , China OF HEA PUMP ROOM AIR CONDIIONER IN CHINA Baolong Wang 1, Wenxing Si 1, uan Cen 1 1 Department of Building Sciencesingua University, Beijing 100084, Cina ABSRAC Definition of eating/cooling capacity ratio

More information

Russell James Department of Scientific and Industrial Research Taupo-ldairakei, New Zealand

Russell James Department of Scientific and Industrial Research Taupo-ldairakei, New Zealand MEASUREMENT OF STEAM-TJATER FLOWS FOR THE TOTAL FLOW TURBIlJE Russell James Department of Scientific and Industrial Researc Taupo-ldairakei, New Zealand Hot water geotermal fields discarge steam-water

More information

Study of Steam Export Transients in a Combined Cycle Power Plant

Study of Steam Export Transients in a Combined Cycle Power Plant Study of Steam Export Transients in a Combined Cycle ower lant Alfonso Junquera Delgado Departamento Mecánico, Empresarios Agrupados c\ Magallanes 3 Madrid 8003 ajd@empre.es Almudena Travesí de los Santos

More information

CO-ROTATING FULLY INTERMESHING TWIN-SCREW COMPOUNDING: ADVANCEMENTS FOR IMPROVED PERFORMANCE AND PRODUCTIVITY

CO-ROTATING FULLY INTERMESHING TWIN-SCREW COMPOUNDING: ADVANCEMENTS FOR IMPROVED PERFORMANCE AND PRODUCTIVITY CO-ROTATING FULLY INTERMESHING TWIN-SCREW COMPOUNDING: ADVANCEMENTS FOR IMPROVED PERFORMANCE AND PRODUCTIVITY Paul G. Andersen, Coperion Corporation, Ramsey, NJ Frank Lecner, Coperion GmbH, Stuttgart,

More information

Annex 16. Methodological Tool. Tool to determine project emissions from flaring gases containing methane

Annex 16. Methodological Tool. Tool to determine project emissions from flaring gases containing methane CDM Met Panel Twenty-fourt meeting Page 1 Metodological Tool Tool to determine project emissions from flaring es containing metane I. DEFINITIONS, SCOPE, APPLICABILITY AND PARAMETERS Definitions For te

More information

Essential Question How can you find the surface area and the volume of a cone? 3 in. π

Essential Question How can you find the surface area and the volume of a cone? 3 in. π 11.7 Suface Aeas and Volumes of Cones Essential Question How can you find te suface aea and te volume of a cone? Finding te Suface Aea of a Cone Wok wit a patne. Constuct a cicle wit a adius of 3 inces.

More information

Goal: Measure the pump curve(s)

Goal: Measure the pump curve(s) Pump Performance Tes;ng Goal: Measure te pump curve(s) Head versus flow rate: Efficiency versus flow rate: Maximum ead at = 0 Maximum flow rate at = 0 η η = 0 wen = 0 and = 0 Maximum efficiency Pump tes;ng

More information

FIRST COMPARISON OF REMOTE CESIUM FOUNTAINS

FIRST COMPARISON OF REMOTE CESIUM FOUNTAINS 2001 EEE nternational Frequency Control Symposium and PDA Exibition FRST COMPARSON OF REMOTE CESUM FOUNTANS T. Parker*, P. Hetzel', S. Jefferts*, S. Weyers', L. Nelson", A. Bauc', J. Levine* *National

More information

20.1 Heights and distances

20.1 Heights and distances 20 Heigts an istances INTROUTION In tis capter, we will learn te practical use of trigonometry in our ay-to-ay life. We will see ow trigonometry is use for fining te eigts an istances of various objects,

More information

Lecture 9: Tuesday, February 10, 2015

Lecture 9: Tuesday, February 10, 2015 Com S 611 Spring Semester 2015 Advanced Topics on Distributed and Concurrent Algorithms Lecture 9: Tuesday, February 10, 2015 Instructor: Soma Chaudhuri Scribe: Brian Nakayama 1 Introduction In this lecture

More information

Geometry Supplement for Math 60 Perimeter, Area, and Volume

Geometry Supplement for Math 60 Perimeter, Area, and Volume Geomety Suppement fo Mat 60 Peimete, Aea, and Voume Geomety comes fom te Geek wods geo meaning eat and meton meaning measue. Today we wi ean about ow to measue cetain featues of two- and tee-dimensiona

More information

TORQUE CONVERTER MODELLING FOR ACCELERATION SIMULATION

TORQUE CONVERTER MODELLING FOR ACCELERATION SIMULATION UNIVERSITY OF PITESTI SCIENTIFIC BULLETIN FACULTY OF MECHANICS AND TECHNOLOGY AUTOMOTIVE series, year XVII, no.1 ( 3 ) TORQUE CONVERTER MODELLING FOR ACCELERATION SIMULATION 1 Ciobotaru, Ticuşor *, 1 Vînturiş,

More information

10 Fingers of Death: Algorithms for Combat Killing Roger Smith and Don Stoner Titan Corporation

10 Fingers of Death: Algorithms for Combat Killing Roger Smith and Don Stoner Titan Corporation 10 Fingers of Deat: Algoritms for Combat Killing Roger Smit and Don Stoner Titan Cororation Good sooting games need good killing algoritms. Tis gem rovides a series of combat algoritms tat can be used

More information

Is urban food demand in the Philippines different from China?

Is urban food demand in the Philippines different from China? Singapore Management University Institutional Knowledge at Singapore Management University Researc Collection Scool Of Economics Scool of Economics 0-04 Is urban food demand in te Pilippines different

More information

We Protect Your Yarn Like No One Else

We Protect Your Yarn Like No One Else FOR FURTHER INFORMATION VISIT WWW.SPINCAN.NET We Protect Your Yarn Like No One Else SPINCAN MANUFACTURING COMPANY REGD OFFICE Sakespeare Sarani, Century Towers, Room no. 501 Kolkata 700 017, India PHONE

More information

Influence of the mass flow ratio water-air on the volumetric mass transfer coefficient in a cooling tower

Influence of the mass flow ratio water-air on the volumetric mass transfer coefficient in a cooling tower International Journal of CemTec Researc CODEN (UA): IJCRGG, IN: 974-49, IN(Online):455-9555 Vol.11 No.1, pp 167-173, 18 Influence of te mass flow ratio water-air on te volumetric mass transfer coefficient

More information

OXYGEN CONTENT OF COMMERCIAL FROZEN ORANGE

OXYGEN CONTENT OF COMMERCIAL FROZEN ORANGE HGGART: OXYGEN CONTENT OXYGEN CONTENT OF COMMERCIAL FROZEN ORANGE CONCENTRATE R. L. HGGART Florida Citrus Commission Lake Alfred Incorporation air into citrus products du ring processing exposes tem to

More information

Volumes of Pyramids. Essential Question How can you find the volume of a pyramid?

Volumes of Pyramids. Essential Question How can you find the volume of a pyramid? 11.6 Volumes of Pyramids Essential Question How can you find te volume of a pyramid? Finding te Volume of a Pyramid Work wit a partner. Te pyramid and te prism ave te same eigt and te same square base.

More information

MPLEMENTATION OF A NATIONAL OBSERVATORY FOR MONITORING TECHNO-ECONOMIC DATA OF THE ITALIAN FLEET AND THE EVALUATION OF SOCIO-ECONOMIC PARAMETERS 1

MPLEMENTATION OF A NATIONAL OBSERVATORY FOR MONITORING TECHNO-ECONOMIC DATA OF THE ITALIAN FLEET AND THE EVALUATION OF SOCIO-ECONOMIC PARAMETERS 1 MPLEMENTATION OF A NATIONAL OBSERVATORY FOR MONITORING TECHNO-ECONOMIC DATA OF THE ITALIAN FLEET AND THE EVALUATION OF SOCIO-ECONOMIC PARAMETERS 1 1. Data collection and estimates of economic parameters

More information

International Plant Protection Convention Page 1 of 10

International Plant Protection Convention Page 1 of 10 International Plant Protection Convention Draft ISPM: Revision to Annex 1 and Annex 2 to ISPM 15 (Regulation of wood packaging material in international trade) 2006-010A&B [1]Draft revision of Annex 1

More information

FREQUENTLY ASKED QUESTIONS (FAQS)

FREQUENTLY ASKED QUESTIONS (FAQS) FREQUENTLY ASKED QUESTIONS (FAQS) Table of Contents CAS FAQ... 4 1.1... CAS FAQ 4 2 1.1.1 What is Coffee Assurance Services (CAS)? 4 1.1.2 What is the vision of Coffee Assurance Services? 4 1.1.3 What

More information

Do Regional Trade Pacts Benefit the Poor?

Do Regional Trade Pacts Benefit the Poor? Public Disclosure Autorized Public Disclosure Autorized Public Disclosure Autorized Public Disclosure Autorized Do Regional Trade Pacts Benefit te Poor? An Illustration from te Dominican Republic-Central

More information

Effect of Twisted-tape Inserts on Heat Transfer in a Tube

Effect of Twisted-tape Inserts on Heat Transfer in a Tube Effect of Twisted-tae Inserts on Heat Transfer in a Tube Watcarin Nootong, Smit Eiamsa-ard and Pongjet Promvonge, * Deartment of Mecanical Engineering, Faculty of Engineering, King Mongkut s Institute

More information

INFLUENCE OF ENVIRONMENT - Wine evaporation from barrels By Richard M. Blazer, Enologist Sterling Vineyards Calistoga, CA

INFLUENCE OF ENVIRONMENT - Wine evaporation from barrels By Richard M. Blazer, Enologist Sterling Vineyards Calistoga, CA INFLUENCE OF ENVIRONMENT - Wine evaporation from barrels By Richard M. Blazer, Enologist Sterling Vineyards Calistoga, CA Sterling Vineyards stores barrels of wine in both an air-conditioned, unheated,

More information

Research regarding the setting up of the Processing Directions of Peach New Cultivars and Hybrids

Research regarding the setting up of the Processing Directions of Peach New Cultivars and Hybrids Roumanian Biotecnological Letters Vol. 13, No. 5, 2008, pp. 3955 3961 Copyrigt 2008 Bucarest University Printed in Romania. All rigts reserved Roumanian Society of Biological Sciences ORIGINAL PAPER Researc

More information

Conjoint Analysis: A Study of Canned Coffee in Taiwan

Conjoint Analysis: A Study of Canned Coffee in Taiwan 238 ICSNS International ournal of Computer Science and Network Security, VOL.8 No.8, August 2008 Conoint Analysis: A Study of Canned Coffee in aiwan Meng-Long Si 1, Cen-Yin Liu 2, Biing-Wen Huang 3, Souua

More information

Structures of Life. Investigation 1: Origin of Seeds. Big Question: 3 rd Science Notebook. Name:

Structures of Life. Investigation 1: Origin of Seeds. Big Question: 3 rd Science Notebook. Name: 3 rd Science Notebook Structures of Life Investigation 1: Origin of Seeds Name: Big Question: What are the properties of seeds and how does water affect them? 1 Alignment with New York State Science Standards

More information

Applying Trigonometric Functions. ENTERTAINMENT The circus has arrived and the roustabouts must put

Applying Trigonometric Functions. ENTERTAINMENT The circus has arrived and the roustabouts must put 5-4 OJETIVE Use trigonometry to find te measures of te sides of rigt triangles. pplying Trigonometric Functions ENTERTINMENT Te circus as arrived and te roustabouts must put up te main tent in a field

More information

THE EGG-CITING EGG-SPERIMENT!

THE EGG-CITING EGG-SPERIMENT! 1 of 5 11/1/2011 10:30 AM THE EGG-CITING EGG-SPERIMENT! Knight Foundation Summer Institute Arthurea Smith, Strawberry Mansion Middle School Liane D'Alessandro, Haverford College Introduction: Get ready

More information

CARCINOMA OF THE ESOPHAGUS*

CARCINOMA OF THE ESOPHAGUS* Reprint from Nortwest Medicine, Seattle, Vol. XXVIII, No. I, Page 25, January, 1929 CARCINOMA OF THE ESOPHAGUS* J. EARL ELSE, M.D. PORTLAND, ORE. Clinical Professor and Cairman, Department of General Surgery,

More information

Coffee zone updating: contribution to the Agricultural Sector

Coffee zone updating: contribution to the Agricultural Sector 1 Coffee zone updating: contribution to the Agricultural Sector Author¹: GEOG. Graciela Romero Martinez Authors²: José Antonio Guzmán Mailing address: 131-3009, Santa Barbara of Heredia Email address:

More information

Subject to sale, withdrawal or error. Published on 09/19/16

Subject to sale, withdrawal or error. Published on 09/19/16 SHOE BAR RANCH ECTOR COUNTY, TEXAS 25,572.35 Acres, More or Less We are proud to ave obtained an exclusive listing on one of te best Permian Basin rances to be offered for sale in sometime, te Soe Bar

More information

Predicting Wine Quality

Predicting Wine Quality March 8, 2016 Ilker Karakasoglu Predicting Wine Quality Problem description: You have been retained as a statistical consultant for a wine co-operative, and have been asked to analyze these data. Each

More information

4.2 Using Similar Shapes

4.2 Using Similar Shapes LESSON 4.2 Using Similar Sapes Proportionalit 7.5. Generalize te critical attributes of similarit, including ratios witin and between similar sapes. ESSENTIL QUESTION How can ou use similar sapes to find

More information

Lesson 23: Newton s Law of Cooling

Lesson 23: Newton s Law of Cooling Student Outcomes Students apply knowledge of exponential functions and transformations of functions to a contextual situation. Lesson Notes Newton s Law of Cooling is a complex topic that appears in physics

More information

CHAPTER I BACKGROUND

CHAPTER I BACKGROUND CHAPTER I BACKGROUND 1.1. Problem Definition Indonesia is one of the developing countries that already officially open its economy market into global. This could be seen as a challenge for Indonesian local

More information

Characteristics and dead-time of GM-tube

Characteristics and dead-time of GM-tube Caracteristics ad dead-time of GM-tube GM-tubes are te most popular gas ioizatio detectors for te measuremet of - ad -radiatio. Gas ioizatio detectors ave tree types: ioizatio cambers, proportioal couters

More information

Going Round About Cycle Menus Linsey LaPlant, MS, RDN Health-e Pro Sales Manager. CSNA s Annual Conference Sacramento, CA

Going Round About Cycle Menus Linsey LaPlant, MS, RDN Health-e Pro Sales Manager. CSNA s Annual Conference Sacramento, CA Going Round About Cycle Menus Linsey LaPlant, MS, RDN Health-e Pro Sales Manager CSNA s Annual Conference Sacramento, CA What is a cycle menu? A cycle menu is a set of menus that repeat. The goal should

More information

STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS

STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS STUDY REGARDING THE RATIONALE OF COFFEE CONSUMPTION ACCORDING TO GENDER AND AGE GROUPS CRISTINA SANDU * University of Bucharest - Faculty of Psychology and Educational Sciences, Romania Abstract This research

More information

Retailing Frozen Foods

Retailing Frozen Foods 61 Retailing Frozen Foods G. B. Davis Agricultural Experiment Station Oregon State College Corvallis Circular of Information 562 September 1956 iling Frozen Foods in Portland, Oregon G. B. DAVIS, Associate

More information

FLOWERING OF TOMATO IN RELATION TO PRE-PLANTING LOW TEMPERATURES

FLOWERING OF TOMATO IN RELATION TO PRE-PLANTING LOW TEMPERATURES FLOWERING OF TOMATO IN RELATION TO PRE-PLANTING LOW TEMPERATURES G. Noto; G. La Malfa Istituto di Orticoltura e Floricoltura Università' degli Studi Catania - Italy Abstract The results of two trials carried

More information

5.10. Area and Perimeter INSERT

5.10. Area and Perimeter INSERT 5.10 Aea and Peimete INSERT A Peimete We egin tis section y eviewing te definition of a polygon, and te definition of peimete. Definition A polygon is a closed geometic figue, wit at least tee sides, in

More information

Is Fair Trade Fair? ARKANSAS C3 TEACHERS HUB. 9-12th Grade Economics Inquiry. Supporting Questions

Is Fair Trade Fair? ARKANSAS C3 TEACHERS HUB. 9-12th Grade Economics Inquiry. Supporting Questions 9-12th Grade Economics Inquiry Is Fair Trade Fair? Public Domain Image Supporting Questions 1. What is fair trade? 2. If fair trade is so unique, what is free trade? 3. What are the costs and benefits

More information

STABILITY IN THE SOCIAL PERCOLATION MODELS FOR TWO TO FOUR DIMENSIONS

STABILITY IN THE SOCIAL PERCOLATION MODELS FOR TWO TO FOUR DIMENSIONS International Journal of Modern Physics C, Vol. 11, No. 2 (2000 287 300 c World Scientific Publishing Company STABILITY IN THE SOCIAL PERCOLATION MODELS FOR TWO TO FOUR DIMENSIONS ZHI-FENG HUANG Institute

More information

Activity 2.3 Solubility test

Activity 2.3 Solubility test Activity 2.3 Solubility test Can you identify the unknown crystal by the amount that dissolves in water? In Demonstration 2a, students saw that more salt is left behind than sugar when both crystals are

More information

Appendix A. Table A.1: Logit Estimates for Elasticities

Appendix A. Table A.1: Logit Estimates for Elasticities Estimates from historical sales data Appendix A Table A.1. reports the estimates from the discrete choice model for the historical sales data. Table A.1: Logit Estimates for Elasticities Dependent Variable:

More information

The Violin Bow: Taper, Camber and Flexibility

The Violin Bow: Taper, Camber and Flexibility Te Violin Bow: Taper, Camber and lexibility Colin Goug Scool of Pysics and Astronomy, University of Birmingam, B13 9SN,UK a) (Dated: 11/22/1) An analytic, small-deflection, simplified model of te modern

More information

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS Nwakuya, M. T. (Ph.D) Department of Mathematics/Statistics University

More information

Fungicides for phoma control in winter oilseed rape

Fungicides for phoma control in winter oilseed rape October 2016 Fungicides for phoma control in winter oilseed rape Summary of AHDB Cereals & Oilseeds fungicide project 2010-2014 (RD-2007-3457) and 2015-2016 (214-0006) While the Agriculture and Horticulture

More information

D Lemmer and FJ Kruger

D Lemmer and FJ Kruger D Lemmer and FJ Kruger Lowveld Postharvest Services, PO Box 4001, Nelspruit 1200, SOUTH AFRICA E-mail: fjkruger58@gmail.com ABSTRACT This project aims to develop suitable storage and ripening regimes for

More information

An experimental study on the design method of a real-sized Mobile Bridge for a moving vehicle

An experimental study on the design method of a real-sized Mobile Bridge for a moving vehicle Mobile and Rapidly ssembled Structures I 93 n experimental study on te design metod of a real-sized Mobile ridge for a moving veicle Y. ikairo, I. rio, M. Nakazawa, S. Ono 3, J. olnicki-szulc 4, P. Pawlowski

More information

Measured Adiabatic Effectiveness and Heat Transfer for Blowing From the Tip of a Turbine Blade

Measured Adiabatic Effectiveness and Heat Transfer for Blowing From the Tip of a Turbine Blade See discussions, stats, and autor profiles for tis publication at: ttps://www.researcgate.net/publication/4554895 Measured Adiabatic Effectiveness and Heat Transfer for Blowing From te Tip of a Turbine

More information

ANALYSIS OF THE EVOLUTION AND DISTRIBUTION OF MAIZE CULTIVATED AREA AND PRODUCTION IN ROMANIA

ANALYSIS OF THE EVOLUTION AND DISTRIBUTION OF MAIZE CULTIVATED AREA AND PRODUCTION IN ROMANIA ANALYSIS OF THE EVOLUTION AND DISTRIBUTION OF MAIZE CULTIVATED AREA AND PRODUCTION IN ROMANIA Agatha POPESCU University of Agricultural Sciences and Veterinary Medicine, Bucharest, 59 Marasti, District

More information

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Solutions to Assignment #2 Saturday, April 17, 1999 Reading Assignment:

More information

Experiment # Lemna minor (Duckweed) Population Growth

Experiment # Lemna minor (Duckweed) Population Growth Experiment # Lemna minor (Duckweed) Population Growth Introduction Students will grow duckweed (Lemna minor) over a two to three week period to observe what happens to a population of organisms when allowed

More information

THE ANNALS OF "DUNAREA DE JOS" UNIVERSITY OF GALATI FASCICLE III, 2003 ISSN X ELECTROTECHNICS, ELECTRONICS, AUTOMATIC CONTROL, INFORMATICS

THE ANNALS OF DUNAREA DE JOS UNIVERSITY OF GALATI FASCICLE III, 2003 ISSN X ELECTROTECHNICS, ELECTRONICS, AUTOMATIC CONTROL, INFORMATICS FASCICLE III, 003 ISSN -454X ELECTROTECHNICS, ELECTRONICS, AUTOMATIC CONTROL, INFORMATICS A NEW METHOD OF GENE CODING FOR A GENETIC ALGORITHM DESIGNED FOR PARAMETRIC OPTIMIZATION Rau Belea * an Liviu Beliman

More information

Developing a building damage function using SAR images and post-event data after the Typhoon Haiyan in The Philippines

Developing a building damage function using SAR images and post-event data after the Typhoon Haiyan in The Philippines Developing a building damage function using SAR images and post-event data after te Typoon Haiyan in Te Pilippines Bruno ADRIANO 1, Erick MAS 2 and Sunici KOSHIMURA 3 1 Member of JSCE, Graduate Student,

More information

Biologist at Work! Experiment: Width across knuckles of: left hand. cm... right hand. cm. Analysis: Decision: /13 cm. Name

Biologist at Work! Experiment: Width across knuckles of: left hand. cm... right hand. cm. Analysis: Decision: /13 cm. Name wrong 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 right 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 score 100 98.6 97.2 95.8 94.4 93.1 91.7 90.3 88.9 87.5 86.1 84.7 83.3 81.9

More information

Gasoline Empirical Analysis: Competition Bureau March 2005

Gasoline Empirical Analysis: Competition Bureau March 2005 Gasoline Empirical Analysis: Update of Four Elements of the January 2001 Conference Board study: "The Final Fifteen Feet of Hose: The Canadian Gasoline Industry in the Year 2000" Competition Bureau March

More information

Applications. 38 Looking for Pythagoras. Find the missing length(s).

Applications. 38 Looking for Pythagoras. Find the missing length(s). Applications. A rigt triangle as legs of lengt inces and inces. a. Find te area of a square drawn on te ypotenuse of te triangle. b. Wat is te lengt of te ypotenuse?. Use te Pytagorean Teorem to find te

More information

BIOLOGICALLY INSPIRED MULTIFUNCTIONAL COMPOSITE PANEL WITH INTEGRATED CIRCULATORY SYSTEM FOR THERMAL CONTROL

BIOLOGICALLY INSPIRED MULTIFUNCTIONAL COMPOSITE PANEL WITH INTEGRATED CIRCULATORY SYSTEM FOR THERMAL CONTROL BIOLOGICALLY INSPIRED MULTIFUNCTIONAL COMPOSITE PANEL WITH INTEGRATED CIRCULATORY SYSTEM FOR THERMAL CONTROL A. D. Williams, M. E. Lyall, L. E. Underwood, and B. J. Arritt Air Force Researc Laboratory,

More information

Seasonal Adjustment versus Seasonality Modelling: Effect on Tourism Demand Forecasting

Seasonal Adjustment versus Seasonality Modelling: Effect on Tourism Demand Forecasting Advances in Management & Applied Economics, vol. 3, no.4, 203, 9-32 ISSN: 792-7544 (print version), 792-7552(online) Scienpress Ltd, 203 Seasonal Adjustment versus Seasonality Modelling: Effect on Tourism

More information

APPENDIX C2: Design of Canard Aircraft

APPENDIX C2: Design of Canard Aircraft APPENDIX 2: Design of anard Aircraft Tis appendix is a part of te book General Aviation Aircraft Design: Applied Metods and Procedures by norri Gudundsson, publised by Elsevier, Inc. Te book is available

More information

Further investigations into the rind lesion problems experienced with the Pinkerton cultivar

Further investigations into the rind lesion problems experienced with the Pinkerton cultivar Further investigations into the rind lesion problems experienced with the Pinkerton cultivar FJ Kruger and SD Mhlophe Agricultural Research Council Institute for Tropical and Subtropical Crops Private

More information