-
Notifications
You must be signed in to change notification settings - Fork 2
/
codemeta.json
32 lines (32 loc) · 1.17 KB
/
codemeta.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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"
}