-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun_some_examples.sh
executable file
·41 lines (37 loc) · 1.46 KB
/
run_some_examples.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
echo "EEM Pair of water molecules"
qcalc eem ffield_eem s66/2701_01WaterWater100.xyz
echo
echo "EEM Pair of water molecules, qtot=1"
qcalc eem ffield_eem s66/2701_01WaterWater100.xyz -q 1
echo
echo "EEM Pair of water molecules, ionize first water, qtot=0"
qcalc eem ffield_eem s66/2701_01WaterWater100.xyz --constrain s66/2701_01WaterWater100.constraints.txt
echo
echo "EEM Pair of water molecules, ionize first water, qtot=1"
qcalc eem ffield_eem s66/2701_01WaterWater100.xyz -q 1 --constrain s66/2701_01WaterWater100.constraints.txt
echo
echo "EEM Orthorhomic example"
qcalc eem ffield_eem cod_orthorhombic/2200807.xyz
echo
echo "EEM Triclinic example"
qcalc eem ffield_eem cod_triclinic/1508741.xyz
echo
echo '------------------'
echo "ACKS2 Pair of water molecules"
qcalc acks2 ffield_acks2 s66/2701_01WaterWater100.xyz
echo
echo "ACKS2 Pair of water molecules, qtot=1"
qcalc acks2 ffield_acks2 s66/2701_01WaterWater100.xyz -q 1
echo
echo "ACKS2 Pair of water molecules, ionize first water, qtot=0"
qcalc acks2 ffield_acks2 s66/2701_01WaterWater100.xyz --constrain s66/2701_01WaterWater100.constraints.txt
echo
echo "ACKS2 Pair of water molecules, ionize first water, qtot=1"
qcalc acks2 ffield_acks2 s66/2701_01WaterWater100.xyz -q 1 --constrain s66/2701_01WaterWater100.constraints.txt
echo
echo "ACKS2 Orthorhomic example"
qcalc acks2 ffield_acks2 cod_orthorhombic/2200807.xyz
echo
echo "ACKS2 Triclinic example"
qcalc acks2 ffield_acks2 cod_triclinic/1508741.xyz