Question 11 Incomplete answer Marked out of 30.00 A particle with charge q= 6 nC, located at the position (5x10-3,0,0) m
Posted: Sun May 22, 2022 7:49 am
Question 11 Incomplete answer Marked out of 30.00 A particle with charge q= 6 nC, located at the position (5x10-3,0,0) m, creates an electric field around it. Find the electric field at locations (1x10 3,0,0) m and (0,1x10-3,0)m. Complete a VPython program to calculate the electric field of one charge at two observation locations, create and scale an arrow to represent the electric field at a particular observation locations. Notes: Make sure that you pay attention on correct spelling, capital or small letter cases. Use scientific notation like (5el0) and make sure that you don't use space when completing the code lines. Ex.-no space:F=mu*Fn: space: F = mu * Fn. from visual import* P Flag question k=9e9 q= sf=1.e-9 charge=sphere(pos=vector ,0,0),radius=5e-4, color=color.red) obsl=vector 0,0) obs2=vector(0, ,0) rl= r2= rrl=arrow(pos=charge.pos,axis-r1,shaftwidth= 2*charge.radius,color=color.red) rr2=arrow(pos=charge.pos,axis=r2,shaftwidth= 2*charge.radius,color=color.red) E1=k*q* mag(rl)**2 E2=k*q* mag(r2)**2 Earrowl-arrow(pos= axis *E1,color=color.yellow) Earrow2=arrow(pos=obs2,axis=sf*E2,color=color.yellow)