Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
More corrections to output of default values.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Pressel authored Jun 5, 2017
1 parent 73f781a commit 1bebfd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Thermodynamics.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ cdef class ClausiusClapeyron:
Tmin = namelist['ClausiusClapeyron']['temperature_min']
except:
Par.root_print('Clasius-Clayperon lookup table temperature_min not '
'given in name list taking default of 180 K')
'given in name list taking default of 100.15 K')
Tmin = 100.15

try:
Tmax = namelist['ClausiusClapeyron']['temperature_max']
except:
Par.root_print('Clasius-Clayperon lookup table temperature_max not '
'given in name list taking default of 340 K')
'given in name list taking default of 380.0 K')
Tmax = 380.0

try:
Expand Down

0 comments on commit 1bebfd3

Please sign in to comment.