Eötvös Quantum Utilities  v4.9.146
Providing the Horsepowers in the Quantum Realm
CreateHamiltonians_Keldysh.m
Go to the documentation of this file.
1 %% Eotvos Quantum Transport Utilities - Lead_Keldysh
2 % Copyright (C) 2009-2018 Peter Rakyta, Ph.D.
3 %
4 % This program is free software: you can redistribute it and/or modify
5 % it under the terms of the GNU General Public License as published by
6 % the Free Software Foundation, either version 3 of the License, or
7 % (at your option) any later version.
8 %
9 % This program is distributed in the hope that it will be useful,
10 % but WITHOUT ANY WARRANTY; without even the implied warranty of
11 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 % GNU General Public License for more details.
13 %
14 % You should have received a copy of the GNU General Public License
15 % along with this program. If not, see http://www.gnu.org/licenses/.
16 %
17 %> @addtogroup basic Basic Functionalities
18 %> @{
20 %> @brief A class to handle the Hamiltonian of the central region in Keldysh formalism.
21 %> @}
22 %> @brief A class to handle the Hamiltonian of the central region in Keldysh formalism.
23 %> @Available
24 %> EQuUs v4.9 or later
25 %%
27 
28 
29 properties ( Access = protected )
30 
31 end
32 
33 
34 
35 methods ( Access = public )
36 
37 %% constructorof the class
38 %> @brief Constructor of the class.
39 %> @param Opt An instance of the structure Opt.
40 %> @param param An instance of structure param.
41 %> @param varargin Cell array of optional parameters. For details see #InputParsing.
42 %> @return An instance of the class
43 function obj = CreateHamiltonians_Keldysh(Opt, param, varargin)
44  obj = obj@CreateHamiltonians( Opt, param, varargin{:} );
45 end
46 
47 
48 
49 end % end of public methods
50 
51 
52 
53 end
Structure Opt contains the basic computational parameters used in EQuUs.
Definition: structures.m:60
function Transport(Energy, B)
Calculates the conductance at a given energy value.
A class to calculate the Keldysh lesser and greater Green functions and self energies of a translatio...
Definition: Lead_Keldysh.m:29
Structure param contains data structures describing the physical parameters of the scattering center ...
Definition: structures.m:45
A class to handle the Hamiltonian of the central region in Keldysh formalism.
A class to create and store Hamiltonian of the scattering region.