Skip to content
Snippets Groups Projects
Commit 2fca6114 authored by Valentin Bruch's avatar Valentin Bruch
Browse files

changed definition of compact; implemented compact = 2

Old compact==2 is now compact==1. New compact==2 uses more symmetries.
parent 4233c294
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,6 @@ Module defining class SymRGfunction for the special symmetric case of driving
fulfilling V(t + T/2) = - V(t) with T = 2π/Ω = driving period.
See also: rtrg.py
TODO: This file has not been tested after the rest of the Kondo module was rewritten!
"""
from rtrg import *
......
......@@ -175,7 +175,7 @@ class KondoExport:
results['ac_current_phase'] = np.angle(self.kondo.gammaL[nmax-1, nmax])
except:
pass
elif self.kondo.compact == 2:
elif self.kondo.compact:
results['dc_current'] = 0
if nmax % 2:
try:
......
This diff is collapsed.
......@@ -86,7 +86,7 @@ class GlobalFlags:
BASEPATH = os.path.abspath("data"),
DB_CONNECTION_STRING = "sqlite:///" + os.path.join(os.path.abspath("data"), "frtrg.sqlite"),
FILENAME = "frtrg-04.h5",
VERSION = (14,5,-1,-1),
VERSION = (14,6,-1,-1),
MIN_VERSION = (14,0),
LOG_TIME = 10, # in s
ENFORCE_SYMMETRIC = 0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment