本文整理汇总了Python中pymatgen.io.nwchem.NwTask.dft_task方法的典型用法代码示例。如果您正苦于以下问题:Python NwTask.dft_task方法的具体用法?Python NwTask.dft_task怎么用?Python NwTask.dft_task使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pymatgen.io.nwchem.NwTask
的用法示例。
在下文中一共展示了NwTask.dft_task方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setUp
# 需要导入模块: from pymatgen.io.nwchem import NwTask [as 别名]
# 或者: from pymatgen.io.nwchem.NwTask import dft_task [as 别名]
def setUp(self):
tasks = [
NwTask.dft_task(mol, operation="optimize", xc="b3lyp", basis_set="6-31++G*"),
NwTask.dft_task(mol, operation="freq", xc="b3lyp", basis_set="6-31++G*"),
NwTask.dft_task(mol, operation="energy", xc="b3lyp", basis_set="6-311++G**"),
NwTask.dft_task(mol, charge=mol.charge + 1, operation="energy", xc="b3lyp", basis_set="6-311++G**"),
NwTask.dft_task(mol, charge=mol.charge - 1, operation="energy", xc="b3lyp", basis_set="6-311++G**"),
]
self.nwi = NwInput(
mol, tasks, geometry_options=["units", "angstroms", "noautoz"], memory_options="total 1000 mb"
)
self.nwi_symm = NwInput(mol, tasks, geometry_options=["units", "angstroms", "noautoz"], symmetry_options=["c1"])
示例2: test_dft_task
# 需要导入模块: from pymatgen.io.nwchem import NwTask [as 别名]
# 或者: from pymatgen.io.nwchem.NwTask import dft_task [as 别名]
def test_dft_task(self):
task = NwTask.dft_task(mol, charge=1, operation="energy")
ans = """title "H4C1 dft energy"
charge 1
basis
C library "6-31g"
H library "6-31g"
end
dft
mult 2
xc b3lyp
end
task dft energy"""
self.assertEqual(str(task), ans)
示例3: test_dft_cosmo_task
# 需要导入模块: from pymatgen.io.nwchem import NwTask [as 别名]
# 或者: from pymatgen.io.nwchem.NwTask import dft_task [as 别名]
def test_dft_cosmo_task(self):
task = NwTask.dft_task(
mol, charge=mol.charge, operation="energy",
xc="b3lyp", basis_set="6-311++G**",
alternate_directives={'cosmo': {"dielec": 78.0}})
ans = """title "H4C1 dft energy"
charge 0
basis
C library "6-311++G**"
H library "6-311++G**"
end
dft
mult 1
xc b3lyp
end
cosmo
dielec 78.0
end
task dft energy"""
self.assertEqual(str(task), ans)