Schrödinger equation: Difference between revisions

From mywiki
Jump to navigation Jump to search
Line 23: Line 23:
===Homework===
===Homework===
* [https://chem.libretexts.org/Bookshelves/Physical_and_Theoretical_Chemistry_Textbook_Maps/Physical_Chemistry_(LibreTexts)/09%3A_Chemical_Bonding_in_Diatomic_Molecules/9.01%3A_The_Born-Oppenheimer_Approximation_Simplifies_the_Schrodinger_Equation_for_Molecules Exercise Parameters Answered]
* [https://chem.libretexts.org/Bookshelves/Physical_and_Theoretical_Chemistry_Textbook_Maps/Physical_Chemistry_(LibreTexts)/09%3A_Chemical_Bonding_in_Diatomic_Molecules/9.01%3A_The_Born-Oppenheimer_Approximation_Simplifies_the_Schrodinger_Equation_for_Molecules Exercise Parameters Answered]
* [https://chem.libretexts.org/Bookshelves/Physical_and_Theoretical_Chemistry_Textbook_Maps/Physical_Chemistry_(LibreTexts)/32%3A_Math_Chapters P-Chem Math]

Revision as of 18:49, 18 February 2023


EditDate 2023/02/18

Related Threads:

I want to incorporate the Schrödinger equation into my visualizations.

Hope to better understand the Schrödinger equation and improve the visualizations.

I am finding a correlation between fractals and Mandelbrot states and quantum Eigenvalues due to the shared use of complex numbers.

Is the square root of -1 hiding what we can't perceive but is there?Web References https://en.wikipedia.org/wiki/Schr%C3%B6dinger equation

Torn between Bounce and black light.

Schrödinger equation For Multi-Electron Atoms

Want to incorporate this equation:

H^=−ℏ22me(∇21+∇22)+V(r1)+V(r2)+V(r12)

Variable assignment:

let r1 = Math.sqrt(key.x1^2 + key.y1^2);
let r2 = Math.sqrt(key.x2^2 + key.y2^2);
let me = key.maxFreq * key.maxAmp;
let e = eigenfunction;

Homework