A WINERY COMPUTER MODEL

Size: px
Start display at page:

Download "A WINERY COMPUTER MODEL"

Transcription

1 A WINERY COMPUTER MODEL David S. Tower Department of Viticulture and Enology, University of California, Davis, California Present address: Commonwealth Winery, Cordage Park, Plymouth, Massachusetts Professors V. L. Singleton and D. Carlson are thanked for their crucial help and advice on the Master's degree research project that is the basis of this article. The Department of Viticulture and Enology is thanked for the funding of the computer time necessary for the project. Manuscript submitted September 28, Revised manuscript received February 22, Accepted for publication February 22, A computer program was written which simulates the production of table wines of a small-to-mediumsized winery. Important production and financial constraints, such as capacities in each step of winemaking, availability and prices of different grape varieties and blending formulas, are provided by management as input for the computer. The computer, fitting the data into a linear programming model, chooses the best combination of grape varieties and wines so that the winery's profit is maximized. Additional information ABSTRACT provided by the computer includes which production steps are the bottlenecks and how much profit would increase if a bottleneck is removed. How much labor is required for each production step is also computed. The article first discusses the application of linear programming to a simplified production model. The actual model, which can be solved by the computer program, is then presented. Computer output of a hypothetical small winery is interpreted. Additional aspects of the flexibility of the program are discussed. The mathematics of linear programming have been used successfully in building computer models in many different production industries (2). Winemaking, a batch process, is well suited to computer analysis using linear programming. The technique has been used in an analysis of optimum production practices of cooperative wineries in Germany (1). METHODS To show how such a mathematical model of wine production can be constructed, a simplified example of wine production will be presented first. This model will then be expanded to demonstrate how the time constraints of winemaking are constructed for the computer. Finally, the actual model will be described in general terms. A simple model: The wine production of the simplified model contains only three steps: fermentation, aging and sales. A flow diagram of the simple model is as follows: Fermentation : Bulk aging : Sales The simplified winery produces two wines, a red wine and a white wine. Let R be the number of gallons of red wine produced in d season, and W the number of gallons of white wine. If the winery earns three dollars profit on one gallon of red wine, the profit from the red wine sales of the season's production would be 3 x R, and if the winery makes two dollars profit per gallon of white wine, the white wine profits would be 2 x W. If P is the total profit from the season's production, then the equation for the profit would be 3R + 2W = P. The winery, as a commercial operation, wishes to produce and sell the amounts of red and white wines, R and W, which maximize the profit, P. Every winery is subject to restrictions or constraints in availability of raw materials, production capacities and ability to sell its products. Such constraints can be formulated mathematically. They are in the form of mathematical sentences, generally inequalities. This is so because not all of the capacity of a process must be used, but it is impossible to use more capacity than is available. In our simple model, assume that the maximum amount of white wine that can be sold is seven gallons. Market saturation of white wines is a possible cause. Algebraically this marketing constraint is expressed by the inequality lw <- 7 or OR + lw <~ 7, which is stating the same thing in a different form. Assume that all the red wine produced can be sold. The winery is also subject to production capacity constraints. Its total bulk aging capacity is eight gallons. Each gallon of red or white wine produced requires one gallon of bulk aging capacity. Since the total gallons of red and white wine produced cannot exceed the gallonage of the aging facility, the bulk aging constraint can be formulated as 1R + l W ~ 8. Assume the total fermentation capacity is 10 gallons. Further assume that every gallon of red wine requires two gallons of fermentation capacity in order to provide sufficient space for the rising cap. A gallon of white wine requires only one gallon of fermentation capacity. The fermentation constraint would then be 2R + lw <_ 10. Thus, this simple model has a profit equation and 208

2 COMPUTER MODEL- 209 inequality constraints for fermentation, bulk aging and sales. Algebraically it consists of the following: Profit 3r + 2W = P Fermentation 2R + lw <-- 10 Aging 1R + l W <- 8 Sales 0R+ lw<-7 Each constraint restricts what values R and W could have. One would like to find among the possible values the value for R and the value for W which would maximize the profit, P. Even for this most simple model, finding the best values by trial and error would take some time. However, the computer can be programmed to find quickly such optimum values. The model is fed into the computer as a block of numbers, called a linear programming input matrix. In our model the matrix would look like this: 3 2 P These numbers are taken directly from the algebraic formulation of the model. The first column are the coefficients for the R variable, the second for the W variable and the third is the right-hand side of each equation or inequality. A more complex model: The model can be expanded in numerous ways to fit the real situation of the crushing season better. For example, available fermentation capacity on a daily basis is important in determining how much of each type of wine to make. For our model, assume that it takes two days to ferment either type of wine and that the crushing season is three days long. Based on past seasons' experience and on projections for the current season, management can make reasonable estimates of the arrival patterns for each grape variety during the crushing season. Let us assume that none of the grapes for the red wine variety will arrive on the first day of crushing, 40% will arrive on the second day and 60% on the third. For the white wine variety, 40% arrives on the first day, 30% on the second and 30% on the third. Every day the same fermentation capacity, 10 gallons, is available. The first day's fermentation constraint is: [2 x 0] R + [1 x 0.4] W -< 10. The coefficients for R and W are the decimal equivalents of the percent of the variety arriving on a particular day times the fermenting space that one gallon of the variety occupies. This coefficient times the total amount of the variety, R or W in our model, gives the amount of fermentation space that the variety occupies on that particular day. In our example, no red wine arrives on the first day, so it occupies no fermentation space then. On day one, 40% or 0.4 of the white wine variety arrives, so it occupies 0.4W gallons fermentation space. The total of fermenting wines cannot exceed the day's capacity, which is what the constraint states. The fermentation constraint for the second day is more complex. On that day, 0.4 of the red wine variety arrives, so the amount of fermentation space occupied by the red variety is [2 x 0.4] R. Forty percent or 0.4 of the white wine variety arrived the first day and would still be fermenting on the second. On the second day 0.3 of it arrives, so or 0.7 of it requires fermentation space. The gallon requirement for the white wine variety would be [1 x ( )] W or [1 x 0.7] W. The fermentation space used by both varieties must be less than or equal to the space available. Algebraically this would be written as [2 x 0.4] R + [1 x 0.7] W ~ 10. On the third day, 0.6 of the red wine variety arrives. Still fermenting is the 0.4, which arrived on the second day. Hence, all of the red variety requires fermentation space and this would be represented by the expression [2 x ( )] R or [2 x 1.0] R. For the white variety, the 0.4, which arrived on the first day, is finished fermenting and no longer occupies fermentation space. The 0.3 that arrived on day two is still fermenting and 0.3 arrives on day three. The space occupied by the white variety would be [1 x ( )] W or [1 x 0.6] W. The constraint would be [2 x 1.0] R + [1 x 0.6] W <-_ 10. Substituting the three fermentation constraints for the one in the original model, the revised model would be: Profit 3.0R + 1.0W = P Fermentation Day 1 0.0R + 0.4W <- 10 Day 2 0.8R + 0.7W <- 10 Day 3 2.0R + 0.6W <- 10 Aging 1.0R + 1.0W <- 8 Sales 0.0R + 1.0W <- 7 This model can be further expanded in several ways to make it more closely fit reality. More wine varieties could be added. More production steps in the form of more constraints could be added. Production steps during the crush would have daily constraints as does fermentation capacity in the above model. Labor is also a limited resource in wine production, especially during the crushing season. Constraints for labor could be added. The limitation to the size of the model is the capacity of the computer to handle a matrix of many numbers. The computer program: A computer program, called WINERY, written for this project, creates a linear programming input matrix. Data for WINERY is supplied by management. Another computer program, TEMPO, which is stored in the computer at the University of California, Davis, Computer Center, finds the variable values which yield the highest profit and still satisfies the constraints. The program is intended to be run by people with minimal computer experience (3). The actual model: The winery model which forms the basis of the computer program, WINERY, is shown as a flow diagram, Fig. 1. The program considers all the major cost and production factors that influence the choice and amount of grapes to be purchased and the wines to be made. Determining the optimum amount of each variety to process and the best sales channels for the product is the major purpose of the program.

3 COMPUTER MODEL i CRUSHING SEPARATI ON OF FREE RUN FROM SKINS PRESSING CENTRIFUGING FERMENTATION k~ l'.i FERMENTATI ON Unpressed PRESSING AGING IN BULK small barrels I BOTTLING STERILE FILTER I POL I SH FILTER F ROUGH FILTER H small barrels casks casks wood tanks CENTRI- F FUGING Oak tanks Non-wooden tanks H WAREHOUSE I.E. BOTTLE AGING ii SALES Wholesale Retail Bulk Fig. 1. The computer model of a winery. Crushing through centrifugation of young wine are activities performed during the crushing in the fall. During this time, daily capacities for each process are important constraints to production. For example, in choosing the amount of each grape variety to process, a winery must be reasonably sure that the daily arrival of grapes does not exceed the winery's ability to press them at the desired time. Therefore, the model sets up constraints for the crushing season processes on a daily basis in a similar manner as was done for fermentation in the simple model. Unlike the winemaking steps during the crushing season, the other activities shown in Fig. 1 can be delayed for days, weeks or sometimes months. Constraints for such activities are constructed on a yearly basis, as were aging and sales in the simple model. Processes, such as settling of pressed white must and cooling during fermentation and for tartrate stability, are assumed not to place constraints on production, since the equipment for such processes is generally part of other systems. Therefore, they were not included in the WINERY program. The program, WINERY, is designed to handle a large number of grape varieties. Each variety can be processed into table wine in a different way. For example, management can stipulate what fraction of each variety will be centrifuged or whether none of a variety is to be centrifuged. Blending is assumed to be done after pressing. The program has the capacity to handle a large number of blends. WINERY provides not only for crushing grapes but also permits the stipulation of a fraction of a variety to arrive at the winery already crushed, as is the case with some mechanical harvesting systems. For white wine varieties, the free run can be separated from the unpressed skins after crushing. Constraints for separation tanks are assumed to be specially constructed tanks which permit easier separation of juice from pomace and easy pomace removal from the tank. Any dejuicing equipment which separates free run continuously from press material is considered to be an

4 COMPUTER MODEL m 211 integral part of the press system and does not require a separate constraint. Because many wineries have special fermentation tanks for red wines, the model has an option to establish separate constraints for such fermentation. Centrifuging can be done on any fraction of a variety before and/or after fermentation. Fractions of a variety destined for different wines can be aged for different lengths of time in different containers. The container types are labeled small barrels for red wines, small barrels for white wines, casks for red varieties, casks for white varieties, redwood tanks, oak tanks and non-wooden tanks. Blending restrictions can be put on any wine for any number of varieties in the wine. These restrictions force each blend to contain a given fraction of each variety. WINERY has three types of filtration: rough, polish, and sterilizing. Any fraction of each grape variety can be filtered in any combination of the three types. The program allows for bottling a wine or holding it for bulk sale. Since the available filters or bottling line can almost always complete the task, even if they must be run 24 hours a day, there are no capacity constraints for such processes in the model. How much labor needed in the operation is the real consideration in whether the capacity of such equipment is sufficient or not. WINERY generates labor usage figures for all of the non-crush season activities. The values of these variables, in man-hours, will be an indication to management where bigger and faster equipment is needed. It is unnecessary to construct constraints on the total amount of labor available during the non-crush season in the model because the length of the period is such that a winery could always supplement its existing labor force to meet its needs. Labor supply during the crushing season is a different matter. It may be impossible to supplement the supply of labor on hand during the few weeks of the crush. It is assumed that the labor supply during the crush is fixed. Labor constraints for each activity during the crushing season and for each day have been built into the model. Warehouse constraints for bottled wine are set up on a monthly basis. An arrival and withdrawal schedule is given to the computer as part of the input data supplied by management. The model has three ways of selling each wine: wholesale to a distributor, retail through the winery's own outlets, and unbottled in bulk. Management can place restrictions on each sales channel for each wine. The restrictions are upper and/or lower bounds on each wine-sales channel combination. Within these restrictions the computer generates optimum sales figures by wine and channel as part of its solution. The profit figure for the model is calculated by subtracting from the gross return only those costs which vary with the varieties of wines made and how they are sold. Hence, it is not net profit according to normal accounting standards. The variable costs used are the prices of the different grape varieties, labor costs during the non-crush season and the costs directly associated with selling through each of the three different sales channels. Other costs, variable and fixed, do not affect the product mix decision. For example, the labor cost differences at the winery during the crushing season of handling Cabernet Sauvignon or Carignane are small, but after fermentation the labor costs of processing each variety can vary greatly depending upon the type of container used for aging and the length of time in that container. RESULTS AND DISCUSSION Interpretation of computer output: The following example is for a fictitious winery. This winery processes four different grape varieties, two white and two red varieties. They arrive at the winery over a four-day period. The winery makes four varietal wines, two reds and two whites and two generic blends, a red and a white. The numbers here are small in order to facilitate interpretation of the results for this article. In making the wines the winery makes use of all of the available production steps provided by the model (Fig. 1), but each wine uses a different combination of these steps, as might be the case in a real winery, producing many different types of wines. The most important results of the program are the recommended amounts of grapes to purchase (Table 1). The grape prices and the upper and lower tonnage limits for each variety are supplied by management. Table 2 lists the computer generated sales recommendations for each wine by sales channel. In this example six wines are produced. With wholesale, retail and bulk sales channels, 18 different wine-sales channel combinations are possible, but the management of our hypothetical winery has limited the possibilities to selling two wines through wholesalers, four wines retail and two wines in bulk. A red varietal, wine 3, and the white generic, wine 5, may be sold to wholesalers. All four varietal wines may be sold through the winery's own retail outlet and both generic blends, wines 5 and 6, may be sold in bulk. The computer neither recommends selling the red varietal, wine 3, through wholesalers nor the white blend, wine 5, in bulk. Table 1. Grape purchasing recommendations in tons. Variety Cost (S/ton) Amount recommended Table 3 lists the gross return per gallon by wine type and sales channels combination. For those combinations not recommended by the computer, the minimum necessary increase in gross return order to make that particular combination profitable is given. As an example, for it to become profitable to sell wine 5

