Skip to content

Commit

Permalink
fixed RT scaling with temperature
Browse files Browse the repository at this point in the history
  • Loading branch information
bad-ants-fleet committed Jul 28, 2016
1 parent d1e3b38 commit 9d98ee5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/DrTransformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,8 @@ def main():

args._RT=0.61632077549999997
if args.temperature != 37.0 :
args._RT = (args._RT/37.0)*args.temperature
kelvin = 273.15 + args.temperature
args._RT = (args._RT/310.15)*kelvin

_outfile = name + '.drf'
_output = 'DrForna'
Expand Down

0 comments on commit 9d98ee5

Please sign in to comment.