course_planning:184_projects:f18_project_3

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
course_planning:184_projects:f18_project_3 [2018/09/20 16:41] tallpaulcourse_planning:184_projects:f18_project_3 [2019/01/24 17:33] (current) tallpaul
Line 1: Line 1:
 ===== Project 3 ===== ===== Project 3 =====
 +==== Project 3A: Charge the Line ====
  
-==== Project 3A: StickyStuff and the Dust Particle ==== +You have become trapped in the town of LakeviewThe town and surrounding landscape are under constant barrage of stormsNot only are people being struck by lightning within the town but any vehicle or person trying to leave the city limits of Lakeview are instantly struck by lightningThe number of deaths due to lightning strikes in Lakeview in one week is larger than the amount the whole world has seen in the last yearsJo Harding, a  crazy local scientist who has had few run-ins with storms before has an idea of putting up giant metal T's, with the base of the T inserted into the ground to try and stop the townspeople from being struck with lightningJo wants the base of the T to be made of wood and the horizontal top of the to be a metal. Mayor Rachel Wando is up for reelection and is willing to listen to any ideas to stop the rising death toll but ever since the lightning storms started she has been in non-stop meetings in which electric fields are being constantly talked about and is becoming very concerned about what the electric fields would be like for these T-shaped objects. Rachel reaches out to her friends at the storm chaser HQ for a model of what the electric field will be for one of these T's after it has been struck by lightningThe code below is the beginnings of your teams work on modeling the electric field from the giant T.
-{{  183_projects:taperoller.png?500}} +
- +
-Adhesive tape is manufactured by repeatedly rolling and unrolling large sheets of plastic, which can cause there to be charge on the surface of the tapeWhy this important you may ask? Trapped in the town of Lakeview, S.P.A.R.T.A.N force has been called to the premises of StickyStuff CorporationStickyStuff Corp has been tasked with producing a special type of adhesive tape to be used on a new top-secret spacecraft called Artemis 13. Unfortunately, there has recently been a dust problem in the manufacturing plant. Dust particles (on average, $charge=0.802*10^{-14} C$, $m=5.5*10^{-8} g$) have been accumulating on the tape as it rolls through the assembly line. The problem has been isolated to a single rollerwhich operates for 10 seconds at time at power of 100 watts (where 1 watt = 1 J/s). Using your handy-dandy-super-extender tape measureyou find that exactly 30 m of tape passes over the roller during each 10 second time period. Your team needs to determine where to put a fan and how much force the fan needs to exert on each dust particle, such that the fan blows away any dust that may be attracted to the tape. The tape must be in excellent condition before being used on the spacecraftFrom your adhesive engineering education, you have access to a [[https://www.trifield.com/content/tribo-electric-series/|table]] that you think may help. +
- +
-(There's actually a pretty cool "How it's Made" video [[https://youtu.be/hr7yWWq5ZZs|here]] if you have time at the end.) +
- +
-<WRAP INFO> +
-=== Learning Goals === +
-  * Create an analytic model for a line of charge +
-  * Be able to explain how you set up each part of the integral, $dQ$, $r$, limits, etc. +
-  * Explain how you used superposition in your solution +
-  * Understand how surfaces become charged (particularly as an insulator in this case) +
-</WRAP> +
- +
-==== Project 3B: Better Thundercloud Model ==== +
-{{  184_projects:project4b.png?300}} +
-The storms over Lakeview have gotten worse, with an almost permanent pitch black cloud system hovering overhead. A new model for the thundercloud needs to be produced to obtain better understansding of how it is functioning. While they greatly appreciated the model you created last week for the Mapping N$\vec{E}$twork Sensory Array (MNSA), the data they are collecting from the sensors are simply not matching the model's predictions. They have concluded that modeling storm clouds as point charges was, in fact, problematic. Based on some research from the [[184_notes:lightning|National Weather Service]], it looks like better model for clouds would be two flat sheets of charge since the negative charges in the cloud collect on the bottom of the cloud and the positive charges collect near the top.  +
- +
-Given that the negative charge is much closer to the ground (and headquarters), the Lakeviewians want to prioritize what the Mapping N$\vec{E}$twork Sensory Array (MNSA) around HQ will show based on the bottom of the cloud. (If you have time though, they'd be interested in whether the top of the cloud has any effect.) They have shared their model of the bottom of the most recent storm cloud (which is thankfully fully functioning, well-commented code), but they are having trouble getting the electric field on the ground. The Lakeviewians have asked your team for your help completing the code   +
  
 <code> <code>
-#Set up of the objects +## Creating the scene for the code to run in 
-ground = box(pos = vec(0,0,0), width=5000, length=5000, height=0.1, color=color.green) +scene.range = 2
-mountains = [cone(pos=vec(-1800,0,0), axis=vec(0,1000,0), radius=700, color=vec(1,0.7,0.2)), +
-            cone(pos=vec(-1800,0,-1600), axis=vec(0,1000,0), radius=700, color=vec(1,0.7,0.2)),  +
-            cone(pos=vec(-1800,0,1600), axis=vec(0,1000,0), radius=700, color=vec(1,0.7,0.2))] +
-HQ = box(pos = vec(-100,100,0), width = 15, length = 15, height= 200, color = color.blue) +
-cloud = box(pos = vector(0,1000,0), size = vector(500, 1, 500), color = color.white)+
  
 +## Constants
 +TotalCharge = 15 #C
 +pointcharge = TotalCharge/7  
 +k = 9e9  
 +vscale = 1e-4
  
-#Lines 13-48 create a grid of spheres to represent the bottom of the cloud (this part of the code doesn't need be modified):+## Objects 
 +charge1 = sphere(pos=vec(-3,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge2 = sphere(pos=vec(-2,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge3 = sphere(pos=vec(-1,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge4 = sphere(pos=vec(0,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge5 = sphere(pos=vec(1,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge6 = sphere(pos=vec(2,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charge7 = sphere(pos=vec(3,0,0), Q=pointcharge,  color=color.red,  size=5e-1*vec(1,1,1)) 
 +charges = [charge1, charge2, charge3, charge4, charge5, charge6, charge7]
  
-#Define how many chunks to split the cloud in the x direction (define x size of the cloud grid+## Calculation Loop 1 
-nx 10 +E = vec(0,0,0
-#Define how many chunks to split the cloud in the z direction (define z size of the cloud grid+point vec(0,0,0
-nz 10+for c in charges: 
 +    r point - c.pos 
 +field = arrow(pos=point, axis=vscale*E, color = color.cyan)
  
-#Define where the cloud should start/stop in the x direction +## Calculation Loop 2 
-startx = -250 += -5 
-endx 250 +dx 0.5 
-#Define the spacing between each chunk in the x, based on where the cloud start/stops and how many chunks there are +xmax = 5 
-stepx = (endx - startx)/nx+while x<=xmax: 
 +    theta = 0 
 +    dtheta = 0.1 
 +    R = 0 
 +    while theta < 2*pi: 
 +        E = vec(0,0,0) 
 +        point vec(x, R*sin(theta), R*cos(theta)) 
 +        field = arrow(pos=point, axis = E*vscale, color = color.green) 
 +        theta += dtheta 
 +    x+=dx 
 +</code> 
 +Complete the program above to first represent the total electric field just to the right and left of the line of charges. Then,  calculate the total electric field surrounding the line of charges.
  
-#Define where the cloud should start/stop in the z direction +<WRAP info> 
-startz -250 +===Learning Goals=== 
-endz 250 +  * Understand what a list (or an array) does in the code and why you would want to use one 
-#Define the spacing between each chunk in the z, based on where the cloud start/stops and how many chunks there are +  * Understand how a "for" loop works and how it is similar/different from a "while" loop 
-stepz = (endz - startz)/nz+  * Make a model of a line of charge using point charges and be able to describe how you would improve your model 
 +  * Use superposition to calculate and visualize the electric field around a line of charge 
 +</WRAP> 
  
-#Create an empty list to store each cloud chunk +==== Project 3B: StickyStuff and the Dust Particle ==== 
-listOfCloudChunks []+{{  183_projects:taperoller.png?500}}
  
-#For each cloud chunk in the x-direction +Adhesive tape is manufactured by repeatedly rolling and unrolling large sheets of plasticwhich can cause there to be a charge on the surface of the tape. Why this important you may ask? Trapped in the town of Lakeview, S.P.A.R.T.A.N force has been called to the premises of StickyStuff Corporation. StickyStuff Corp has been tasked with producing a special type of adhesive tape to be used on a new top-secret spacecraft called Artemis 13. Unfortunately, there has recently been a dust problem in the manufacturing plant. Dust particles (on average, $charge=0.802*10^{-14} C$$m=5.5*10^{-8} g$have been accumulating on the tape as it rolls through the assembly line. The problem has been isolated to single roller, which operates for 10 seconds at a time at a power of 100 watts (where 1 watt 1 J/s). Using your handy-dandy-super-extender tape measureyou find that exactly 30 m of tape passes over the roller during each 10 second time period. Your team needs to determine where to put a fan and how much force the fan needs to exert on each dust particlesuch that the fan blows away any dust that may be attracted to the tape. The tape must be in excellent condition before being used on the spacecraft. From your adhesive engineering education, you have access to a [[https://www.trifield.com/content/tribo-electric-series/|table]] that you think may help.
-for i in range(0,nx): +
-     +
-    #Define the x-location of the cloud chunk +
-    xloc = startx + i*stepx +
-     +
-    #For each cloud chunk in the z-direction +
-    for j in range(0,nz)+
-         +
-        #Define the z-location of the cloud chunk +
-        zloc = startz + j*stepz +
-     +
-        #Make sphere at that x-z location +
-        cloudChunk = sphere(pos vector(xloc,1000,zloc), radius = 50color = color.red)+
  
-        #Add the sphere to the list of cloud chunks (so we can use it later) +(There's actually a pretty cool "How it's Made" video [[https://youtu.be/hr7yWWq5ZZs|here]] if you have time at the end.)
-        listOfCloudChunks.append(cloudChunk) +
- +
-#This part needs to be fixed and commented... +
-obsLocation = vector(0,0,0) +
-Enet = vector(0,0,0) +
- +
- +
-Q = -15 +
-dQ = Q/(nx*nz) +
-k = 9e9 +
- +
- +
-for chunk in listOfCloudChunks: +
-     +
-    Enet = vector(0,0,0) +
-</code>+
  
 <WRAP INFO> <WRAP INFO>
 === Learning Goals === === Learning Goals ===
-  * Visualize the electric field from 2D plane of charge +  * Create an analytic model for line of charge 
-  * Use multiple loops to create many observation points from many charges +  * Be able to explain how you set up each part of the integral, $dQ$, $r$, limits, etc. 
-  * Identify patterns in the electric fields between 1D, 2D, and 3D charge distributions +  * Explain how you used superposition in your solution 
-  * Compare/contrast process for a 2D charge distribution with a 1D charge distribution+  * Understand how surfaces become charged (particularly as an insulator in this case)
 </WRAP> </WRAP>
  
  • course_planning/184_projects/f18_project_3.1537461670.txt.gz
  • Last modified: 2018/09/20 16:41
  • by tallpaul