This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/Sources/ManualDCore/EquipmentInfo.swift

18 lines
383 B
Swift

import Foundation
public struct EquipmentInfo: Codable, Equatable, Sendable {
public let staticPressure: Double
public let heatingCFM: Int
public let coolingCFM: Int
public init(
staticPressure: Double = 0.5,
heatingCFM: Int,
coolingCFM: Int
) {
self.staticPressure = staticPressure
self.heatingCFM = heatingCFM
self.coolingCFM = coolingCFM
}
}