<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nstandish3</id>
	<title>Physics Book - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nstandish3"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Nstandish3"/>
	<updated>2026-04-11T04:28:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12275</id>
		<title>VPython Functions</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12275"/>
		<updated>2015-12-04T18:41:04Z</updated>

		<summary type="html">&lt;p&gt;Nstandish3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Created by Natalie Standish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The main idea of this page is to serve as an aid for future physics students in writing python code during lab. Python, especially for students who are not very experienced with coding, can be a little confusing and sometimes stressful. This page should help give students the information that they would have to look up outside of the lab instructions but all in one place so that they can focus on the physics aspect of the course and not take too much time worrying about the coding in lab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Starting Out===&lt;br /&gt;
&lt;br /&gt;
These are the first two lines of code that you should put into every one of the codes we have in this class:&lt;br /&gt;
&lt;br /&gt;
from __future__ import division&lt;br /&gt;
&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Making Basic Objects==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Vectors===&lt;br /&gt;
vector = vector(x,y,z)&lt;br /&gt;
===Spheres===&lt;br /&gt;
sphere = sphere(pos=POS, color=color.COLOR, radius=RADIUS )&lt;br /&gt;
POS: a vector giving the sphere location&lt;br /&gt;
COLOR: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
RADIUS: The radius of the sphere (usually given by the lab instructions)&lt;br /&gt;
===Arrows===&lt;br /&gt;
arrow = arrow(pos=POS, axis=AXIS color=color.COLOR)&lt;br /&gt;
POS: where the head of the arrow is to be placed&lt;br /&gt;
AXIS: the line that we want the axis to go along (generally some position - * position)&lt;br /&gt;
COLOR: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
VPython is an important tool in PHYS 2211 and PHYS 2212 because it is able to take a very abstract concept and give a visual explanation to the student. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
Phython colors: http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
n?&lt;/div&gt;</summary>
		<author><name>Nstandish3</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12248</id>
		<title>VPython Functions</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12248"/>
		<updated>2015-12-04T18:28:39Z</updated>

		<summary type="html">&lt;p&gt;Nstandish3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;VPython Functions&lt;br /&gt;
&lt;br /&gt;
Created by Natalie Standish&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The main idea of this page is to serve as an aid for future physics students in writing python code during lab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Starting Out===&lt;br /&gt;
&lt;br /&gt;
These are the first two lines of code that you should put into every one of the codes we have in this class:&lt;br /&gt;
&lt;br /&gt;
from __future__ import division&lt;br /&gt;
&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Making Basic Objects==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Vectors===&lt;br /&gt;
vector = vector(x,y,z)&lt;br /&gt;
===Spheres===&lt;br /&gt;
sphere = sphere(pos=POS, color=color.COLOR, radius=RADIUS )&lt;br /&gt;
POS: a vector giving the sphere location&lt;br /&gt;
COLOR: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
RADIUS: The radius of the sphere (usually given by the lab instructions)&lt;br /&gt;
===Arrows===&lt;br /&gt;
arrow = arrow(pos=POS, axis=AXIS color=color.COLOR)&lt;br /&gt;
POS: where the head of the arrow is to be placed&lt;br /&gt;
AXIS: the line that we want the axis to go along (generally some position - * position)&lt;br /&gt;
COLOR: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
VPython is an important tool in PHYS 2211 and PHYS 2212 because it is able to take a very abstract concept and give a visual explanation to the student. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
Phython colors: http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
n?&lt;/div&gt;</summary>
		<author><name>Nstandish3</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12213</id>
		<title>VPython Functions</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12213"/>
		<updated>2015-12-04T18:08:13Z</updated>

		<summary type="html">&lt;p&gt;Nstandish3: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;VPython Functions&lt;br /&gt;
&lt;br /&gt;
Created by Natalie Standish&lt;br /&gt;
&lt;br /&gt;
Short Description of Topic&lt;br /&gt;
&lt;br /&gt;
==The Main Idea==&lt;br /&gt;
&lt;br /&gt;
The main idea of this page is to serve as an aid for future physics students in writing python code during lab.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Starting Out===&lt;br /&gt;
&lt;br /&gt;
These are the first two lines of code that you should put into every one of the codes we have in this class:&lt;br /&gt;
&lt;br /&gt;
from __future__ import division&lt;br /&gt;
from visual import *&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Making Basic Objects==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Vectors===&lt;br /&gt;
vector = vector(x,y,z)&lt;br /&gt;
===Spheres===&lt;br /&gt;
sphere = sphere(pos=*, color=color.**, radius = *** )&lt;br /&gt;
*: a vector giving the sphere location&lt;br /&gt;
**: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
***: The radius of the sphere (usually given by the lab instructions)&lt;br /&gt;
===Arrows===&lt;br /&gt;
arrow = arrow(pos=*, axis=** color=color.***)&lt;br /&gt;
*: where the head of the arrow is to be placed&lt;br /&gt;
**: the line that we want the axis to go along (generally some position - * position)&lt;br /&gt;
***: Options can be found on http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Connectedness==&lt;br /&gt;
VPython is an important tool in PHYS 2211 and PHYS 2212 because it is able to take a very abstract concept and give a visual explanation to the student. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
Are there related topics or categories in this wiki resource for the curious reader to explore?  How does this topic fit into that context?&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
&lt;br /&gt;
Books, Articles or other print media on this topic&lt;br /&gt;
&lt;br /&gt;
===External links===&lt;br /&gt;
Phython colors: http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
This section contains the the references you used while writing this page&lt;br /&gt;
http://matplotlib.org/examples/color/named_colors.html&lt;br /&gt;
&lt;br /&gt;
[[Category:Which Category did you place this in?]]&lt;br /&gt;
n?&lt;/div&gt;</summary>
		<author><name>Nstandish3</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12075</id>
		<title>VPython Functions</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=VPython_Functions&amp;diff=12075"/>
		<updated>2015-12-04T17:26:02Z</updated>

		<summary type="html">&lt;p&gt;Nstandish3: Created page with &amp;quot;VPython Functions  Created by Natalie Standish&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;VPython Functions&lt;br /&gt;
&lt;br /&gt;
Created by Natalie Standish&lt;/div&gt;</summary>
		<author><name>Nstandish3</name></author>
	</entry>
</feed>