You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ccs = isicle.mobility.calculate_ccs(dft2['geom'], lennard_jones='default', i2=5013489, buffer_gas='nitrogen', buffer_gas_mass=28.014, temp=300, ipr=1000, itn=10, inp=48, imp=1024, processes=1, command='mobcal')
Traceback (most recent call last):
File "", line 1, in
File "/home/oscar.macollunco/isicle/isicle/mobility.py", line 13, in calculate_ccs
return MobcalWrapper().run(geom, **kwargs)
File "/home/oscar.macollunco/isicle/isicle/mobility.py", line 151, in run
self.set_geometry(geom)
File "/home/oscar.macollunco/isicle/isicle/mobility.py", line 44, in set_geometry
self.save_geometry()
File "/home/oscar.macollunco/isicle/isicle/mobility.py", line 67, in save_geometry
isicle.io.save(self.infile, self.geom)
File "/home/oscar.macollunco/isicle/isicle/io.py", line 717, in save
return save_mfj(path, data)
File "/home/oscar.macollunco/isicle/isicle/io.py", line 571, in save_mfj
raise KeyError("DFT energy calculation required. " "See isicle.qm.dft.")
KeyError: 'DFT energy calculation required. See isicle.qm.dft.'
how can I correct this problem, there are how convert the dictionary dft2 to a object?
Any suggestions thanks
Samuel
The text was updated successfully, but these errors were encountered:
A change was pushed that inadvertently broke attribute propagation from a QM result (e.g. NWChem) to its geometry instance. In other words, after calling isicle.qm.dft, the resulting geometry should have attributes for energy, charge, etc., as requested in the configuration step.
This is currently running through continuous integration as a pull request (#31). Alternatively, you can checkout an earlier branch (before we began adding ORCA functionality) to revert to previous, pre-bug behavior (i.e. commit a69208e).
Note that we are working on refactoring how some of this functions, to decouple simulations from parsing. Reason being that a simulation may run successfully to completion, but any issues with the parser could cause a workflow management system (e.g. Snakemake, NextFlow) to purge simulation outputs. With these steps separated, the simulation can run to completion independent of the parsing operation. Stay tuned!
Hello isicle developers,
I try to calculate the CCS but I have the following errors:
when I try to calculate the CCS using the tutorial example:
I inspect the dft2 dictionary and according to the dictionary dft2['geom'] is equivalent to dft2.geom?
after that, I try run again the CCS
how can I correct this problem, there are how convert the dictionary dft2 to a object?
Any suggestions thanks
Samuel
The text was updated successfully, but these errors were encountered: