celsius - kelvin fix

This commit is contained in:
gribse 2023-12-10 12:58:35 +00:00
parent 7cd9299181
commit c7a28047a1

View file

@ -28,8 +28,8 @@ rangeTi = int(round(np.sqrt(resolution),0))
cqMax = float(input("camera max cq (default = 1.8e5): ") or 1.8e5)
cqMin = float(input("pixel surface (default = 10% of cqMax): ") or cqMax*0.1)
Tmin = float(input("min temp° (°C) (default = 500): ") or 500)
Tmax = float(input("max temp° (°C) (default = 1500): ") or 1500)
Tmin = float(input("min temp° (°C) (default = 500): ") or 500)+273 #for Kelvin
Tmax = float(input("max temp° (°C) (default = 1500): ") or 1500)+273 #for Kelvin
Timin = float(input("min exposure time (µs) (default = 5): ") or 5)
Timax = float(input("max exposure time (µs) (default = 50): ") or 50)