Significantly updates the Engineering guidebook (more explicitly the Atmos section) to have a lot more relevant and useful information. Right now engineering has been getting update after update with no real change to the relevant guidebook entry. This has lead to a lot of out of date information and bad practices being prevalent in the guidebook, something that pains me to read.
62 lines
2.2 KiB
C#
62 lines
2.2 KiB
C#
using Content.Shared.Atmos;
|
|
using Content.Shared.Atmos.Piping.Portable.Components;
|
|
using Content.Shared.Atmos.Visuals;
|
|
using Content.Shared.Guidebook;
|
|
|
|
namespace Content.Server.Atmos.Portable;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class SpaceHeaterComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Current mode the space heater is in. Possible values : Auto, Heat and Cool
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public SpaceHeaterMode Mode = SpaceHeaterMode.Auto;
|
|
|
|
/// <summary>
|
|
/// The power level the space heater is currently set to. Possible values : Low, Medium, High
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public SpaceHeaterPowerLevel PowerLevel = SpaceHeaterPowerLevel.Medium;
|
|
|
|
/// <summary>
|
|
/// Maximum target temperature the device can be set to
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
[GuidebookData]
|
|
public float MaxTemperature = Atmospherics.T20C + 20;
|
|
|
|
/// <summary>
|
|
/// Minimal target temperature the device can be set to
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
[GuidebookData]
|
|
public float MinTemperature = Atmospherics.T0C - 10;
|
|
|
|
/// <summary>
|
|
/// Coefficient of performance. Output power / input power.
|
|
/// Positive for heaters, negative for freezers.
|
|
/// </summary>
|
|
[DataField("heatingCoefficientOfPerformance")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float HeatingCp = 1f;
|
|
|
|
[DataField("coolingCoefficientOfPerformance")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float CoolingCp = -0.9f;
|
|
|
|
/// <summary>
|
|
/// The delta from the target temperature after which the space heater switch mode while in Auto. Value should account for the thermomachine temperature tolerance.
|
|
/// </summary>
|
|
[DataField]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float AutoModeSwitchThreshold = 0.8f;
|
|
|
|
/// <summary>
|
|
/// Current electrical power consumption, in watts, of the space heater at medium power level. Passed to the thermomachine component.
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public float PowerConsumption = 3500f;
|
|
}
|