-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
.. _announcement: | ||
|
||
***************** | ||
RAD-tools splits! | ||
***************** | ||
|
||
**DATE: 11.12.2023** | ||
|
||
Part of the RAD-tools package is separated into a standalone package called | ||
`WULFRIC <https://wulfric.org>`_. | ||
The functionality connected with Crystal, Lattice, Atom, Kpoints is moved into WULFRIC. | ||
|
||
At the moment the source code of RAD-tools is not changed, but in the future | ||
moved part is going to be removed from it and replaced with the dependency on WULFRIC. | ||
|
||
The reason for this change is that the functionality of Crystal, Lattice, Atom, Kpoints is | ||
useful not only for the RAD-tools, but also for other packages. | ||
|
||
If you are using RAD-tools only with scripts, you do not need to change anything. | ||
|
||
Below is the comparison table, which guides the transition if you are using RAD-tools as | ||
a Python package. | ||
|
||
+---------------------------------------+---------------------------------------+ | ||
| RAD-tools | WULFRIC | | ||
+=======================================+=======================================+ | ||
| import radtools as rad | import wulfric as wulf | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import Crystal | from wulfric import Crystal | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import Lattice | from wulfric import Lattice | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import Atom | from wulfric import Atom | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import Kpoints | from wulfric import Kpoints | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import print_2d_array | from wulfric import print_2d_array | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools import lattice_examples | from wulfric import lattice_examples | | ||
+---------------------------------------+---------------------------------------+ | ||
| from radtools PlotlyBackend | from wulfric PlotlyBackend | | ||
+---------------------------------------+---------------------------------------+ | ||
|
||
This table is not full, but it should give you an idea how to change your code. |
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
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