21.1 Scilab Brownov model 468 PRILOGA. By: Dejan Dragan [80] // brown.m =========================== function brown(d,alfa) fakt = 5;

Size: px
Start display at page:

Download "21.1 Scilab Brownov model 468 PRILOGA. By: Dejan Dragan [80] // brown.m =========================== function brown(d,alfa) fakt = 5;"

Transcription

1 Poglavje 21 PRILOGA

2 468 PRILOGA 21.1 Scilab By: Dejan Dragan [80] Brownov model // brown.m =========================== function brown(d,alfa) fakt = 5; N = length(d); t = [1:1:N]; // izhodi prediktor-filtra (projekcija prihodnosti za en korak naprej - napoved kolicine za cas t+1 ob casu t): // (relevantno je k = 2:N) p = []; p(1) = d(1) p(2) = d(1) for k=3:n p(k) = alfad(k-1) + (1-alfa)p(k-1) ; disp( p= ) disp(p) p_pred = alfad(n) + (1-alfa)p(N) disp( p_pred= ) disp(p_pred) // Narisemo zahtevano kolicino d in njeno napoved p: scf(0) plot(t,d, b ); set(gca(), auto_clear, off ) plot(t,d, bo ) plot([t(2:n) N+1],[p(2:N) p_pred], r ); plot([t(2:n) N+1],[p(2:N) p_pred], ro )

3 21.1 Scilab 469 title( zahtev.kolic.d (b) ob casu t in njena napoved p (r), narejena ob casu t-1 ) // pogresek (kar se dejansko zgodi ob casu t minus kar smo napovedali ob casu t-1): e = d(2:n)-p(2:n) ; disp( e= ) disp(e) scf(1) plot(t,[0 e], k ) plot(t,[0 e], ko ) title( pogresek napovedi kolicine ) mtlb_axis([0 N -max(d)/fakt max(d)/fakt]) // izracun kriterij. funkcije MAD ea = 0; for i = 1:length(e) ea = ea + abs(e(i)); MAD_N = ea/(n-1) disp( MAD_N= ) disp(mad_n) function Holtov model // holt.m =========================== // (pri variab. linear. tru) function holt(d,alfa,beta,stlet) N = length(d); t = [1:1:N];

4 470 PRILOGA tao = [1:1:stlet]; // vektor premika projekcije v prihodnost od trenutka N naprej //alfa = 0.3; //beta = 0.3; // konstanti holt prediktor filtra [ah,bh] = holt_rekurzija(d,alfa,beta) // vrne ah(k) in bh(k) - AD1:prvo ju "naucis" preko k=1:n, kaka sta optimalna disp( ah= ) disp(ah) disp( bh= ) disp(bh) scf(0) set(gca(), auto_clear, off ) subplot(211) plot(t,ah, b ) plot(t,ah, bo ), title( holtov parameter ah(k) ) subplot(212) plot(t,bh, r ) plot(t,bh, ro ), title( holtov parameter bh(k) ) scf(1) p = ah(n) + bh(n)tao // p(n+tao) = ah(n) + bh(n)tao, tao = 1,2,...; AD2: nato ah(n) in bh(n) uporabis za predikc. pri t>n disp( p= ) disp(p) // Narisemo zahtevano kolicino d in njeno napoved p: plot(t,d, b ); plot(t,d, bo ) plot(n+tao,p, r );plot(n+tao,p, ro ) title( Zahtevane kolicine (k = 1:N) in predikcija (k>n) ) function

5 21.1 Scilab Regresijski model // regresija.m =========================== function regresija(d,stlet) N = length(d); t = [1:1:N]; t_pred = [N+1:1:N+stlet] scf(0) set(gca(), auto_clear, off ) plot(t,d, b ) plot(t,d, bo ) title( Povprasevanje ) xlabel( t ) t_s = sum(t)/n d_s = sum(d)/n disp( t_s= ) disp(t_s) disp( d_s= ) disp(d_s) mean_t_d = td /N mean_t_t = tt /N disp( mean_t_d= ) disp(mean_t_d) disp( mean_t_t= ) disp(mean_t_t) clen1 = mean_t_d clen2 = t_sd_s clen3 = mean_t_t clen4 = t_st_s disp( clen1= ) disp(clen1) disp( clen2= ) disp(clen2) disp( clen3= ) disp(clen3)

6 472 PRILOGA disp( clen4= ) disp(clen4) a = (clen1 - clen2)/(clen3 - clen4) b = d_s - at_s disp( a= ) disp(a) disp( b= ) disp(b) d_o = at+b // model disp( d_o= ) disp(d_o) scf(1) plot(t,d, b ) plot(t,d, bo ) plot(t,d_o, r ) plot(t,d_o, ro ) title( Povprasevanje d(modro)in model d_m(rdece), predikcija+-2std (crno) ) xlabel( t ) e = d - d_o disp( e= ) disp(e) e_sr = sum(e)/n disp( e_sr= ) disp(e_sr) VAR = (e-e_sr)(e-e_sr) /(N-1) disp( VAR= ) disp(var) stde = sqrt(var) disp( stde= ) disp(stde) d_o_pred = at_pred + b d_o_pred_zg = d_o_pred + 2stde d_o_pred_sp = d_o_pred - 2stde

7 21.1 Scilab 473 disp( d_o_pred= ) disp(d_o_pred) disp( d_o_pred_zg= ) disp(d_o_pred_zg) disp( d_o_pred_sp= ) disp(d_o_pred_sp) plot(t_pred,d_o_pred, ko, linewidth,2) plot(t_pred,d_o_pred_zg, ko, linewidth,2) plot(t_pred,d_o_pred_sp, ko, linewidth,2) function Funkcija napovedovanja (Forecast) // forecast-main =========================== function forecast-main() clear clc dch = input( Povprasevanje rocno (1), default(2), nakljucno (3) ) if dch == 1 d = input( povprasevanje d=? npr. [ ] ) if dch == 2 dd = input( primer1 (1), primer2 (2), primer3 (3), primer4 (4) ) if dd == 1 d = [ ] disp( Daj regresijo ) if dd == 2 d = [ ] disp( Daj regresijo ) if dd == 3 d = [ ] disp( Daj Brown ) d = [ ] disp( Daj Holt )

