1 |
# Input file for gengetopt --generates cmdline.c and cmdline.h |
2 |
# for parsing command line arguments useing getopt and getoptlong. |
3 |
# gengetopt is available from: |
4 |
# http://www.gnu.org/software/gengetopt/gengetopt.html |
5 |
# invoke with: |
6 |
# gengetopt < Hydro.ggo --file-name=HydroCmd --unamed-opts |
7 |
|
8 |
package "Hydro" |
9 |
version "1.0" |
10 |
purpose |
11 |
" |
12 |
+--------------------------------------------------------------------------+ |
13 |
| ____ __ ___ ____ | |
14 |
| / __ \\____ ___ ____ / |/ // __ \\ The Open Molecular Dynamics | |
15 |
| / / / / __ \\/ _ \\/ __ \\ / /|_/ // / / / Engine (formerly OOPSE). | |
16 |
| / /_/ / /_/ / __/ / / // / / // /_/ / | |
17 |
| \\____/ .___/\\___/_/ /_//_/ /_//_____/ Copyright 2004-2013 by the | |
18 |
| /_/ University of Notre Dame. | |
19 |
| | |
20 |
| http://www.openmd.net | |
21 |
| | |
22 |
| OpenMD is an OpenScience project. All source code is available for | |
23 |
| any use whatsoever under a BSD-style license. | |
24 |
| | |
25 |
| Support OpenScience! If you use OpenMD or its source code in your | |
26 |
| research, please cite the appropriate papers when you publish your | |
27 |
| work. Good starting points are: | |
28 |
| | |
29 |
| [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). | |
30 |
| [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). | |
31 |
| [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008). | |
32 |
| [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). | |
33 |
| [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). | |
34 |
| [6] Kuang & Gezelter, Mol. Phys., 110, 691-701 (2012). | |
35 |
+--------------------------------------------------------------------------+" |
36 |
|
37 |
# Options |
38 |
option "input" i "input MetaData (md) file" string typestr="filename" yes |
39 |
option "output" o "output file prefix" string default="hydro" no |
40 |
option "model" - "hydrodynamics model (supports RoughShell and BeadModel)" string yes |
41 |
option "beads" b "generate the beads only, hydrodynamics will be performed" flag off |