StudentShare
Contact Us
Sign In / Sign Up for FREE
Search
Go to advanced search...
Free

Computational Exercise 3 : Cyclotron motion - Lab Report Example

Cite this document
Summary
Write down the equation for the magnitude of the centripetal force. Set these two equations equal to each other, and solve for the radius. (1pt)
5 After you get the code working (you can ask…
Download full paper File format: .doc, available for editing
GRAB THE BEST PAPER99% of users find it useful
Computational Exercise 3 : Cyclotron motion
Read Text Preview

Extract of sample "Computational Exercise 3 : Cyclotron motion"

Computational Exercise 3 Worksheet: Cyclotron motion What is cyclotron motion? (1pt) A charged particle is moving in the magnetic field with velocity. It moves in a circle at the end 2 Why does a charged particle moving in a direction perpendicular to a magnetic field move in a circle? (1pt)Taking the equation of, the cross product between will produce a perpendicular force for the magnetic field. 3 What is the force from the magnetic field on a charged particle moving parallel to a magnetic field?

What is the force on a charged stationary particle in a magnetic field? (1pt)forces on charged stationary particles will be 4 Write down the magnitude of the Lorentz force for a particle in a magnetic field. Write down the equation for the magnitude of the centripetal force. Set these two equations equal to each other, and solve for the radius. (1pt)5 After you get the code working (you can ask your instructor for guidance), save a screenshot which includes the particle trajectory. Try changing the charge strength, particle mass, and field strength one at a time.

Do these results agree with the equation you derived for the radius? Try it out and discuss what happened. Note: If the particle is much less massive, the code may stop working—decreasing the time step may help. Save a screenshot after making these changes. (2pts).Changing the charge strength, particle mass, and field strength gives results that agree with the equation derived. Increasing the charge strength, particle mass, and field strength one at a time resulted in a smaller radius while decreasing the charge strength, particle mass, and field strength one at a time resulted in a larger radius.

6 What happens if the particle is initially moving in the opposite direction? (1pt)If the particle is initially moving in the opposite direction, it will experience a force upwards. 7 Is it possible for the particle to travel such that it is un-deflected? If so, explain how and change the code to show that this is possible. What did you change? Save a screenshot. (3pts)It is possible for the particle to travel such that it is un-deflected. This is achieved by retaining the current magnetic field change and not changing it.

The scale was changed on the given Code. Introduction:(6pts)In this lab, we were simulating the motion of the charged particle. Cyclotron motion is an occurrence where a charged particle is moving in the magnetic field with velocity. It moves in a circle at the end. The charge strength, particle mass, and field strength could be changed. A similar experiment performed by J. J. Thomson in 1897 to measure the charge-to-mass ratio of the electron with incredible accuracy. In this experiment, a gas sample was introduced into the region existing between the charged plates and the flow of current was observed.

Thompson was able to prove that the cathode rays were produced from the cathode as a stream of negatively charged particles called electrons. He was able to determine the charge-to-mass ratio of the electron. Data sheets:Data sheet 1# charge moving in a magnetic field#from visual import *# set up scene for visualizationscene = display(width = 1024,height = 768, x=100, y=100, background = color.white, range=(1,1,1) )# designate visibility parameter 1 = Truearrowvis = 1# set position parametersxmax = .

5dx = xmax/5.# set up a set of locations to represent the B fieldgrid = []for x in arange(-xmax, xmax+dx, dx): grid.append(curve(pos=[(x,0,-xmax),(x,0,xmax)], color=(.6,.6,.6)))for z in arange(-xmax, xmax+dx, dx): grid.append(curve(pos=[(-xmax,0,z),(xmax,0,z)],color=(.6,.6,.6)))# set up B field representationB0 = vector(0,0.5,0)bfield=[]bscale = (xmax/3.)/mag(B0)for x in arange(-xmax, xmax+dx, 2*dx): for z in arange(-xmax, xmax+dx, 2*dx): bfield.append(arrow(pos=(x,0,z), axis=B0*bscale, color=(0,.8,.8)))## set up particle: place it inside or outside area of uniform B and designate charge## there are several cases to try:## (For example)## Outside: pos=(0.

75*xmax,dx,2*xmax), charge positive## Inside: pos=(-xmax/2.,dx,xmax/2.), charge positive## Outside: pos=(-0.75*xmax, dx ,2*xmax), charge negative## Inside: pos=(xmax/2.,dx, xmax/2. ), charge negative # Outside: pos=(xmax/2.,dx, 2*xmax - 3*dx), charge negative particle = sphere(pos=(xmax/2.,dx, 2*xmax - 3*dx), mass = 1.7e-27, charge= -1.6e-19, v = vector(0,1.e6,-1e7), color=(0,0,1), radius = dx/8, make_trail=True)# initial momentumparticle.

