Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change status #132

Merged
merged 9 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/user_guide/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The calculation must be set:
from aiida.plugins import CalculationFactory
geomoptCalculation = CalculationFactory("janus.opt")
federicazanca marked this conversation as resolved.
Show resolved Hide resolved

In this case, since we are running a geometry optimisation, the entry point for the calculation is `janus.opt`. For a single point calculation, the entry point would be `janus.sp`.
In this case, since we are running a geometry optimisation, the entry point for the calculation is `mlip.opt`. For a single point calculation, the entry point would be `mlip.sp`.

Finally, run the calculation:

Expand Down Expand Up @@ -129,7 +129,7 @@ while `node` is the node of the calculation
Out : aiida.orm.nodes.process.calculation.calcjob.CalcJobNode

In : print(node)
Out: uuid: 1d46ad08-2ea7-4892-9dd6-0240b9aeda8b (pk: 1130) (aiida.calculations:janus.opt)
Out: uuid: 1d46ad08-2ea7-4892-9dd6-0240b9aeda8b (pk: 1130) (aiida.calculations:mlip.opt)


The calculation can also be interacted with through verdi cli. Use `verdi process list` to show the list of calculations.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Framework :: AiiDA"
]
keywords = ["aiida", "plugin"]
Expand All @@ -30,10 +30,10 @@ python = "^3.9"
aiida-core = "^2.5"
ase = "^3.22.1"
voluptuous = "^0.14"
janus-core = "^v0.4.0b0"
federicazanca marked this conversation as resolved.
Show resolved Hide resolved

[tool.poetry.group.dev.dependencies]
coverage = {extras = ["toml"], version = "^7.4.1"}
janus-core = "^v0.4.0b0"
pgtest = "^1.3.2"
pytest = "^8.0"
pytest-cov = "^4.1.0"
Expand Down