8 474 PRILOGA tt = input( Koliko vzorcev za d ) d(1) = input( d(1)= ) hh = input( konstanten tr(1)/linearen (2) ) srvr = d(1) stres = d(1)/20 d_rand = grand(1,tt, unf,srvr-stres,srvr+stres) if hh == 1 d = d_rand strm = d(1)/10 konst = d(1) d = strm[1:1:tt] + konst + d_rand if dch == 3 if hh == 1 ch = 2; disp( Delamo Browna ) ch = input( regresija, mnk(1)/holt(3) ) ch = input( regresija, mnk(1)/brown(2)/holt(3) ) if ch == 1 stlet = input( Za koliko let predikcija = ) if ch == 2 alfa = input( alfa = ) stlet = input( Za koliko let predikcija = ) alfa = input( alfa = ) beta = input( beta = ) disp( d= ) disp(d) if ch == 1 regresija(d,stlet) if ch == 2 brown(d,alfa) holt(d,alfa,beta,stlet) function

9 21.2 GPSS World GPSS World By: Borut Jereb [74] Model MODEL =========================== Time is in minutes Initialization GENERATE,,,1 SAVEVALUE TrafficLight,Green ENTER StoRim,StartNoRim ENTER StoTire,StartNoTire ENTER StoScrew,StartNoScrew Rim section begin Input to warehouse :: rims GENERATE InRimTimeMean,InRimTimeRange QUEUE QueueInWarehouse,1 TEST GE R$StoRim,InCapVehRim TEST E X$TrafficLight,Green SAVEVALUE TrafficLight,Red ENTER StoRim,InCapVehRim ADVANCE InVehManipulRim,InVehManipulRimRange SAVEVALUE TrafficLight,Green DEPART QueueInWarehouse,1

10 476 PRILOGA Otput from warehouse :: rims GENERATE OutRimTimeMean,OutRimTimeRange TABULATE TableRim TEST GE S$StoRim,OutCapVehRim,RimStorageEmpty LEAVE StoRim,OutCapVehRim RimStorageEmpty Rim section Tire section begin Input to warehouse :: tire GENERATE InTireTimeMean,InTireTimeRange QUEUE QueueInWarehouse,1 TEST GE R$StoTire,InCapVehTire TEST E X$TrafficLight,Green SAVEVALUE TrafficLight,Red ENTER StoTire,InCapVehTire ADVANCE InVehManipulTire,InVehManipulTireRange SAVEVALUE TrafficLight,Green DEPART QueueInWarehouse,1 Otput from warehouse :: tire GENERATE OutTireTimeMean,OutTireTimeRange TABULATE TableTire TEST GE S$StoTire,OutCapVehTire,TireStorageEmpty LEAVE StoTire,OutCapVehTire TireStorageEmpty Tire section

11 21.2 GPSS World 477 Screw section begin Input to warehouse :: screw GENERATE InScrewTimeMean,InScrewTimeRange QUEUE QueueInWarehouse,1 TEST GE R$StoScrew,InCapVehScrew TEST E X$TrafficLight,Green SAVEVALUE TrafficLight,Red ENTER StoScrew,InCapVehScrew ADVANCE InVehManipulScrew,InVehManipulScrewRange SAVEVALUE TrafficLight,Green DEPART QueueInWarehouse,1 Otput from warehouse :: screw GENERATE OutScrewTimeMean,OutScrewTimeRange TABULATE TableScrew TEST GE S$StoScrew,OutCapVehScrew,ScrewStorageEmpty LEAVE StoScrew,OutCapVehScrew ScrewStorageEmpty Screw section Simulation duration GENERATE,,SimDur,1 ;Duration in minutes 1 START 1

12 478 PRILOGA Vhodni podatki VHODNI PODATKI =========================== Time is in minutes By: Borut Jereb StoRim StoTire StoScrew STORAGE 800 ; Warehouse storage capacity for rims STORAGE 800 ; Warehouse storage capacity for tires STORAGE 2600 ; Warehouse storage capacity for screws ; Frequency distribution table for rims, tires and screws TableRim TABLE S$StoRim,19,19,100 TableTire TABLE S$StoTire,19,19,100 TableScrew TABLE S$StoScrew,79,79,100 ; Initial number of items in the warehouse (at the start time of simulation) StartNoRim EQU 200 StartNoTire EQU 200 StartNoScrew EQU 800 ; Mean arrival time for rims, tires and screws InRimTimeMean EQU 180 InTireTimeMean EQU 360 InScrewTimeMean EQU 170 ; Arrival_time = (InXXTimeMean-InXXTimeRange..InXXTimeMean+InXXTimeRange) ; XX = {Rim, Tire, Screw} InRimTimeRange EQU 10 InTireTimeRange EQU 20 InScrewTimeRange EQU 10 ; Capacity of one input vehicle carrying rims, tires and screws InCapVehRim EQU 390 InCapVehTire EQU 800 InCapVehScrew EQU 1450 ; Vehicle upload manipulation time for rims, tires and screws InVehManipulRim EQU 6 InVehManipulTire EQU 6 InVehManipulScrew EQU 6 ; Mean depart time for rims, tires and screws OutRimTimeMean EQU 8 OutTireTimeMean EQU 8 OutScrewTimeMean EQU 8

13 21.2 GPSS World 479 ; Departure_time = (OutXXTimeMean-OutXXTimeRange..OutXXTimeMean+OutXXTimeRange) ; XX = {Rim, Tire, Screw} OutRimTimeRange EQU 1 OutTireTimeRange EQU 1 OutScrewTimeRange EQU 1 ; Capacity of one input vehicle carrying rims, tires and screws OutCapVehRim EQU 20 OutCapVehTire EQU 20 OutCapVehScrew EQU 80 ; unloading manipulation time for rims, tires and screws InVehManipulRim EQU 6 InVehManipulTire EQU 6 InVehManipulScrew EQU 6 ; Unloading_time = unloading manipulation time for rims, tires and screws InVehManipulRimRange EQU 0 InVehManipulTireRange EQU 0 InVehManipulScrewRange EQU 0 Green EQU 1 ; Boolean value for green is 1 Red EQU 0 ; Boolean value for red is 0 SimDur EQU 7200 ; Simulation duration in minutes

