subject

(Data Analysis) Einstein’s theory of Brownian motion connects microscopic properties (eg, radius, diffusivity) of the beads to macroscopic properties (eg, temperature, viscosity) of the fluid in which the beads are immersed. This amazing theory enables us to estimate Avogadro’s constant with an ordinary microscope by observing the collective effect of millions of water molecules on the beads. 1. Estimating the self-diffusion constant. The self-diffusion constant D characterizes the stochastic movement of a molecule (bead) through a homogeneous medium (the water molecules) as a result of random thermal energy. The Einstein- Smoluchowski equation states that the random displacement of a bead in one dimension has a Gaussian distribution with mean zero and variance o2 = 2DAT, where At is the time interval between position measurements. That is, a molecule's mean displacement is zero and its mean square displacement is proportional to the elapsed time between measurements, with the constant of proportionality 2D. We estimate o2 by computing the variance of all observed bead displacements in the x and y directions. Let (delta x1, delta y1),...,(deltat x1, delta y1) be the n bead displacements, and let 11,...,, denote the radial displacements. Then
2 (delta x1. +...+delta x2n) + (delta y21+ ... + delta y2n)/2n
= r2n+ + r2n/2n
For our data, delta t = 0.5 so our estimate for o2 is an estimate for D as well. Note that the radial displacements in the formula above are measured in meters. The radial displacements output by your bead_tracker. py program are measured in pixels. To convert from pixels to meters, multiply by 0.175x10^6 meters per pixel). The value of n is the count of the total number of displacements read.
2. Estimating the Boltzmann constant. The Stokes-Einstein relation asserts that the self-diffusion constant D of a spherical particle immersed in a fluid is given by D = T, where, for our data T (absolute temperature) is 297 degree Kelvin (room temperature), n (viscosity of water) is 9.135x10 Nsm-2 (at room temperature), p (radius of bead) is 0.5x10-6 and k is the Boltzmann constant. All parameters are given in SI units. The Boltzmann constant is a fundamental physical constant that relates the average kinetic energy of a molecule to its temperature. Use k = bare as an estimate of Boltzmann's constant.
3. Estimating Avogadro's constant. Avogadro's constant NA is defined to be the number of particles in a mole. By definition, k = R. where the universal gas constant R is approximately 8.31457 JK 'mol. Use NA = as an estimate of Avogadro's constant. Implement a client program data analysis. py that accepts the displacements (output of bead_tracker. py) from standard input; computes an estimate of Boltzmann's constant and Avogadro's constant using the formulae described above; and writes the values separated by a space..

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 16:20
Quincy would like to view the contents of a specific message in his inbox. a portion of his computer screen is shown. what should quincy do in order to complete this task? 1. click on the inbox in the navigation pane, and click on the specific message in the folder pane to display its contents. 2. click on the inbox in the outlook today window, and click on the specific message in the folder pane to display its contents. 3. double-click the message’s header in the outlook today window, and right-click on the specific message to display its contents. 4. double-click the mail option in the navigation pane, and right-click on the specific message to display its contents.
Answers: 1
question
Computers and Technology, 22.06.2019 17:30
Working on this program in python 3.7: a year in the modern gregorian calendar consists of 365 days. in reality, the earth takes longer to rotate around the sun. to account for the difference in time, every 4 years, a leap year takes place. a leap year is when a year has 366 days: an extra day, february 29th. the requirements for a given year to be a leap year are: 1) the year must be divisible by 42) if the year is a century year (1700, 1800, the year must be evenly divisible by 400some example leap years are 1600, 1712, and 2016.write a program that takes in a year and determines whether that year is a leap year.ex: if the input is 1712, the output is: 1712 is a leap year. ex: if the input is 1913, the output is: 1913 is not a leap year. your program must define and call the function isleapyear(useryear). the function should return true if the input year is a leap year and false otherwise.
Answers: 1
question
Computers and Technology, 22.06.2019 20:00
How is the number 372 written when expanded out to place values in the base 8 (octal) number system? a. 2 x 4 + 3 x 2 + 4 x 1 b. 3 x 64 + 7 x 8 + 2 x 1 c. 3 x 8 + 7 x 7 + 2 x 6 d. 3 x 100 + 7 x 10 + 2 x 1
Answers: 1
question
Computers and Technology, 23.06.2019 01:20
Write a function balancechemical to balance chemical reactions by solving a linear set of equations. the inputs arguments are: reagents: symbols of reagents in string row array products: symbols of products in string row array elements: elements in the reaction in string row array elcmpreag: elemental composition of reactants in two dimensional numeric array elcmpprdcts: elemental composition of prducts in two dimensional numeric array hint: the first part of the problem is setting up the set of linear equations that should be solve. the second part of the problem is to find the integers from the solution. one way to do this is to mulitiply the rational basis for the nullspace by increasing larger integers until both the left-and right-side integers exist. for example, for the reaction that involves reacting with to produce and : reagents=["ch4", "o2"]; products =["co2", "h2o"]; elements =["c","h", "o"] elcmpreag=[1,4,0;
Answers: 3
You know the right answer?
(Data Analysis) Einstein’s theory of Brownian motion connects microscopic properties (eg, radius, di...
Questions
question
Mathematics, 15.07.2019 04:30
Questions on the website: 13722363