5 212 ~ COMPUTER MODEL Wine type Table 2. Sales recommendations in gallons. Sales channels Wholesale Retail Bulk #1 varietal m 10,338 ~ Crushing #2 varietal ~ 1,000 #3 varietal None grape #4 separation varietal m 5,992 #5 blend 286 m None Press use #6 blend ~ ~ 395 Table 3. Gross return and minimum price increase for profitability (per gallon). Unpressed red Wine type Sales channel fermentation Wholesale Retail Bulk #1 ~ 10 # #3 5 (5) a 10 #4 ~ 25 #5 10 ~ 4 (6) a #6 ~ ~ 2 a Minimum necessary increase in the gross return in order for it to become profitable to sell a wine through a particular channel. in bulk, the bulk price for it must increase by six dollars. In this simple case the results from the above analysis seem obvious, but in a more complicated situation an analysis of the recommended sales figures would prove valuable. The computer also provides the amount of man hours required to accomplish each of the winemaking activities performed outside of the crushing season (Table 4). Management can use this list to see where labor is being utilized inefficiently. Table 4. Labor requirement for non-crushing season activities. Barrel topping and cleaning Cask topping and cleaning Wooden tank filling and cleaning Non-wooden tank filling and cleaning Rough filtration Polish filtration Sterilizing filtration Bottling Warehouse Man hours The numbers in Table 5, generated as part of the computer results, are the usage and idle capacity for each production step. Also provided with this information is the potential increase in profit as a result of increasing the capacity by one unit of each production facility already operating at full capacity. In our example, at most only 25% of the pressing capacity is used and on the fifth day of the crush the presses are not used at all. Labor, crushing and fermentation capacities are also not fully utilized. Table 5. Usage and idle capacity of each wine processing step. Process Day Usage Idle capacity Profit potential of one unit's additional capacity and pressed red fermentation Centrifuge wine barrel aging wine barrel aging wine cask aging wine cask aging wood tank use Oak tank use Non-wood tank use Crush season labor Non-crush season labor a 99.5 a a 26.5 a m a a ~ a a b b ~ ~ b b ~ ~ $ ~ b b b a Tons. b Gallons. c Man hours m $ $ b b $ c 50.7 c c c

6 COMPUTER MODEL n 213 The bottlenecks are centrifuging on the seventh day of the crush, white and red cask capacity and non-wooden tank storage. By increasing the capacity of white wine casks by one gallon, the profit would increase by $25.62 (Table 5). Rather than purchasing this additional capacity it would be more economical to use the idle white barrel capacity, i.e. to shift the aging requirements for white wines from casks to barrels. Rerunning the program with the changed requirements would test the validity of such a potential solution. A similar approach for the red cask shortage is also possible. Table 5 shows that the profit would increase by $25.53 if another gallon could be centrifuged on the seventh day. The under utilization of the centrifuge on all other days indicates that the purchase of a new machine would not be worth the expense. A rescheduling of its use could bring the desired result. This could be achieved by rescheduling the arrival of the different grape varieties or reducing the amount of centrifuging for specific varieties. In order to determine the feasibility of either of these strategies, input data must be examined to see which varieties are being centrifuged and when in the winemaking process they are being centrifuged. Running the program several times with different input data would yield further useful information. Different wine prices reflecting projected price changes as input data would indicate possible production changes required to take advantage of the changing market. Plant expansions or new equipment acquisitions could be simulated by running the program with the appropriate changes in the input data to reflect planned changes in plant and equipment. Comparing the output of the current data with output based on proposed changes would show how the changes could affect the product mix and the utilization of existing resources. Long-term planning could be done with the computer results obtained by using future projections as input data. Model limitations: The computer program was written to encompass a wide range of different winemaking possibilities. The program, WINERY, is very complex as a result. It is impossible to test completely such a program. The reliability of the model can only be determined through repeated use and comparison with management's own analysis of their production situation. With a linear programming model of this size and complexity, the constraints are formulated in such a way that unknown and undesirable relationships between production steps could exist. For example, in the simple model at the beginning of the article, the construction of separate fermenting and aging constraints implies that the aging and fermenting facilities are completely separate from each other. If this were not the case, then additional inequalities would have to be added to that model in order to make it conform more closely with reality. Such hidden implications can have gone unnoticed in creating the complex model. Another class of potential difficulties is the result of the discrepancy between a given winery's plant and production methods and the production model which is the basis for the computer program. With the recognition of such a problem, the input data can, in some cases, be modified so that the computer simulates the actual situation satisfactorily. For example, at least one winery in California ferments its Chardonnay in 50-gallon barrels, which in the computer program are only available for aging. The program can handle this special situation, if the fermentation time for Chardonnay is entered as zero, so that none of the normal fermentation tanks would be used for it, and if all of the Chardonnay would be required for the model to age in oak barrels, so that the appropriate barrel space for the must would be reserved. Since the computer sees no use for the barrels during fermentation, it makes no difference for optimum barrel use whether the barrels are filled after pressing or after fermentation. The size of input matrix that the computer can solve is limited. As WINERY and TEMPO are presently constructed, winery data with a crushing season of less than 40 days, crushing less than 30 varieties and making less than 30 different wines can fit into the computer. With a little rewriting of the program, one of these boundaries can be increased but only at the cost of reducing the other. For example, the maximum crush season could be extended to 60 days if the maximums for varieties and wines were dropped to 15. Such a change does not increase the size of the matrix but just shifts space within the matrix. Increasing the maximum size of the matrix would require major rewriting of the program. Another limitation with the model is in the fermentation of constraints for tank usage. In a real situation, important is not only the total tank capacity in gallons but also the number of tanks available. In the model, all tank processes are constrained by gallonage, but tank usage is not adequately constrained by numbers. CONCLUSION The computer model considers the major factors in wine production and product mix decision. The model can be used to determine the amount of each grape variety to purchase and each wine type to be produced in order to maximize profit. Idle capacity and production bottlenecks can also be determined. Using projections of future wine demand and grape supply, the model can be used as a valuable tool in long range planning. LITERATURE CITED 1. Rink, Rudolf. Zur Frage der optimalen Betriebsgestaltung in Winzergenossenschaften. Agrarwissenschaftliche Fakult&t der Landwirtschaftlichen Hochschule Hohenheim in Stuttgart-Hohenheim. (1966). 2. Scott, John G., and Elmer E. Broadbent. A computerized feeding program for replacement and ration formulation. In: Illinois Agricultural Economics, July, 1972: Iron and Steel Production by Tibor Fabian in Management Science, Vol. 4, June, Tower, David S. A linear programming model of a winery. M.S. Thesis submitted to Univ. Calif., Davis, in partial fulfillment of degree, 1975.

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

Making Money by Making Wine: West Coast and Eastern Comparisons V&WM 2: by Carl R. Dillon, Justin R. Morris and Carter Price

Making Money by Making Wine: West Coast and Eastern Comparisons V&WM 2: by Carl R. Dillon, Justin R. Morris and Carter Price Making Money by Making Wine: West Coast and Eastern Comparisons V&WM 2:37-42 1993 by Carl R. Dillon, Justin R. Morris and Carter Price A considerable amount of worthwhile research has been conducted regarding

More information

Results from the First North Carolina Wine Industry Tracker Survey

Results from the First North Carolina Wine Industry Tracker Survey Results from the First North Carolina Wine Industry Tracker Survey - 2009 Dr. Michael R. Evans Director and Professor of Hospitality and Tourism Management and Dr. James E. Stoddard Professor of Marketing

More information

Whether to Manufacture

Whether to Manufacture Whether to Manufacture Butter and Powder or Cheese A Western Regional Research Publication Glen T. Nelson Station Bulletin 546 November 1954 S S De&dim9 S Whether to Manufacture Butterand Powder... or

More information

FOB/ex-cellars winery selling (or transfer to winery tasting room or DtC sales) price per case:

FOB/ex-cellars winery selling (or transfer to winery tasting room or DtC sales) price per case: S1 Project Info Oregon Wine Cost of Goods & Gross Margin Calculator Sponsored by the Oregon Wine Board, developed by Tim Hanni MW and ecode.me LLC CLICK HERE TO VIEW TUTORIAL VIDEO 1 Date: 2 3 Case Production

More information

Preview. Introduction (cont.) Introduction. Comparative Advantage and Opportunity Cost (cont.) Comparative Advantage and Opportunity Cost

Preview. Introduction (cont.) Introduction. Comparative Advantage and Opportunity Cost (cont.) Comparative Advantage and Opportunity Cost Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade Wages

More information

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model. Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade Wages

More information

AWRI Refrigeration Demand Calculator

AWRI Refrigeration Demand Calculator AWRI Refrigeration Demand Calculator Resources and expertise are readily available to wine producers to manage efficient refrigeration supply and plant capacity. However, efficient management of winery

More information

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model. Pearson Education Limited All rights reserved.

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model. Pearson Education Limited All rights reserved. Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model 1-1 Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade

More information

Economics 101 Spring 2016 Answers to Homework #1 Due Tuesday, February 9, 2016

Economics 101 Spring 2016 Answers to Homework #1 Due Tuesday, February 9, 2016 Economics 101 Spring 2016 Answers to Homework #1 Due Tuesday, February 9, 2016 Directions: The homework will be collected in a box before the large lecture. Please place your name, TA name and section

More information

2016 STATUS SUMMARY VINEYARDS AND WINERIES OF MINNESOTA

2016 STATUS SUMMARY VINEYARDS AND WINERIES OF MINNESOTA IN PARTNERSHIP WITH THE NORTHERN GRAPES PROJECT, AN USDA SPECIALITY CROPS RESEARCH INITIATIVE PROGRAM, NIFA 2016 STATUS SUMMARY VINEYARDS AND WINERIES OF MINNESOTA Brigid Tuck and William Gartner INTRODUCTION

More information

HONEY. Food and Agriculture Organization of the United Nations

HONEY. Food and Agriculture Organization of the United Nations HONEY Food and Agriculture Organization of the United Nations HONEY 1.- Honey General Information Honey has a fluid, crystallized (total or partially) consistence. Present a high viscosity and density

More information

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade Wages

More information

Preview. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Preview. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade Wages

More information

Introduction to Management Science Midterm Exam October 29, 2002

Introduction to Management Science Midterm Exam October 29, 2002 Answer 25 of the following 30 questions. Introduction to Management Science 61.252 Midterm Exam October 29, 2002 Graphical Solutions of Linear Programming Models 1. Which of the following is not a necessary

More information

EFFECT OF TOMATO GENETIC VARIATION ON LYE PEELING EFFICACY TOMATO SOLUTIONS JIM AND ADAM DICK SUMMARY

EFFECT OF TOMATO GENETIC VARIATION ON LYE PEELING EFFICACY TOMATO SOLUTIONS JIM AND ADAM DICK SUMMARY EFFECT OF TOMATO GENETIC VARIATION ON LYE PEELING EFFICACY TOMATO SOLUTIONS JIM AND ADAM DICK 2013 SUMMARY Several breeding lines and hybrids were peeled in an 18% lye solution using an exposure time of

More information

The Economics Surrounding Premium Wine Production

The Economics Surrounding Premium Wine Production The Economics Surrounding Premium Wine Production by Trent Ball 1 and Ray Folwell 2 1 Vineyard and Winery Technology Program, Chair, Yakima Valley Community College, and Partner, 2 Agri-Business Consultants

More information

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model 1-1 Preview Opportunity costs and comparative advantage A one-factor Ricardian model Production possibilities Gains from trade

More information

Help in Addressing the Challenges to Entering the Vineyard and Winery Industry

Help in Addressing the Challenges to Entering the Vineyard and Winery Industry Help in Addressing the Challenges to Entering the Vineyard and Winery Industry Part 4 Iowa State University Value Added Agriculture Program United States Department of Agriculture Risk Management Agency

More information

Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model

Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Introduction Theories of why trade occurs: Differences across countries in labor, labor skills, physical capital, natural resources,

More information

TABLE #2 SHOWING THE WEIGHT AND BULK OF RATIONS 1

TABLE #2 SHOWING THE WEIGHT AND BULK OF RATIONS 1 1,000 Rations Tare TABLE #2 SHOWING THE WEIGHT AND BULK OF RATIONS 1 Bulk in Barrels 1 Ration Tare Bulk in Barrels 1 Barrel of Ration Components 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. Pork 503

More information

Demand, Supply and Market Equilibrium. Lecture 4 Shahid Iqbal

Demand, Supply and Market Equilibrium. Lecture 4 Shahid Iqbal Demand, Supply and Market Equilibrium Lecture 4 Shahid Iqbal Markets & Economics A market is a group of buyers and sellers of a particular good or service. The terms supply and demand refer to the behavior

More information

1/17/manufacturing-jobs-used-to-pay-really-well-notanymore-e/

1/17/manufacturing-jobs-used-to-pay-really-well-notanymore-e/ http://www.washingtonpost.com/blogs/wonkblog/wp/2013/0 1/17/manufacturing-jobs-used-to-pay-really-well-notanymore-e/ Krugman s Trade Policy History Course: https://webspace.princeton.edu/users/pkrugman/wws%205

