VPython basics

From Physics Book
Jump to navigation Jump to search

This is a beginning overview to vPython with some basic syntax and functions.

Installation or Online Use

Python can be rather difficult to install. However, you can use an online version in order to do all code online.

Online/ Glowscript

1. Go to [1]

2. Log into a Google account.

3. Click here in "You are signed in as [account name you select] and your programs are here."

4. Click the blue Create New Program.

Computer Installation

To install VPython simply follow the instructions in the links given below. After the installation is completed just open the VIDLE for Python (usually there is a shortcut created on your desktop) and start typing your code.

Windows

Install VPython here

OSX

Install VPython here

Linux

Install VPython here

Getting started with Python

Introduction to basic Python use

The first two lines of your program should be:

from __future__ import division
from visual import *

The first line enables float division, so 3 / 2 = 1.5 (not 1) and the second line enables graphics module to plot your 3D simulation.

When you reach the point where graphing is needed, you will need this line of code below the ones above:

from visual.graph import *

Variables

A variable is the name given to a chosen value. Variables can be manipulated, changed, or renamed within vPython.

Assigning Variables

x = 5 

This assigns the variable x the number 5. Note: The equal sign does not mean equal. Think of it more as an assignment.

Python allows allows you to redefine variables

y = 0

x = y 

In this case, we have taken the original x and assigned it the value from the variable y making the value of x equal to 0.

Increasing a Variable

Let's say you want x to increase by one after a certain line of code, to keep variables to a minimum. Python allows you do to so.

x = 2

x = x + 1 

x += 1


In this case, we have taken the original value of x and added one to it. If you call x again, its value will now be 3. The third method performs the exact same action as the second method. It just contains different syntax. This will be helpful in loops.

Creating VPython Objects

In VPython you can create an object with certain attributes (e.g. radius, position). You can store the information about that object in a variable. This way you can access a certain object using a variable it is stored in. Here are examples of some objects you can create and how to define them


variableName = ball( pos=vector(x_coordinate, y_coordinate, z_coordinate), radius = radius_measure, color = color.blue)


Note: There are different colors you can assign some of which are red, blue, magenta, cyan, yellow, and more.

myArrow = arrow(pos=vector(x_coordinate,y_coordinate,z_coordinate), axis=vector(x1_coordinate,y1_coordinate,z1_coordinate), color = color.color_of_the_arrow)

The axis refers to the more so thickness of the arrow. When coding, you can multiply this vector by a scalar value.

myVector = vector(x_coordinate,y_coordinate,z_coordinate)

Outside of objects, you can just create a vector numbers to be used later, such as making the force or velocity vector.


You can leave a path behind a moving object simply by specifying make_trail=True:

ball.make_trail = True

Each time you change (object).pos, this new position is added to a curve, thereby leaving a trail behind the moving sphere. This works with arrow, box, cone, cylinder, ellipsoid, pyramid, ring, and sphere.

Manipulating VPython values

  • Accessing attributes of the variable

To access the attribute of a given variable just use the syntax object.attribute (e.g. to access the position of the ball variable, you should do ball.pos)

  • Updating variable

To update a variable (such as time, speed, force or the position of the object) you should do variable = variable + updateIncrement

Running VPython code

To run VPython code simply press F5. While running your code you will see the visual module and a shell (a place where all print out information is displayed)

Loops

There are two types of loops that can be used in Python: for loop and while loop. Loops repeat the actions within them until a certain pre-determined point is reached.

In this course, only while loops are used, so you will not need to worry about for loops.

  • While loops

The body of a while loop is executed, while a certain condition is true. All the statements within the while loop are indented. While loop is equivalent to integration, because it manually breaks down the physical process into small parts and adds them up (see Iterative Prediction as a good example of the physical application of a while loop). While loop has the following structure:

while (condition):
the body of the while loop
updating the loop

Make sure that the while loop is followed by a colon: (:), or else your program will issue an error.

For example:

while t < 60:
  distance = distance + velocity * deltat
  t = t + deltat

Note:To animate, put rate(integerNumber). The higher the rate, the faster the animation. A good number to pick is rate(200). Note: All variables called within the while loop should be created first outside the original loop as it makes it a little easier to troubleshoot at times.

Comments

