Skip to content

Commit

Permalink
Refs #4867 - Changed ExpCorr call in C2E to be multiply.
Browse files Browse the repository at this point in the history
When "Detailed Balance" is checked on the Energy Transfer tab of the Convert
to Energy interface, an exponential correction is made to the workspace(s)
during reduction.  This correction had been previously been set to use the default, "Divide".  Changed to specify "Multiply" instead.
  • Loading branch information
PeterParker committed Mar 7, 2012
1 parent 7a9c84f commit 41d5de8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def execute(self, reducer, file_ws):
workspaces = [file_ws]

for ws in workspaces:
ExponentialCorrection(ws, ws, 1.0, correction)
ExponentialCorrection(ws, ws, 1.0, correction)#, Operation="Multiply")

def set_temperature(self, temp):
self._temp = temp
Expand Down

0 comments on commit 41d5de8

Please sign in to comment.