More information

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Preview. Introduction. Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3 Labor Productivity and Comparative Advantage: The Ricardian Model Copyright 2012 Pearson Addison-Wesley. All rights reserved. Preview Opportunity costs and comparative advantage A one-factor

More information

An Optimization Model for Winery Capacity Use. Christos Kolympiris University of Missouri. Michael Thomsen University of Arkansas

An Optimization Model for Winery Capacity Use. Christos Kolympiris University of Missouri. Michael Thomsen University of Arkansas An Optimization Model for Winery Capacity Use Christos Kolympiris University of Missouri Michael Thomsen University of Aransas Justin Morris University of Aransas Selected Paper prepared for presentation

More information

ECONOMIC IMPACT OF LEGALIZING RETAIL ALCOHOL SALES IN BENTON COUNTY. Produced for: Keep Dollars in Benton County

ECONOMIC IMPACT OF LEGALIZING RETAIL ALCOHOL SALES IN BENTON COUNTY. Produced for: Keep Dollars in Benton County ECONOMIC IMPACT OF LEGALIZING RETAIL ALCOHOL SALES IN BENTON COUNTY Produced for: Keep Dollars in Benton County Willard J. Walker Hall 545 Sam M. Walton College of Business 1 University of Arkansas Fayetteville,

More information

COLORADO REVISED STATUTES, TITLE 35, AGRICULTURE

COLORADO REVISED STATUTES, TITLE 35, AGRICULTURE COLORADO REVISED STATUTES, TITLE 35, AGRICULTURE ARTICLE 29.5: COLORADO WINE INDUSTRY DEVELOPMENT ACT Section 35-29.5-101. Short title. 35-29.5-101.5. Legislative declaration. 35-29.5-102. Definitions.

More information

Buying Filberts On a Sample Basis

Buying Filberts On a Sample Basis E 55 m ^7q Buying Filberts On a Sample Basis Special Report 279 September 1969 Cooperative Extension Service c, 789/0 ite IP") 0, i mi 1910 S R e, `g,,ttsoliktill:torvti EARs srin ITQ, E,6

More information

Archdiocese of New York Practice Items

Archdiocese of New York Practice Items Archdiocese of New York Practice Items Mathematics Grade 8 Teacher Sample Packet Unit 1 NY MATH_TE_G8_U1.indd 1 NY MATH_TE_G8_U1.indd 2 1. Which choice is equivalent to 52 5 4? A 1 5 4 B 25 1 C 2 1 D 25

More information

Large-scale Accessory Winery Event. Large-scale accessory winery event is an event hosted by the on-site winery or off-site

Large-scale Accessory Winery Event. Large-scale accessory winery event is an event hosted by the on-site winery or off-site WINERY OR OFF-SITE WINE CELLAR SUPPLEMENTAL INFORMATION AND EVENT PLAN SAN JOAQUIN COUNTY COMMUNITY DEVELOPMENT DEPARTMENT 1810 E. HAZELTON AVENUE, STOCKTON CA 95205 BUSINESS PHONE: (209) 468-3121 Business

More information

Grape Growers of Ontario Developing key measures to critically look at the grape and wine industry

Grape Growers of Ontario Developing key measures to critically look at the grape and wine industry Grape Growers of Ontario Developing key measures to critically look at the grape and wine industry March 2012 Background and scope of the project Background The Grape Growers of Ontario GGO is looking

More information

How Many of Each Kind?

How Many of Each Kind? How Many of Each Kind? Abby and Bing Woo own a small bakery that specializes in cookies. They make only two kinds of cookies plain and iced. They need to decide how many dozens of each kind of cookie to

More information

Chapter 3: Labor Productivity and Comparative Advantage: The Ricardian Model

Chapter 3: Labor Productivity and Comparative Advantage: The Ricardian Model Chapter 3: Labor Productivity and Comparative Advantage: The Ricardian Model Krugman, P.R., Obstfeld, M.: International Economics: Theory and Policy, 8th Edition, Pearson Addison-Wesley, 27-53 1 Preview

More information

Fair Trade and Free Entry: Can a Disequilibrium Market Serve as a Development Tool? Online Appendix September 2014

Fair Trade and Free Entry: Can a Disequilibrium Market Serve as a Development Tool? Online Appendix September 2014 Fair Trade and Free Entry: Can a Disequilibrium Market Serve as a Development Tool? 1. Data Construction Online Appendix September 2014 The data consist of the Association s records on all coffee acquisitions

More information

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data . Activity 10 Coffee Break Economists often use math to analyze growth trends for a company. Based on past performance, a mathematical equation or formula can sometimes be developed to help make predictions

More information

COMPARISON OF CORE AND PEEL SAMPLING METHODS FOR DRY MATTER MEASUREMENT IN HASS AVOCADO FRUIT

COMPARISON OF CORE AND PEEL SAMPLING METHODS FOR DRY MATTER MEASUREMENT IN HASS AVOCADO FRUIT New Zealand Avocado Growers' Association Annual Research Report 2004. 4:36 46. COMPARISON OF CORE AND PEEL SAMPLING METHODS FOR DRY MATTER MEASUREMENT IN HASS AVOCADO FRUIT J. MANDEMAKER H. A. PAK T. A.

More information

Wine Futures: Pricing and Allocation as Levers against Quality Uncertainty

Wine Futures: Pricing and Allocation as Levers against Quality Uncertainty Padua 2017 Abstract Submission I want to submit an abstract for: Conference Presentation Corresponding Author Burak Kazaz E-Mail bkazaz@syr.edu Affiliation Syracuse University, Whitman School of Management

More information

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model

Chapter 3. Labor Productivity and Comparative Advantage: The Ricardian Model hapter 3 Labor Productivity and omparative Advantage: The Ricardian Model Preview Opportunity costs and comparative advantage Production possibilities Relative supply, relative demand & relative prices

More information

Instruction (Manual) Document

Instruction (Manual) Document Instruction (Manual) Document This part should be filled by author before your submission. 1. Information about Author Your Surname Your First Name Your Country Your Email Address Your ID on our website

More information

The Board of Trustees of the University of Illinois,

The Board of Trustees of the University of Illinois, AUTHOR'S NOTE A first review of governmental policy was in a paper written on March 5, 1951. With the onset of the Korean War, the Office of Price Stabilization was established, and wage and price controls

More information

DEFINITIONS: Page 1 of 6 F:\DEVSVC\Planning Application Forms\ Winery or Wine Cellar Supplemental Info & Marketing Plan. Doc (Revised )

DEFINITIONS: Page 1 of 6 F:\DEVSVC\Planning Application Forms\ Winery or Wine Cellar Supplemental Info & Marketing Plan. Doc (Revised ) WINERY OR OFF-SITE WINE CELLAR SUPPLEMENTAL INFORMATION AND EVENT PLAN SAN JOAQUIN COUNTY COMMUNITY DEVELOPMENT DEPARTMENT 1810 E. HAZELTON AVENUE, STOCKTON CA 95205 BUSINESS PHONE: (209) 468-3121 Business

