REVIEW 3 major objections 4 minor 20 references
Understanding Fire Through Thermal Radiation Fields for Mobile Robots
T0 review · 3 major / 4 minor · reviewed 2026-08-02 · deepseek-v4-flash
Pith's one-line read A mobile robot can navigate around fires safely by building a real-time thermal radiation field from fused depth and thermal images and letting an A* planner trade distance against heat.
desk verdict A worthwhile proof-of-concept for fire-aware navigation that extends thermal maps into free space, but the quantitative claims need cleanup: hand-tuned constants, a 68% flux overprediction, and an inconsistency between the model equation and the algorithm pseudocode. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The mechanism that carries the argument is a Stefan–Boltzmann inverse-square radiation field: a scalar map T[x,y] = P/(4πr^2)X defined at every free-space cell with line of sight to a fitted hemisphere fire source. The field is generated from registered depth–thermal clouds (a cluster of points above 100 °C for fire detection, a hemisphere footprint for area A), multiplied by the empirical factor γ = 0.4, and blended into occupancy as O = max(geometric, min(T/q_danger, 1)). The named danger threshold q_danger = 2.5/max(0.1, ϕ) converts heat flux into an impassable boundary; the A* cost C = 1 + Oβ then performs the route search. This lets one physical formula turn sparse surface temperatures
What would settle it
Set up a heat-flux or thermocouple array at the planner-computed danger boundary (e.g., 0.71 m and 0.93 m from the flame used in the paper) and at several larger radii. If the measured flux at any cell the planner marks safe exceeds the q_danger threshold, or if the decay with distance diverges visibly from 1/r^2 (e.g., because convection dominates), the central claim that the radiation field predicts safe navigation fails.
Extended reading notes
Core claim
The paper's central claim is that fire, for navigation purposes, is best represented not as a surface-temperature overlay but as a continuous radiative heat-flux field in free space, recoverable in real time from onboard sensors. The method fuses thermal and depth images into a 3D point cloud whose hottest cluster is treated as the fire source; a hemisphere fitted to that cluster supplies the emitting area A, and the Stefan–Boltzmann law P = σAT0^4γ with fixed T0 = 1,473.15 K and empirical γ = 0.4 yields the fire's radiative power. That power is spread over the environment by an inverse-square law with radiative fraction X = 0.35, gated by line of sight to the fire, and written into a 2D occ
Load-bearing premise
The quantitative safety of every planned path rests on assumed fire constants—flame temperature T0 = 1,473.15 K, correction factor γ = 0.4, and radiative fraction X = 0.35—and the paper's own calorimetry shows the model overpredicts incident heat by 68%, so the computed 'safe' distance is only as trustworthy as those constants.
Editorial extensions
If this is right
- If correct, any cost-based planner can become fire-aware simply by adding a thermal radiation layer computed from a depth camera and a low-cost thermal camera.
- The adjustable safety margin ϕ gives operators direct, real-time control over the efficiency–safety trade-off, as shown by the wide and narrow detours around the same fire.
- The line-of-sight treatment of radiation means walls and tall obstacles create genuinely cooler corridors; the wall-occlusion experiment confirms the planner exploits this.
- The calorimetric comparison implies that safe-distance estimates are conservative for the tested propane device—the model predicts 0.93 m clearance where measured flux would allow 0.71 m—so the system errs on the side of caution at the cost of extra detour.
- The method is not surface-centric: it extrapolates from the visible flame to empty space, which is exactly the region a thermal camera alone cannot measure.
Reading between the lines
- A testable extension would estimate the fire's radiative power online from measured fuel mass-flow rate, replacing the fixed T0 and γ and likely removing the 68% overprediction.
- Because smoke and hot combustion gases also radiate and convect heat without line of sight to the flame, the safe-corridor-behind-a-wall behavior may not transfer to real smoke-filled fires; a heat-flux probe behind an occluding wall would test whether the line-of-sight assumption is conservative or unsafe.
- The same representation should scale to multiple fires by summing P(r) contributions from independently detected clusters, provided line-of-sight occlusion is tested per source.
- The 192.5 °C ceiling of the thermal sensor likely truncates the fire cluster and biases the hemisphere fit, so repeating with a higher-dynamic-range camera is a cheap way to test whether the power overestimate comes from the sensor or the physical constants.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a fire-aware navigation framework for mobile robots. Depth and thermal images are registered into a temperature-annotated 3D point cloud; high-temperature points are clustered and fit with a hemisphere to localize the fire and estimate its radiative power via the Stefan–Boltzmann law. An inverse-square decay model is used to construct a 2D thermal radiation field with line-of-sight occlusion handling, which is fused into an occupancy grid and used to plan A* paths. The system is demonstrated on a Boston Dynamics Spot robot with a controlled propane fire, and a calorimetry experiment is used to validate the radiation magnitude.
Significance. The idea of extending surface-centric thermal maps to a navigable free-space radiation field is timely and practically relevant for fire response robotics. The paper includes real-robot experiments, a physical model with explicit assumptions, and an independent calorimetric check, which are strengths. However, the quantitative claims rest on several assumed constants (T0, γ, X) and the validation shows a 68% overprediction in flux. More importantly, there is a concrete mismatch between the model in Eq. (3) and the algorithm pseudocode in Algorithm 1. If the deployed planner follows Algorithm 1, the calibrated and validated field is not the field used during navigation. These issues need to be resolved before the central 'thermally safe paths' claim is fully supported. The qualitative detour behavior is plausible and useful, but the quantitative basis needs repair.
major comments (3)
- [§III-B, Algorithm 1, §IV-B] Algorithm 1 line 24 computes T[i,j] ← P/(4πd²), omitting the radiative fraction X=0.35 from Eq. (3). With P=78.5 kW and r=0.45 m, Eq. (3) gives 10.79 kW/m² and a safe distance of 0.93 m (matching §IV-B), whereas the Algorithm 1 expression gives 30.85 kW/m² and a safe distance of 1.58 m. The pseudocode and the validation therefore describe different radiation fields. Please clarify which expression is used in the deployed planner, and if the pseudocode is wrong, correct it. This is load-bearing because the claimed calibrated safety distance (0.93 m) does not correspond to the algorithm as written.
- [§III-B, Table I] There is a physical inconsistency in the definition of P. Table I labels P as 'Estimated radiative power of fire source,' but Eq. (3) multiplies P by X=0.35, described as the radiative fraction of total heat release. If P is already radiative output, X should be 1; if P is meant to be total heat release, Eq. (2) should be described as estimating heat release rate, not 'thermal radiation emitted from the fire surface.' This ambiguity changes the field by a factor of 1/X≈2.86 and affects every cost-map threshold.
- [§IV-B, §V] The validation shows the model overpredicts incident flux by 68% (10.79 vs 6.4 kW/m²) and safe distance by 0.22 m. Because the overprediction is conservative, it does not invalidate the avoidance demonstration, but the abstract and conclusions use the phrase 'thermally safe paths.' As the limitations section correctly notes, fire strength is assumed rather than estimated. I ask for either a margin/safety analysis demonstrating that the executed paths remain outside the measured hazard zones, or a more modest claim such as 'conservative avoidance of high-radiation regions.'
minor comments (4)
- [Eq. (7)] There is a typographical error: 'max(O[x, y],; min(...))' contains an extra semicolon after the comma.
- [Abstract, §IV] The paper claims 'real-time' thermal radiation fields, but no timing or latency measurements are reported. Please provide runtime data or remove the 'real-time' wording.
- [§I, §III-A, Algorithm 1] The sensor description is inconsistent: §III-A says depth is obtained from the stereo camera, while Algorithm 1 processes 'LiDAR scans.' Clarify which sensor(s) are used for occupancy and obstacle detection.
- [Throughout] Minor typos: 'Fore one' should be 'For one' (Discussion), 'UA V' should be 'UAV' (Introduction), and 'scaler' should be 'scalar' (Eq. 6). Also, some figure references are repeated or ambiguous (e.g., 'In Fig. 7 we show...' appears twice in §IV-A).
Circularity Check
No significant circularity: empirical constants are acknowledged inputs; validation is an external calorimetric comparison.
full rationale
The derivation chain—thermal-depth fusion, fire localization, Stefan–Boltzmann radiation model, cost-map integration, A* planning—is self-contained in the sense that each stage is defined from explicit inputs (T0, gamma, X, A, r) and none of these inputs is defined in terms of the outputs (safe distance, safe path). The empirical correction factor gamma=0.4 is a calibrated constant, but the paper does not claim it was fitted to the calorimetric validation; in fact, the validation shows the model overpredicts incident radiation by 68% (10.79 vs 6.4 kW/m^2), which is evidence that gamma was not tuned to that particular measurement. The paper explicitly acknowledges in the limitations that the effective fire strength was assumed rather than estimated directly, which is an honest statement of model dependence rather than a circular step. The radiative fraction X=0.35 is cited from independent NIST work (Hamins et al.), not from the present authors. The Algorithm 1 omission of X relative to Eq. (3) is an internal inconsistency between the model description and the pseudocode, and it is a correctness risk (the deployed field may be more conservative than the validated one), but it is not a circular derivation: the algorithm's output is not used to define its own inputs. No self-citation is load-bearing; references are contextual or independent. Therefore no circularity step meets the required evidentiary standard.
Assumptions & free parameters
free parameters (6)
- T0 (effective flame temperature) =
1,473.15 K
- γ (emissivity/geometry correction) =
0.4
- X (radiative fraction) =
0.35
- ϕ (caution scalar) =
1.0 (varied)
- β (cost shaping exponent) =
not specified (≥1)
- DBSCAN ε and min_samples =
ε=0.5 m, min_samples=2
assumptions (6)
- domain assumption Stefan-Boltzmann and inverse-square point-source decay model radiative heat in free space
- ad hoc to paper Fire can be approximated as a single hemisphere with uniform temperature T0
- domain assumption Thermal camera pixels above 100°C localize the fire surface
- domain assumption Line-of-sight (Bresenham) is sufficient to model radiation occlusion by obstacles
- domain assumption Thermal-depth extrinsic calibration is accurate enough for fire localization
- domain assumption Radiative fraction X=0.35 from large pool fires transfers to this propane training device
Cite this review
Pith. "Pith review of Understanding Fire Through Thermal Radiation Fields for Mobile Robots." pith.science (2026). https://pith.science/paper/IOB3Y5ZF
@misc{pith2026260219108,
author = {Pith},
title = {Pith review of: Understanding Fire Through Thermal Radiation Fields for Mobile Robots},
year = {2026},
howpublished = {\url{https://pith.science/paper/IOB3Y5ZF}},
note = {Machine review of arXiv:2602.19108}
}
read the original abstract
Safely moving through environments affected by fire is a critical capability for autonomous mobile robots deployed in disaster response. In this work, we present a novel approach for mobile robots to understand fire through building real-time thermal radiation fields. We register depth and thermal images to obtain a 3D point cloud annotated with temperature values. From these data, we identify fires and use the Stefan-Boltzmann law to approximate the thermal radiation in empty spaces. This enables the construction of a continuous thermal radiation field over the environment. We show that this representation can be used for robot navigation, where we embed thermal constraints into the cost map to compute collision-free and thermally safe paths. We validate our approach on a Boston Dynamics Spot robot in controlled experimental settings. Our experiments demonstrate the robot's ability to avoid hazardous regions while still reaching navigation goals. Our approach paves the way toward mobile robots that can be autonomously deployed in fire-affected environments, with potential applications in search-and-rescue, firefighting, and hazardous material response.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
Portable fire evacuation guide robot system,
Y .-D. Kim, Y .-G. Kim, S.-H. Lee, J.-H. Kang, and J. An, “Portable fire evacuation guide robot system,” inIEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), 2009
2009
-
[2]
Analysis and design of human–robot swarm interaction in firefighting,
A. Naghsh, J. Gancet, A. Tanoto, and C. R. Roast, “Analysis and design of human–robot swarm interaction in firefighting,” inIEEE RO-MAN, 2008
2008
-
[3]
Extinguishing wildfires in large scale scenarios using swarms of uavs,
G. P. Tzoumas, L. R. Salinas, A. McConville, T. G. Richardson, and S. Hauert, “Extinguishing wildfires in large scale scenarios using swarms of uavs,” inInternational Conference on Swarm Intelligence, 2024
2024
-
[4]
Adoption of uav swarm technology: Survey and opinions of firefighters,
A. McConville, G. P. Tzoumas, L. R. Salinas, M. C. Munera Ramirez, and S. Hauert, “Adoption of uav swarm technology: Survey and opinions of firefighters,”arXiv preprint, 2024
2024
-
[5]
Autonomous firefighting using a quadruped robot,
C. Baird and S. Nokleby, “Autonomous firefighting using a quadruped robot,”Transactions of the Canadian Society for Mechanical Engineer- ing, 2024. TABLE I: Summary of symbols and parameters used throughout the paper. Symbol Description Units / Notes rDistance from fire center to querypoint m T0 Effective flame temperature K AEstimated emitting surface ar...
2024
-
[6]
M2p2: A multi- modal passive perception dataset for off-road mobility in extreme low- light conditions,
A. Datar, A. Pokhrel, M. Nazeri, M. B. Rao, C. Pan, Y . Zhang, A. Harrison, M. Wigness, P. R. Osteen, J. Yeet al., “M2p2: A multi- modal passive perception dataset for off-road mobility in extreme low- light conditions,” inIEEE IROS, 2025
2025
-
[7]
Targetless extrinsic calibration of stereo cameras, thermal cameras, and laser sensors in the wild,
T. Fu, H. Yu, W. Yang, Y . Hu, and S. Scherer, “Targetless extrinsic calibration of stereo cameras, thermal cameras, and laser sensors in the wild,”arXiv preprint arXiv:2109.13414, 2021
arXiv 2021
-
[8]
The project thermomap: Indoor mapping with thermal and rgb-d cameras,
D. Borrmann, J. Elseberg, K. Lingemann, A. N ¨uchter, and J. Hertzberg, “The project thermomap: Indoor mapping with thermal and rgb-d cameras,” inIEEE/RSJ International Conference on Intelli- gent Robots and Systems (IROS), 2014
2014
Show all 20 references
-
[9]
3d thermal mapping of building interiors using an rgb-d and thermal camera,
S. Vidas, P. Moghadam, and M. Bosse, “3d thermal mapping of building interiors using an rgb-d and thermal camera,” inIEEE International Conference on Robotics and Automation (ICRA), 2013, pp. 2303–2310
2013
-
[10]
3d radiometric mapping by means of lidar slam and thermal camera data fusion,
D. De Pazzi, M. Pertile, and S. Chiodini, “3d radiometric mapping by means of lidar slam and thermal camera data fusion,”Sensors, vol. 22, no. 21, p. 8512, 2022
2022
-
[11]
Sparse depth enhanced direct thermal-infrared slam beyond the visible spectrum,
Y . Shin and A. Kim, “Sparse depth enhanced direct thermal-infrared slam beyond the visible spectrum,”IEEE Robotics and Automation Letters, vol. 4, no. 3, pp. 2911–2918, 2019
2019
-
[12]
Eil-slam: Depth-enhanced edge-based infrared–lidar slam,
W. Chen, Y . Wang, H. Chen, and Y . Liu, “Eil-slam: Depth-enhanced edge-based infrared–lidar slam,”Journal of Field Robotics, vol. 39, no. 8, pp. 1200–1217, 2021
2021
-
[13]
Firebotslam: Thermal slam to increase situational awareness in smoke-filled environments,
B. R. van Manen, V . Sluiter, and A. Y . Mersha, “Firebotslam: Thermal slam to increase situational awareness in smoke-filled environments,” Sensors, vol. 23, no. 17, p. 7611, 2023
2023
-
[14]
Graph-based thermal–inertial slam with probabilistic neural networks,
M. R. U. Saputra, C. X. Lu, P. P. B. de Gusmao, B. Wang, A. Markham, and N. Trigoni, “Graph-based thermal–inertial slam with probabilistic neural networks,”IEEE Transactions on Robotics, 2021
2021
-
[15]
Evaluation of navigation sensors in fire smoke environments,
J. W. Starr and B. Y . Lattimer, “Evaluation of navigation sensors in fire smoke environments,”Fire Technology, vol. 50, pp. 1459–1481, 2014
2014
-
[16]
Physics informed neural fields for smoke reconstruction with sparse data,
M. Chu, L. Liu, Q. Zheng, A. Franz, H.-P. Seidel, C. Theobalt, and R. Zayer, “Physics informed neural fields for smoke reconstruction with sparse data,”ACM Transactions on Graphics, vol. 41, no. 4, 2022
2022
-
[17]
Activegs: Active scene reconstruction using gaussian splatting,
L. Jin, X. Zhong, Y . Pan, J. Behley, C. Stachniss, and M. Popovi ´c, “Activegs: Active scene reconstruction using gaussian splatting,”IEEE Robotics and Automation Letters, 2025, arXiv:2412.17769
2025 arXiv
-
[18]
A calibration tool for refractive underwater vision,
F. Seegr ¨aber, M. She, F. Woelk, and K. K ¨oser, “A calibration tool for refractive underwater vision,” 05 2024
2024
-
[19]
Thermal radiation from large pool fires,
A. Hamins, K. McGrattan, and T. Kashiwagi, “Thermal radiation from large pool fires,” National Institute of Standards and Technology, Gaithersburg, MD, Tech. Rep. NISTIR 6546, 1999. [Online]. Available: https://nvlpubs.nist.gov/nistpubs/Legacy/IR/nistir6546.pdf
1999
-
[20]
Merci and T
B. Merci and T. Beji,Fluid Mechanics Aspects of Fire and Smoke Dynamics in Enclosures, 2nd ed. London (CRC Press/Taylor & Francis): CRC Press, 2022
2022
Reviewed August 2, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.