course_planning:183_projects:s23_week_3_geostationary_orbit

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:183_projects:s23_week_3_geostationary_orbit [2023/01/25 19:51] hallsteincourse_planning:183_projects:s23_week_3_geostationary_orbit [2023/10/18 01:20] (current) hallstein
Line 102: Line 102:
   * **Tutor Question:**  If you added in another body, what two forces would constitute the net force acting on the satellite?   * **Tutor Question:**  If you added in another body, what two forces would constitute the net force acting on the satellite?
   * **Expected Answer:**  $\vec{F}_{\rm net}=-GM_{1}m\hat{r}_{1}/r_{1}^{2}-GM_{2}m\hat{r}_{2}/r_{2}^{2}$   * **Expected Answer:**  $\vec{F}_{\rm net}=-GM_{1}m\hat{r}_{1}/r_{1}^{2}-GM_{2}m\hat{r}_{2}/r_{2}^{2}$
- 
-{{course_planning:geostationary_part_1_questions.png}} 
  
 </WRAP> </WRAP>
Line 143: Line 141:
  
 <WRAP tip> <WRAP tip>
-This programming problem requires students to put in the correct initial conditions from Tuesday, but also to model the gravitational force appropriately (i.e., translate the equation to code). This is tough for some groups because the vector calculations can be challenging.+This programming problem requires students to put in the correct initial conditions from Tuesday, but also to model the gravitational force appropriately (i.e., translate the equation to code). This is tough for some groups because vector calculations can be challenging.
  
 There's lots to play with once they get a working code. Ask them to demonstrate how they know it's circular. See what they come up with, but you can push them to think about plotting the separation between the Earth and the satellite. Make sure you have them test different time steps when they do that. You can have them check it works for an elliptical orbit.  There's lots to play with once they get a working code. Ask them to demonstrate how they know it's circular. See what they come up with, but you can push them to think about plotting the separation between the Earth and the satellite. Make sure you have them test different time steps when they do that. You can have them check it works for an elliptical orbit. 
Line 150: Line 148:
 </WRAP> </WRAP>
  
-First we want to input our radius of geostationary orbit and the necessary velocity, as well as any constants:+<WRAP tip> 
 +== Tutor Questions == 
 +  * **Question:** Can you sketch the satellite in its geostationary orbit about Earth?   Include the net force acting on the object and the separation vector. 
 +  * **Expected Answer:**... 
 +  * **Question:** Where does the separation vector point? From where to where?   
 +  * **Expected Answer:** It points from the center of Earth to the satellite. 
 +  * **Question:** In what direction does the net force vector acting on the satellite point?   
 +  * **Expected Answer:** The force points toward the center of Earth. 
 +   
 +  * **Question:** How are $\vec{r}$, $\left | \vec{r} \right |$ and $\hat{r}$ related? 
 +  * **Expected Answer:** $\vec{r} = \left | \vec{r} \right | \cdot \hat{r}$ 
 + 
 +</WRAP> 
 + 
 + 
 +We want to input our radius of geostationary orbit and the necessary velocity, as well as any constants:
 <code Python> <code Python>
 #Objects #Objects
Line 163: Line 176:
  
 Next, we want to incorporate the force due to gravity.  Change the given null vector to the required gravitational force: Next, we want to incorporate the force due to gravity.  Change the given null vector to the required gravitational force:
 +<WRAP tip>
 +== Tutor Question ==
 +  * **Question:** How can you enter the magnitude of a vector into the code?
 +  * **Expected Answer** In the notes and in the pre-class homework we used mag(), so we will try using mag(Satellite.pos) here for the magnitude of our separation vector.
 + </WRAP>
 +
 <code Python> <code Python>
 #Calculation Loop #Calculation Loop
Line 185: Line 204:
  
 <WRAP alert> <WRAP alert>
-The addition of the non-constant Newtonian force is challenging for students.  If the group is struggling to correctly model it, do not push them to add in a graph. Rather, focus on correctly completing the previous tasks and ask any remaining tutor questions.+The addition of the non-constant Newtonian force is challenging for students.  If the group is struggling to correctly model it, do not push them to add a graph. Rather, focus on correctly completing the previous tasks and ask any remaining tutor questions.
 </WRAP> </WRAP>
  
 <WRAP tip> <WRAP tip>
 ==Tutor Questions:== ==Tutor Questions:==