More information

GEA Plug & Win. Triple win centrifuge skids for craft brewers

GEA Plug & Win. Triple win centrifuge skids for craft brewers GEA Plug & Win Triple win centrifuge skids for craft brewers 2 GEA PLUG & WIN GEA PLUG & WIN 3 No Limits for New Beers All around the world, creative brewers are turning craft beers into spectacular success

More information

BREWING UP POSSIBILITIES.

BREWING UP POSSIBILITIES. BREWING UP POSSIBILITIES Since 2011, Beltway Brewing Company s unwavering dedication to quality and flexibility allows us to continue exceeding our clients expectations and growing their brands. HOW TO

More information

Acta Chimica and Pharmaceutica Indica

Acta Chimica and Pharmaceutica Indica Acta Chimica and Pharmaceutica Indica Research Vol 7 Issue 2 Oxygen Removal from the White Wine in Winery VladimirBales *, DominikFurman, Pavel Timar and Milos Sevcik 2 Faculty of Chemical and Food Technology,

More information

ECONOMIC IMPACT OF WINE AND VINEYARDS IN NAPA COUNTY

ECONOMIC IMPACT OF WINE AND VINEYARDS IN NAPA COUNTY ECONOMIC IMPACT OF WINE AND VINEYARDS IN NAPA COUNTY An Report prepared for Jack L. Davies Napa Valley Agricultural Land Preservation Fund and Napa Valley Vintners JUNE 2005 FULL ECONOMIC IMPACT OF WINE

More information

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials Project Overview The overall goal of this project is to deliver the tools, techniques, and information for spatial data driven variable rate management in commercial vineyards. Identified 2016 Needs: 1.

More information

CaffèOro SpA. Roberto Cigolini Department of Management, Economics and Industrial Engineering Politecnico di Milano

CaffèOro SpA. Roberto Cigolini Department of Management, Economics and Industrial Engineering Politecnico di Milano CaffèOro SpA Roberto Cigolini roberto.cigolini@polimi.it Department of Management, Economics and Industrial Engineering Politecnico di Milano CaffèOro SpA 1. Introduction Once Ms. Colombo achieved her

More information

International Journal of Business and Commerce Vol. 3, No.8: Apr 2014[01-10] (ISSN: )

International Journal of Business and Commerce Vol. 3, No.8: Apr 2014[01-10] (ISSN: ) The Comparative Influences of Relationship Marketing, National Cultural values, and Consumer values on Consumer Satisfaction between Local and Global Coffee Shop Brands Yi Hsu Corresponding author: Associate

More information

UPPER MIDWEST MARKETING AREA THE BUTTER MARKET AND BEYOND

UPPER MIDWEST MARKETING AREA THE BUTTER MARKET AND BEYOND UPPER MIDWEST MARKETING AREA THE BUTTER MARKET 1987-2000 AND BEYOND STAFF PAPER 00-01 Prepared by: Henry H. Schaefer July 2000 Federal Milk Market Administrator s Office 4570 West 77th Street Suite 210

More information

2011 Regional Wine Grape Marketing and Price Outlook

2011 Regional Wine Grape Marketing and Price Outlook Center for Crop Diversification Survey CCD-SV-1 2011 Regional Wine Grape Marketing and Price Outlook Timothy Woods and Matthew Ernst Dr. Woods is an Extension Professor at the University of Kentucky. Mr.

More information

GEA Wine Decanter. Make every grape count

GEA Wine Decanter. Make every grape count GEA Wine Decanter Make every grape count 3 Give your winery a boost Make every harvested grape count by adding a GEA Wine Decanter this season. You'll see the payback year after year. More wine produced

More information

Recent U.S. Trade Patterns (2000-9) PP542. World Trade 1929 versus U.S. Top Trading Partners (Nov 2009) Why Do Countries Trade?

Recent U.S. Trade Patterns (2000-9) PP542. World Trade 1929 versus U.S. Top Trading Partners (Nov 2009) Why Do Countries Trade? PP542 Trade Recent U.S. Trade Patterns (2000-9) K. Dominguez, Winter 2010 1 K. Dominguez, Winter 2010 2 U.S. Top Trading Partners (Nov 2009) World Trade 1929 versus 2009 4 K. Dominguez, Winter 2010 3 K.

More information

WHOLESALE BUYERS GUIDE TO WASHINGTON GRAPEVINE QUARANTINES

WHOLESALE BUYERS GUIDE TO WASHINGTON GRAPEVINE QUARANTINES WHOLESALE BUYERS GUIDE TO WASHINGTON GRAPEVINE QUARANTINES By Michelle Moyer, Statewide Viticulture Extension Specialist, Department of Horticulture, WSU Irrigated Agriculture Research and Extension Center,

More information

Chapter 1: The Ricardo Model

Chapter 1: The Ricardo Model Chapter 1: The Ricardo Model The main question of the Ricardo model is why should countries trade? There are some countries that are better in producing a lot of goods compared to other countries. Imagine

More information

OF THE VARIOUS DECIDUOUS and

OF THE VARIOUS DECIDUOUS and (9) PLAXICO, JAMES S. 1955. PROBLEMS OF FACTOR-PRODUCT AGGRE- GATION IN COBB-DOUGLAS VALUE PRODUCTIVITY ANALYSIS. JOUR. FARM ECON. 37: 644-675, ILLUS. (10) SCHICKELE, RAINER. 1941. EFFECT OF TENURE SYSTEMS

More information

MAKING WINE WITH HIGH AND LOW PH JUICE. Ethan Brown New Mexico State University 11/11/2017

MAKING WINE WITH HIGH AND LOW PH JUICE. Ethan Brown New Mexico State University 11/11/2017 MAKING WINE WITH HIGH AND LOW PH JUICE Ethan Brown New Mexico State University 11/11/2017 Overview How ph changes during winemaking Reds To adjust for high ph and how Whites Early harvest due to poor conditions

More information

Vineyard Cash Flows Tremain Hatch

Vineyard Cash Flows Tremain Hatch Vineyard Cash Flows Tremain Hatch thatch@vt.edu New grape growers Contemplating retirement or other transitions and considering viticulture and winemaking Alternative crop to existing farm operation Questions

More information

ICE CREAM CONE MAKING

ICE CREAM CONE MAKING Profile No.: 46 NIC Code: 56103 ICE CREAM CONE MAKING 1. INTRODUCTION: Ice cream cones are a mass consumption item. An ice cream cone, poke or cornet is a dry, cone-shaped pastry, usually made of a wafer

More information

Napa Sanitation District W INERY W ASTE PUBLIC FORUM. 1:00 PM TO 5:00 PM January 27, 2015 SUMMARY NOTES

Napa Sanitation District W INERY W ASTE PUBLIC FORUM. 1:00 PM TO 5:00 PM January 27, 2015 SUMMARY NOTES W INERY W ASTE PUBLIC FORUM 1:00 PM TO 5:00 PM January 27, 2015 SUMMARY NOTES Overview The (NSD) hosted a public forum to discuss a range of options for managing winery waste. Approximately 40 people representing

More information

Paper Reference IT Principal Learning Information Technology. Level 3 Unit 2: Understanding Organisations

Paper Reference IT Principal Learning Information Technology. Level 3 Unit 2: Understanding Organisations Centre No. Candidate No. Surname Signature Paper Reference(s) IT302/01 Edexcel Principal Learning Information Technology Level 3 Unit 2: Understanding Organisations Wednesday 3 June 2009 Morning Time:

More information

Structural optimal design of grape rain shed

Structural optimal design of grape rain shed Available online at www.sciencedirect.com Procedia Engineering 31 (2012) 751 755 International Conference on Advances in Computational Modeling and Simulation Structural optimal design of grape rain shed

More information

Dairy Market R E P O R T

Dairy Market R E P O R T Volume 17 No. 5 Dairy Market R E P O R T May 2014 DMI NMPF Overview Many key milk and dairy product prices continued to set records in April. And while the dairy futures markets indicate that prices will

More information

Team Harvard Ecureuils Harvard University

Team Harvard Ecureuils Harvard University Case Question Team Harvard Ecureuils Harvard University Maxence BODDAERT Jonathan XU Jules THIERY Princeton University Graduate Consulting Club Case Competition 2016 Goals of this presentation Provide

More information

Volume 30, Issue 1. Gender and firm-size: Evidence from Africa

Volume 30, Issue 1. Gender and firm-size: Evidence from Africa Volume 30, Issue 1 Gender and firm-size: Evidence from Africa Mohammad Amin World Bank Abstract A number of studies show that relative to male owned businesses, female owned businesses are smaller in size.

More information

McDONALD'S AS A MEMBER OF THE COMMUNITY

McDONALD'S AS A MEMBER OF THE COMMUNITY McDONALD'S ECONOMIC IMPACT WITH REBUILDING AND REIMAGING ITS RESTAURANTS IN SOUTH LOS ANGELES, CALIFORNIA A Report to McDonald's Corporation Study conducted by Dennis H. Tootelian, Ph.D. November 2010

More information

The Weights and Measures (Specified Quantities) (Unwrapped Bread and Intoxicating Liquor) Order 2011

The Weights and Measures (Specified Quantities) (Unwrapped Bread and Intoxicating Liquor) Order 2011 The Weights and Measures (Specified Quantities) (Unwrapped Bread and Intoxicating Liquor) Order 2011 Guidance for Businesses July 2011 Version 1 Page 1 of 7 Guidance first issued/ Date of change July 2011

More information

Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts

Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts When you need to understand situations that seem to defy data analysis, you may be able to use techniques

More information

Fleurieu zone (other)

Fleurieu zone (other) Fleurieu zone (other) Incorporating Southern Fleurieu and Kangaroo Island wine regions, as well as the remainder of the Fleurieu zone outside all GI regions Regional summary report 2006 South Australian

More information

Timothy E. Martinson Area Extension Educator Finger Lakes Grape Program Cornell Cooperative Extension

Timothy E. Martinson Area Extension Educator Finger Lakes Grape Program Cornell Cooperative Extension ESTIMATE OF CROP AND WINE LOSSES DUE TO WINTER INJURY IN THE FINGER LAKES Timothy E. Martinson Area Extension Educator Finger Lakes Grape Program Cornell Cooperative Extension Gerald B. White Dept. Applied

More information

Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization. Last Updated: December 21, 2016

Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization. Last Updated: December 21, 2016 1 Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization Last Updated: December 21, 2016 I. General Comments This file provides documentation for the Philadelphia

More information

Dairy Market. May 2016

Dairy Market. May 2016 Dairy Market R E P O R T Volume 19 No. 5 May 2016 DMI NMPF Overview Increased production per cow and expectations for additional milk production growth is dampening the outlook for milk prices for the

More information

Promotion Strategy and Financial Policy -The Wine Industry in Hokkaido Japan -

Promotion Strategy and Financial Policy -The Wine Industry in Hokkaido Japan - Promotion Strategy and Financial Policy -The Wine Industry in Hokkaido Japan - Natsuki Watanabe, Graduate Student, Graduate School of Economics Sapporo University, ABSTRACT The promotion policy of the

More information

The aim of the thesis is to determine the economic efficiency of production factors utilization in S.C. AGROINDUSTRIALA BUCIUM S.A.

The aim of the thesis is to determine the economic efficiency of production factors utilization in S.C. AGROINDUSTRIALA BUCIUM S.A. The aim of the thesis is to determine the economic efficiency of production factors utilization in S.C. AGROINDUSTRIALA BUCIUM S.A. The research objectives are: to study the history and importance of grape

More information

The delicate art of wine making. Alfa Laval Foodec decanter centrifuges in the wine industry

The delicate art of wine making. Alfa Laval Foodec decanter centrifuges in the wine industry The delicate art of wine making Alfa Laval Foodec decanter centrifuges in the wine industry Wine making is both a huge growth industry and a delicate, specialist art. It takes versatility to provide technology

More information

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Name: Period: 5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Background Information: Lincoln-Peterson Sampling Techniques In the field, it is difficult to estimate the population

More information

SMALLHOLDER TEA FARMING AND VALUE CHAIN DEVELOPMENT IN CHINA

SMALLHOLDER TEA FARMING AND VALUE CHAIN DEVELOPMENT IN CHINA SMALLHOLDER TEA FARMING AND VALUE CHAIN DEVELOPMENT IN CHINA Intersessional Meeting of the Intergovernmental Group on Tea Rome, 5-6 May 2014 Cheng Fang, Economist, Trade and Markets Division, FAO Yanjiong

More information

Determining the Optimum Time to Pick Gwen

Determining the Optimum Time to Pick Gwen California Avocado Society 1988 Yearbook 72: 209-214 Determining the Optimum Time to Pick Gwen Gray Martin and Bob Bergh Department of Botany and Plant Sciences, University of California, Riverside. Predicting

More information

6.2.2 Coffee machine example in Uppaal

6.2.2 Coffee machine example in Uppaal 6.2 Model checking algorithm for TCTL 95 6.2.2 Coffee machine example in Uppaal The problem is to model the behaviour of a system with three components, a coffee Machine, a Person and an Observer. The

More information

Canada-EU Free Trade Agreement (CETA)

Canada-EU Free Trade Agreement (CETA) Canada-EU Free Trade Agreement (CETA) The Issue: Following 5-years of negotiation, CETA was signed in principle on October 18, 2013, and signed officially by Prime Minister Trudeau on October 29, 2016,

More information

UV31191 Produce fermented dough and batter products

