|
7 | 7 | class FormDiagramSettings(BaseModel): |
8 | 8 | show_reactions: bool = Field(default=True, title="Show Reactions") |
9 | 9 | show_residuals: bool = Field(default=False, title="Show Residuals") |
10 | | - show_pipes: bool = Field(default=True, title="Show Pipes") |
| 10 | + show_pipes: bool = Field(default=False, title="Show Pipes") |
11 | 11 | show_loads: bool = Field(default=False, title="Show Loads") |
12 | | - show_selfweight: bool = Field(default=False, title="Show Selfweight") |
13 | 12 | show_bounds: bool = Field(default=True, title="Show Bounds") |
14 | 13 | show_cracks: bool = Field(default=False, title="Show Cracks") |
15 | 14 |
|
16 | 15 | scale_reactions: float = Field(default=0.01, ge=1e-6, le=1e3, title="Scale Reactions") |
17 | 16 | scale_residuals: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Residuals") |
18 | 17 | scale_pipes: float = Field(default=0.01, ge=1e-6, le=1e3, title="Scale Pipes") |
19 | 18 | scale_loads: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Loads") |
20 | | - scale_selfweight: float = Field(default=1.0, ge=1e-6, le=1e3, title="Scale Selfweight") |
21 | 19 |
|
22 | 20 | tol_vectors: float = Field(default=1e-3, ge=1e-6, le=1e3, title="Tolerance Vectors") |
23 | 21 | tol_pipes: float = Field(default=1e-2, ge=1e-6, le=1e3, title="Tolerance Pipes") |
|
0 commit comments