Example Exercise
Assignment
What is the initial velocity of the projectile?
Note for teacher
In order for this exercise to make sense, you want to disable the textfields for the initial conditions input and output. In order to do this and to set up the initial conditions for this exercise, the following JavaScript code is executed upon loading of this web page:
function initialize() {
simulation.jsSetVisible("no","V0Box");
simulation.jsSetVisible("no","AlphaBox");
simulation.jsSetVisible("no","setup");
simulation.jsSetV0(40);
simulation.jsSetAlpha(38);
}