I had the pleasure of taking shots for the closing ceremony movie at ISFIT 2013. The shot's where taken by a GoPro Hero3 strapped to my quad. Movie below, my 5 seconds of fame starts at 6:00
ISFiT 2013 from ISFiT on Vimeo.
I had the pleasure of taking shots for the closing ceremony movie at ISFIT 2013. The shot's where taken by a GoPro Hero3 strapped to my quad. Movie below, my 5 seconds of fame starts at 6:00
ISFiT 2013 from ISFiT on Vimeo.
M = 401; % number of space nodes
h = 1/(M+1); % space step size
T = 40000; % number of timesteps
t = 0.0000005; % time step size
%U0 = 1-abs(linspace(-1,1,M)); % initial data
U0 = (2+2*sin(linspace(0,6*pi,M))).*(1-abs(linspace(-1,1,M))); % initial data
G1 = sin(linspace(0,2*pi,T));
GM = G1;
r = t/h^2;
U = zeros(M,T);
U(:,1) = U0;
n = M;
e = ones(n,1);
A = spdiags([e, -2*e, e], -1:1, n, n);
lkern = eye(M) + (r/2)*A;
rkern = eye(M) - (r/2)*A;
%for y=1:100
U(:,1) = U0;
for i=1:T-1
U(:,i+1) = rkern\(lkern*U(:,i));
U(1,i+1) = G1(i+1);
U(M,i+1) = GM(i+1);
end
%end
downscale = 1000;
Y = zeros(M,T/downscale);
for i=1:T/downscale;
Y(:,i) = U(:,downscale*i);
end
tx = linspace(0,1,M);
tt = linspace(0,t*T,T/downscale);
hold off
mesh(tt,tx,Y);
%contour(U)
ylabel('space');
xlabel('time');
My quad before it's first takeoff.[/caption]