Penetrating the Rectangular Potential Barrier, E < V0

Click For Summary
SUMMARY

The discussion focuses on calculating the transmission ratio, T, for a rectangular potential barrier where the energy E is less than the potential height V0. The correct formula for T is given as T = C*C/A*A, with TSoln representing the known solution and TChip representing the user's attempt. The user’s Octave code reveals discrepancies in concavity between their solution and the known solution, indicating a need for further analysis and collaboration to resolve the algebraic complexities involved.

PREREQUISITES
  • Understanding of quantum mechanics, specifically potential barriers
  • Familiarity with the concept of transmission ratios in quantum physics
  • Proficiency in Octave programming for numerical analysis
  • Knowledge of hyperbolic functions and their application in wave mechanics
NEXT STEPS
  • Review the derivation of the transmission ratio for rectangular potential barriers
  • Learn about the implications of negative and positive concavity in solutions
  • Explore advanced Octave functions for solving complex algebraic problems
  • Collaborate with peers to troubleshoot and validate quantum mechanics calculations
USEFUL FOR

Students and researchers in quantum mechanics, physicists working on potential barriers, and anyone interested in numerical methods for solving complex algebraic equations in physics.

Chip
Messages
30
Reaction score
1

Homework Statement


Rectangular barrier of width a and height V0 with an E < V0. What is the transmission ratio, T?

Homework Equations


T = C*C/A*A
What am I missing in my attempted solution (variable name = TChip), which is different from the known solution (variable name = TSoln)?

The Attempt at a Solution


(shown in the Octave code below...note the actual solution has a negative concavity, whereas my solution has a positive concavity, but seems to be in the vicinity of the correct solution...this can be seen by running the Octave code).

****

%I wrote this to check my work thus far on solving the GIANT algebra problem of penetrating the rectangular barrier, where E < V0
clear;close;clc;
% setting some constants

hbar = 1.0545718*10^(-34);
m = 9.10938356 * 10^(-31);
a = 10^-20; %cab be purely arbitrary

V0 = 100; %cab be purely arbitrary
inc = 10;
E = inc:inc:(V0-inc);

%wavenumber formulas
k1 = (sqrt(2*m*E))/hbar;
k2 = (sqrt(2*m*(V0-E)))/hbar;

%this section contains the solution
TSoln = (1 + (((sinh(k2*a)).^2)./((4*E/V0).*(1-E/V0)))).^(-1)

%this section contains my work thus far

iVal = i*k2/k1;
BLABLA1 = ( 1 - ((1-iVal).*(e.^(-2*k2*a) )./(1+iVal) ) ) + iVal.* (1 + ((1-iVal).*(e.^(-2*k2*a) )./(1+iVal)));
BLABLA2 = ( 1 - ((1+iVal).*(e.^(2*k2*a) )./(1-iVal) ) ) - iVal.* (1 + ((1+iVal).*(e.^(2*k2*a) )./(1-iVal)));

C = (e.^(-i*k1*a)).* ((e.^(-k2*a)./ ( BLABLA1 ) ) + (e.^(k2*a)./ ( BLABLA2 )));
TChip = 4*(C.*conj(C))

plot (E, [TSoln;TChip]);[/B]
 
Last edited:
Well, maybe I just need to work side my side with someone on this. I just can't seem to get to the answer..
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
8K
  • · Replies 13 ·
Replies
13
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
2
Views
4K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K