Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
184_projects:f20_project_4 [2020/08/20 18:58] – created dmcpadden | 184_projects:f20_project_4 [2020/09/26 19:30] (current) – dmcpadden | ||
---|---|---|---|
Line 1: | Line 1: | ||
===== Project 4 ===== | ===== Project 4 ===== | ||
- | ==== Project 4A: Mini-Particle Accelerator | + | ==== Project 4A: Maverick' |
- | S.P.A.R.T.A.N force, still trapped in the town of Lakeview, has been sent as part of a larger governmental team to work on developing a micro-particle accelerator | + | Outside of the town of Lakeview work is being completed |
- | + | ||
- | == Part 1: == | + | |
- | The first bit of code that you have received is from the previous team who were able to construct | + | |
- | + | ||
- | < | + | |
- | GlowScript 2.7 VPython | + | |
- | #Set up constants | + | |
- | R = 0.02 | + | |
- | r_obs = 0.05 | + | |
- | + | ||
- | Q = 1e-9 | + | |
- | N = 20 | + | |
- | dq = Q/N | + | |
- | + | ||
- | scale=1e-4 | + | |
- | oofpez = 9e9 #1/(4pi epsilon_0) in N m^2/C^2 | + | |
- | + | ||
- | # | + | |
- | myring = ring(pos = vector(0, | + | |
- | + | ||
- | #Create an empty list for the charges | + | |
- | ChargeList=[] | + | |
- | + | ||
- | #Set up the step size and angle for creating the charges | + | |
- | dtheta = 2*pi/N | + | |
- | theta = dtheta/2 | + | |
- | + | ||
- | #Create charges | + | |
- | while theta < 2*pi: | + | |
- | rpiece = R*vector(cos(theta), | + | |
- | + | ||
- | particle = sphere(pos = rpiece, radius = R/20, color = color.yellow) | + | |
- | ChargeList.append(particle) | + | |
- | + | ||
- | theta = theta + dtheta | + | |
- | + | ||
- | #Create an empty list for the observation points | + | |
- | ObsList = [] | + | |
- | + | ||
- | #Set up the step size and angle for creating | + | |
- | phi = 0 | + | |
- | dphi = pi/4 | + | |
- | + | ||
- | #Create charges in a circle and add them to the ObsList | + | |
- | while phi < 2*pi: | + | |
- | r_obs_piece = r_obs*vector(cos(phi), | + | |
- | + | ||
- | obs_particle = sphere(pos = r_obs_piece, radius = R/20, color = color.red) | + | |
- | + | ||
- | ObsList.append(obs_particle) | + | |
- | + | ||
- | phi = phi + dphi | + | |
- | + | ||
- | #Find the electric field at each observation point | + | |
- | for obs_point | + | |
- | + | ||
- | for charge in ChargeList: | + | |
- | Enet=vec(0,0,0) | + | |
- | </ | + | |
- | + | ||
- | == Part 2 == | + | |
- | + | ||
- | After you got this initial code working, your team was able to construct | + | |
< | < | ||
Line 129: | Line 66: | ||
</ | </ | ||
+ | <WRAP info> | ||
+ | === Learning Goals === | ||
+ | * Explain what a " | ||
+ | * Explain what a " | ||
+ | * Explain how a surface charge gradient creates a constant electric field | ||
+ | </ | ||
+ | |||
+ | ==== Project 4B: Maverick and JPL ==== | ||
+ | |||
+ | {{184_notes: | ||
+ | |||
+ | Outside of the town of Lakeview work is being completed on the Artemis 13 spacecraft. Another engineering and science task force titled T.R.O.J.A.N force are working with The Jet Propulsion Laboratory (JPL) Division of NASA testing a new and highly experimental spacecraft capable of in atmosphere flight as well as outer orbit maneuvering (Artemis 13). Lieutenant Pete " | ||
+ | {{ 184_notes: | ||
+ | |||
+ | Maverick is convinced that the time between when the problem happens and when the warning light comes on is way too long, and this delay in relaying the warning to him could lead to a very problematic incident in the future. He does not want to lose another co-pilot like Goose. You have been given the task of explaining to Maverick why this could not be the case, and your boss, Clint Howard, has given you the following circuit diagram to try and aid you in your explanation to Maverick. | ||
+ | |||
+ | Maverick likes numbers, so part of your explanation should also include a calculation of the amount of time it takes the light to come on when the length of the wire in the circuit between the stabilizer control module switch and the warning light in the cockpit is 5.2m distance. He should also understand what the electric field looks like in this circuit, and why it means that his original presumptions about the warning light " | ||
+ | |||
+ | <WRAP info> | ||
+ | === Learning Goals === | ||
+ | * Explain what happens to the surface charges and electric field in a circuit when wires are initially connected. | ||
+ | * Explain why current starts to flow almost instantaneously (or rather why a lightbulb turns on immediately after to flip the switch). | ||
+ | * Explain why a lightbulb would not turn on if it were only connected to the positive end of the battery. | ||
+ | * Explain the role of the battery in lighting up the lightbulb. | ||
+ | </ | ||
+ | |||
+ | ==== Project 4C: Maverick and the Crossed Wires ==== | ||
+ | {{ 184_notes: | ||
+ | Maverick has been sufficiently convinced that the warning light cannot possibly take too long. Good job! In the meantime, his inspection of the wires has revealed a slight inconsistency in the circuit. It appears that half of the wiring is made from a 12-gauge copper wire and half is made from an 18-gauge copper wire. Maverick is worried about the affect this will have on the circuit. He has asked your team to report the effects of the different sized wires on the electric field, the surface charges, and the current in the wires. | ||
+ | |||
+ | <WRAP info> | ||
+ | === Learning Goals === | ||
+ | * Explain what happens to the current in a circuit with different sized wires | ||
+ | * Explain what happens to the electric field in a circuit with different sized wires | ||
+ | * Explain what happens to the surface charge gradient in a circuit with different sized wires | ||
+ | * Explain how the current, electric field, and surface charge gradient are related | ||
+ | </ |