WIP: Begins work on pdf client.

This commit is contained in:
2026-01-17 12:59:46 -05:00
parent 3ec1ee2814
commit 0fe80d05c6
13 changed files with 501 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
/// Holds onto values returned when calculating the design
/// friction rate for a project.
public struct FrictionRate: Codable, Equatable, Sendable {
public let availableStaticPressure: Double
public let value: Double
public init(
availableStaticPressure: Double,
value: Double
) {
self.availableStaticPressure = availableStaticPressure
self.value = value
}
}