Skip to content

Commit 2ec76f8

Browse files
Fix h_w for stability during fitting live, noisy temperature data for feedback control
1 parent 474e6ea commit 2ec76f8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/boilerdaq/models/params.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,13 @@
1616
class Params(SynchronizedPathsYamlModel):
1717
"""Project parameters."""
1818

19-
fit: Fit = Field(default_factory=Fit, description="Parameters for model fit.")
19+
fit: Fit = Field(
20+
default=Fit(
21+
free_params=["T_s", "q_s", "h_a"],
22+
fixed_params=["h_w", "r", "T_infa", "T_infw", "x_s", "x_wa", "k"],
23+
),
24+
description="Parameters for model fit.",
25+
)
2026
geometry: Geometry = Field(default_factory=Geometry, description="Geometry.")
2127

2228
paths: Paths = Field(default_factory=Paths)

0 commit comments

Comments
 (0)