diff --git a/GameData/Benjee10_MMSEV/Patches/SystemHeat/SH_Radiators.cfg b/GameData/Benjee10_MMSEV/Patches/SystemHeat/SH_Radiators.cfg new file mode 100644 index 0000000..fb524b6 --- /dev/null +++ b/GameData/Benjee10_MMSEV/Patches/SystemHeat/SH_Radiators.cfg @@ -0,0 +1,41 @@ +@PART[Benjee10_MMSEV_baseRadiator]:NEEDS[SystemHeat] +{ + MODULE + { + name = ModuleSystemHeat + volume = 0.025 + moduleID = default + iconName = Icon_Radiator + ignoreTemperature = true + } + + @MODULE[ModuleActiveRadiator] + { + @name = ModuleSystemHeatRadiator + moduleID = radiator + // ModuleSystemHeat instance to link to + systemHeatModuleID = default + scalarModuleID = heat + maxTempAnimation = 500 + + // option: use physical or deterministic temperatures + // DOES NOT WORK YET + // Use emissivity to directly model temp + usePhysicalTemperatureModeling = false + // maximum temperature system can work at + maxRadiatorTemperature = 350 + // emissivity + emissivity = 0.9 + + // option: use deterministic temperatures + // Power radiated per temperature + temperatureCurve + { + key = 0 0 + key = 400 15 + } + // area for convection + convectiveArea = 5.1 + } + +}