Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files |
| #if input_model.molecule.fix_com or input_model.molecule.fix_orientation: | ||
| # keywords["SYM_IGNORE"] = "TRUE" |
Check notice
Code scanning / CodeQL
Commented-out code
| #if input_model.driver == 'energy': | ||
| # print (cclib.__version__) | ||
| # print (output_data) |
Check notice
Code scanning / CodeQL
Commented-out code
| """ | ||
|
|
||
| import os | ||
| import re |
Check notice
Code scanning / CodeQL
Unused import
|
|
||
| import os | ||
| import re | ||
| import tempfile |
Check notice
Code scanning / CodeQL
Unused import
| import os | ||
| import re | ||
| import tempfile | ||
| import warnings |
Check notice
Code scanning / CodeQL
Unused import
| data = cclib.io.ccread(tmp_output_file) | ||
| cclib_vars = data.getattributes(True) | ||
|
|
||
| last_occupied_energy = data.moenergies[0][data.homos[0]] |
Check notice
Code scanning / CodeQL
Unused local variable
|
|
||
| provenance = Provenance(creator="Gaussian", version=self.get_version(), routine='g09').dict() | ||
|
|
||
| stdout = outfiles.pop('stdout') |
Check notice
Code scanning / CodeQL
Unused local variable
| provenance = Provenance(creator="Gaussian", version=self.get_version(), routine='g09').dict() | ||
|
|
||
| stdout = outfiles.pop('stdout') | ||
| stderr = outfiles.pop('stderr') |
Check notice
Code scanning / CodeQL
Unused local variable
| #print("\nPRINT STDOUT: \n", stdout) | ||
|
|
||
|
|
||
| method = input_model.model.method.lower() |
Check notice
Code scanning / CodeQL
Unused local variable
|
I think |
| output_data['success'] = True | ||
| #print ('output_data: ', output_data) | ||
|
|
||
| provenance = Provenance(creator="gaussian", version=self.get_version(), routine='g09').dict() |
Check notice
Code scanning / CodeQL
Unused local variable
loriab
left a comment
There was a problem hiding this comment.
Thanks for working on this! Here's some initial queries.
| #if input_model.molecule.fix_com or input_model.molecule.fix_orientation: | ||
| # keywords["SYM_IGNORE"] = "TRUE" | ||
| if 'SCF_CONVERGENCE' in keywords: | ||
| gaussian_kw.append('SCF=' + keywords["SCF_CONVERGENCE"]) |
There was a problem hiding this comment.
Where is the name "SCF_CONVERGENCE" coming from? QCNG tends to want the same keyword names in AtIn.keywords as the experience user would use in the program natively. Is Conver=N on https://gaussian.com/scf/ ("Options" tab) what you're targeting?
Description
This is the implementation of Gaussian software into QCEngine