-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
37f668e
commit 440dd48
Showing
116 changed files
with
19,421 additions
and
987 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 82a640d031c50ee26e7722f9c444344f | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
8 changes: 8 additions & 0 deletions
8
docs/_build/html/_downloads/1a62c028c9da69253548783ae8a76070/water_dimer.xyz
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,8 @@ | ||
6 | ||
|
||
O -1.61075942 0.14972207 0.00000000 | ||
O 1.27324620 -0.14984188 0.00000000 | ||
H -2.05173067 -0.71502154 0.00000000 | ||
H -0.65160034 -0.06225163 0.00000000 | ||
H 1.52042212 0.38869649 -0.77034720 | ||
H 1.52042212 0.38869649 0.77034720 |
13 changes: 13 additions & 0 deletions
13
docs/_build/html/_downloads/2a505c3581f7da7bf9082296ef7cb96f/frag_NH3BH3.py
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,13 @@ | ||
from tcutility.job import ADFFragmentJob | ||
from tcutility import molecule | ||
|
||
# load a molecule | ||
mol = molecule.load('NH3BH3.xyz') | ||
|
||
# define a new job using the Job context-manager | ||
with ADFFragmentJob() as job: | ||
# add the molecule | ||
job.molecule(mol) | ||
# add the fragments. The fragment atoms are defined in the input xyz file | ||
for fragment_name, fragment in molecule.guess_fragments(mol).items(): | ||
job.add_fragment(fragment, fragment_name) |
10 changes: 10 additions & 0 deletions
10
docs/_build/html/_downloads/4d6b7e579d62ed9e5d25258a67fecb73/NH3BH3.xyz
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,10 @@ | ||
8 | ||
|
||
N 0.00000000 0.00000000 -0.81474153 frag=Donor | ||
B -0.00000000 -0.00000000 0.83567034 frag=Acceptor | ||
H 0.47608351 -0.82460084 -1.14410295 frag=Donor | ||
H 0.47608351 0.82460084 -1.14410295 frag=Donor | ||
H -0.95216703 0.00000000 -1.14410295 frag=Donor | ||
H -0.58149793 1.00718395 1.13712667 frag=Acceptor | ||
H -0.58149793 -1.00718395 1.13712667 frag=Acceptor | ||
H 1.16299585 -0.00000000 1.13712667 frag=Acceptor |
19 changes: 19 additions & 0 deletions
19
docs/_build/html/_downloads/d1984d07233b61c9fa5986aed5cd64fb/GO_water_dimer.py
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,19 @@ | ||
from tcutility.job import ADFJob | ||
|
||
# define a new job using the Job context-manager | ||
with ADFJob() as job: | ||
# add the molecule | ||
job.molecule('water_dimer.xyz') | ||
|
||
# set the rundir and name of the job, they will | ||
# determine where the job will run | ||
job.rundir = 'calculations' | ||
job.name = 'GO_water_dimer' | ||
|
||
# set the ADF settings | ||
job.functional('BP86-D3(BJ)') | ||
job.basis_set('TZ2P') | ||
job.quality('Good') | ||
|
||
# set the job task | ||
job.optimization() |
Oops, something went wrong.