- /
-
Rotated Schrödinger Equation
on 18 Oct 2024
- 12
- 145
- 0
- 0
- 272
"Perfect" by Ed Sheeran
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)
t = linspace(0,2*pi,1000);
h = linspace(0,2*pi,96);
a=h(f)
m=30*(sin(0.5*t-0.5*a)).^2
n=(2.71828).^m
n1=1+n
n2=0.93./n1
x=cos(t)+n2.*cos(70*t).*cos(t)
y=sin(t)+n2.*cos(70*t).*sin(t)
z=n2.*sin(70*t)
plot3(x,y,z,'LineWidth',2,'Color',[0 0 0])
axis equal
axis([-1.7 1.7 -1.7 1.7 -0.7 0.7])
end