9 Pages

19DiscrEvSim

Course: ENGS 027, Fall 2009
School: Dartmouth
Rating:
 
 
 
 
 

Word Count: 2438

Document Preview

27 Engs Discrete and Probabilistic Systems Winter, 2004 LECTURE 19 Discrete Event Simulation 19.1. 19.2. 19.3. 19.4. 19.5. Stochastic simulation, the big picture Simulating continuous random variables Simulating Poisson processes Simulating an M/M/1 queue Simulating an M/M/k queue 1 2 3 5 9 19.1. Stochastic simulation, the big picture In many probabilistic systems we can derive a mathematical model from...

Register Now

Unformatted Document Excerpt

Coursehero >> New Hampshire >> Dartmouth >> ENGS 027

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
27 Engs Discrete and Probabilistic Systems Winter, 2004 LECTURE 19 Discrete Event Simulation 19.1. 19.2. 19.3. 19.4. 19.5. Stochastic simulation, the big picture Simulating continuous random variables Simulating Poisson processes Simulating an M/M/1 queue Simulating an M/M/k queue 1 2 3 5 9 19.1. Stochastic simulation, the big picture In many probabilistic systems we can derive a mathematical model from basic principles. The key result of such a model is a probability distribution for the quantity of interest, from which expected values, variances, and other important quantities may be calculated. When analysis fails, we turn to simulation. For example, earlier we examined the robustness of an LC circuit by the following simulation procedure: (1) Generate random values for the two components L and C. 1 (2) Calculate the resonant frequency 0 = with these values. LC (3) Repeat (1) and (2) a large number of times, collecting an ensemble of 0 values. (4) Compute a histogram of 0 to estimate the probability density function f (0 ). Calculate sample mean and sample variance of 0 to estimate the mean and variance of the resonant frequency. All simulation procedures break down into these three parts: generating random input values of appropriate distribution, processing the inputs to obtain an ensemble of output values, and analyzing the outputs statistically to draw conclusions about the process. When the process can be expressed as a simple function of the input Y = g(X), Monte Carlo simulations like the one above work well. Other kinds of systems, notably queues, have inputs which are streams of events rather than numbers. A dierent simulation approach is taken for these systems. Before introducing discrete event simulation per se, we return to a topic that we didnt get to earlier in the course. Engs 27 Discrete and Probabilistic Systems Winter, 2004 19.2. Simulating continuous random variables Let X be a random variable with cumulative distribution function FX . We will show that the random variable U = FX (X) is uniformly distributed on [0, 1]. The cumulative distribution function of U is FU (u) = P (U u) = P (FX (X) u) . Now, assuming that FX is monotonically increasing (a stronger requirement than nondecreasing) 1 as well as continuous, the inverse function FX exists, and the event (FX (X) u) is equivalent 1 to the event (X FX (u)). So, 1 1 FU (u) = P (X FX (u)) = FX FX (u) = u, 0u1. Now dierentiate FU to get the probability density function fU . fU (u) = which is uniform. We can use this to generate continuous random variables from a desired PDF fX . Use a random number generator to obtain a number U uniformly distributed on (0, 1). Then, the 1 random variable X = FX (U ) will be distributed according to fX . This is called the inverse transform method for generating random numbers. It works when a mathematical expression 1 exists for FX . For example, to generate a value from an exponential distribution, begin with the CDF, F (x) = 1 ex/ . The inverse function is obtained by solving u = 1 ex/ for x: x = log(1 u) . If U is uniformly distributed on (0, 1), then so is 1 U , so we may also write X = log U In Matlab, one line of code will generate a vector of N exponential random numbers: x = -theta * log( rand(1,N) ); Here is a sample result: 104 samples from an exponential distribution with = 2. (19.1) dFU = 1, du 0u1, 19. Discrete Event Simulation 19.2 Engs 27 Discrete and Probabilistic Systems 104 GENERATED RANDOM VARIABLES 0.5 0.45 0.4 0.35 0.3 Sample mean = 2.0049 Sample variance = 4.08 Winter, 2004 f(x) 0.25 0.2 0.15 0.1 0.05 0 0 1 2 3 4 5 6 7 8 9 10 x 19.3. Simulating Poisson processes When simulating a Poisson process, you may want to simulate how many counts (events) occur in a given interval of length t. Or, you may want to simulate the actual event stream, by generating a sequence of interarrival times. 1 Simulating the number of events in an interval For a Poisson process with rate , we know that the interarrival times are distributed exponentially with mean 1/. To simulate the number of events in an interval T , sum exponential random variables until the sum exceeds the length of the interval, T . A particularly ecient way of doing this follows from the earlier observation that an exponential random variable is 1 proportional to the logarithm of a uniform random variable: X = log U . Let Tk be the k th interarrival time. Then, n T or, equivalently, k=1 Tk = 1 n k=1 1 log Uk = log n Uk k=1 n eT Uk . k=1 (19.2) Summing exponential variates until the sum exceeds T is equivalent to multiplying uniform variates until the product exceeds eT . Then the desired Poisson variate is one less than this n. Here is Matlab code that does the calculation (as usual, = T ): p = exp(-mu); n = 1; 1S. Ross, Simulation, third edition (Academic Press, 2001), Sections 4.2 and 5.4. 19. Discrete Event Simulation 19.3 Engs 27 Discrete and Probabilistic Systems u = rand; while(u >= p), u = u * rand; n = n+1; end X = n-1; Winter, 2004 Simulating a sequence of events If instead we want to simulate a sequence of events, i.e., arrival times, we can generate a sequence of exponential random variables, stopping when their cumulative sum exceeds the length of the interval, T . The following Matlab code does the job. t1 = []; t = 0; while (t < T), t = t - log(rand)/mu; t1 = [t1, t]; end X = length(t1) - 1; % Set of event times. % Running sum of interarrival times % Exponential r.v. with mean 1/mu % We also get the number of counts in T Shown below is an example of an event stream with = 10, generated by this method. The lower plot compares the histogram of event counts, for 1000 trials, with the Poisson probability function. TYPICAL EVENT STREAM, =10 0 0.1 0.2 0.3 0.4 0.5 TIME 0.6 0.7 0.8 0.9 1 POISSON DISTRIBUTION 0.14 0.12 0.1 0.08 0.06 0.04 0.02 0 0 5 10 COUNTS 15 20 PROBABILITY FREQUENCY 19. Discrete Event Simulation 19.4 Engs 27 Discrete and Probabilistic Systems Winter, 2004 19.4. Simulating an M/M/1 queue Consider an M/M/1 queue with arrival rate and service rate . To simulate the system we will keep track of the time, t and the number of customers in the system, X(t). The simulation will run from t = 0 to t = T . These quantities will change when an event arrival or departure occurs. 2 With t = 0 initially, we generate an arrival time (an exponential random variable with mean 1/), update the time pointer t to this time and increment the number of customers. Then we generate a departure time, since there is a customer waiting to be served. We also generate the next arrival time. This gives us a pair {tA , tD } called the event list. If tA < tD , it means that a new customer has arrived before the rst customer has departed, and the number of customers must be incremented. On the other hand, if tD < tA , the rst customer leaves the system before the second customer enters. Whichever occurs rst, arrival or departure, a new arrival or departure time is generated, replacing the old one in the event list. If a departure leaves the queue empty, then a new departure time is not generated until a customer has arrived. In this way we proceed through time, event by event, until at last an arrival time is greater than the limit T . customer That is not added to the system, and the remaining customers empty out, one departure at a time. A sample code is shown below. It can also be easily modied for nite-capacity queues, tracking how many customers are turned away, etc. %% DISCRETE EVENT SIMULATION of M/M/1 QUEUE %% E.W. Hansen, Engs 27 02W %% Ref: S. Ross, "Simulation", Sect. 6.2 ra = 1; rs = 1.2; T = 12*60; % A D S Event times = []; = []; = []; % Arrival and service rates (per minute) % Simulation time (12 hours) % Series of arrival times % Series of departure (service completion) times % Series of service times % Initial conditions n = 0; t = 0; y = -log(rand)/ra; ta = y; td = inf; % % % % % Current number in system Elapsed time Exponential r.v., first interarrival time First arrival time Initialize departure time 2Ross, Sections 6.1-6.2; for a dierent approach, J.J. Higgins and S. Keller-McNulty, Concepts in Probability and Stochastic Modeling (Duxbury, 1995), pp. 318-320 19. Discrete Event Simulation 19.5 Engs 27 Discrete and Probabilistic Systems Winter, 2004 while(min(ta, td) <= T), % Case 1: Not time for departure yet, so generate an arrival if(ta <= td & ta <= T), t = ta; % Update elapsed time if(n<C) n = n+1; % If queue isnt full, add customer if (n==1), % If only one customer, generate service time y = -log(rand)/rs; td = t + y; % Next departure time S = [S, y]; % Update service time record end A = [A, t]; % Update arrival time record end y = -log(rand)/ra; % Next interarrival time ta = t + y; % Next arrival time end % Case 2: Departure time has come if(td < ta), t = td; n = n-1; D = [D, t]; if (n==0), td = inf; else y = -log(rand)/rs; td = t + y; S = [S, y]; end end end % % % % % Update elapsed time Remove customer from queue Update departure time record If queue is empty set td to "infinity" % Next service time % Next departure time % Update service time record % Case 3: End of simulation, no new arrivals, flush queue while(n > 0) t = td; % Update elapsed time n = n-1; % Remove customer from queue if(n > 0) % If queue isnt empty y = -log(rand)/rs; % Next service time td = t + y; % Next departure time S = [S, y]; % Update service time record end D = [D, t]; % Update departure time record end Tp = max(t-T, 0); % Time past T that last customer leaves queue The great advantage of discrete event simulation is exibility, and the power to examine systems that do not have nice analytical models. For example, 19. Discrete Event Simulation 19.6 Engs 27 Discrete and Probabilistic Systems Arrivals and departures can be made to follow any distribution, not just Poisson. Arrival and service rates can be time-varying. Servers can be connected in sequence (e.g., wait for your food, wait to pay for it). Post-simulation analysis During the simulation, we keep track of each customers arrival, departure, and service times. These are absolute times. Interarrival times are calculated by dierencing the arrival vector, tA = diff(A); Winter, 2004 The time each customer spends in the queue is the dierence of his departure and arrival time, and the time each customer spends waiting for service is the time in queue minus the service time, tQ = D-A; tW = tQ-S; Means and standard deviations can be computed from tA, tQ and tW using the mean and std functions. A running count of the queue size, X(t), can be reconstructed from the arrival and departure times. An approximate way to do this is to divide the simulation time [0, Ts ] into intervals of equal length, t. Then, for each time tm = mt, check to see how many arrivals and departures have occurred. The number of customers X(tm ) is the number of arrivals before tm minus the number of departures before tm . Equivalently, suppose that a number of customers have arrived before time tm . Some of these customers will also have departed by time tm . The length of the queue is the number of customers which havenot departed by time tm , those whose departure times are greater than tm . Here is a way to do the calculation with Matlab. % Number of customers in system, vs t % Divide the simulation time into intervals of equal length. Number of % customers in system at time t = number of customers for which D > t > A. % You have to rebin the customers in this way to get correct statistics. dt = 0.1/rs; % 10% of the average service time t = 0:dt:(T+Tp); M = leng...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Dartmouth - REU - 2006
2006 LIST OF PROJECTS Processing and Properties of Bulk Nanocrystalline Metals and Alloys Ian Baker While it is relatively easy to produce nanocrystalline metals and alloys as powders or thin films, producing bulk nanocrystalline materials continues
Dartmouth - PKI - 02
A Note On SPKIs Authorisation SyntaxOlav Bandmann*Industrilogik L4i ABMads DamKTH/IMIT*Work done while at SICS, Swedish Institute of Computer Science. Supported by Microsoft Research, Cambridge1st PKI Research Workshop, NIST, Gaithersburg 2002
Dartmouth - SDM - 06
Synthetic Data for Data Mining to Support Epidemiological ModelingMadhav V. MaratheNetwork Dynamics and Simulation Science Laboratory Virginia Bio-Informatics Institute &amp; Dept. of Computer Science Virginia Tech marathe@vt.edu NDSSL-TR-06-20 Web Si
Dartmouth - CS - 78
CS 78 Computer Networks Congestion ControlAndrew T. Campbell campbell@cs.dartmouth.eduWhat is congestion and why is it an important problem for Internet?Principles of Congestion ControlCongestion: informally: too many sources sending too much
Dartmouth - M - 29
A set is computable (or recursive) if its characteristic function is computable. The word eective is often used as a synonym for computable/recursive, but only in the context of procedures. In the literature, A is often represented simply by A, so, f
Dartmouth - M - 6
Math 6 Modular Arithmetic (WS #1) Let Zm be the set of integers taken modulo m. Arithmetic in Zm is the same as normal integer arithmetic with the extra rule that m = 0. We have seen that Zm has exactly m elements, which we can write as 0, 1, 2, . .
Dartmouth - M - 23
Math 23, Practice set for the midterm exam1. The general solution of the dierential equation y + 2y = 3t2 e2t is: (a) 3t2 e2t + Ce2t (b) t3 e2t + C (c) t3 e2t + Ce2t (d) t3 e2t + Ce2t 2. The solution to the initial value problem y + 2y + 2y = 5ex ,
Dartmouth - M - 13
NameQUIZ 51. Let S be the portion of the sphere x2 + y 2 + z 2 = 18 lying above the cone z 2 = 5x2 + 2y2 . Parameterize S . We solve for the boundary of the cone and sphere:x2 + y 2 + (5x2 + 2y 2 ) = 18 6x2 + 3y 2 = 18 y2 x2 + =1 3 6This is
Dartmouth - PDF - 08
MORPHOLOGICALVARIATIONOFEPIPHYTICBROMELIADS WITHHEIGHTABOVEGROUND ROBERTH.YANKERIII,ALANNAH.PURDY,BRIANM.LAPPAS,ANDALEXC.SPINOSO Facultyeditor:DavidR.Peart Abstract:Epiphytictankbromeliadsinsecondaryforestaremorphologicallyplasticinresponse toabio
Dartmouth - PDF - 04
DartmouthStudiesinTropicalEcology2004THEEFFECTOFDISTURBANCEONEPILITHICPLANTCOMMUNITIESALONGSTREAMSLUKEEVANS,BRENDAWHITED,HEATHERLAPINANDMATTHEWKEMP Abstract: Disturbance regimes strongly influence the structure and diversity of plant communities.
Dartmouth - PDF - 05
DiscoveryBayINFLUENCEOFTURTLEGRASS(THALASSIATESTUDINUM)ONZOOPLANKTON DISTRIBUTIONINTHEWATERCOLUMNOFASHALLOWBACKREEFCHELSEAL.WOODANDANNAR.NOWOGRODZKI Abstract:Somemarinezooplanktonseekrefugesinthebenthosduringthedaytoavoidvisualpreda tors, and mig
Dartmouth - M - 13
NameQUIZ 7 F?1. Let F(x, y, z) = 2x2 y, 3xy2 , zxy . What isF= , , 2x2 y, 3xy 2 , zxy = x y z 2x2 y + 3xy 2 + xyz = 4xy + 6xy xy = 9xy x y z2. What does your answer to the above [and the appropriate theorem] indicate regarding the
Dartmouth - M - 3
Hour Exam 2November 13, 2002Math 3Name: Instructor (circle): Lahr (8:45) Orellana (11:15)Instructions: You are not allowed to use calculators, books, or notes of any kind. All your answers to the multiple choice questions must be marked on the
Dartmouth - M - 3
Final ExamMath 3December 3, 2005Name: Instructor (circle): Lahr (8:45) Elizalde (10:00) Ionescu (11:15)Instructions: The Final Exam is multiple choice. You are not allowed to use calculators, books, or notes of any kind. All your answers to the
Dartmouth - M - 3
Hour Exam 2Math 3Nov. 12, 2007Name: Instructor (circle): Lahr (8:45) Pomerance (11:15) Treneer (12:30)Instructions: You are not allowed to use calculators, books, or notes of any kind. All your answers to the multiple choice questions must be m
Dartmouth - M - 3
Math 3: Fall 2007 Exam 2 solutions1. For the function f (x) = x2 (x 2)2 , which item correctly lists the intervals where the function is increasing? (a) (0, 2) (b) (0, 1), (2, ) (c) (1, ) (d) (, 2), (4, ) (e) none of the aboveAnswer: (b)1 1 2.
Dartmouth - M - 3
Hour Exam 1Math 3Oct. 23, 2002Name: Instructor (circle): Lahr (8:45) Orellana (11:15)Instructions: You are not allowed to use calculators, books, or notes of any kind. All your answers to the multiple choice questions must be marked on the Scan
Dartmouth - M - 3
Hour Exam 1Oct. 23, 2002Math 3Name: Instructor (circle): Lahr (8:45) Orellana (11:15)Instructions: You are not allowed to use calculators, books, or notes of any kind. All your answers to the multiple choice questions must be marked on the Sca
Dartmouth - M - 3
Math 3: Fall 2007 Exam 1 solutions1. The number sin + ln 1 + e0 can be simplied to (a) 0 (b) 2 (c) 1 (d) 2 (e) none of the aboveAnswer: (e) (the number can be simplied to 1)2. What symmetry does the graph of y = x2 6x + 10 have? (a) It is an
Dartmouth - M - 74
11.1ConclusionThe Geometric Deck Theorem ConverseNow we accomplish what we set out to do in the introduction. There we set out the following goals. 1. Topological part of the solution: In vast generality there is a converse to the Deck theorem.
Dartmouth - M - 9
TIPS FOR WRITING PROOFS IN HOMEWORK ASSIGNMENTSMARK SKANDERA1. Simple rules I require my students to follow the rules below when submitting problem sets. While other instructors may be more lenient than I, these rules are likely to help you maximi
Dartmouth - M - 1
Rational FunctionsRational Functions and Their DomainsOur last lecture was devoted to rational polynomial functions, which, if you recall, are the functions which are the quotient of two polynomials. Today we discuss rational function in general. A
Dartmouth - M - 5
Answers to Selective HW questionsHW for Feb. 131. Let S = {x}. What are the elements in the Free semigroup on S As there is only one letter, the possible words are {, x, xx, xxx, . . .}. 2. Let S = {a, b} and let R = {a2 = , b2 = , ab = ba}. Let
Dartmouth - CS - 78
CS 78 Computer Networks TCP and UDP Transport ProtocolsAndrew T. Campbell campbell@cs.dartmouth.eduApplication Layerour focus What we will lean Multiplexing/demuliplexing Detecting corruption and loss Supporting reliable delivery Flow co
Dartmouth - CS - 78
CS 78 Final Project Maemo Mobile IM [maemim]In what follows, we describe the baseline project for CS78, which denes the minimum requirements that you must deliver. After these minimum requirements have been fullled, groups are welcome to take their
Cornell - MATH - 5080
Cornell UniversityK-12 Education and Outreach, Mathematics DepartmentMATH 5080Mathematics for Secondary School Teachers 406 Malott Hall March 7, 2009 9:00 am 2:30 pm 8:45-9:00 9:00-10:30 Welcome (juice and bagels provided)Math Challenges: Rewr
Cornell - ENGL - 2
ENGRG 192 / Math 192 Cooperative Workshop Credit: 1 hour Catalogue description: Small-group, cooperative-learning workshop offered as complement to Math 192. Students discuss course concepts and work together on problems designed to enhance understan
Cornell - ENGL - 2
Math 294 Engineering Mathematics II Catalogue description: Fall, spring, summer. 4 credits. Prerequisite: MATH 192. Linear Algebra and its applications. Topics included matrices, determinants, vector spaces, eigenvalues and eigenvectors, orthogonalit
Cornell - ENGL - 2
Math 293 Engineering Mathematics I Catalogue description: Fall, spring, summer. 4 credits. Prerequisite: MATH 192. The conclusion of vector calculus, including line integrals, vector fields, Green's theorem, Stokes' theorem, and the divergence theore
Cornell - ENGL - 2
Math 190 Engineering MathematicsCatalogue description: Fall. 4 credits. Prerequisite: 3 years of high school mathematics, including trigonometry and logarithms. This course is restricted to engineering students who have had no previous successful e
Cornell - ENGL - 2
Math 191 Engineering MathematicsCatalogue description Fall, spring, summer. 4 credits. Prerequisite: 3 years of high school mathematics including trigonometry and logarithms, plus some knowledge of calculus. MATH 191 covers essentially the same top
Cornell - ENGL - 2
Math 192Calculus for EngineersCatalogue description: Fall, spring, summer. 4 credits. Prerequisite: MATH 190 or 191. Multivariable calculus and its applications. Topics include: polar coordinates, infinite series, and power series. Also covered a
Cornell - ENGL - 2
ENGRI 167 / Com S 167 / CIS 167. Visual Imaging in the Electronic Age Catalogue description: 3 credits, Spring only, S/U Optional The concepts and ideas behind computer imaging and computer graphics both software and hardware. Topics include perspect
Cornell - ENGL - 2
BEE 251/ENGRD 251. Engineering for a Sustainable Society Catalogue description: Spring. 3 Credits. Co-requisite Math 293. Case studies of contemporary environmental issues including pollutant distribution in natural systems, air quality, hazardous wa
Cornell - ENGL - 2
ENGRD 321 / CS 321 / BIOBM 321 Numerical methods in computational molecular biology Catalogue description: Fall. 3 credits. Prerequisites: at least one course in calculus such as MATH 106, 111, or 191 and a course in linear algebra such as MATH 221 o
Cornell - ENGL - 2
ENGRG 100 / CS 100M Cooperative Workshop Credit: 1 hour Catalogue description: Small-group, cooperative-learning workshop offered as complement to CS 100M. Students discuss course concepts and work together on problems designed to enhance understandi
Cornell - ENGL - 2
PHYS 214. Physics III: Optics, Waves and Particles Catalogue description: Fall, Spring (Summer, 6 week session), 4 credits. Primarily for students of engineering and for prospective physics majors. Physics of wave phenomenon, electromagnetic waves, i
Cornell - ENGL - 2
ENGRD 260 / BEE260. Principles of Biological Engineering Spring Semester 2004 Catalogue description: Spring. 3 credits. Corequisite: MATH 293 Focuses on the integration of biological systems with engineering, math, and physical principles. Students l
Dartmouth - M - 24
Math 24 Exam 1 - Take Home portion Directions: Your solutions to these exam problems are due at the beginning of class on Monday, 5 February 2001. You may feel free to use your book or your class notes from this course to help you with these problems
Dartmouth - M - 23
Math 23 Di Eq: Take-home MidtermYou have until class (10am) on Friday, about 47 hrs. Dont worry; I expect it to take about 4 hours, if you are reasonably prepared. Answer all three questions; try to be clear, concise and neat. You can use the book,
Dartmouth - M - 29
Mathematics 29 Take-Home Midterm Examination1. (20) Write a program for a URM that computes f (x) = 2x + 1.2. (20) Find a Turing machine that computes f (x) = 2x + 1.3. (20) Find a Post system that shows f (x) = 2x + 1 is Post-computable. 4. (2
Dartmouth - M - 29
Mathematics 29 Take-Home Final Examination1. (20) Let be the nite function such that dom() = {0} and (0) = 0. Prove that if B C1 and B while B = C1 , then B = { x : x B } is productive. 2. (20) Show that there are innitely many disjoint sets B
Dartmouth - M - 23
MATH 23 FINAL EXAM REVIEW Try and take this like a real exam. Give yourself two hours or so. No calculators, but you may use the table on page 300. 1. Solve the initial value problem y + y = 3 sin 2t (3 sin 2t)u2 , y(0) = 1, y (0) = 2. 2. Find the g
Dartmouth - DAY - 2
Nutri/System Is Dropping Fen-Phen DrugAP The New York Times, September 4, 1997, Thursday, Late EditionDateline: Philadelphia, Sept. 3 A national weight-loss chain is discontinuing a drug combination known as fen-phen amid concern that the popular d
Dartmouth - ECON - 01
Dartmouth College, Department of EconomicsDARTMOUTH COLLEGE, DEPARTMENT OF ECONOMICS page 1 of 3 Name_ Economics 1Section 1 2Professor Katerina SimonsThe Price System Problem Set 4Due in class 5/14/03 A. Multiple Choice.Spring 2003fig. 1:
Dartmouth - ECON - 01
DARTMOUTH COLLEGE, DEPARTMENT OF ECONOMICSECONOMICS 1Dartmouth College, Department of Economics: Economics 1, Spring 03Topic 5 Elasticity of DemandEconomics 1, Spring 2003 Katerina SimonsElasticity of DemandPrice Elasticity of Demand Cross-
Dartmouth - PDF - 04
MonteverdeTHEEFFECTOFBARKMORPHOLOGYONEPIPHYTECOMPOSITIONANDABUNDANCEPETERN.CHALMERS,ELEANORE.CAMPBELLANDJILLL.HARRIS Abstract:Diverse bark morphologies among trees in tropical cloud forests may be an adaptation to discourage epiphyticgrowth.Mossg
Dartmouth - PDF - 08
CORALPATCHESONABACKREEFDONOTCONFORMTODIVERSITY DISTANCEPREDICTIONSOFISLANDBIOGEOGRAPHYTHEORYTHOMASJ.LOBBENANDLIAM.CHEEK Facultyeditor:DavidR.Peart Abstract: The theory of island biogeography has been applied to fish on coral reefs, classifying t
Cornell - FDA - 2008
BTRY 6150: Projects: Slider DataBTRY 6150: Projects: Slider DataLecture 3: Potential ProjectsApplying FDAYou may use1One of the data sets presented in class A data set that you have from your own work A new data set from somewhere else that
Cornell - PT - 267
Applying to Grad SchoolsFlip Tanedo, LEPPhttp:/www.lepp.cornell.edu/~pt267/Flip TanedoApplying to Grad SchoolUnderclassmenDo research Find mentors Have funFlip TanedoApplying to Grad SchoolGrad ApplicationsPhD Programs Fellowships Ov
Cornell - CS - 366
Introduction Squark Pair Production Event SimulationSquark Spin Determination at the LHCM.Perelstein C.Spethmann J.Thom J.VaughanLaboratory for Elementary-Particle Physics Cornell UniversityCornell Syracuse Theory Meeting 01/11/2008M.Perelst
Dartmouth - WORKSHOP - 2001
TUMOR AND CELLULAR METABOLISM CHANGES DURING PHOTODYNAMIC THERAPY Pogue, Brian W.1*, O'Hara, Julia A.2, Wilmot, Carmen J.2 and Swartz, Harold M.21Thayer School of Engineering, Dartmouth College, Hanover, New Hampshire, 03755. Email: brian.pogue@da
Dartmouth - WORKSHOP - 2001
MRI/MRS MONITORING OF TUMOR PHYSIOLOGY Zhou, R., Pickup, S., Poptani, H., Bansal, N., Tailor, D., Reddy, R. and Glickson, J.D. Department of Radiology, University of Pennsylvania, Philadelphia, PA 19104; glickson@mail.med.upenn.edu Tumor perfusion ha
Dartmouth - WORKSHOP - 2001
GENE EXPRESSION ANGIOGENESIS AND VASCULAR FUNCTION IN TUMORS: LESSONS FROM INTRAVITAL MICROSCOPY Jain, Rakesh K. Edwin L. Steele Laboratory for Tumor Biology, Radiation Oncology, Massachusetts General Hospital, 100 Blossom Street, Cox-7, Boston, MA 0
Dartmouth - WORKSHOP - 2001
IN VIVO DIRECT EVIDENCE OF FREE RADICAL FORMATION IN ACUTE LUNG INJURY INDUCED BY LIPOPOLYSACCHARIDE OF PSEUDOMONAS AERUGINOSMason, Ronald P. and Sato, KeizoFree Radical Metabolite Section, Laboratory of Pharmacology and Chemistry, National Instit
Dartmouth - WORKSHOP - 2001
ANALYSIS OF LOW-FIELD EPR SPECTRA OF SOME pH-SENSITIVE PROBESHutchison, J.M.S., Grigor'ev, I.A * Khramtsov, V.V.and Hutchison, M.A. University of Aberdeen, Aberdeen and Institutes of Organic Chemistry and *Chemical Kinetics, Novosibirsk.Most of th
Dartmouth - WORKSHOP - 2001
DETECTION OF SIGNALS FROM REACTIVE SPECIES IN THE CENTRAL NERVOUS SYSTEM OF TRANSGENIC MICE USING X/BAND WITH FROZEN SAMPLES Shinobu, Leslie A.1, Grinberg, Oleg Y.2, Fecker, Jesse A.3, Grinberg, Stalina2, Jones, Mark M.4, Swartz, Harold M.2, Mashimo,
Dartmouth - WORKSHOP - 2001
THREE-DIMENSIONAL GRADIENT FIELD COIL FOR ESRI METHODWu, Ke1 ; Huang, Changgang2 Beijing Institute of Radiation Medicine1,No.27 Tai Ping Road,Beijing 100850,wuk@nic.bmi.ac.cn Institute of Electrical Engineering, Academia Sinica2,No.6 Zhong Guan Cun
Dartmouth - WORKSHOP - 2001
9TH INTERNATIONAL MEETING AND WORKSHOP ON EPR STUDIES OF VIABLE BIOLOGICAL SYSTEMS, (especially in vivo) AND RELATED TECHNIQUES September 8th 14th, 2001 POSTER SIZE IS A MAXIMUM OF 4 FEET WIDE BY 5 FEET HIGH POSTERS WILL BE PINNED TO THE BOARDTH
Dartmouth - WORKSHOP - 2001
07:15 a.m 07:55 a.m.Continental Breakfast Administrative remarks from the organizersFree Radicals, Oxidative Processes, etc.Chair: J. Zweier; Co-Chair: J. Cook 08:00 a.m. 08:45 a.m.09:30 a.m.NMR and MRI Spin Trapping: Using NMR to Learn abo
Dartmouth - WORKSHOP - 2001
THE 9TH INTERNATIONAL MEETING AND WORKSHOP ON EPR STUDIES OF VIABLE BIOLOGICAL SYSTEMS, (especially in vivo) AND RELATED TECHNIQUES Dartmouth Medical School, Hanover, New Hampshire September 8-14, 2001REQUIREMENTS FOR PARTIAL OR COMPLETE SUBSIDIZED