@ferscloud/fers-calculation-web 0.2.57 → 0.2.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fers-models.d.ts +48 -7
- package/fers_calculations_bg.wasm +0 -0
- package/package.json +1 -1
package/fers-models.d.ts
CHANGED
|
@@ -1142,19 +1142,59 @@ export interface components {
|
|
|
1142
1142
|
hinge_type: string;
|
|
1143
1143
|
/** Format: int32 */
|
|
1144
1144
|
id: number;
|
|
1145
|
-
/**
|
|
1145
|
+
/**
|
|
1146
|
+
* Format: double
|
|
1147
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1148
|
+
*/
|
|
1146
1149
|
max_bimoment_warp?: number | null;
|
|
1147
|
-
/**
|
|
1150
|
+
/**
|
|
1151
|
+
* Format: double
|
|
1152
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1153
|
+
*/
|
|
1148
1154
|
max_moment_mx?: number | null;
|
|
1149
|
-
/**
|
|
1155
|
+
/**
|
|
1156
|
+
* Format: double
|
|
1157
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1158
|
+
*/
|
|
1150
1159
|
max_moment_my?: number | null;
|
|
1151
|
-
/**
|
|
1160
|
+
/**
|
|
1161
|
+
* Format: double
|
|
1162
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1163
|
+
*/
|
|
1152
1164
|
max_moment_mz?: number | null;
|
|
1153
|
-
/**
|
|
1165
|
+
/**
|
|
1166
|
+
* Format: double
|
|
1167
|
+
* @description Connector **design capacities** — the connection's rated shear, moment and
|
|
1168
|
+
* bimoment resistance (e.g. an EN 15512 beam-end-connector test value).
|
|
1169
|
+
*
|
|
1170
|
+
* **The solver does not read these, deliberately.** They are inputs to code
|
|
1171
|
+
* checking, not to the analysis: a capacity is a resistance to compare a
|
|
1172
|
+
* demand against, not a stiffness. Nothing here caps, redistributes or warns
|
|
1173
|
+
* — a hinge carrying a capacity solves exactly as one without.
|
|
1174
|
+
*
|
|
1175
|
+
* To express a connector that actually *stops taking moment* during the
|
|
1176
|
+
* solve, give it a [`crate::models::moment_rotation::MomentRotationCurve`]
|
|
1177
|
+
* with `end: Yielding`; that is the analysis-side feature and it is
|
|
1178
|
+
* unrelated to these fields.
|
|
1179
|
+
*
|
|
1180
|
+
* Not yet reachable from a unity check either: `QuantitySource` can read a
|
|
1181
|
+
* `Section` or `Material` property but has no hinge source, so a check
|
|
1182
|
+
* cannot name one of these today. That is the work these fields are waiting
|
|
1183
|
+
* on — see `Feedback_Folder/member-hinge-secant-state-and-damping/`.
|
|
1184
|
+
*
|
|
1185
|
+
* Units follow the model's own (normalized to SI internally, like every
|
|
1186
|
+
* other force/moment quantity).
|
|
1187
|
+
*/
|
|
1154
1188
|
max_tension_vx?: number | null;
|
|
1155
|
-
/**
|
|
1189
|
+
/**
|
|
1190
|
+
* Format: double
|
|
1191
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1192
|
+
*/
|
|
1156
1193
|
max_tension_vy?: number | null;
|
|
1157
|
-
/**
|
|
1194
|
+
/**
|
|
1195
|
+
* Format: double
|
|
1196
|
+
* @description See [`Self::max_tension_vx`] — a design capacity, not read by the solver.
|
|
1197
|
+
*/
|
|
1158
1198
|
max_tension_vz?: number | null;
|
|
1159
1199
|
moment_rotation_mx?: null | components["schemas"]["MomentRotationCurve"];
|
|
1160
1200
|
moment_rotation_my?: null | components["schemas"]["MomentRotationCurve"];
|
|
@@ -1271,6 +1311,7 @@ export interface components {
|
|
|
1271
1311
|
local_minimums?: null | components["schemas"]["NodeForces"];
|
|
1272
1312
|
local_start_forces?: null | components["schemas"]["NodeForces"];
|
|
1273
1313
|
maximums?: null | components["schemas"]["NodeForces"];
|
|
1314
|
+
member_displacement_peak?: null | components["schemas"]["MemberDisplacementSample"];
|
|
1274
1315
|
/**
|
|
1275
1316
|
* @description Optional sampled deflected shape: the member's global displacement at
|
|
1276
1317
|
* stations running from `x_frac = 0` to `1`, load-exact rather than
|
|
Binary file
|