Assignment 6, Math 575A

Assignment 6, Math 575A Assignment 6, Math 575A Part I Matlab Section: MATLAB has special functions to deal with polynomials. Using these commands is usually recommended, since they make the code easier to write and understand

More information

Solutions to Homework 8 - Continuous-Time Markov Chains

Solutions to Homework 8 - Continuous-Time Markov Chains Solutions to Homework 8 - Continuous-Time Markov Chains 1) Insurance cash flow. A) CTMC states. Since we assume that c, d and X max are integers, while the premiums that the customers pay are worth 1,

More information

λ λ λ In-class problems

λ λ λ In-class problems In-class problems 1. Customers arrive at a single-service facility at a Poisson rate of 40 per hour. When two or fewer customers are present, a single attendant operates the facility, and the service time

More information

Math 416 Lecture 11. Math 416 Lecture 16 Exam 2 next time

Math 416 Lecture 11. Math 416 Lecture 16 Exam 2 next time Math 416 Lecture 11 Math 416 Lecture 16 Exam 2 next time Birth and death processes, queueing theory In arrival processes, the state only jumps up. In a birth-death process, it can either jump up or down

More information

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2 Homework 6 April, 6 Problem Steady state of LTI systems The transfer function of an LTI system is H(s) = Y (s) X(s) = s s + 3s + If the input to this system is x(t) = + cos(t + π/4), < t

More information

Scilab Manual for Control Systems & Electrical Machines by Dr Lochan Jolly Electronics Engineering Thakur College of Engineering & Technology 1

Scilab Manual for Control Systems & Electrical Machines by Dr Lochan Jolly Electronics Engineering Thakur College of Engineering & Technology 1 Scilab Manual for Control Systems & Electrical Machines by Dr Lochan Jolly Electronics Engineering Thakur College of Engineering & Technology 1 Solutions provided by Dr Lochan Jolly Electronics Engineering

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Electric Machines Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.685 Electric Machines Problem Set 1 Solutions September 1, 5 Problem 1: If we assume, as suggested in the

More information

CPSC 531: System Modeling and Simulation. Carey Williamson Department of Computer Science University of Calgary Fall 2017

CPSC 531: System Modeling and Simulation. Carey Williamson Department of Computer Science University of Calgary Fall 2017 CPSC 531: System Modeling and Simulation Carey Williamson Department of Computer Science University of Calgary Fall 2017 Motivating Quote for Queueing Models Good things come to those who wait - poet/writer

More information

Bayesian Analysis - A First Example

Bayesian Analysis - A First Example Bayesian Analysis - A First Example This script works through the example in Hoff (29), section 1.2.1 We are interested in a single parameter: θ, the fraction of individuals in a city population with with

More information

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Forecasting demand 02/06/03 page 1 of 34

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Forecasting demand 02/06/03 page 1 of 34 demand -5-4 -3-2 -1 0 1 2 3 Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa Forecasting demand 02/06/03 page 1 of 34 Forecasting is very difficult. especially about the

More information

Solutions - Homework # 3

Solutions - Homework # 3 ECE-34: Signals and Systems Summer 23 PROBLEM One period of the DTFS coefficients is given by: X[] = (/3) 2, 8. Solutions - Homewor # 3 a) What is the fundamental period 'N' of the time-domain signal x[n]?

More information

Generation of Discrete Random variables

Generation of Discrete Random variables Simulation Simulation is the imitation of the operation of a realworld process or system over time. The act of simulating something first requires that a model be developed; this model represents the key

More information

1 Ensemble of three-level systems

1 Ensemble of three-level systems PHYS 607: Statistical Physics. Fall 2015. Home Assignment 2 Entropy, Energy, Heat Capacity Katrina Colletti September 23, 2015 1 Ensemble of three-level systems We have an ensemble of N atoms, with N 1,

More information

Product and Inventory Management (35E00300) Forecasting Models Trend analysis

Product and Inventory Management (35E00300) Forecasting Models Trend analysis Product and Inventory Management (35E00300) Forecasting Models Trend analysis Exponential Smoothing Data Storage Shed Sales Period Actual Value(Y t ) Ŷ t-1 α Y t-1 Ŷ t-1 Ŷ t January 10 = 10 0.1 February

More information

SEMESTER 1, 2016 EXAMINATION INSTRUCTIONS TO CANDIDATES

SEMESTER 1, 2016 EXAMINATION INSTRUCTIONS TO CANDIDATES Faculty of Technology and Built Environment Department of Civil Engineering BACHELOR OF ENGINEERING TECHNOLOGY METRO GROUP SEMESTER 1, 2016 EXAMINATION SUBJECT: CODE: Engineering computing ENGG MG5001

More information

Massachusetts Institute of Technology

Massachusetts Institute of Technology 6.04/6.4: Probabilistic Systems Analysis Fall 00 Quiz Solutions: October, 00 Problem.. 0 points Let R i be the amount of time Stephen spends at the ith red light. R i is a Bernoulli random variable with

More information

6.061 / Introduction to Electric Power Systems

6.061 / Introduction to Electric Power Systems MIT OpenCourseWare http://ocw.mit.edu 6.6 / 6.69 Introduction to Electric Power Systems Spring 7 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Massachusetts

More information

Chapter 3. Property Relations The essence of macroscopic thermodynamics Dependence of U, H, S, G, and F on T, P, V, etc.

Chapter 3. Property Relations The essence of macroscopic thermodynamics Dependence of U, H, S, G, and F on T, P, V, etc. Chapter 3 Property Relations The essence of macroscopic thermodynamics Dependence of U, H, S, G, and F on T, P, V, etc. Concepts Energy functions F and G Chemical potential, µ Partial Molar properties

More information

A L A BA M A L A W R E V IE W

A L A BA M A L A W R E V IE W A L A BA M A L A W R E V IE W Volume 52 Fall 2000 Number 1 B E F O R E D I S A B I L I T Y C I V I L R I G HT S : C I V I L W A R P E N S I O N S A N D TH E P O L I T I C S O F D I S A B I L I T Y I N

More information

Executive Committee and Officers ( )

