-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance green-kubo transport and refactor transport module (#97)
* update green-kubo transport and refactor transport module - `TransportAutoCorr` is renamed to `TransportKubo` and `ChargeTransport` is renamed to `ChargeDiffusionDynamics` for accuracy. - In `TransportKubo` the current operator are now automatically constructed from `MolList2`. - If Peielrs terms are present in the model `TransportKubo` will split the current operator into two parts and obtain 5 sets of autocorrelation functions in total. * rename `transport.py` in `example` * rename `ChargeTransport` in `./example/fmo.py` * fix several bugs
- Loading branch information
Showing
20 changed files
with
643 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Charge Transport | ||
************************************* | ||
|
||
charge diffusion simulation | ||
Obtain mobility by Green-Kubo formula | ||
=============================== | ||
.. automodule:: renormalizer.transport.kubo | ||
:members: | ||
|
||
Charge diffusion simulation dynamics | ||
=========================== | ||
.. automodule:: renormalizer.transport.transport | ||
.. automodule:: renormalizer.transport.dynamics | ||
:members: | ||
|
||
|
||
obtain mobility by Kubo formula | ||
=============================== | ||
.. automodule:: renormalizer.transport.autocorr | ||
:members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
# Author: Jiajun Ren <jiajunren0522@gmail.com> | ||
|
||
from renormalizer.transport.transport import ChargeTransport, InitElectron, EDGE_THRESHOLD | ||
from renormalizer.transport.autocorr import TransportAutoCorr | ||
from renormalizer.transport.kubo import TransportKubo | ||
from renormalizer.transport.dynamics import ChargeDiffusionDynamics, InitElectron, EDGE_THRESHOLD |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.