Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class FacadeCondensationRiskCommand : ISimulationCommand
public virtual FileSettings EPWFile { get; set; } = new FileSettings();

[Description("The list of thresholds to use. If no values are provided, default values of [10,7,4,1,-2,-5] will be used.")]
public virtual List<double> Thresholds { get; set; } = new List<double>();
public virtual List<double> Thresholds { get; set; } = new List<double>{10, 7, 4, 1, -2, -5};

[Description("Set to true to return a heatmap, or set to false to return a chart and table.")]
public virtual bool Heatmap { get; set; } = true;
Expand Down