Executive Committee and Officers ( ) Gifted and Talented International V o l u m e 2 4, N u m b e r 2, D e c e m b e r, 2 0 0 9. G i f t e d a n d T a l e n t e d I n t e r n a t i o n a2 l 4 ( 2), D e c e m b e r, 2 0 0 9. 1 T h e W o r

More information

42 Submerged Body in Waves

42 Submerged Body in Waves 42 SUBMERGED BODY IN WAVES 174 42 Submerged Body in Waves A fixed, submerged body has a circular cross-section of constant diameter one meter, with length twenty meters. For the calculations below, use

More information

57:022 Principles of Design II Midterm Exam #2 Solutions

57:022 Principles of Design II Midterm Exam #2 Solutions 57:022 Principles of Design II Midterm Exam #2 Solutions Part: I II III IV V Total Possible Pts: 20 15 12 16 12 75 PART ONE Indicate "+" if True and "O" if False: _+_a. If a component's lifetime has exponential

More information

Traffic signal design-ii

Traffic signal design-ii CHAPTER 4. TRAFFIC SIGNAL DESIGN-II NPTEL May 3, 007 Chapter 4 Traffic signal design-ii 4.1 Overview In the previous chapter, a simple design of cycle time was discussed. Here we will discuss how the cycle

More information

ENGR Spring Exam 2

ENGR Spring Exam 2 ENGR 1300 Spring 013 Exam INSTRUCTIONS: Duration: 60 minutes Keep your eyes on your own work! Keep your work covered at all times! 1. Each student is responsible for following directions. Read carefully..

More information

Notes perso. - cb1 1. Version 3 - November u(t)e i2πft dt u(t) =

Notes perso. - cb1 1. Version 3 - November u(t)e i2πft dt u(t) = Notes perso. - cb1 1 Tutorial : fft, psd & coherence with Matlab Version 3 - November 01 1 Fourier transform by Fast Fourier Transform (FFT) Definition of the Fourier transform : û(f) = F[u(t)] = As an

More information

IZRAČUN MEMBRANSKE RAZTEZNE POSODE - "MRP" za HLADNOVODNE SISTEME (DIN 4807/2)

IZRAČUN MEMBRANSKE RAZTEZNE POSODE - MRP za HLADNOVODNE SISTEME (DIN 4807/2) IZPIS IZRAČUN MEMBRANSKE RAZTEZNE POSODE - "MRP" za HLADNOVODNE SISTEME Izhodiščni podatki: Objkt : Vrtc Kamnitnik Projkt : PZI Uporaba MRP : Črpalna vrtina Datum : 30.8.2017 Obdlal : Zupan Skupna hladilna

More information

57:022 Principles of Design II Final Exam Solutions - Spring 1997

57:022 Principles of Design II Final Exam Solutions - Spring 1997 57:022 Principles of Design II Final Exam Solutions - Spring 1997 Part: I II III IV V VI Total Possible Pts: 52 10 12 16 13 12 115 PART ONE Indicate "+" if True and "o" if False: + a. If a component's

More information

MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6

MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6 MATH 235/W08: Orthogonality; Least-Squares; & Best Approximation SOLUTIONS to Assignment 6 Solutions to questions 1,2,6,8. Contents 1 Least Squares and the Normal Equations*** 2 1.1 Solution...........................................

More information

WINTER 2015 Tire ChainS

WINTER 2015 Tire ChainS WINTER 2015 Tire ChainS - All terrain and Utility vehicles - Call: 1-800-225-9513 www.kenjones.com About Ken Jones Tires... Welcome to Ken Jones Tires and the Jones family. A quick background...ken Jones

More information

BIRTH DEATH PROCESSES AND QUEUEING SYSTEMS

BIRTH DEATH PROCESSES AND QUEUEING SYSTEMS BIRTH DEATH PROCESSES AND QUEUEING SYSTEMS Andrea Bobbio Anno Accademico 999-2000 Queueing Systems 2 Notation for Queueing Systems /λ mean time between arrivals S = /µ ρ = λ/µ N mean service time traffic

More information

M/G/1 and M/G/1/K systems

M/G/1 and M/G/1/K systems M/G/1 and M/G/1/K systems Dmitri A. Moltchanov dmitri.moltchanov@tut.fi http://www.cs.tut.fi/kurssit/elt-53606/ OUTLINE: Description of M/G/1 system; Methods of analysis; Residual life approach; Imbedded

More information

to have roots with negative real parts, the necessary and sufficient conditions are that:

to have roots with negative real parts, the necessary and sufficient conditions are that: THE UNIVERSITY OF TEXAS AT SAN ANTONIO EE 543 LINEAR SYSTEMS AND CONTROL H O M E W O R K # 7 Sebastian A. Nugroho November 6, 7 Due date of the homework is: Sunday, November 6th @ :59pm.. The following

More information

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Exponential Smoothing 02/13/03 page 1 of 38

Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa. Exponential Smoothing 02/13/03 page 1 of 38 demand -5-4 -3-2 -1 0 1 2 3 Dennis Bricker Dept of Mechanical & Industrial Engineering The University of Iowa Exponential Smoothing 02/13/03 page 1 of 38 As with other Time-series forecasting methods,

More information

Slender Structures Load carrying principles

Slender Structures Load carrying principles Slender Structures Load carrying principles Basic cases: Extension, Shear, Torsion, Cable Bending (Euler) v017-1 Hans Welleman 1 Content (preliminary schedule) Basic cases Extension, shear, torsion, cable

More information

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros)

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) J. McNames Portland State University ECE 222 Bode Plots Ver.

More information

Cost Analysis and Estimating for Engineering and Management

Cost Analysis and Estimating for Engineering and Management Cost Analysis and Estimating for Engineering and Management Chapter 6 Estimating Methods Ch 6-1 Overview Introduction Non-Analytic Estimating Methods Cost & Time Estimating Relationships Learning Curves

More information

- Double consonant - Wordsearch 3

- Double consonant - Wordsearch 3 Wh 3 Kn, Kn. Wh' h? Hpp. Hpp h? Hpp hy yu, Hpp hy yu! A h f h pg f. Th hn n h pu. Th h n p hny (ng ) y (ng n). Whn yu fn, n un. p n q q h y f h u g h q g u g u n g n g n q x p g h u n g u n y p f f n u

