top of page

 You also can get a copy of the source code directly from GitHub: 

>> git clone https://github.com/AdemirCamargo57/gqteaMD.git

Installing gqteaMD-0.3.1.whl on Linux

 >> sudo dnf install python3.12
 >> mkdir gqteaMD
 >> cd gqteaMD
 >> python3.12 -m venv venv
 >> cd venv
 >> source ./bin/activate
 >> python3.12 -m pip install --upgrade pip
 >> python3.12 -m pip install numpy cclib
    Download gqteamd-0.3.1-none-any.tgz
 >> unzip gqteaMD-0.3.1-py3-none-any.tgz
 >> python -m pip install gqteaMD-0.3.1-py3-none-any.whl
 >> /home/username/gqteaMD/bin/gqteaMD --help

             usage: gqteaMD [-h] {run} ...

             positional arguments:
             {run}
                     Run a molecular dynamics simulation

             options:
            -h, --help  show this help message and exit

    This message shows that the program was installed correctly. To run a molecular dynamics calculation, you need an XYZ file format with the atomic coordinates and <tomlFileName>.toml. If you are going to use a drive force from Gaussian or xTB Grimme, you need to install it and include the path in the .toml file. To run, type: 
​    
  >>  /home/<username>/gqteaMD/venv/bin/gqteaMD run ./<filename>.toml
 The following <tomlFileName>.toml input file was created using the gqteaWingToga program available at  https://www.ademircamargo.com/projects

# gqteaMD input generated by gqteaWinToga

[input]
xyz = "water_box.xyz"

[cell]
a = 13.0
b = 13.0
c = 13.0

[dynamics]
timestep_fs = 0.3
steps = 1000

[force_provider]
type = "xtb"
command = "/home/ajc/xtb-dist/bin/xtb"
method = "GFN2-xTB"
charge = 0.0
multiplicity = 1
accuracy = 1.0
electronic_temperature = 300.0
max_iterations = 250
omp_num_threads = 4
solvent = "none"
cache_api = true
use_unwrapped_positions = true

[output]
trajectory = "TRAJEC.xyz"
log = "water_box_gqteaMD.log"
log_interval = 1

[restart]
path = "RESTART"
interval = 5
resume_from_RESTART = true
resume_from_GEOMETRY = false

​Example of an XYZ file format
 
34
comment
C                  0.74954487   -0.74178029   -4.56802717
C                  0.78237187    0.49400471   -3.65234017
C                  0.08941587    1.77489471   -4.17677217
C                  0.37398887   -0.01139429   -2.26580117
C                 -0.99482913   -0.38307629   -1.96281117
C                 -1.33467513   -0.65575829   -0.67032817
C                 -0.45611713   -0.59816729    0.43390883
C                 -0.80679213   -0.72847729    1.85191383
C                  0.13688487   -0.52290129    2.84706683
C                  1.49693387   -0.16615529    2.55607783
C                  1.80500287   -0.08386829    1.20743883
C                  0.93276987   -0.19430229    0.14422383
C                  1.26168287    0.03019971   -1.21693517
C                 -1.47499913   -0.91157729    4.67186583
H                  1.83162687    0.74040171   -3.64407317
H                 -0.79624213    1.58446771   -4.85009117
H                  0.79685487    2.39099171   -4.75649017
H                 -0.16241713    2.42974671   -3.33738817
H                 -1.69293413   -0.39295929   -2.80951017
H                 -2.34599413   -1.03131129   -0.40175417
H                 -1.87007187   -0.87065971    2.09526617
H                  2.22353387   -0.14611629    3.37792083
H                  2.83302987    0.14041671    0.95858583
H                  2.31050687    0.30991771   -1.44459717
H                 -1.27134613   -1.95463929    5.06050583
H                 -2.21345413   -0.95233029    3.90499483
H                 -1.65687713   -0.29733729    5.53416483
H                  2.13507587   -1.94772029   -5.34110117
O                 -0.22291413   -1.41058529   -4.95882917
O                 -0.22099813   -0.46891029    4.12046183
O                  2.09514687   -1.15629929   -4.70314617
O                  0.60456188    0.62958326  -12.02134270
H                  1.55758377    0.60988888  -12.13519089
H                  0.31248151    1.53859721  -11.92142932

 

© 2019 

bottom of page