********> bugfix.37 Author: Bill Ross Date: 9/1/95 Programs: anal, bugfix.33 on anal Severity: serious if bugfix.33 has been applied, moderate otherwise Problem: bugfix.33 omits dielectric scaling by DIELC altogether; pre-bugfix.33 omits scaling by DIELC when trying to use fractional dielectric Affects: Electrostatic component of energy measurements Cause: Incorrect test of whether to scale charges using DIELC Fix: Make the following change to analb.f: ----------------------------------------------------------------------- From original release: 2531c2531 < IF(DIELC.LE.1.0E0) GO TO 160 --- > IF(DIELC.eq.1.0E0) GO TO 160 From bugfix.33 version: 2531c2531 < IF(DIELC.ne.1.0E0) GO TO 160 --- > IF(DIELC.eq.1.0E0) GO TO 160 ----------------------------------------------------------------------- Temporary workarounds: none --