p = particle.mass*particle.v# set up an arrow to show force on the particlefarrow = arrow(pos=particle.pos, axis=(0,0,0), color=(0.6,0.6,0.6))# scale and visualize arrowfscale = 1.e11farrow.visible = arrowvis# set up an arrow to show velocity on the particlevarrow = arrow(pos=particle.pos, axis=(0,0,0), color=color.green)# scale and visualize arrowvscale = 1e-8varrow.visible = arrowvis# timedt = (xmax/(mag(particle.p)/particle.mass))/1000.scene.mouse.getclick()t = 0.# dynamics loop - motion of particle through B field# constrain motion to area of interestwhile particle.pos.z < xmax + 3.

1*dx and particle.pos.y < xmax: rate(500) # set up B field in a specific location and nowhere else if -xmax < particle.x < xmax and -xmax < particle.z < xmax: B = ### PHYSICS else: B = ### PHYSICS #### PHYSICS HERE ### # caculate velocity # calculate force # calculate momentum # calculate position #### PHYSICS HERE ### # update position and dimension of arrow farrow.pos = particle.pos farrow.axis = F*fscale varrow.pos = particle.

pos varrow.axis = particle.v*vscale #### update time ### Data sheet 2fscale=1.e11farrow.visible=arrowvis# set up arrow to show velocity on the particle varrow = arrow(pos= particle.pos, axis = (0,0,0), color=color.green) # scale and visualize arrowarrowvis = 1vscale=1e-8varrowcisible=arrowvis# timedt=(xmax/(mag(particle.p)/particle.mass))/1000scene.mouse.getclick()t=0# dynamic loop-motion of particle through B field #constrain motion to area of interest While particle.position.z

Read More
Cite this document
  • APA
  • MLA
  • CHICAGO
(“Computational Exercise 3 : Cyclotron motion Lab Report”, n.d.)
Computational Exercise 3 : Cyclotron motion Lab Report. Retrieved from https://studentshare.org/physics/1690644-computational-exercise-3-cyclotron-motion
(Computational Exercise 3 : Cyclotron Motion Lab Report)
Computational Exercise 3 : Cyclotron Motion Lab Report. https://studentshare.org/physics/1690644-computational-exercise-3-cyclotron-motion.
“Computational Exercise 3 : Cyclotron Motion Lab Report”, n.d. https://studentshare.org/physics/1690644-computational-exercise-3-cyclotron-motion.
  • Cited: 0 times

CHECK THESE SAMPLES OF Computational Exercise 3 : Cyclotron motion

Computational Fluid Dynamics

e have learned that the physics which governs fluids is relatively simple; the laws of motion and thermodynamics.... This essay "computational Fluid Dynamics" is about the need to control and predict the movement of fluids.... hellip; Since IT has a massive role in the current globalization process engineers have devised systems called the CFD or computational fluid dynamics.... computational Fluid Dynamics (CFD) uses current IT to solve these problems using the fundamental of physics....
8 Pages (2000 words) Essay

Financial Analysis Exercises and Questions

