Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
parser-asap
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nomad-lab
parser-asap
Commits
a1a8105b
Commit
a1a8105b
authored
Sep 29, 2016
by
Mikkel Strange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix inverse units of forces
parent
9191538d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
parser/parser-asap/parser_asap.py
parser/parser-asap/parser_asap.py
+2
-2
No files found.
parser/parser-asap/parser_asap.py
View file @
a1a8105b
...
...
@@ -87,10 +87,10 @@ def parse(filename):
c
(
f
.
get_total_energy
(),
'eV'
))
p
.
addArrayValues
(
'atom_forces'
,
c
(
f
.
get_forces
(),
'
angstrom/eV
'
))
'
eV/angstrom
'
))
p
.
addArrayValues
(
'atom_forces_raw'
,
c
(
f
.
get_forces
(
apply_constraint
=
False
),
'
angstrom/eV
'
))
'
eV/angstrom
'
))
with
o
(
p
,
'section_sampling_method'
):
p
.
addValue
(
'ensemble_type'
,
'NVE'
)
p
.
finishedParsingSession
(
"ParseSuccess"
,
None
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment