- /
-
Schrödinger Equation
on 17 Oct 2024
- 12
- 167
- 1
- 0
- 389
The X-Files theme song
drawframe(1);
Write your drawframe function below
% The Schrödinger equation is a partial differential equation that governs the wave function
% of a non-relativistic quantum-mechanical system. Its discovery was a significant landmark
% in the development of quantum mechanics. It is named after Erwin Schrödinger,
% who postulated the equation in 1925 and published it in 1926.
% Conceptually, the Schrödinger equation is the quantum counterpart
% of Newton's second law in classical mechanics.
% Given a set of known initial conditions, Newton's second law makes
% a mathematical prediction as to what path a given physical system will take over time.
% The Schrödinger equation gives the evolution over time of the wave function,
% the quantum-mechanical characterization of an isolated physical system.
% The equation was postulated by Schrödinger based on a postulate of
% Louis de Broglie that all matter has an associated matter wave.
% The equation predicted bound states of the atom in agreement with experimental observations
% Dhimas Mahardika S.Si., M.Mat
% from Sanggung Utara, Jatingaleh, Candisari
% Universitas Nasional Karangturi
% Universitas Diponegoro
function drawframe(f)
h = linspace(-3,3,96);
a=h(f)
t = linspace(-3,a);
m=2.71828
x1=((m.^t).^(-t)).*sin(10*t)
y1=t
z1=((m.^t).^(-t)).*cos(10*t)
x2=0.*t+2
y2=t
z2=((m.^t).^(-t)).*cos(10*t)
x3=((m.^t).^(-t)).*sin(10*t)
y3=t
z3=0.*t-2
x4=((m.^t).^(-t)).*sin(10*t)
y4=0.*t+3
z4=((m.^t).^(-t)).*cos(10*t)
plot3(x1,y1,z1,x2,y2,z2,x3,y3,z3,x4,y4,z4,'LineWidth',3,'Color',[1 0 0])
MeshDensity=5555
axis equal
axis([-2.1 2.1 -3 3 -2.1 2.1])
end