he author does exercise on expanded accounting equation, balance sheet preparation, income statement preparation, cash flow computations, retained earnings computations, cash flow classifications.... Running head: FINANCIAL ANALYSIS EXERCISES AND QUESTIONS Financial Analysis Questions and Exercises of University/Institution] Practice 2-14 Expanded Accounting Equation Assets Liabilities Capital Stock Retained Earnings Case A $20,000 $ 8,000 $ 8,500 $ 3,500 Case B $16,000 $ 9,000 $ 5,000 2,000 Case C $57,000 11,000 14,000 32,000 Case D 46,000 30,000 20,000 ($4000) exercise 2-6 Balance Sheet Preparation Simon Company Balance Sheet as on December 31, 2006 Assets Liabilities and Owners' Equity Cash $ 179,750 Liabilities Accounts receivable 123,000 Accounts payable $62,500 Supplies 3,750 Mortgage payable 479,500 Land 130,000 Building 418,500 Owners' equity* 313,000 Total assets $855,000 Total liabilities and owners' equity $855,000 *Owners' equity (01/01/06) $210,000 Less: Distributions to owners during 2006 $(21,750) Add: Net Income $124,750 Owners' equity (12/31/06) $313,000 exercise 2-8 Income Statement Preparation Beckstrom Corporation Income Statement For the Year Ended December 31, 2006 Revenues $ 384,000 Less: Expenses Advertising expense 15,000 Supplies expense 46,000 Rent expense 10,000 Utilities expense 3,000 Salaries expense 61,000 Miscellaneous expenses 4,400 Income before tax 244,600 Less: Tax (30%) 73,380 Net income $171,220 exercise 2-9 Cash Flow Computations 1....
2 Pages (500 words) Essay

Pricing derivatives using Monte Carlo Techniques

In practice generic Monte Carlo pricing engines face computational problems in the presence of discontinuous payoffs options, because of above stated time consumption limitation but also due to poor convergence with its finite difference estimates and brute force perturbation.... Monte Carlo simulation has been identified as an important computer run statistical technique for setting up prices of complex derivative products....
4 Pages (1000 words) Essay

Computational Phylogenetic

Copy/Paste UMUC BIOT630 Lecture 7 exercise – “Due Version” MOBYLE Portal url = http mobyle.... Keep all program parameters set to default.... Copy/Paste the distance matrix as your answer. Using the corresponding distance matrix generated as your… Keep all program parameters set to default except for the parameter you will need to change to run “UPGMA” instead of “Neighbor-joining”....
2 Pages (500 words) Essay

The Basic Principles of Positron Emission Tomography

In order to produce such a compound, a facility must be near or posses a cyclotron.... Hydrogen ions are created in the center of the cyclotron and accelerated between the two D shaped... Positron emission tomography (PET) is a nuclear medication imaging method that generates a three-dimensional representation or image of functional development in the body....
5 Pages (1250 words) Essay

Social Computing as an Intersection of Computational Systems and Social Behavior

The paper "Social Computing as an Intersection of computational Systems and Social Behavior" gives detailed information about social computing as one of the areas of computer science.... nbsp;Social technology refers to various technologies that support social activities.... hellip; Social computing is beneficial to organizations as it helps in the motivation and empowerment of the employees hence enabling them to work towards the success of the business....
14 Pages (3500 words) Assignment

Computational Fluid Dynamic

computational fluid Dynamics (CFD) can be described as the art of replacing existing PDE systems with a set of algebraic equations which can be solved using digital computers.... computational fluid Dynamics (CFD) usually provides a qualitative prediction of the fluid flow by the… CFD enables engineers and scientists to perform numerical environments in virtual flow laboratories.... computational fluid Dynamics (CFD) has a wide range of uses in the engineering It can be used by architects to produce 3D models of their buildings, by engineers to model the production of their outputs and also by designers to improve the aerodynamics of the cars....
11 Pages (2750 words) Assignment

Computational Fluid Dynamics: The Basics with Applications

The author of the paper "computational Fluid Dynamics: The Basics with Applications" will begin with the statement that in any computational Fluid Dynamics simulation, the graphic representation is determined by the governing equation for the physical phenomenon....
9 Pages (2250 words) Assignment
sponsored ads
We use cookies to create the best experience for you. Keep on browsing if you are OK with that, or find out how to manage cookies.
Contact Us