@ferscloud/fers-calculation-web 0.2.42 → 0.2.43

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 CHANGED
@@ -1207,6 +1207,12 @@ export interface components {
1207
1207
  member_sets: components["schemas"]["MemberSet"][];
1208
1208
  /** @description Single source of truth for member objects. Member sets reference these by id. */
1209
1209
  members: components["schemas"]["Member"][];
1210
+ /**
1211
+ * @description Concentrated (lumped) nodal masses for modal & seismic analysis. Optional;
1212
+ * SI units (kg, kg·m²). See [`NodalMass`].
1213
+ * @default []
1214
+ */
1215
+ nodal_masses: components["schemas"]["NodalMass"][];
1210
1216
  nodal_supports: components["schemas"]["NodalSupport"][];
1211
1217
  nodes: components["schemas"]["Node"][];
1212
1218
  /** @default [] */
@@ -1237,6 +1243,44 @@ export interface components {
1237
1243
  /** Format: int32 */
1238
1244
  node: number;
1239
1245
  };
1246
+ /**
1247
+ * @description A concentrated (lumped) mass attached to a node, for modal and seismic
1248
+ * analysis (equipment, added / non-structural mass, floor mass, …).
1249
+ *
1250
+ * `mass` is an isotropic translational mass added to the node's three
1251
+ * translational DOFs; the optional rotary inertias are added to the three
1252
+ * rotational DOFs (absent ⇒ 0). **Units are SI regardless of the model's unit
1253
+ * system — `mass` in kg, inertias in kg·m²** (the same convention as
1254
+ * `gravity_factor`), so a nodal mass reads consistently with the structural
1255
+ * self-mass (`density·area`, which is kg after unit normalization).
1256
+ */
1257
+ NodalMass: {
1258
+ /**
1259
+ * Format: double
1260
+ * @description Optional rotary inertia [kg·m²] about global X, added to the θx DOF.
1261
+ */
1262
+ inertia_x?: number | null;
1263
+ /**
1264
+ * Format: double
1265
+ * @description Optional rotary inertia [kg·m²] about global Y, added to the θy DOF.
1266
+ */
1267
+ inertia_y?: number | null;
1268
+ /**
1269
+ * Format: double
1270
+ * @description Optional rotary inertia [kg·m²] about global Z, added to the θz DOF.
1271
+ */
1272
+ inertia_z?: number | null;
1273
+ /**
1274
+ * Format: double
1275
+ * @description Translational (isotropic) mass [kg], added to the ux, uy, uz DOFs.
1276
+ */
1277
+ mass: number;
1278
+ /**
1279
+ * Format: int32
1280
+ * @description Id of the node the mass is attached to.
1281
+ */
1282
+ node: number;
1283
+ };
1240
1284
  /** @description A concentrated moment applied at a node. */
1241
1285
  NodalMoment: {
1242
1286
  direction: components["schemas"]["Vector3"];
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ferscloud/fers-calculation-web",
3
3
  "type": "module",
4
- "version": "0.2.42",
4
+ "version": "0.2.43",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/Jeroen124/FERS_calculations.git"