@ferscloud/fers-calculation-web 0.2.46 → 0.2.47
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 +42 -8
- package/fers_calculations_bg.wasm +0 -0
- package/package.json +1 -1
package/fers-models.d.ts
CHANGED
|
@@ -421,6 +421,25 @@ export interface components {
|
|
|
421
421
|
* @default 0
|
|
422
422
|
*/
|
|
423
423
|
c3: number;
|
|
424
|
+
/**
|
|
425
|
+
* Format: double
|
|
426
|
+
* @description Equivalent uniform moment factor override for lateral-torsional buckling
|
|
427
|
+
* (`C_mLT`). When omitted it is computed (Annex A) or taken as the
|
|
428
|
+
* major-axis `C_m` (Annex B).
|
|
429
|
+
*/
|
|
430
|
+
cm_lt?: number | null;
|
|
431
|
+
/**
|
|
432
|
+
* Format: double
|
|
433
|
+
* @description Equivalent uniform moment factor override for major-axis bending
|
|
434
|
+
* (`C_my`; Annex A Table A.2 `C_my,0`-based value or Annex B Table B.3).
|
|
435
|
+
* When omitted it is computed from the member's actual moment diagram.
|
|
436
|
+
*/
|
|
437
|
+
cmy?: number | null;
|
|
438
|
+
/**
|
|
439
|
+
* Format: double
|
|
440
|
+
* @description Equivalent uniform moment factor override for minor-axis bending (`C_mz`).
|
|
441
|
+
*/
|
|
442
|
+
cmz?: number | null;
|
|
424
443
|
/**
|
|
425
444
|
* Format: double
|
|
426
445
|
* @default 1
|
|
@@ -758,9 +777,11 @@ export interface components {
|
|
|
758
777
|
Member: {
|
|
759
778
|
/**
|
|
760
779
|
* Format: double
|
|
761
|
-
* @description Optional user-supplied buckling reduction factor χ
|
|
762
|
-
*
|
|
763
|
-
*
|
|
780
|
+
* @description Optional user-supplied flexural buckling reduction factor χ
|
|
781
|
+
* (EN 1993-1-1 §6.3). When set, the EC3 unity-check evaluator replaces the
|
|
782
|
+
* section-curve χ with this value for BOTH flexural axes (the modeller
|
|
783
|
+
* owns the override); the slenderness λ̄ used by the §6.3.3 interaction
|
|
784
|
+
* stays physical.
|
|
764
785
|
*/
|
|
765
786
|
chi?: number | null;
|
|
766
787
|
/**
|
|
@@ -1037,9 +1058,16 @@ export interface components {
|
|
|
1037
1058
|
MemberSet: {
|
|
1038
1059
|
/**
|
|
1039
1060
|
* Format: double
|
|
1040
|
-
* @description
|
|
1041
|
-
*
|
|
1042
|
-
*
|
|
1061
|
+
* @description Torsional buckling length `l_T` for `N_cr,T` (model length units). When
|
|
1062
|
+
* absent, derived from the torsional `buckling_restraints` spacing, else
|
|
1063
|
+
* the LTB length.
|
|
1064
|
+
*/
|
|
1065
|
+
buckling_length_t?: number | null;
|
|
1066
|
+
/**
|
|
1067
|
+
* Format: double
|
|
1068
|
+
* @description Buckling-length overrides for code checks (EN 1993-1-1 §6.3), in **model
|
|
1069
|
+
* length units**. Precedence per axis: explicit length → effective-length
|
|
1070
|
+
* factor → `buckling_restraints` spacing → member length.
|
|
1043
1071
|
*/
|
|
1044
1072
|
buckling_length_y?: number | null;
|
|
1045
1073
|
/** Format: double */
|
|
@@ -1056,7 +1084,11 @@ export interface components {
|
|
|
1056
1084
|
classification?: string | null;
|
|
1057
1085
|
/**
|
|
1058
1086
|
* Format: double
|
|
1059
|
-
* @description Effective-length factor K_y (L_cr,y = K_y · L) when no explicit length
|
|
1087
|
+
* @description Effective-length factor K_y (L_cr,y = K_y · L) when no explicit length
|
|
1088
|
+
* given. NOTE: `L` here is the individual FE member's length (a
|
|
1089
|
+
* sub-member length when the beam is split), whereas restraint-derived
|
|
1090
|
+
* lengths measure along the whole physical chain — prefer explicit
|
|
1091
|
+
* lengths or restraints for split members.
|
|
1060
1092
|
*/
|
|
1061
1093
|
effective_length_factor_y?: number | null;
|
|
1062
1094
|
/** Format: double */
|
|
@@ -1065,7 +1097,9 @@ export interface components {
|
|
|
1065
1097
|
id: number;
|
|
1066
1098
|
/**
|
|
1067
1099
|
* Format: double
|
|
1068
|
-
* @description Unrestrained length for lateral-torsional buckling (
|
|
1100
|
+
* @description Unrestrained length for lateral-torsional buckling (model length units).
|
|
1101
|
+
* When absent, derived from the torsional `buckling_restraints` spacing,
|
|
1102
|
+
* else the member length.
|
|
1069
1103
|
*/
|
|
1070
1104
|
ltb_length?: number | null;
|
|
1071
1105
|
/** @description Ids of the members (in `FERS.members`) that make up this beam. */
|
|
Binary file
|