Skip to content

Commit

Permalink
Documentation build
Browse files Browse the repository at this point in the history
  • Loading branch information
YHordijk authored and github-actions[bot] committed Jan 30, 2024
1 parent 37f668e commit 440dd48
Show file tree
Hide file tree
Showing 116 changed files with 19,421 additions and 987 deletions.
Binary file modified docs/_build/doctrees/api/tcutility.analysis.vdd.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/api/tcutility.atom_data_info.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/api/tcutility.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/api/tcutility.job.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/api/tcutility.results.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file added docs/_build/doctrees/examples.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/index.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/tcutility.constants.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/tcutility.job.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/tcutility.results.doctree
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/_build/html/.buildinfo
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
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
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)
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
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()
Loading

0 comments on commit 440dd48

Please sign in to comment.