diff --git a/mhkit/dolfyn/velocity.py b/mhkit/dolfyn/velocity.py index 9b77f3c2..adfa942f 100644 --- a/mhkit/dolfyn/velocity.py +++ b/mhkit/dolfyn/velocity.py @@ -446,7 +446,7 @@ def I_tke(self, thresh=0): I_tke.data.astype("float32"), coords=self.U_mag.coords, dims=self.U_mag.dims, - attrs={"units": "% [0,1]", "long_name": "TKE Intensity"}, + attrs={"units": "1", "long_name": "TKE Intensity"}, ) @property @@ -462,7 +462,7 @@ def I(self, thresh=0): I.data.astype("float32"), coords=self.U_mag.coords, dims=self.U_mag.dims, - attrs={"units": "% [0,1]", "long_name": "Turbulence Intensity"}, + attrs={"units": "1", "long_name": "Turbulence Intensity"}, ) @property @@ -851,7 +851,7 @@ def turbulence_intensity(self, U_mag, noise=0, thresh=0, detrend=False): coords=coords, dims=dims, attrs={ - "units": "%", + "units": "1", "long_name": "Turbulence Intensity", "comment": f"TI was corrected from a noise level of {noise} m/s", },