feat: Adds cooling interpolation tests.

This commit is contained in:
2025-03-13 09:10:52 -04:00
parent ec58ca6364
commit c23e4c5f61
7 changed files with 287 additions and 112 deletions

View File

@@ -3,11 +3,11 @@ public enum SizingLimits {
public struct Request: Codable, Equatable, Sendable {
public let systemType: SystemType
public let houseLoad: HouseLoad?
public let coolingLoad: Capacity.Cooling?
public init(systemType: SystemType, houseLoad: HouseLoad? = nil) {
public init(systemType: SystemType, coolingLoad: Capacity.Cooling? = nil) {
self.systemType = systemType
self.houseLoad = houseLoad
self.coolingLoad = coolingLoad
}
}