More information

Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN

Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN Universiti Malaysia Perlis EKT430: DIGITAL SIGNAL PROCESSING LAB ASSIGNMENT 3: DISCRETE TIME SYSTEM IN TIME DOMAIN Pusat Pengajian Kejuruteraan Komputer Dan Perhubungan Universiti Malaysia Perlis Discrete-Time

More information

EE 330 Lecture 31. Current Source Biasing Current Sources and Mirrors

EE 330 Lecture 31. Current Source Biasing Current Sources and Mirrors EE 330 Lecture 31 urrent Source Biasing urrent Sources and Mirrors eview from Last Lecture Basic mplifier Gain Table DD DD DD DD in B E out in B E out E B BB in E out in B E E out in 2 D Q EE SS E/S /D

More information

Introductory WebMO Exercises

Introductory WebMO Exercises Introductory WebMO Exercises These directions assume no prior knowledge of e WebMO interface and provide detailed, click by click instructions on building molecules and setting up calculations. Use your

More information

Transportation II. Lecture 16 ESD.260 Fall Caplice

Transportation II. Lecture 16 ESD.260 Fall Caplice Transportation II Lecture 16 ESD.260 Fall 2003 Caplice One to One System 1+ ns d LC($ / item) = c H + ch + ct + c + c + c r MAX i MAX i m s d vs Mode 1 v v Cost per Item c i t m v MAX 2 2v MAX Shipment

More information

Queueing Theory I Summary! Little s Law! Queueing System Notation! Stationary Analysis of Elementary Queueing Systems " M/M/1 " M/M/m " M/M/1/K "

Queueing Theory I Summary! Little s Law! Queueing System Notation! Stationary Analysis of Elementary Queueing Systems  M/M/1  M/M/m  M/M/1/K Queueing Theory I Summary Little s Law Queueing System Notation Stationary Analysis of Elementary Queueing Systems " M/M/1 " M/M/m " M/M/1/K " Little s Law a(t): the process that counts the number of arrivals

More information

EE126: Probability and Random Processes

EE126: Probability and Random Processes EE126: Probability and Random Processes Lecture 18: Poisson Process Abhay Parekh UC Berkeley March 17, 2011 1 1 Review 2 Poisson Process 2 Bernoulli Process An arrival process comprised of a sequence of

More information

Cree J Series 2835 Value LEDs

Cree J Series 2835 Value LEDs Cree J Series 2835 Value LEDs Product family data sheet CLJ-DS22 Rev 0A Product Description J Series LEDs extend Cree s industry leading portfolio of lighting class LEDs to a broader set of applications.

More information

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s

176 5 t h Fl oo r. 337 P o ly me r Ma te ri al s A g la di ou s F. L. 462 E l ec tr on ic D ev el op me nt A i ng er A.W.S. 371 C. A. M. A l ex an de r 236 A d mi ni st ra ti on R. H. (M rs ) A n dr ew s P. V. 326 O p ti ca l Tr an sm is si on A p ps

More information

LM34 - Precision Fahrenheit Temperature Sensor

LM34 - Precision Fahrenheit Temperature Sensor - Precision Fahrenheit Temperature Sensor Features Typical Application Calibrated directly in degrees Fahrenheit Linear +10.0 mv/ F scale factor 1.0 F accuracy guaranteed (at +77 F) Parametric Table Supply

More information

STANDARDIZATION OF BLENDED NECTAR USING BANANA PSEUDOSTEM SAP AND MANGO PULP SANTOSH VIJAYBHAI PATEL

STANDARDIZATION OF BLENDED NECTAR USING BANANA PSEUDOSTEM SAP AND MANGO PULP SANTOSH VIJAYBHAI PATEL STANDARDIZATION OF BLENDED NECTAR USING BANANA PSEUDOSTEM SAP AND MANGO PULP BY SANTOSH VIJAYBHAI PATEL B.Sc. (Hons.) Horticulture DEPARTMENT OF POST HARVEST TECHNOLOGY ASPEE COLLEGE OF HORTICULTURE AND

More information

Provider Satisfaction

Provider Satisfaction Prider Satisfaction Prider Satisfaction [1] NOTE: if you nd to navigate away from this page, please click the "Save Draft" page at the bottom (visible to ONLY logged in users). Otherwise, your rpons will

More information

ECONOMETRIC METHODS II TA session 1 MATLAB Intro: Simulation of VAR(p) processes

ECONOMETRIC METHODS II TA session 1 MATLAB Intro: Simulation of VAR(p) processes ECONOMETRIC METHODS II TA session 1 MATLAB Intro: Simulation of VAR(p) processes Fernando Pérez Forero April 19th, 2012 1 Introduction In this rst session we will cover the simulation of Vector Autoregressive

More information

Performance Evaluation

Performance Evaluation Performance Evaluation Chapter 5 Short Probability Primer & Obtaining Results (Acknowledgement: these slides have mostly been compiled from [Kar04, Rob0, BLK0]) otivation! Recall:! Usually, a simulation

More information

Capturing Network Traffic Dynamics Small Scales. Rolf Riedi

Capturing Network Traffic Dynamics Small Scales. Rolf Riedi Capturing Network Traffic Dynamics Small Scales Rolf Riedi Dept of Statistics Stochastic Systems and Modelling in Networking and Finance Part II Dependable Adaptive Systems and Mathematical Modeling Kaiserslautern,

More information

Exercises Solutions. Automation IEA, LTH. Chapter 2 Manufacturing and process systems. Chapter 5 Discrete manufacturing problems

Exercises Solutions. Automation IEA, LTH. Chapter 2 Manufacturing and process systems. Chapter 5 Discrete manufacturing problems Exercises Solutions Note, that we have not formulated the answers for all the review questions. You will find the answers for many questions by reading and reflecting about the text in the book. Chapter

More information

Nelinearna regresija. SetOptions Plot, ImageSize 6 72, Frame True, GridLinesStyle Directive Gray, Dashed, Method "GridLinesInFront" True,