UV31191 Produce fermented dough and batter products Produce fermented dough and batter products The aim of this unit is to develop your knowledge, understanding and practical skills in preparing, cooking and finishing fermented dough and batter products

More information

The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method

The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method Name Date The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method Introduction: In order to effectively study living organisms, scientists often need to know the size of

More information

QUARTELY MAIZE MARKET ANALYSIS & OUTLOOK BULLETIN 1 OF 2015

QUARTELY MAIZE MARKET ANALYSIS & OUTLOOK BULLETIN 1 OF 2015 QUARTELY MAIZE MARKET ANALYSIS & OUTLOOK BULLETIN 1 OF 2015 INTRODUCTION The following discussion is a review of the maize market environment. The analysis is updated on a quarterly 1 basis and the interval

More information

The University of Georgia

The University of Georgia The University of Georgia Center for Agribusiness and Economic Development College of Agricultural and Environmental Sciences A Survey of Pecan Sheller s Interest in Storage Technology Prepared by: Kent

More information

Sonoma County Strategic Considerations. Chardonnay. Sonoma County

Sonoma County Strategic Considerations. Chardonnay. Sonoma County Sonoma County Strategic Considerations Chardonnay Sonoma County Current Status: Demand has grown for Russian River and other Sonoma County Chardonnay, but demand and grape prices have not grown as much

More information

The supply and demand for oilseeds in South Africa

The supply and demand for oilseeds in South Africa THIS REPORT CONTAINS ASSESSMENTS OF COMMODITY AND TRADE ISSUES MADE BY USDA STAFF AND NOT NECESSARILY STATEMENTS OF OFFICIAL U.S. GOVERNMENT POLICY Required Report - public distribution Date: GAIN Report

More information

MARKET NEWSLETTER No 111 December 2016

MARKET NEWSLETTER No 111 December 2016 On 1 January 2017 the new International Agreement on Olive Oil and Table Olives, 2015, came into force, being the sixth International Agreement of the Organisation. This new Agreement will allow the IOC

More information

Relation between Grape Wine Quality and Related Physicochemical Indexes

Relation between Grape Wine Quality and Related Physicochemical Indexes Research Journal of Applied Sciences, Engineering and Technology 5(4): 557-5577, 013 ISSN: 040-7459; e-issn: 040-7467 Maxwell Scientific Organization, 013 Submitted: October 1, 01 Accepted: December 03,

More information

J / A V 9 / N O.

J / A V 9 / N O. July/Aug 2003 Volume 9 / NO. 7 See Story on Page 4 Implications for California Walnut Producers By Mechel S. Paggi, Ph.D. Global production of walnuts is forecast to be up 3 percent in 2002/03 reaching

More information

GENERAL DESCRIPTION OF INDUSTRY AND COMPANY

GENERAL DESCRIPTION OF INDUSTRY AND COMPANY Appendix G Appendix Sample G: Import Business Business Plan: Otoro Plan: Import Company Otoro Import Company EXECUTIVE SUMMARY Otoro Imports is a spice importing and marketing corporation established in

More information

Acreage Forecast

Acreage Forecast World (John Sandbakken and Larry Kleingartner) The sunflower is native to North America but commercialization of the plant took place in Russia. Sunflower oil is the preferred oil in most of Europe, Mexico

More information

Herbacel - AQ Plus Citrus. for optimising the quality, calorie content and cost of burger patties

Herbacel - AQ Plus Citrus. for optimising the quality, calorie content and cost of burger patties Herbacel - AQ Plus Citrus for optimising the quality, calorie content and cost of burger patties Herbacel -AQ Plus Citrus for optimising the quality, calorie content and cost of burger patties Advantages

More information

ECOBULK WINE-STORE-AGE HIGHEST FOOD SAFETY AND COST-EFFECTIVENESS IN WINE PRODUCTION

ECOBULK WINE-STORE-AGE HIGHEST FOOD SAFETY AND COST-EFFECTIVENESS IN WINE PRODUCTION ECOBULK WINE-STORE-AGE HIGHEST FOOD SAFETY AND COST-EFFECTIVENESS IN WINE PRODUCTION Discover the new way of getting perfect results with your wine. Storage containers and technology have always been a

More information

Chef de Partie Apprenticeship Standard

Chef de Partie Apprenticeship Standard Chef de Partie Apprenticeship Standard NCFE Level 3 Certificate In Hospitality and Catering Principles (Professional Cookery) (601/7915/6) NCFE Level 3 NVQ Diploma in Professional Cookery (601/8005/5)

More information

B756: Factors Affecting the Unit Costs of Milk Distribution

B756: Factors Affecting the Unit Costs of Milk Distribution The University of Maine DigitalCommons@UMaine Bulletins Maine Agricultural and Forest Experiment Station 1979 B756: Factors Affecting the Unit Costs of Milk Distribution Homer B. Metzger Follow this and

More information

Analysis of Things (AoT)

Analysis of Things (AoT) Analysis of Things (AoT) Big Data & Machine Learning Applied to Brent Crude Executive Summary Data Selecting & Visualising Data We select historical, monthly, fundamental data We check for correlations

More information

Administration Table of Contents

Administration Table of Contents Table of Contents Administration Table of Contents DAILY TASKS... 1 Manager s Opening Checklist... 1 Mid-Day Management Activities... 3 Manager s Closing Checklist... 3 WEEKLY TASKS... 5 Monday Morning

More information

Uniform Rules Update Final EIR APPENDIX 6 ASSUMPTIONS AND CALCULATIONS USED FOR ESTIMATING TRAFFIC VOLUMES

Uniform Rules Update Final EIR APPENDIX 6 ASSUMPTIONS AND CALCULATIONS USED FOR ESTIMATING TRAFFIC VOLUMES APPENDIX 6 ASSUMPTIONS AND CALCULATIONS USED FOR ESTIMATING TRAFFIC VOLUMES ASSUMPTIONS AND CALCULATIONS USED FOR ESTIMATING TRAFFIC VOLUMES This appendix contains the assumptions that have been applied

More information

Beverage Cost Control: Managing for Profit

Beverage Cost Control: Managing for Profit Chapter 19 Beverage Cost Control: Managing for Profit After reading this chapter, you will be able to: Compute the cost of beverages sold. Determine prices using product cost percentage and contribution

More information

Relationships Among Wine Prices, Ratings, Advertising, and Production: Examining a Giffen Good

Relationships Among Wine Prices, Ratings, Advertising, and Production: Examining a Giffen Good Relationships Among Wine Prices, Ratings, Advertising, and Production: Examining a Giffen Good Carol Miu Massachusetts Institute of Technology Abstract It has become increasingly popular for statistics

More information

FACTORS DETERMINING UNITED STATES IMPORTS OF COFFEE

FACTORS DETERMINING UNITED STATES IMPORTS OF COFFEE 12 November 1953 FACTORS DETERMINING UNITED STATES IMPORTS OF COFFEE The present paper is the first in a series which will offer analyses of the factors that account for the imports into the United States

More information