From 43ee9046257375898565453ebb7b98c72749b198 Mon Sep 17 00:00:00 2001 From: Thomas Morrell Date: Tue, 7 May 2019 15:16:38 -0400 Subject: [PATCH 1/2] Add files via upload --- codemeta.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 codemeta.json diff --git a/codemeta.json b/codemeta.json new file mode 100644 index 0000000..aadb2fb --- /dev/null +++ b/codemeta.json @@ -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" +} From bebfae9bb3e50ab5aeadd6a5b8aad16f9c81abc0 Mon Sep 17 00:00:00 2001 From: Thomas Morrell Date: Tue, 7 May 2019 12:17:33 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 416b407..68f2e35 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -## Under construction! +[![DOI](https://data.caltech.edu/badge/147138220.svg)](https://data.caltech.edu/badge/latestdoi/147138220) + +## krylov-cpp 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.