-
Notifications
You must be signed in to change notification settings - Fork 2
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 #3 from tmorrell/master
Code preservation in CaltechDATA
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"@context": "https://doi.org/10.5063/schema/codemeta-2.0", | ||
"@type": "SoftwareSourceCode", | ||
"codeRepository": "https://github.com/everthemore/krylov-cpp", | ||
"name": "Time-evolution of a wavefunction using a Krylov subspace expansion", | ||
"license": "https://spdx.org/licenses/GPL-3.0-or-later.html", | ||
"version": "1.0", | ||
"authors": [ | ||
{ | ||
"nameType": "Personal", | ||
"name": "Van Nieuwenburg, Evert", | ||
"givenName": "Evert", | ||
"familyName": "Van Nieuwenburg", | ||
"nameIdentifiers": [ | ||
{ | ||
"nameIdentifier": "https://orcid.org/0000-0003-0323-0031", | ||
"schemeUri": "https://orcid.org", | ||
"nameIdentifierScheme": "ORCID" | ||
} | ||
], | ||
"affiliation": "Caltech" | ||
} | ||
], | ||
"description": "This code implements a Krylov-subspace expansion method for time-evolving a wavefunction, and is parallelized using openMP. The current release uses re-orthogonalized Lanczos to build the orthonormal set of basis vectors from the Krylov-subspace.", | ||
"keywords": [ | ||
"Many-body localization", | ||
"Spin-chain", | ||
"Imbalance" | ||
], | ||
"developmentStatus": "active", | ||
"downloadUrl": "https://github.com/everthemore/krylov-cpp/archive/v1.0.zip" | ||
} |