feat: Initial commit

This commit is contained in:
2025-03-12 16:59:10 -04:00
commit 5c684d0537
28 changed files with 1285 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
public struct HouseLoad: Codable, Equatable, Sendable {
public let coolingTotal: Int
public let coolingSensible: Int
public let heating: Int
public var coolingLatent: Int { coolingTotal - coolingSensible }
public init(
coolingTotal: Int,
coolingSensible: Int,
heating: Int
) {
self.coolingTotal = coolingTotal
self.coolingSensible = coolingSensible
self.heating = heating
}
}