We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b99d3b5 + ad4ab7a commit 8c4860bCopy full SHA for 8c4860b
CHANGES.md
@@ -1,3 +1,7 @@
1
+## v0.4.2
2
+##### Fixes
3
+- Fix aggregate thermal rate calculation. It was double counting radiative thermal rate.
4
+
5
## v0.4.1
6
##### Fixes
7
- Fix for configuration settings reverting to default after two reloads of KSP.
Source/HotSpot/Extensions/PartExtensions.cs
@@ -7,7 +7,6 @@ public static double GetThermalFlux(this Part part)
return part.thermalInternalFluxPrevious
8
+ part.thermalConductionFlux
9
+ part.thermalConvectionFlux
10
- + part.thermalRadiationFlux
11
+ part.thermalRadiationFlux;
12
}
13
0 commit comments