changed relative humidity to be accorder to models humidity
This commit is contained in:
parent
9a6c7ec3a1
commit
8e77941a29
1 changed files with 1 additions and 1 deletions
|
|
@ -414,7 +414,7 @@ class ModelWidgets(View):
|
|||
inside_temp = widgets.IntSlider(value=node.inside_temp.values[0]-273.15, min=15., max=25.)
|
||||
|
||||
def on_humidity_change(change):
|
||||
node.humidity = change['new']
|
||||
node.humidity = change['new']/100
|
||||
|
||||
def on_insidetemp_change(change):
|
||||
node.inside_temp.values = (change['new']+273.15,)
|
||||
|
|
|
|||
Loading…
Reference in a new issue