mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
Adding placeholder random sampling for sap points, for demo
This commit is contained in:
parent
a5062b24f0
commit
6cd6a5fae6
1 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
from backend.Property import Property
|
from backend.Property import Property
|
||||||
from statistics import mean
|
from statistics import mean
|
||||||
|
import random
|
||||||
|
|
||||||
|
|
||||||
def estimate_sap_points():
|
def estimate_sap_points():
|
||||||
|
|
@ -9,7 +10,7 @@ def estimate_sap_points():
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return 999
|
return random.sample(range(4, 12), 1)[0]
|
||||||
|
|
||||||
|
|
||||||
def r_value_per_mm_to_u_value(depth_mm: int, r_value_per_mm: float):
|
def r_value_per_mm_to_u_value(depth_mm: int, r_value_per_mm: float):
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue