Lines Matching +full:temperature +full:- +full:coefficient
2 * Copyright (c) 2022 HAW Hamburg FTZ-DIWIP
4 * SPDX-License-Identifier: Apache-2.0
50 * voltage. The ITS-90 standard is used; other RTDs
55 #define RTD_A_ITS90 3.9080e-3
56 #define RTD_A_USINDUSTRIAL 3.9692e-3
57 #define RTD_A_DIN43760 3.9848e-3
58 #define RTD_B_ITS90 -5.870e-7
59 #define RTD_B_USINDUSTRIAL -5.8495e-7
60 #define RTD_B_DIN43760 -5.8019e-7
63 * RTD coefficient C is required only for temperatures
64 * below 0 deg. C. The selected RTD coefficient set
72 * https://www.analog.com/media/en/technical-documentation/application-notes/AN709_0.pdf
74 static const double RTD_C[6] = {-242.02, 2.2228, 2.5859e-3, 4.8260e-6, 2.8183e-8, 1.5243e-10};
77 double temperature; member