@ferscloud/fers-calculation-web 0.2.45 → 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 +51 -10
- 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
|
/**
|
|
@@ -963,8 +984,15 @@ export interface components {
|
|
|
963
984
|
* `[start, …section_forces…, end]` raw therefore draws a `value → −value` sawtooth;
|
|
964
985
|
* use [`MemberResult::internal_force_series`] (which negates the end node) for a
|
|
965
986
|
* continuous diagram, or negate `local_end_forces` yourself.
|
|
966
|
-
* - **Components.**
|
|
967
|
-
*
|
|
987
|
+
* - **Components.** `fx` is axial, `fy`/`fz` are shears, `mx` is torsion, `my`/`mz`
|
|
988
|
+
* are bending moments, `bw` is the warping bimoment.
|
|
989
|
+
* - **Axial sign caveat.** In the continuous internal series (`local_start_forces`,
|
|
990
|
+
* `section_forces`, negated `local_end_forces`) axial `fx` comes out
|
|
991
|
+
* **compression-positive / tension-negative**: the end-force recovery
|
|
992
|
+
* `q = k·u − f_eq` yields `local_start_forces.fx = −T` for a member in tension
|
|
993
|
+
* `T`, and the interior sections inherit it. Consumers that need a
|
|
994
|
+
* tension-positive axial value (e.g. code checks classifying compression) must
|
|
995
|
+
* flip the sign of the series value.
|
|
968
996
|
*/
|
|
969
997
|
MemberResult: {
|
|
970
998
|
/**
|
|
@@ -1030,9 +1058,16 @@ export interface components {
|
|
|
1030
1058
|
MemberSet: {
|
|
1031
1059
|
/**
|
|
1032
1060
|
* Format: double
|
|
1033
|
-
* @description
|
|
1034
|
-
*
|
|
1035
|
-
*
|
|
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.
|
|
1036
1071
|
*/
|
|
1037
1072
|
buckling_length_y?: number | null;
|
|
1038
1073
|
/** Format: double */
|
|
@@ -1049,7 +1084,11 @@ export interface components {
|
|
|
1049
1084
|
classification?: string | null;
|
|
1050
1085
|
/**
|
|
1051
1086
|
* Format: double
|
|
1052
|
-
* @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.
|
|
1053
1092
|
*/
|
|
1054
1093
|
effective_length_factor_y?: number | null;
|
|
1055
1094
|
/** Format: double */
|
|
@@ -1058,7 +1097,9 @@ export interface components {
|
|
|
1058
1097
|
id: number;
|
|
1059
1098
|
/**
|
|
1060
1099
|
* Format: double
|
|
1061
|
-
* @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.
|
|
1062
1103
|
*/
|
|
1063
1104
|
ltb_length?: number | null;
|
|
1064
1105
|
/** @description Ids of the members (in `FERS.members`) that make up this beam. */
|
|
Binary file
|