Nelinearna regresija. SetOptions Plot, ImageSize 6 72, Frame True, GridLinesStyle Directive Gray, Dashed, Method GridLinesInFront True, Nelinearna regresija In[1]:= SetOptions ListPlot, ImageSize 6 72, Frame True, GridLinesStyle Directive Gray, Dashed, Method "GridLinesInFront" True, PlotStyle Directive Thickness Medium, PointSize Large,

More information

Problem Value Score No/Wrong Rec 3

Problem Value Score No/Wrong Rec 3 GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING QUIZ #1 ATE: 4-Feb-11 COURSE: ECE-2025 NAME: GT username: LAST, FIRST (ex: gtbuzz8) 3 points 3 points 3 points Recitation Section:

More information

Continuous time Markov chains (week 8) Solutions

Continuous time Markov chains (week 8) Solutions Continuous time Markov chains (week 8) Solutions 1 Insurance cash flow. A CTMC states. Because c and d are assumed to be integers, and the premiums are each 1, the cash flow X(t) of the insurance company

More information

Matlab Instruction Primer; Chem 691, Spring 2016

Matlab Instruction Primer; Chem 691, Spring 2016 1 Matlab Instruction Primer; Chem 691, Spring 2016 This version dated February 10, 2017 CONTENTS I. Help: To obtain information about any instruction in Matlab 1 II. Scripting 1 III. Loops, determine an

More information

Cree XLamp XP-G2 LEDs

Cree XLamp XP-G2 LEDs Cree XLamp XP-G2 LEDs Product family data sheet CLD-DS51 Rev 11C Product Description The XLamp XP-G2 LED builds on the unprecedented performance of the original XP-G by increasing lumen output up to 20%

More information

Instruction Sheet COOL SERIES DUCT COOL LISTED H NK O. PR D C FE - Re ove r fro e c sed rea. I Page 1 Rev A

Instruction Sheet COOL SERIES DUCT COOL LISTED H NK O. PR D C FE - Re ove r fro e c sed rea. I Page 1 Rev A Instruction Sheet COOL SERIES DUCT COOL C UL R US LISTED H NK O you or urc s g t e D C t oroug y e ore s g / as e OL P ea e rea g product PR D C FE RES - Re ove r fro e c sed rea t m a o se e x o duct

More information

Solutions for examination in TSRT78 Digital Signal Processing,

Solutions for examination in TSRT78 Digital Signal Processing, Solutions for examination in TSRT78 Digital Signal Processing, 2014-04-14 1. s(t) is generated by s(t) = 1 w(t), 1 + 0.3q 1 Var(w(t)) = σ 2 w = 2. It is measured as y(t) = s(t) + n(t) where n(t) is white

More information

THIS PAGE DECLASSIFIED IAW EO 12958

THIS PAGE DECLASSIFIED IAW EO 12958 THIS PAGE DECLASSIFIED IAW EO 2958 THIS PAGE DECLASSIFIED IAW EO 2958 THIS PAGE DECLASSIFIED IAW E0 2958 S T T T I R F R S T Exhb e 3 9 ( 66 h Bm dn ) c f o 6 8 b o d o L) B C = 6 h oup C L) TO d 8 f f

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Definition: A differential equation is an equation involving the derivative of a function. If the function depends on a single variable, then only ordinary derivatives appear and

More information

Induced representations

Induced representations Induced representations Frobenius reciprocity A second construction of induced representations. Frobenius reciprocity We shall use this alternative definition of the induced representation to give a proof

More information

Point Process Control

Point Process Control Point Process Control The following note is based on Chapters I, II and VII in Brémaud s book Point Processes and Queues (1981). 1 Basic Definitions Consider some probability space (Ω, F, P). A real-valued

More information

Scilab Textbook Companion for Digital Principals And Applications by D. P. Leach And A. P. Malvino 1

Scilab Textbook Companion for Digital Principals And Applications by D. P. Leach And A. P. Malvino 1 Scilab Textbook Companion for Digital Principals And Applications by D. P. Leach And A. P. Malvino 1 Created by Kapu Venkat Sayeesh B.Tech (pursuing) Electronics Engineering NIT, Warangal College Teacher

More information

Nominal Frequency MHz

Nominal Frequency MHz Issue 2011.11.22 Rev. 1.0 Page 8 Customer Leviton Customer P/N Product 49SMA Crystal Nominal Frequency 9.84375MHz HOSONIC P/N ESB9.84375F10M33F Drawn Checked Approved KEN John Rock Page:1 Revised Record

More information

CATAVASII LA NAȘTEREA DOMNULUI DUMNEZEU ȘI MÂNTUITORULUI NOSTRU, IISUS HRISTOS. CÂNTAREA I-A. Ήχος Πα. to os se e e na aș te e e slă ă ă vi i i i i

CATAVASII LA NAȘTEREA DOMNULUI DUMNEZEU ȘI MÂNTUITORULUI NOSTRU, IISUS HRISTOS. CÂNTAREA I-A. Ήχος Πα. to os se e e na aș te e e slă ă ă vi i i i i CATAVASII LA NAȘTEREA DOMNULUI DUMNEZEU ȘI MÂNTUITORULUI NOSTRU, IISUS HRISTOS. CÂNTAREA I-A Ήχος α H ris to os s n ș t slă ă ă vi i i i i ți'l Hris to o os di in c ru u uri, în tâm pi i n ți i'l Hris

More information

ASSIGNMENT - 1 M.Sc. DEGREE EXAMINATION, MAY 2019 Second Year STATISTICS. Statistical Quality Control MAXIMUM : 30 MARKS ANSWER ALL QUESTIONS

ASSIGNMENT - 1 M.Sc. DEGREE EXAMINATION, MAY 2019 Second Year STATISTICS. Statistical Quality Control MAXIMUM : 30 MARKS ANSWER ALL QUESTIONS ASSIGNMENT - 1 Statistical Quality Control (DMSTT21) Q1) a) Explain the role and importance of statistical quality control in industry. b) Explain control charts for variables. Write the LCL, UCL for X,

More information

Signalized Intersections

Signalized Intersections Signalized Intersections Kelly Pitera October 23, 2009 Topics to be Covered Introduction/Definitions D/D/1 Queueing Phasing and Timing Plan Level of Service (LOS) Signal Optimization Conflicting Operational

More information

PBW 654 Applied Statistics - I Urban Operations Research

PBW 654 Applied Statistics - I Urban Operations Research PBW 654 Applied Statistics - I Urban Operations Research Lecture 2.I Queuing Systems An Introduction Operations Research Models Deterministic Models Linear Programming Integer Programming Network Optimization

More information

A A Multi-Echelon Inventory Model for a Reparable Item with one-for. for- one Replenishment

A A Multi-Echelon Inventory Model for a Reparable Item with one-for. for- one Replenishment A A Multi-Echelon Inventory Model for a Reparable Item with one-for for- one Replenishment Steve Graves, 1985 Management Science, 31(10) Presented by Hongmin Li This summary presentation is based on: Graves,

More information

CHAPTER 1: Decomposition Methods

CHAPTER 1: Decomposition Methods CHAPTER 1: Decomposition Methods Prof. Alan Wan 1 / 48 Table of contents 1. Data Types and Causal vs.time Series Models 2 / 48 Types of Data Time series data: a sequence of observations measured over time,

More information

HITTING TIME IN AN ERLANG LOSS SYSTEM

HITTING TIME IN AN ERLANG LOSS SYSTEM Probability in the Engineering and Informational Sciences, 16, 2002, 167 184+ Printed in the U+S+A+ HITTING TIME IN AN ERLANG LOSS SYSTEM SHELDON M. ROSS Department of Industrial Engineering and Operations

More information

Introduction to Markov Chains, Queuing Theory, and Network Performance

Introduction to Markov Chains, Queuing Theory, and Network Performance Introduction to Markov Chains, Queuing Theory, and Network Performance Marceau Coupechoux Telecom ParisTech, departement Informatique et Réseaux marceau.coupechoux@telecom-paristech.fr IT.2403 Modélisation

More information

Math 310: Applied Differential Equations Homework 2 Prof. Ricciardi October 8, DUE: October 25, 2010

Math 310: Applied Differential Equations Homework 2 Prof. Ricciardi October 8, DUE: October 25, 2010 Math 310: Applied Differential Equations Homework 2 Prof. Ricciardi October 8, 2010 DUE: October 25, 2010 1. Complete Laboratory 5, numbers 4 and 7 only. 2. Find a synchronous solution of the form A cos(ωt)+b

More information

OCE680 Assignment 1, Instructor s notes

OCE680 Assignment 1, Instructor s notes 6 CHAPTER 4. NOTES OCE68 Assignment, Instructor s notes : First derivative matrix [] (a,b) f = f + 4 f f D + D f +..., (4..) and similar for f N. Everyone got the coefficients right and showed that the

More information

Ranking accounting, banking and finance journals: A note

Ranking accounting, banking and finance journals: A note MPRA Munich Personal RePEc Archive Ranking accounting, banking and finance ournals: A note George Halkos and Nickolaos Tzeremes University of Thessaly, Department of Economics January 2012 Online at https://mpra.ub.uni-muenchen.de/36166/

More information

Transition Theory Abbreviated Derivation [ A - B - C] # E o. Reaction Coordinate. [ ] # æ Æ

Transition Theory Abbreviated Derivation [ A - B - C] # E o. Reaction Coordinate. [ ] # æ Æ Transition Theory Abbreviated Derivation A + BC æ Æ AB + C [ A - B - C] # E A BC D E o AB, C Reaction Coordinate A + BC æ æ Æ æ A - B - C [ ] # æ Æ æ A - B + C The rate of reaction is the frequency of

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.061/6.690 Introduction to Power Systems Problem Set 3 Solutions February 14, 2011 Problem 1: Voltage across

More information

2.2t t 3 =1.2t+0.035' t= D, = f ? t 3 dt f ' 2 dt

2.2t t 3 =1.2t+0.035' t= D, = f ? t 3 dt f ' 2 dt 5.5 Queuing Theory and Traffic Flow Analysis 159 EXAMPLE 5.8 After observing arrivals and departures at a highway toll booth over a 60-minute tim e period, an observer notes that the arrival and departure

More information

LABORATORY MODULE. EKT 241/4 ELECTROMAGNETIC THEORY Semester 2 (2009/2010) EXPERIMENT # 2

LABORATORY MODULE. EKT 241/4 ELECTROMAGNETIC THEORY Semester 2 (2009/2010) EXPERIMENT # 2 LABORATORY MODULE EKT 241/4 ELECTROMAGNETIC THEORY Semester 2 (2009/2010) EXPERIMENT # 2 Vector Analysis: Gradient And Divergence Of A Scalar And Vector Field NAME MATRIK # signature DATE PROGRAMME GROUP

More information

REDUCTION OF A SIMPLE DISTRIBUTED LOADING. Today s Objectives: Students will be able to determine an equivalent force for a distributed load.

REDUCTION OF A SIMPLE DISTRIBUTED LOADING. Today s Objectives: Students will be able to determine an equivalent force for a distributed load. REDUCTION OF A SIMPLE DISTRIBUTED LOADING Today s Objectives: Students will be able to determine an equivalent force for a distributed load. = READING QUIZ 1. The resultant force (F R ) due to a distributed

More information

Programmers A B C D Solution:

Programmers A B C D Solution: P a g e Q: A firm has normally distributed forecast of usage with MAD=0 units. It desires a service level, which limits the stock, out to one order cycle per year. Determine Standard Deviation (SD), if

More information

Forecasting. Operations Analysis and Improvement Spring

Forecasting. Operations Analysis and Improvement Spring Forecasting Operations Analysis and Improvement 2015 Spring Dr. Tai-Yue Wang Industrial and Information Management Department National Cheng Kung University 1-2 Outline Introduction to Forecasting Subjective

More information

Engineering *S54683A0119* Pearson BTEC Level 3 Nationals

Engineering *S54683A0119* Pearson BTEC Level 3 Nationals Pearson BTEC Level 3 Nationals Write your name here Surname Forename Learner Registration Number Centre Number Engineering Unit 1: Engineering Principles Extended Certificate, Foundation Diploma, Diploma,

More information

EE363 homework 2 solutions

EE363 homework 2 solutions EE363 Prof. S. Boyd EE363 homework 2 solutions. Derivative of matrix inverse. Suppose that X : R R n n, and that X(t is invertible. Show that ( d d dt X(t = X(t dt X(t X(t. Hint: differentiate X(tX(t =

More information

! -., THIS PAGE DECLASSIFIED IAW EQ t Fr ra _ ce, _., I B T 1CC33ti3HI QI L '14 D? 0. l d! .; ' D. o.. r l y. - - PR Pi B nt 8, HZ5 0 QL

! -., THIS PAGE DECLASSIFIED IAW EQ t Fr ra _ ce, _., I B T 1CC33ti3HI QI L '14 D? 0. l d! .; ' D. o.. r l y. - - PR Pi B nt 8, HZ5 0 QL H PAGE DECAFED AW E0 2958 UAF HORCA UD & D m \ Z c PREMNAR D FGHER BOMBER ARC o v N C o m p R C DECEMBER 956 PREPARED B HE UAF HORCA DVO N HRO UGH HE COOPERAON O F HE HORCA DVON HEADQUARER UAREUR DEPARMEN

More information

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D

Use precise language and domain-specific vocabulary to inform about or explain the topic. CCSS.ELA-LITERACY.WHST D Lesson seven What is a chemical reaction? Science Constructing Explanations, Engaging in Argument and Obtaining, Evaluating, and Communicating Information ENGLISH LANGUAGE ARTS Reading Informational Text,

More information

BACHELOR WORK CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF ELECTRICAL ENGINEERING DEPARTMENT OF CONTROL ENGINEERING

BACHELOR WORK CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF ELECTRICAL ENGINEERING DEPARTMENT OF CONTROL ENGINEERING CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF ELECTRICAL ENGINEERING DEPARTMENT OF CONTROL ENGINEERING BACHELOR WORK Logical processes modeling and optimization in Breweries Staropramen Prague, 2006

More information

IS 709/809: Computational Methods in IS Research Fall Exam Review

IS 709/809: Computational Methods in IS Research Fall Exam Review IS 709/809: Computational Methods in IS Research Fall 2017 Exam Review Nirmalya Roy Department of Information Systems University of Maryland Baltimore County www.umbc.edu Exam When: Tuesday (11/28) 7:10pm

More information

Math 345 Sp 07 Day 7. b. Prove that the image of a homomorphism is a subring.

Math 345 Sp 07 Day 7. b. Prove that the image of a homomorphism is a subring. Math 345 Sp 07 Day 7 1. Last time we proved: a. Prove that the kernel of a homomorphism is a subring. b. Prove that the image of a homomorphism is a subring. c. Let R and S be rings. Suppose R and S are

More information

Introduction. Matlab output for Problems 1 2. SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 2006

Introduction. Matlab output for Problems 1 2. SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 2006 SOLUTIONS (Carl Tape) Ge111, Assignment #3: Gravity April 25, 26 Introduction The point of this solution set is merely to plot the gravity data and show the basic computations. This document contains a

More information

Prayer. Volume III, Issue 17 January 11, Martin Luther King Jr. Prayer. Assumption Catholic School 1

Prayer. Volume III, Issue 17 January 11, Martin Luther King Jr. Prayer. Assumption Catholic School 1 Vm III, I 17 J 11, 2017 TROJAN NEW W Rpb Cz, E Cmm, L L L, d A Ch wh bd mm d mk p. P M Lh K J. P Gd h h h Am d A h wd, W w h h hh w; w whh M w h bh. A w whh h h wd w B h wd pwh, Ad h p p hk. A w whh m

More information

Higher Order Linear Equations

Higher Order Linear Equations C H A P T E R 4 Higher Order Linear Equations 4.1 1. The differential equation is in standard form. Its coefficients, as well as the function g(t) = t, are continuous everywhere. Hence solutions are valid

More information

Statistical methods. Mean value and standard deviations Standard statistical distributions Linear systems Matrix algebra

Statistical methods. Mean value and standard deviations Standard statistical distributions Linear systems Matrix algebra Statistical methods Mean value and standard deviations Standard statistical distributions Linear systems Matrix algebra Statistical methods Generating random numbers MATLAB has many built-in functions

More information

Redacted for Privacy

Redacted for Privacy AN ABSTRACT OF THE THESIS OF Lori K. Baxter for the degree of Master of Science in Industrial and Manufacturing Engineering presented on June 4, 1990. Title: Truncation Rules in Simulation Analysis: Effect

More information

STA 624 Practice Exam 2 Applied Stochastic Processes Spring, 2008

STA 624 Practice Exam 2 Applied Stochastic Processes Spring, 2008 Name STA 624 Practice Exam 2 Applied Stochastic Processes Spring, 2008 There are five questions on this test. DO use calculators if you need them. And then a miracle occurs is not a valid answer. There

More information

Size : Ends : Min Temperature : Max Temperature : Materials : Brass

Size : Ends : Min Temperature : Max Temperature : Materials : Brass Size : Ends : Min Temperature : Max Temperature : DN 3/8" to 4" Female BSP + 0 C + 90 C ( 60 C for 302 and 322 types ) Max Pressure : 16 Bars ( 10 bars for 301-302 types ) Specifications : Swing type Metal

More information

2010 Euclid Contest. Solutions

2010 Euclid Contest. Solutions Canadian Mathematics Competition An activity of the Centre for Education in Mathematics and Computing, University of Waterloo, Waterloo, Ontario 00 Euclid Contest Wednesday, April 7, 00 Solutions 00 Centre

More information

Introduction to Statistical Data Analysis Lecture 3: Probability Distributions

Introduction to Statistical Data Analysis Lecture 3: Probability Distributions Introduction to Statistical Data Analysis Lecture 3: Probability Distributions James V. Lambers Department of Mathematics The University of Southern Mississippi James V. Lambers Statistical Data Analysis

More information

Poisson Processes. Particles arriving over time at a particle detector. Several ways to describe most common model.

Poisson Processes. Particles arriving over time at a particle detector. Several ways to describe most common model. Poisson Processes Particles arriving over time at a particle detector. Several ways to describe most common model. Approach 1: a) numbers of particles arriving in an interval has Poisson distribution,

More information