t7morgen
commited on
Commit
•
a2ec139
1
Parent(s):
5b4850d
exe update
Browse files- GFN2all_crd.cpp +1 -1
- GFN2all_crd_update1.exe +1 -1
- __pycache__/run_gfn.cpython-310.pyc +0 -0
- app.py +6 -5
- run_gfn.py +1 -1
GFN2all_crd.cpp
CHANGED
@@ -67,7 +67,7 @@ int main(int argc, char** argv) {
|
|
67 |
std::cout << "T electron = " << Telec << std::endl;
|
68 |
|
69 |
//allocate molecules
|
70 |
-
Molecule Mol1(argv[1],charge,1,"C1");
|
71 |
|
72 |
//define method and basis set
|
73 |
BSet basis(Mol1,"gfn2");
|
|
|
67 |
std::cout << "T electron = " << Telec << std::endl;
|
68 |
|
69 |
//allocate molecules
|
70 |
+
Molecule Mol1(argv[1],charge,1,"C1", false);
|
71 |
|
72 |
//define method and basis set
|
73 |
BSet basis(Mol1,"gfn2");
|
GFN2all_crd_update1.exe
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 6962680
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5afba0b6ca086dc43f079f883a940ade6614a3db0be1c7a8878c41818659ffc1
|
3 |
size 6962680
|
__pycache__/run_gfn.cpython-310.pyc
CHANGED
Binary files a/__pycache__/run_gfn.cpython-310.pyc and b/__pycache__/run_gfn.cpython-310.pyc differ
|
|
app.py
CHANGED
@@ -106,12 +106,13 @@ def get_feature_visualization(input_f,input_format, features, xyz):
|
|
106 |
view = py3Dmol.view(width=620, height=620, viewergrid=(2,2))
|
107 |
view.setBackgroundColor('white')
|
108 |
view.addModel(input_f, input_format, viewer=(0,0))
|
109 |
-
|
110 |
-
|
|
|
111 |
view.setStyle({'stick': {'colorscheme': {'prop': 'resi', 'C': '#cccccc'}}}, viewer=(0,0))
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
print('features', features)
|
116 |
add_spheres_feature_view(view, features["fetchatomicprops"]["charges"], xyz, (0,1), 1.0, '#4c4e9e')
|
117 |
add_spheres_feature_view(view, features["fetchatomicprops"]["polarisabilities"], xyz, (1,0), 1.0, '#809BAC')
|
|
|
106 |
view = py3Dmol.view(width=620, height=620, viewergrid=(2,2))
|
107 |
view.setBackgroundColor('white')
|
108 |
view.addModel(input_f, input_format, viewer=(0,0))
|
109 |
+
view.addModel(input_f, input_format, viewer=(0,1))
|
110 |
+
view.addModel(input_f, input_format, viewer=(1,0))
|
111 |
+
view.addModel(input_f, input_format, viewer=(1,0))
|
112 |
view.setStyle({'stick': {'colorscheme': {'prop': 'resi', 'C': '#cccccc'}}}, viewer=(0,0))
|
113 |
+
view.setStyle({'stick': {'colorscheme': {'prop': 'resi', 'C': '#cccccc'}}}, viewer=(0,1))
|
114 |
+
view.setStyle({'stick': {'colorscheme': {'prop': 'resi', 'C': '#cccccc'}}}, viewer=(1,0))
|
115 |
+
view.setStyle({'stick': {'colorscheme': {'prop': 'resi', 'C': '#cccccc'}}}, viewer=(0,1))
|
116 |
print('features', features)
|
117 |
add_spheres_feature_view(view, features["fetchatomicprops"]["charges"], xyz, (0,1), 1.0, '#4c4e9e')
|
118 |
add_spheres_feature_view(view, features["fetchatomicprops"]["polarisabilities"], xyz, (1,0), 1.0, '#809BAC')
|
run_gfn.py
CHANGED
@@ -23,7 +23,7 @@ def ReadXYZ(filename):
|
|
23 |
|
24 |
def run_gfn2(argv):
|
25 |
#arguments and give them default values
|
26 |
-
exe = "./
|
27 |
geometryfile = ""
|
28 |
charge = "0"
|
29 |
Telec = "300"
|
|
|
23 |
|
24 |
def run_gfn2(argv):
|
25 |
#arguments and give them default values
|
26 |
+
exe = "./GFN2all_crd_update1.exe"
|
27 |
geometryfile = ""
|
28 |
charge = "0"
|
29 |
Telec = "300"
|