Comments in the code have no impact on the code execution, because they are just ignored by the computer. Comments in VPython start with a pound sign (#) and end when a line ends. It is a good practice to place some useful information (like an explanation to a certain step) in the comments, so other people will find it easier to understand your code. For example:

x = x + 1 # incrementing x variable

Useful built-in functions

Printing out information

  • print(value, variable)

Prints out the given value in the programming shell. An example is as follows print("x =", x)

The program will print x = and then the value of x from the code you have in the form of: (assuming x equals 5) x = 5 Or print("200")

This will just print the number 200.


The print function is useful in checking your math while coding!!

Math

Raises x to the y-th power.

  • x ** y

Computes normal addition

  • x + y

Computes normal subtraction

  • x - y

Computes multiplications

  • x * y

Computes divisions

  • x / y

Computes the remainder between two values

  • x % y

Note: You cannot multiply two vectors!! You can, however, multiply a vector by a scalar.


Vectors

Calculates the cross product of two vectors

  • cross(vectorA, vectorB)

Calculates the magnitude of the vector

  • mag(vector)

Calculates the unit vector of the vector

  • norm(vector)

Calculates the dot product of two vectors

  • dot(vector_1, vector_2)


The structure of VPython program

VPython reads linearly meaning that it reads down the lines as you type. Therefore, the following give you a good idea of how to begin your coding in terms for this class and physics in general.

1. Copy the from__future import division / from visual import*

2. Create and declare all variables. This includes any constants and any initial conditions. It's important to create your initial conditions before any loops.

3. Create objects. In VPython, you are creating 3D objects that will most likely move. Characteristics of the objects are most likely going to be updated; therefore, they need to be initialized.

4. Initialize a while loop. Once you have all your variables, write the condition of your while loop (condition being what you are working towards).

5. Begin updating the necessary variables and characteristics of objects. This will include things such as velocity, force, momentum, object positions, and etc.

6. Print any necessary pieces of data after the while loop or during, if needed.

This program uses a simple algorithm that produces an approximate motion of Earth around the Sun.

from __future__ import division
from visual import *

r=5.0
theta=0.0
dtheta=0.01
sun=sphere(color=color.yellow)
earth=sphere(pos=(r,0,0),color=color.blue)
t = 0
while t < 60:
    rate(20)
    theta=theta+dtheta
    x=r*cos(theta)
    y=r*sin(theta)
    earth.pos=(x,y,0)
    t = t + 0.1

https://trinket.io/embed/glowscript/c8bd5fcfea

Here is a longer, animated example if you follow the link above. It's a Glowscript trinket of a 3D spring.

Debugging techniques

Unfortunately, sometimes programs do not work in a way we intended them to work. Here are some tips to fixing your code.

  1. If you get an error try to see what the error is. The most common errors are with syntax and include forgetting a parentheses, using the wrong punctuation in coding lines,
  2. Make sure you are updating the variable on which your while loop is based upon. This could cause an infinite while loop if you never approach a terminating condition.
  3. Double check math. Check for imaginary number or dividing by zero.
  4. Make sure you have correct indentation everywhere. Remember that the code in the while loop needs to be indented. Python is space-dependent. If an indentation is off, then your whole code will be off.
  5. Put plenty of print() statements, so you can know what is going on throughout the code. Usually, put these after you are changing the values of variables.
  6. Check your mathematical expressions for the order of precedence (e.g. x / (y * z) is not equivalent to x / y * z). Try to fix by adding parenthesis on what needs to be done first.
  7. It's always a good idea to perhaps do coding in parts and check through the parts as you write the code to ensure not too many errors when approaching the end of coding.
  8. Always feel free to ask your TA for help!

For further information on debugging see VPython Common Errors and Troubleshooting.

Studying for Exams

Most exam questions will be based on coding similar to labs or coding having to deal with concepts that you've already covered in physics. One good way to prepare is to solve the problems with a set number of variables, then looking back and writing down the variables that change. Finally, create the objects and write the needed characteristics of these objects. The exam questions will not be perfectly similar to a lab or any previous question; however, if you practice coding outside of the lab, create other simulations, and understand how the basic syntax of VPython, things should turn out well.

Connectedness

How is this topic connected to something that you are interested in?

I enjoy coding and believe coding to be helpful in trying to visualize physics and the mathematics behind it, especially through vPython.

How is it connected to your major?

I'm a Computer Science major and am currently learning Python in another class. It's very rewarding to see your code be applied in a way that allows you or others to visualize data.

Is there an interesting industrial application?

VPython could be used to simulate different scenarios that can occur virtually.

History of Python

VPython was created by a man named Guido van Rossum. He graduated in 1982 with a master's degree in mathematics and computer science from the University of Amsterdam. Originally, the program was released in 1989The first open source version was released in 1991 and van Rossum had the following goals in mind: 1. It should be easy and intuitive, 2. It should be open sourced, which means anyone can contribute to its development on the language, 3. It should be easily understood like a language and suitable to be used for multiple purposes. He has been recognized by ACM in 2006 as a Distinguished Engineer. Sources: [4] [2]

See also

General Overview of VPython

VPython

External links

The official VPython website with the links to YouTube tutorials

Documentation

VPython User forum

[3]

References

This section contains the the references you used while writing this page

1. Python tutorial

2. VPython Wiki Site

3. GlowScript

4. Information on van Rossum [4]

5. More information of python development [5]