-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ricardoribeiro-2020/v0.3
V0.3
- Loading branch information
Showing
26 changed files
with
841 additions
and
104 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
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
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
""" | ||
This program calculates the anomalous velocity from the Berry curvature | ||
""" | ||
|
||
import sys | ||
import time | ||
|
||
import numpy as np | ||
import joblib | ||
|
||
# This are the subroutines and functions | ||
from contatempo import tempo, inter_time | ||
from headerfooter import header, footer | ||
import loaddata as d | ||
|
||
# pylint: disable=C0103 | ||
################################################################################### | ||
if __name__ == "__main__": | ||
header("ANAOMALOUS VELOCITY", d.version, time.asctime()) | ||
|
||
STARTTIME = time.time() # Starts counting time | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
##################################################################################r | ||
# Finished | ||
footer(tempo(STARTTIME, time.time())) | ||
|
Oops, something went wrong.