-  * **Question:**  How can you prove that the orbit is actually circular? +   * **Question:**  Can you simulate other trajectories with your program?
-  * **Expected Answer:**   +
-Aside from just eyeballing it, we can add in a graph of the distance from the center of Earth! (Moved to separate part C of the problem) +
-<code python> +
-#MotionMap/Graph +
-separationGraph = PhysGraph(numPlots=1) +
- +
-#Calculation Loop +
- separationGraph.plot(t,mag(Satellite.pos)) +
-</code> +
- +
-  * **Question:**  Can you simulate other trajectories with your program?+
   * **Expected Answer:**  We can change the initial conditions of radius and velocity to show this.   * **Expected Answer:**  We can change the initial conditions of radius and velocity to show this.
  
Line 210: Line 218:
   * **Expected Answer:**  It is the step in time that passes every loop of the calculation loop.  Increasing the time step makes for a "rougher" approximation to the real world phenomenon.   * **Expected Answer:**  It is the step in time that passes every loop of the calculation loop.  Increasing the time step makes for a "rougher" approximation to the real world phenomenon.
  
-{{course_planning:georobitconceptualq2.png}}+ * **Question:**  How can you prove that the orbit is actually circular? 
 +  * **Expected Answer:**  Aside from just eyeballing it, we can add in a graph of the distance from the center of Earth!  
 +Part C includes adding this graph: 
 + 
 +<code python> 
 +#MotionMap/Graph 
 +separationGraph = PhysGraph(numPlots=1) 
 + 
 +#Calculation Loop 
 + separationGraph.plot(t,mag(Satellite.pos)) 
 +</code>
  
 </WRAP> </WRAP>
Line 218: Line 236:
   * Groups should have developed a working code that models any gravitational orbit around the Earth and be able to explain what and how they did it.   * Groups should have developed a working code that models any gravitational orbit around the Earth and be able to explain what and how they did it.
  
-  * For groups that get through this part (it's tough for many groups), they should check that the orbit is circular and explain that and they should add arrows to represent different physical quantities (i.e., momentum of the satellite, etc.).+  * For groups that get through this part (it's tough for many groups), they should check that the orbit is circular and explain that and they should add arrows to represent different physical quantities (i.e., the momentum of the satellite, etc.).
 </WRAP> </WRAP>
  
Line 284: Line 302:
  
 Changes made to the given code: Changes made to the given code:
 +
 +{{course_planning:project_solutions:project_3_code_b.png}}
  
 ====== Project 3: Part C: Geostationary orbit ====== ====== Project 3: Part C: Geostationary orbit ======
Line 294: Line 314:
  
 Inside the while loop, add: graphExample.plot(t, mEarth) Inside the while loop, add: graphExample.plot(t, mEarth)
 +
 +<WRAP tip>
 +== Tutor Questions ==
 +  * **Question:** The plotted distance is varying with time.  Is this a concern?  WHy is this?
 +  * **Expected Answer:**  It is not a concern.  We inputted given values to a couple of significant figures and the variations are just a small fraction of the distance...
 +</WRAP>
 +
 +
  
 ====== Project 3: Part D: Geostationary orbit ====== ====== Project 3: Part D: Geostationary orbit ======
Line 299: Line 327:
 On a single graph, plot both the x-component of the satellite's momentum and the x-component of the net force acting on the satellite. On a single graph, plot both the x-component of the satellite's momentum and the x-component of the net force acting on the satellite.
  
 +<WRAP tip> 
 +== Tutor Questions == 
 +  * **Question:** Why does it seem as though the net force is zero? 
 +  * **Expected Answer:**  It looks that way because the size of the force plotted by Python is several orders of magnitude smaller than the size of the plotted momentum.  We fixed this by adding a scale and plotting the force in units of $10^4$ N 
 +  * **Question** From the plotted graph, what is the relationship between Fnet,x and p,x? 
 +  * **Expected Answer** When Fnet,x is at an extreme value, p,x is zero; when Fnet,x is zero, p,x is at an extreme value. 
 +</WRAP>
 Solution code for parts C and D Solution code for parts C and D
  
Line 366: Line 400:
 Modification of solution to part B to get |r| vs t, |Fnet| vs t and Fnet,x and P,x vs t: Modification of solution to part B to get |r| vs t, |Fnet| vs t and Fnet,x and P,x vs t:
  
 +{{course_planning:project_solutions:project_3_code_cd.png}}
  
  • course_planning/183_projects/s23_week_3_geostationary_orbit.1674676290.txt.gz
  • Last modified: 2023/01/25 19:51
  • by hallstein