1... heavy air
2 points
What is the weight of Earth's atmosphere? What percentage of weight does it make up? For the purposes of this problem you know only the mass of the Earth
Hint: It is a simple task. We don't want a perfect solution but a qualified estimation.
2... bubbles
2 points
Determine the difference in surface energy of a spherical bubble and a bubble n the shape of a regular tetrahedron. Both shapes have the same inner volume
3... we're going to bend
4 points
Trains, as it is commonly known, don't have a differential and so when they go through a turn the wheels must turn with the same angular velocity. Now assume that the wheels have a cylindrical shape. Thus when going through a turn one wheel has to go a longer path than the other. The axis will have torsion applied on it and in a certain moment the frictional force between the wheel and railway rail won't be large enough and one wheel will slip and the tension on the axis will fall to 0. Determine the distance the individual slippages between depending on the radius of
Hint: For torsion of the
4... fast and beautiful
4 points
Teresa was approaching with a relativistic speed
Bonus: It isn't a plane mirror but a spherical one
5... spherically symmetrical chickens in a vacuum
5 points
Into a container of volume
P... whistle me something
5 points
Explain the principle upon which whistling with your mouth works. Consider first simple models and gradually transfer to more complicated ones. Then Choose the best and on their basis determine the range within which the base frequency can be.(If you know how to whistle you can determine the accuracy of your estimate.)
E... sneakers on water
8 points
Measure the coefficient of static and dynamic friction between the sneaker (shoe) and a horizontal smooth surface, where the surface is dry and where it is wet. Compare the results and interpret.
Instructions for Experimental TasksS... numerical
6 points
- Look at the equations of the Lorenz model and write a script to simulate them in Octave (maybe even refresh your knowledge of the second part of series). Together with the sketching command your script should have the following form: ...
function xidot = f(t,xi)
...
xdot=...;
ydot=...;
zdot= ...;
xidot = [xdot;ydot;zdot];
endfunction
config = odeset('InitialStep', 0.01,'MaxStep',0.1);
initialCondition=[0.2,0.3,0.4];
solution=ode45(@f,[0,300],initialCondition,config);
plot3(solution.y(:,1),solution.y(:,2),solution.y(:,3)); </pre> Just instead of three dots fill in the rest of the code (just as in the second part of the series) and use
- Here is the full text of the Octave script for simulating and visualising the movement of a particle in a gravitational field of a massive object in the plane
, where all the constants and parameters are equal to one: clear all
pkg load odepkg
function xidot = f(t,xi)
alfa=0.1;
vx=xi(3);
vy=xi(4);
r=sqrt(xi(1)^2+xi(2)^2);
ax=-xi(1)/r^3;
ay=-xi(2)/r^3;
xidot = [vx;vy;ax;ay];
endfunction
config = odeset('InitialStep', 0.01,'MaxStep',0.1);
x0=0;
y0=1;
vx0=...;
vy0=0;
initialCondition=[x0,y0,vx0,vy0];
solution=ode45(@f,[0,100],initialCondition,config)
plot(solution.y(:,1),solution.y(:,2));
pause()</pre>
- Choose initial conditions
and and a nonzero initial velocity in the direction such that the particle will be bound (ie. it won't escape the center.) - Add to the gravitational force the following force
, where a small positive number. Choose gradually increasing beginning with and and show that they cause quasiperiodic movement.