Rebase update REVO and solve @wavexx comments
This commit is contained in:
parent
8ae0e1952e
commit
6feab85252
|
|
@ -7332,7 +7332,7 @@ Sigma_Exit:
|
||||||
|
|
||||||
#ifdef THERMAL_MODEL
|
#ifdef THERMAL_MODEL
|
||||||
/*!
|
/*!
|
||||||
### M310 - Thermal model settings <a href="https://reprap.org/wiki/G-code#M310:_Themal_model_settings">M310: Thermal model settings</a>
|
### M310 - Thermal model settings <a href="https://reprap.org/wiki/G-code#M310:_Thermal_model_settings">M310: Thermal model settings</a>
|
||||||
#### Usage
|
#### Usage
|
||||||
|
|
||||||
M310 ; report values
|
M310 ; report values
|
||||||
|
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_VER 1 // model parameters version
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_P 40. // heater power (W)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_U -0.0014 // linear temperature coefficient (W/K/power)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_V 1.05 // linear temperature intercept (W/power)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_C 8.77 // initial guess for heatblock capacitance (J/K)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_R 25.3 // initial guess for heatblock resistance (K/W)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_LAG 270 // sim. response lag (ms, 0-2160)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_W 0.85 // Default warning threshold (K/s)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_E 1.23 // Default error threshold (K/s)
|
|
||||||
|
|
||||||
// fall-back resistance vector (R0-15)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_Rv {TEMP_MODEL_E3D_REVO_R, 23.9, 22.5, 19.6, 19.0, 18.3, 17.7, 17.1, 16.8, 16.5, 16.3, 16.0, 15.9, 15.7, 15.6, 15.4}
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_VER 1 // model parameters version
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_P 60. // heater power (W)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_U -0.0014 // linear temperature coefficient (W/K/power)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_V 1.05 // linear temperature intercept (W/power)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_C 9.10 // initial guess for heatblock capacitance (J/K)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_R 30.6 // initial guess for heatblock resistance (K/W)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_LAG 270 // sim. response lag (ms, 0-2160)
|
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_W 0.85 // Default warning threshold (K/s)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_E 1.23 // Default error threshold (K/s)
|
|
||||||
|
|
||||||
// fall-back resistance vector (R0-15)
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_Rv {TEMP_MODEL_E3D_REVO_HF_60W_R, 29.0, 27.5, 24.5, 23.4, 22.3, 21.2, 20.2, 19.8, 19.4, 19.0, 18.6, 18.3, 18.1, 17.9, 17.7}
|
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_VER 1 // model parameters version
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_P 40. // heater power (W)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_U -0.0014 // linear temperature coefficient (W/K/power)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_V 1.05 // linear temperature intercept (W/power)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_C 8.77 // initial guess for heatblock capacitance (J/K)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_R 25.3 // initial guess for heatblock resistance (K/W)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_LAG 270 // sim. response lag (ms, 0-2160)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_W 0.85 // Default warning threshold (K/s)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_E 1.23 // Default error threshold (K/s)
|
||||||
|
|
||||||
|
// fall-back resistance vector (R0-15)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_Rv {THERMAL_MODEL_E3D_REVO_R, 23.9, 22.5, 19.6, 19.0, 18.3, 17.7, 17.1, 16.8, 16.5, 16.3, 16.0, 15.9, 15.7, 15.6, 15.4}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_VER 1 // model parameters version
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_P 60. // heater power (W)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_U -0.0014 // linear temperature coefficient (W/K/power)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_V 1.05 // linear temperature intercept (W/power)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_C 9.10 // initial guess for heatblock capacitance (J/K)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_R 30.6 // initial guess for heatblock resistance (K/W)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_LAG 270 // sim. response lag (ms, 0-2160)
|
||||||
|
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_W 0.85 // Default warning threshold (K/s)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_E 1.23 // Default error threshold (K/s)
|
||||||
|
|
||||||
|
// fall-back resistance vector (R0-15)
|
||||||
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_Rv {THERMAL_MODEL_E3D_REVO_HF_60W_R, 29.0, 27.5, 24.5, 23.4, 22.3, 21.2, 20.2, 19.8, 19.4, 19.0, 18.6, 18.3, 18.1, 17.9, 17.7}
|
||||||
|
|
@ -381,26 +381,26 @@
|
||||||
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
||||||
|
|
||||||
// model-based temperature check
|
// model-based temperature check
|
||||||
#define TEMP_MODEL 1 // enable model-based temperature checks
|
#define THERMAL_MODEL 1 // enable model-based temperature checks
|
||||||
#define TEMP_MODEL_DEBUG 1 // extended runtime logging
|
#define THERMAL_MODEL_DEBUG 1 // extended runtime logging
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_C_low 5 // C estimation lower limit
|
#define THERMAL_MODEL_CAL_C_low 5 // C estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_C_high 20 // C estimation upper limit
|
#define THERMAL_MODEL_CAL_C_high 20 // C estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
#define THERMAL_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
#define THERMAL_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_R_low 5 // R estimation lower limit
|
#define THERMAL_MODEL_CAL_R_low 5 // R estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_R_high 50 // R estimation upper limit
|
#define THERMAL_MODEL_CAL_R_high 50 // R estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
#define THERMAL_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
#define THERMAL_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
#define THERMAL_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
||||||
#define TEMP_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
#define THERMAL_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
||||||
|
|
||||||
#define TEMP_MODEL_Ta_corr -7 // Default ambient temperature correction
|
#define THERMAL_MODEL_Ta_corr -7 // Default ambient temperature correction
|
||||||
|
|
||||||
#include "temp_model/e3d_REVO.h"
|
#include "thermal_model/e3d_REVO.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_REVO // Default E3D REVO model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_REVO // Default E3D REVO model parameters
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------
|
/*------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -382,26 +382,26 @@
|
||||||
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
||||||
|
|
||||||
// model-based temperature check
|
// model-based temperature check
|
||||||
#define TEMP_MODEL 1 // enable model-based temperature checks
|
#define THERMAL_MODEL 1 // enable model-based temperature checks
|
||||||
#define TEMP_MODEL_DEBUG 1 // extended runtime logging
|
#define THERMAL_MODEL_DEBUG 1 // extended runtime logging
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_C_low 5 // C estimation lower limit
|
#define THERMAL_MODEL_CAL_C_low 5 // C estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_C_high 20 // C estimation upper limit
|
#define THERMAL_MODEL_CAL_C_high 20 // C estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
#define THERMAL_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
#define THERMAL_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_R_low 5 // R estimation lower limit
|
#define THERMAL_MODEL_CAL_R_low 5 // R estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_R_high 50 // R estimation upper limit
|
#define THERMAL_MODEL_CAL_R_high 50 // R estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
#define THERMAL_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
#define THERMAL_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
#define THERMAL_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
||||||
#define TEMP_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
#define THERMAL_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
||||||
|
|
||||||
#define TEMP_MODEL_Ta_corr -7 // Default ambient temperature correction
|
#define THERMAL_MODEL_Ta_corr -7 // Default ambient temperature correction
|
||||||
|
|
||||||
#include "temp_model/e3d_REVO_HF_60W.h"
|
#include "thermal_model/e3d_REVO_HF_60W.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------
|
/*------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -385,26 +385,26 @@
|
||||||
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
||||||
|
|
||||||
// model-based temperature check
|
// model-based temperature check
|
||||||
#define TEMP_MODEL 1 // enable model-based temperature checks
|
#define THERMAL_MODEL 1 // enable model-based temperature checks
|
||||||
#define TEMP_MODEL_DEBUG 1 // extended runtime logging
|
#define THERMAL_MODEL_DEBUG 1 // extended runtime logging
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_C_low 5 // C estimation lower limit
|
#define THERMAL_MODEL_CAL_C_low 5 // C estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_C_high 20 // C estimation upper limit
|
#define THERMAL_MODEL_CAL_C_high 20 // C estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
#define THERMAL_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
#define THERMAL_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_R_low 5 // R estimation lower limit
|
#define THERMAL_MODEL_CAL_R_low 5 // R estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_R_high 50 // R estimation upper limit
|
#define THERMAL_MODEL_CAL_R_high 50 // R estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
#define THERMAL_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
#define THERMAL_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
#define THERMAL_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
||||||
#define TEMP_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
#define THERMAL_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
||||||
|
|
||||||
#define TEMP_MODEL_Ta_corr -7 // Default ambient temperature correction
|
#define THERMAL_MODEL_Ta_corr -7 // Default ambient temperature correction
|
||||||
|
|
||||||
#include "temp_model/e3d_REVO.h"
|
#include "thermal_model/e3d_REVO.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_REVO // Default E3D REVO model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_REVO // Default E3D REVO model parameters
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------
|
/*------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -386,26 +386,26 @@
|
||||||
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
#define TEMP_RUNAWAY_EXTRUDER_TIMEOUT 45
|
||||||
|
|
||||||
// model-based temperature check
|
// model-based temperature check
|
||||||
#define TEMP_MODEL 1 // enable model-based temperature checks
|
#define THERMAL_MODEL 1 // enable model-based temperature checks
|
||||||
#define TEMP_MODEL_DEBUG 1 // extended runtime logging
|
#define THERMAL_MODEL_DEBUG 1 // extended runtime logging
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_C_low 5 // C estimation lower limit
|
#define THERMAL_MODEL_CAL_C_low 5 // C estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_C_high 20 // C estimation upper limit
|
#define THERMAL_MODEL_CAL_C_high 20 // C estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
#define THERMAL_MODEL_CAL_C_thr 0.01 // C estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
#define THERMAL_MODEL_CAL_C_itr 30 // C estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_R_low 5 // R estimation lower limit
|
#define THERMAL_MODEL_CAL_R_low 5 // R estimation lower limit
|
||||||
#define TEMP_MODEL_CAL_R_high 50 // R estimation upper limit
|
#define THERMAL_MODEL_CAL_R_high 50 // R estimation upper limit
|
||||||
#define TEMP_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
#define THERMAL_MODEL_CAL_R_thr 0.01 // R estimation iteration threshold
|
||||||
#define TEMP_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
#define THERMAL_MODEL_CAL_R_itr 30 // R estimation iteration limit
|
||||||
|
|
||||||
#define TEMP_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
#define THERMAL_MODEL_CAL_T_low 50 // Default calibration cooling temperature (C)
|
||||||
#define TEMP_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
#define THERMAL_MODEL_CAL_T_high 230 // Default calibration working temperature (C)
|
||||||
|
|
||||||
#define TEMP_MODEL_Ta_corr -7 // Default ambient temperature correction
|
#define THERMAL_MODEL_Ta_corr -7 // Default ambient temperature correction
|
||||||
|
|
||||||
#include "temp_model/e3d_REVO_HF_60W.h"
|
#include "thermal_model/e3d_REVO_HF_60W.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------
|
/*------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -65,48 +65,48 @@ Example:
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
8. Prepare for new 3rd party hotend TM value file
|
8. Prepare for new 3rd party hotend TM value file
|
||||||
- Search for `#include "temp_model/e3d_v6.h"`
|
- Search for `#include "thermal_model/e3d_v6.h"`
|
||||||
- Change the `e3d_v6.h` to `<3rd party hotend:16>.h`
|
- Change the `e3d_v6.h` to `<3rd party hotend:16>.h`
|
||||||
- Change below the `E3D_V6` to `<3rd party hotend:16>`
|
- Change below the `E3D_V6` to `<3rd party hotend:16>`
|
||||||
```
|
```
|
||||||
...
|
...
|
||||||
#include "temp_model/e3d_v6.h"
|
#include "thermal_model/e3d_v6.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_V6 // Default E3D v6 model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_V6 // Default E3D v6 model parameters
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```
|
```
|
||||||
...
|
...
|
||||||
#include "temp_model/e3d_REVO_HF_60W.h"
|
#include "thermal_model/e3d_REVO_HF_60W.h"
|
||||||
#define TEMP_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
#define THERMAL_MODEL_DEFAULT E3D_REVO_HF_60W // Default E3D REVO HF 60W model parameters
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
9. Save and close the new variant file
|
9. Save and close the new variant file
|
||||||
10. Copy/paste `Firmware/temp_model/e3d_v6.h` as `Firmware/temp_model/<3rd party hotend:16>.h`
|
10. Copy/paste `Firmware/thermal_model/e3d_v6.h` as `Firmware/thermal_model/<3rd party hotend:16>.h`
|
||||||
- Example: `Firmware/temp_model/e3d_REVO_HF_60W.h`
|
- Example: `Firmware/thermal_model/e3d_REVO_HF_60W.h`
|
||||||
11. Open the new file `Firmware/temp_model/<3rd party hotend:16>.h`
|
11. Open the new file `Firmware/thermal_model/<3rd party hotend:16>.h`
|
||||||
12. Search `E3D_V6` and replace it with what you have used in `#defined TEMP_MODEL_DEFAULT`
|
12. Search `E3D_V6` and replace it with what you have used in `#defined THERMAL_MODEL_DEFAULT`
|
||||||
- Example
|
- Example
|
||||||
```
|
```
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_VER 1 // model parameters version
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_VER 1 // model parameters version
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_P 60. // heater power (W)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_P 60. // heater power (W)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_U -0.0014 // linear temperature coefficient (W/K/power)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_U -0.0014 // linear temperature coefficient (W/K/power)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_V 1.05 // linear temperature intercept (W/power)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_V 1.05 // linear temperature intercept (W/power)
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_C 8.77 // initial guess for heatblock capacitance (J/K)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_C 8.77 // initial guess for heatblock capacitance (J/K)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_R 25.3 // initial guess for heatblock resistance (K/W)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_R 25.3 // initial guess for heatblock resistance (K/W)
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_fS 0.15 // sim. 1st order IIR filter factor (f=100/27)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_LAG 270 // sim. response lag (ms, 0-2160)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_LAG 270 // sim. response lag (ms, 0-2160)
|
||||||
|
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_W 1.2 // Default warning threshold (K/s)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_W 1.2 // Default warning threshold (K/s)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_E 1.74 // Default error threshold (K/s)
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_E 1.74 // Default error threshold (K/s)
|
||||||
|
|
||||||
// fall-back resistance vector (R0-15)
|
// fall-back resistance vector (R0-15)
|
||||||
#define TEMP_MODEL_E3D_REVO_HF_60W_Rv {TEMP_MODEL_E3D_REVO_HF_60W_R, 23.9, 22.5, 19.6, 19.0, 18.3, 17.7, 17.1, 16.8, 16.5, 16.3, 16.0, 15.9, 15.7, 15.6, 15.4}
|
#define THERMAL_MODEL_E3D_REVO_HF_60W_Rv {THERMAL_MODEL_E3D_REVO_HF_60W_R, 23.9, 22.5, 19.6, 19.0, 18.3, 17.7, 17.1, 16.8, 16.5, 16.3, 16.0, 15.9, 15.7, 15.6, 15.4}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue