mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 14:15:30 -04:00
Fix cosmo output with gas phase disabled.
This commit is contained in:
parent
fe9a5083ee
commit
bb24921483
1 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ c Standard cosmo output
|
|||
c
|
||||
if (.not.do_cosmo_smd) then
|
||||
write(luout,911)
|
||||
if (dabs(egas).gt.0.d0) then
|
||||
if (dabs(egas).gt.1d-9) then
|
||||
write(luout,912) egas
|
||||
write(luout,913) esol
|
||||
write(luout,914) (egas-esol),(egas-esol)*cau2kcal
|
||||
|
|
@ -30,7 +30,7 @@ c
|
|||
else ! cosmo-smd output
|
||||
c
|
||||
write(luout,819)
|
||||
if (dabs(egas).gt.0.d0) then
|
||||
if (dabs(egas).gt.1d-9) then
|
||||
write(luout,820) egas
|
||||
write(luout,821) (gstote-gspol)
|
||||
write(luout,822) (gstote-gspol-egas),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue