Skip to content

A study of the Haken, Strobl,Reineker model

License

Notifications You must be signed in to change notification settings

gharib85/HSRmodel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

HSRmodel

A study of the Haken, Strobl, Reineker model.

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Usage

Main function is hsrmodel() as found in hsrmodel.py.

Time evolution

First we create the coherent part based on equation.

equation

equation

equation

equation

Which results to:

for n in range(N):
    for m in range(N):
        idx1 = fidx(n,m,N)
        for q in range(N):
            idx2 = fidx(q,m,N)
            L[idx1][idx2] = L[idx1][idx2] -1j*J[abs(n-q)]
            idx2 = fidx(n,q,N)
            L[idx1][idx2] = L[idx1][idx2] +1j*J[abs(q-m)]

About

A study of the Haken, Strobl,Reineker model

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%