Calculation of Ultimate Ductility Index Based on Hysteretic Energy Analysis of the Restoring Force Curve
Abstract
1. Introduction
2. Methods/Experimental
2.1. Method and Program for Calculating Damage Energy of Restorative Hysteresis Curve
2.1.1. Damage Energy Programming and Process
2.1.2. Analysis and Calculation of Main Influencing Indicators for the Standard Loop
2.1.3. Calculation of Cumulate Elastic Energy in the Standard Loop of the Restoring Force Curve
- (1)
- Sum of cumulate elastic energy for each cycle:
- (2)
- Sum of cumulate hysteretic energy for each circle:
- (3)
- Specific damping of cumulate hysteretic energy for each circle:
- (4)
- Cumulate elastic energy for each cycle:
- (5)
- Cumulate hysteretic energy for each cycle:
- (6)
- Specific damping of cumulate energy for each cycle:
- (7)
- Final sum of the total elastic energy for each cycle:
- (8)
- Final sum of the total hysteretic energy for each cycle:
- (9)
- Method for calculating damage energy :
- (10)
- Method for calculating damage index :
2.1.4. Method and Program for Calculating the Skeleton Curve of the Restoring Force
2.2. Calculation Method and Analysis of Ultimate Ductility Index Based on DECP
2.2.1. Method I: Conditional Yield Calculation
2.2.2. Method II: Universal Yield Moment Calculation
2.2.3. Method III: Equivalent Elastoplastic Yield Calculation
2.2.4. Method IV: Secant Stiffness Calculation
2.2.5. Method V: ECCS Calculation
2.2.6. Method VI: Energy Equivalence Calculation
2.2.7. Method VII: Double Energy Equivalence Calculation
2.3. Validation of Methods with Experimental Program
2.4. Calculation and Analysis of the Ductility Index Based on Maximum Envelope Energy
3. Results and Discussion
4. Conclusions
- (I)
- This paper summarized seven ductility index methods for calculating the yield displacement and yield load of the restoring force curve, namely the conditional yield calculation method, the universal yield moment calculation method, the equivalent elastoplastic yield calculation method, the secant stiffness calculation method, the ECCS calculation method, the energy equivalence calculation method, and the double energy equivalence calculation method. The theoretical calculation and programming methods of these seven methods were introduced in detail. By programming based on MATLAB and using preliminary experimental data, the BBB analysis of SP01~SP10 was calculated and compared. Through research, it has been found that the double energy equivalence calculation method can be used to calculate the ductility index. This method adopted the convergence criteria of “the equivalence of the closed double energy of the actual and model curves” and “the minimum sum of the closed double energy of actual and model curves” to calculate, analyze, and judge the yield critical state of the hysteresis test curve of the restoring force. This method shows potential for wider application in ductility assessment of RC members with nonlinear hysteretic behavior.
- (II)
- This paper proposed a calculation method for the maximum envelope energy based on the hysteresis curve of the restoring force, as well as a new calculation method for the ductility evaluation performance index based on the maximum envelope energy. By comparing and calculating the maximum envelope energy ductility index and the dual energy equivalence method ductility index for SP01~SP10, it is found that the two performance indicators have the same evaluation trend. Therefore, the ductility index based on the maximum envelope energy can be used for the ductility evaluation of the elastic–plastic damage limit state.
- (III)
- The damage cumulative energy consumption calculation program DECP used in this paper can be used to analyze and calculate the experimental data of the hysteresis curve of the restoring force and serve as a key indicator for subsequent energy-based damage analysis and evaluation. At the same time, the method of this study was an important preprocessing program for improving the resilience model analysis algorithm, which can greatly improve the calculation efficiency of processing resilience curve data. The proposed method can aid in post-earthquake performance assessments by quantifying energy dissipation capacity from recorded response data.
Supplementary Materials
Funding
Data Availability Statement
Conflicts of Interest
Abbreviations
DECP | Damage Energy Calculation Program |
ECCS | European Convention for Constructional Steelwork |
Appendix A. Ductility Index Calculation
Appendix A.1. Method I: Conditional Yield Calculation (Pseudo Code)
- Find the index of the data point closest to zero displacement.
- Find the maximum force and its corresponding displacement index from the positive skeleton curve.
- Calculate initial stiffness K0 as yield force divided by its corresponding displacement.
- Estimate an auxiliary displacement from the ratio of max force to K0.
- Identify the nearest displacement point corresponding to this auxiliary value.
- Compute the force at this displacement as the auxiliary yield force.
- Calculate updated stiffness from auxiliary yield force and displacement.
- Calculate the yield displacement as the ratio of max force to auxiliary stiffness.
- Find the closest actual displacement point to this yield displacement.
- Extract the corresponding yield force from the curve.
Appendix A.2. Method IV: Secant Stiffness Calculation (Pseudo Code)
- Calculate 75% of the maximum force.
- Identify the first data point in the positive skeleton curve that exceeds this 75% value.
- Extract the corresponding displacement.
- Calculate stiffness as 75% of max force divided by this displacement.
- Compute the estimated yield displacement as max force divided by the calculated stiffness.
- Find the nearest displacement point on the curve to this estimated yield.
- Retrieve the corresponding yield force from the curve.
Appendix A.3. Method V: ECCS Calculation (Pseudo Code)
- Reduce the initial stiffness K0 by a factor (e.g., divide by 10).
- Iterate over a series of force offsets (b) from 1 to max force:
- For each b, compute a test line using the reduced stiffness.
- Check if the test line lies above all points in the skeleton curve.
- Stop the loop when this condition is met.
- Calculate the estimated yield displacement using the difference in stiffness and b.
- Find the point on the curve closest to this estimated yield displacement.
- Extract the yield force corresponding to this point.
Appendix A.4. Method VI: Energy Equivalence Calculation (Pseudo Code)
- Define a range of candidate yield displacements (xx values).
- Compute the actual energy area under the skeleton curve (Area_actual).
- For each candidate xx value:
- Construct a simplified trapezoid using that xx and max displacement.
- Calculate its area (Area_simplified).
- Store the absolute difference from Area_actual.
- Identify the xx value with the minimum energy difference.
- Find the actual displacement value closest to this candidate xx.
- Retrieve the corresponding force (Q) from the curve.
Appendix A.5. Method VII: Double Energy Equivalence Calculation (Pseudo Code)
- Compute the actual energy area under the skeleton curve (Area_actual).
- Define grids of candidate displacement (xx) and force (yy) values.
- For each pair (xx, yy):
- Construct a closed shape using the values and calculate its area.
- Store the absolute difference between this area and Area_actual.
- Find all (xx, yy) combinations with area difference below a threshold.
- Among these, identify the xx value closest to the previous delta (if applicable).
- Retrieve the final candidate yield displacement and force from these values.
- Find the closest match in the actual data to extract the corresponding force.
Appendix B. Envelope Calculation (Pseudo Code)
- -
- mm: array of displacement values
- -
- kN: array of force values
- -
- flag (optional): integer (0 or 1), controls whether to append a closing segment to the curve
- -
- A: estimated area under the envelope curve (in mm·kN)
- If flag is not provided, set flag = 1.
- Determine the range of the data:
- -
- Find min and max values for displacement (mm_min, mm_max)
- -
- Find min and max values for force (kN_min, kN_max)
- -
- Compute the widths (mm_width, kN_width) with padding added
- If flag is 0 (i.e., curve is not already closed):
- If final mm value is negative:
- -
- Find the first index where kN is maximum
- -
- Append that displacement and corresponding force to the end of the data
- Else:
- -
- Find the first index where kN is minimum
- -
- Append that displacement and force to the end
- Plot a background rectangle based on the calculated mm and kN bounds.
- Load a binary image named ‘maxEnvelop.bmp’:
- -
- Convert the image to black-and-white (logical array)
- -
- Invert colors so the curve becomes a white area on black background
- Identify all distinct enclosed regions (connected boundaries) in the image.
- Count the number of pixels in each enclosed region:
- -
- Sort them by area (descending order)
- Remove the largest region (assumed to be the background or frame).
- -
- Compute the proportion of the remaining area to the total area.
- Multiply this proportion by the physical bounding box dimensions (mm_width × kN_width) to obtain the actual envelope area (A).
- -
- A (envelope area)
References
- FEMA. Next-Generation Performance-Based Seismic Design Guidelines (FEMA445); Department of Homeland Security (DHS): Washington, DC, USA, 2016. [Google Scholar]
- Huang, W.; Qian, J.; Zhou, Z. Seismic damage assessment of steel reinforced concrete members by a modified Park-Ang model. J. Asian Archit. Build. Eng. 2016, 15, 605–611. [Google Scholar] [CrossRef]
- Wang, F.; Li, H.N.; Zhang, N. A method for evaluating earthquake-induced structural damage based on displacement and hysteretic energy. Adv. Struct. Eng. 2016, 19, 1165–1176. [Google Scholar] [CrossRef]
- Shi, Q.X.; Wang, P.; Tian, Y.; Wang, N. Experimental study on seismic behavior of high-strength concrete short columns confined with high-strength stirrups. China Civ. Eng. J. 2014, 47, 1–8. [Google Scholar]
- Yang, K.; Shi, Q.; Zhao, J.; Jiang, W.S.; Meng, H. Study on the constitutive model of high-strength concrete confined by high-strength stirrups. China Civ. Eng. J. 2013, 46, 34–41. [Google Scholar]
- Wang, B.; Huo, G.; Sun, Y.; Zheng, S. Hysteretic behavior of steel reinforced concrete columns based on damage analysis. Appl. Sci. 2019, 9, 687. [Google Scholar] [CrossRef]
- Dong, J.; Chen, C. Hysteretic curve characteristics in rectangular shear walls predicted by machine learning. Sci. Rep. 2025, 15, 14114. [Google Scholar] [CrossRef]
- Dong, H.; Yang, Z.; Du, X.; Bi, K.; Han, Q. Simplified calculation method of residual displacement of RC structure with additional energy dissipation dampers. J. Earthq. Eng. 2025, 29, 1392–1420. [Google Scholar] [CrossRef]
- Feng, P.; Qiang, H.L.; Ye, L.P. Definition and discussion of “yield point” of materials, members and structures. Eng. Mech. 2017, 34, 36–46. [Google Scholar]
- Aschheim, M. Seismic design based on the yield displacement. Earthq. Spectra 2002, 18, 581–600. [Google Scholar] [CrossRef]
- Ma, S.Y.M.; Bertero, V.V.; Popov, E.P. Experimental and Analytical Studies on the Hysteretic Behavior of Reinforced Concrete Rectangular and T-Beams; Earthquake Engineering Research Center, University of California: Berkeley, CA, USA, 1976. [Google Scholar]
- Bojórquez, E.; Carvajal, J.; Ruiz, S.E.; Bojórquez, J. Reliability-based ductility reduction factors surfaces using the generalized Bojórquez ground motion intensity measure IBg. Results Eng. 2024, 23, 102756. [Google Scholar] [CrossRef]
- Bruneau, M.; Wang, N. Some aspects of energy methods for the inelastic seismic response of ductile SDOF structures. Eng. Struct. 1996, 18, 1–12. [Google Scholar] [CrossRef]
- Ling, J.H.; Lim, Y.T.; Euniza, J. Methods to determine ductility of structural members: A review. J. Civ. Eng. Forum 2023, 9, 181–194. [Google Scholar] [CrossRef]
- Zhan, S.G.; Zhang, P.F. Development status of mechanics discipline of National Natural Science Foundation of China and “13th Five-Year” development strategy. Chin. J. Mech. 2017, 49, 1–6. [Google Scholar]
- Bigoni, D.; Piccolroaz, A. Yield criteria for quasibrittle and frictional materials. Int. J. Solids Struct. 2004, 41, 2855–2878. [Google Scholar] [CrossRef]
- Davidson, B.J.; Bell, D.K.; Fenwick, R.C. The Development of a Rational Procedure to Determine Structural Performance Factors; Department of Civil and Resource Engineering, University of Auckland: Auckland, New Zealand, 2002. [Google Scholar]
- Topaloglu, B.; Kaya, G.T.; Sutcu, F.; Deger, Z.T. Machine learning-based assessment of energy behavior of RC shear wall. arXiv 2021, arXiv:2111.08295. [Google Scholar] [CrossRef]
- Deng, M.; Zhang, Y. Seismic performance of high-ductile fiber-reinforced concrete short columns. Adv. Civ. Eng. 2018, 2018, 3542496. [Google Scholar] [CrossRef]
- Zhang, Y.; Zheng, S.; Rong, X.; Dong, L.; Zheng, H. Seismic performance of reinforced concrete short columns subjected to freeze–thaw cycles. Appl. Sci. 2019, 9, 2708. [Google Scholar] [CrossRef]
- Lee, M.S.; Lee, L.H. Hysteresis behavior of reinforced concrete column retrofitted and repaired with carbon fiber sheet. Int. J. Concr. Struct. Mater. 2025, 19, 1. [Google Scholar] [CrossRef]
- Xu, D.; Chen, Z.; Zhou, C. Seismic performance of recycled concrete filled circular steel tube columns. Front. Mater. 2020, 7, 612059. [Google Scholar] [CrossRef]
- Yalcin, C. Seismic Evaluation and Retrofit of Existing Reinforced Concrete Bridge Columns. Ph.D. Thesis, University of Ottawa, Ottawa, ON, Canada, 1997. [Google Scholar]
- Wu, K.; Zhai, J.; Xue, J.; Zhao, H.; Chen, F. Effect of seismic design details on hysteresis performance of SRC-RC transfer columns. Earthq. Eng. Eng. Vib. 2020, 19, 117–135. [Google Scholar] [CrossRef]
- Sharma, R.; Liu, K.Y.; Witarto, W. Experimental and numerical investigation of the seismic performance of bridge columns with high-strength reinforcement and concrete. Appl. Sci. 2022, 12, 5326. [Google Scholar] [CrossRef]
- Carrillo, J.; González, G.; Rubiano, A. Displacement ductility for seismic design of RC walls for low-rise housing. Lat. Am. J. Solids Struct. 2014, 11, 725–737. [Google Scholar] [CrossRef]
- European Convention for Constructional Steelwork. European Convention for Constructional Steelwork. European Convention for Constructional Steelwork. Technical Committee 1, Structural Safety, Loadings. Technical Working Group, & Seismic Design. In Recommended Testing Procedure for Assessing the Behaviour of Structural Steel Elements Under Cyclic Loads; ECCS: Brussels, Belgium, 1986. [Google Scholar]
- Council, Building Seismic Safety. Prestandard and Commentary for the Seismic Rehabilitation of Buildings; Report FEMA-356; Washington, DC; American Society of Civil Engineers: Reston, VA, USA, 2000. [Google Scholar]
- Lin, H.; Tang, S.; Lan, C. Control parametric analysis on improving Park restoring force model and damage evaluation of high-strength structure. Adv. Mater. Sci. Eng. 2016, 2016, 3696418. [Google Scholar] [CrossRef]
- Lin, H.; Tang, S.; Lan, C. Damage analysis and evaluation of high strength concrete frame based on deformation-energy damage model. Math. Probl. Eng. 2015, 2015, 781382. [Google Scholar] [CrossRef]
- Lin, H. Elastoplastic dynamic analysis and damage evaluation of reinforced concrete structures based on time histories. Buildings 2025, 15, 971. [Google Scholar] [CrossRef]
- Lin, H.-B.; Zeng, Q.-F. Quasi-Static Seismic Tests and Damage Evaluation of High-Strength Reinforced Concrete Columns. In Civil Engineering and Urban Research; CRC Press: London, UK, 2023; Volume 1, pp. 332–341. ISBN 9781003334064. [Google Scholar]
- Kristombu Baduge, S.; Mendis, P.; Ngo, T.D.; Sofi, M. Ductility design of reinforced very-high strength concrete columns (100–150 MPa) using curvature and energy-based ductility indices. Int. J. Concr. Struct. Mater. 2019, 13, 37. [Google Scholar] [CrossRef]
- Rehman, Z.U.; Zhang, G. Shear coupling effect of monotonic and cyclic behavior of the interface between steel and gravel. Can. Geotech. J. 2019, 56, 876–884. [Google Scholar] [CrossRef]
- Rehman, Z.U.; Zhang, G. Three-dimensional elasto-plastic damage model for gravelly soil-structure interface considering the shear coupling effect. Comput. Geotech. 2021, 129, 103868. [Google Scholar] [CrossRef]
- Yalciner, H.; Kumbasaroglu, A. Experimental Evaluation and Modeling of Corroded Reinforced Concrete Columns. ACI Struct. J. 2020, 117, 61–76. [Google Scholar] [CrossRef]
- Celik, A.; Yalciner, H.; Kumbasaroglu, A.; Turan, A.İ. An experimental study on seismic performance levels of highly corroded reinforced concrete columns. Struct. Concr. 2022, 23, 32–50. [Google Scholar] [CrossRef]
- Turan, A.İ.; Ayaz, Y.; Yalciner, H.; Kumbasaroglu, A. An experimental evaluation on structural performance level of corroded reinforced concrete frames. Eng. Struct. 2025, 325, 119479. [Google Scholar] [CrossRef]
Study | Methodology Type | Key Parameters | Structural Elements Studied | Main Findings | Limitations |
---|---|---|---|---|---|
Ma et al. (1976) [11] | Experimental and analytical | Hysteretic curves, cyclic vs. monotonic loading | RC Beams | Proposed early definitions of energy-based ductility using cyclic load tests | Applicable only to basic RC beam elements; no generalization |
Bruneau & Wang (1996) [13] | Analytical | Displacement ductility, energy dissipation | SDOF systems | Established relationship between hysteretic energy and displacement ductility | Limited to idealized systems (e.g., SDOF); lacks validation for full structures |
Deng et al. (2018) [19] | Experimental | Cumulative hysteretic energy, ductile fibers | HDC RC Columns | High-ductility concrete columns show higher energy absorption post-cracking | Material-specific results; not validated for ordinary RC |
Aschheim (2002) [10] | Analytical | Yield displacement, displacement-based design | General RC structures | Proposed displacement-based design method centered on yield displacement | Needs calibration with experimental data |
Davidson et al. (2002) [17] | Code-based development | Yield force/displacement protocols | Ductility evaluation standards | Developed standard procedures for yield point identification | Recommendations not validated with energy-based indices |
Xu et al. (2020) [22] | Experimental | Bi-linear energy equivalence curves | Recycled CFST columns | Proposed energy-based yield identification for RC-filled steel tubes | Specific to composite cross-sections |
Yalcin (1997) [23] | Experimental and numerical | Ductility from cyclic loading | Bridge columns | Studied displacement ductility under different detailing conditions | Lacked energy-specific interpretation |
Topaloglu et al. (2021) [18] | Machine learning and experimental | Feature selection, energy metrics | RC shear walls | Applied ML to predict hysteretic energy from geometry/materials | Prediction accuracy depends on input parameter quality |
Component No. | Method I | Method II | Method III | Method IV | Method V | Method VI | Method VII | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
SP01 | 3.11 | 243.2 | 4.69 | 280.3 | 3.73 | 261.3 | 4.53 | 280.3 | 3.32 | 250.0 | 4.20 | 271.0 | 3.80 | 261.3 |
SP02 | 2.82 | 267.4 | 3.96 | 312.1 | 2.87 | 267.4 | 4.27 | 318.9 | 2.47 | 250.0 | 3.90 | 305.0 | 3.50 | 290.4 |
SP03 | 2.85 | 304.0 | 4.58 | 376.9 | 3.79 | 349.9 | 4.27 | 364.2 | 3.42 | 334.2 | 4.50 | 376.9 | 4.10 | 364.2 |
SP04 | 2.54 | 264.3 | 4.00 | 328.7 | 3.27 | 300.1 | 3.73 | 323.0 | 2.94 | 289.9 | 4.00 | 328.7 | 3.60 | 316.4 |
SP05 | 5.89 | 161.5 | 8.85 | 193.0 | 6.60 | 171.9 | 9.07 | 194.6 | 5.87 | 161.5 | 8.80 | 193.0 | 8.10 | 186.2 |
SP06 | 5.30 | 181.8 | 7.17 | 214.1 | 6.37 | 201.4 | 6.67 | 204.9 | 6.11 | 197.8 | 6.30 | 201.4 | 5.80 | 190.0 |
SP07 | 5.30 | 191.8 | 6.94 | 223.0 | 5.36 | 191.8 | 6.93 | 223.0 | 4.93 | 183.7 | 6.60 | 215.6 | 6.10 | 207.8 |
SP08 | 5.89 | 197.1 | 7.91 | 262.5 | 6.38 | 234.7 | 7.47 | 230.0 | 5.98 | 226.5 | 6.90 | 219.4 | 6.40 | 211.0 |
SP09 | 7.27 | 281.4 | 8.14 | 302.0 | 6.93 | 277.6 | 7.47 | 285.3 | 6.59 | 270.3 | 7.30 | 281.4 | 6.70 | 270.3 |
SP10 | 6.71 | 164.9 | 8.81 | 187.6 | 6.47 | 159.9 | 9.07 | 189.6 | 5.73 | 152.1 | 8.80 | 187.6 | 8.10 | 179.0 |
Component No. | Method I | Method II | Method III | Method IV | Method V | Method VI | Method VII |
---|---|---|---|---|---|---|---|
SP01 | 2.70 | 1.79 | 2.25 | 1.85 | 2.53 | 2.00 | 2.21 |
SP02 | 2.51 | 1.79 | 2.47 | 1.66 | 2.87 | 1.82 | 2.02 |
SP03 | 2.90 | 1.80 | 2.18 | 1.93 | 2.42 | 1.84 | 2.01 |
SP04 | 2.78 | 1.77 | 2.16 | 1.89 | 2.40 | 1.77 | 1.96 |
SP05 | 2.25 | 1.50 | 2.01 | 1.46 | 2.26 | 1.51 | 1.64 |
SP06 | 1.79 | 1.32 | 1.49 | 1.42 | 1.55 | 1.50 | 1.63 |
SP07 | 1.86 | 1.42 | 1.84 | 1.43 | 2.01 | 1.50 | 1.62 |
SP08 | 1.79 | 1.33 | 1.65 | 1.41 | 1.76 | 1.53 | 1.65 |
SP09 | 1.38 | 1.23 | 1.45 | 1.34 | 1.52 | 1.37 | 1.50 |
SP10 | 1.98 | 1.51 | 2.05 | 1.46 | 2.31 | 1.51 | 1.64 |
Influencing Factor | (mm) | (kN) | (mm) | (kN) | (kN) | (mm) | ||||
---|---|---|---|---|---|---|---|---|---|---|
SP01 | 3.80 | 261 | 7.66 | 338 | 3628 | 27,268 | 11,666 | 255 | 8.39 | 2.21 |
SP02 | 3.50 | 290 | 7.07 | 379 | 2442 | 23,732 | 9256 | 267 | 7.09 | 2.02 |
SP03 | 4.10 | 364 | 6.96 | 426 | 4175 | 36,667 | 14,361 | 302 | 8.26 | 2.01 |
SP04 | 3.60 | 316 | 6.98 | 376 | 2461 | 16,708 | 6614 | 283 | 7.06 | 1.96 |
SP05 | 8.10 | 186 | 12.80 | 238 | 4904 | 9562 | 7288 | 167 | 13.26 | 1.64 |
SP06 | 5.80 | 190 | 9.40 | 229 | 2227 | 9276 | 4968 | 192 | 9.46 | 1.63 |
SP07 | 6.10 | 208 | 9.38 | 255 | 2768 | 12,230 | 5835 | 199 | 9.88 | 1.62 |
SP08 | 6.40 | 211 | 10.39 | 259 | 2957 | 22,899 | 10,891 | 204 | 10.53 | 1.65 |
SP09 | 6.70 | 270 | 9.94 | 333 | 3800 | 30,690 | 12,343 | 286 | 10.02 | 1.50 |
SP10 | 8.10 | 179 | 13.16 | 222 | 2717 | 12,860 | 6530 | 166 | 13.26 | 1.64 |
Control and Influencing Factors in the Restoring Force Model | (kN) | (mm) | (mm) | ||||
---|---|---|---|---|---|---|---|
Stiffness degradation factor | ★★ | ★★ | ★★ | ★★ | ★ | ★ | ★★ |
Slip or fracture closure factor | ★★ | ★★ | ★★ | ★★ | ★★ | ★★ | ★★ |
Energy degradation factor | ★ | ★★ | ★★ | ★★ | ★★ | ★★ | ★★★ |
Energy-based strength degradation factor | ★★ | ★ | ★★ | ★★ | ★★ | ★★ | ★★ |
Ductility-based strength degradation factor | ★ | ★★ | ★★ | ★★ | ★★ | ★★ | ★★ |
Component No. | Yield Displacement | Maximum Load | Maximum Displacement | Ultimate Displacement | Equal-Energy Bi-Parametric Ductility | Total Elastic Energy | Total Hysteretic Energy | Total Envelop Energy | Maximum Envelope Energy Ductility |
---|---|---|---|---|---|---|---|---|---|
— | — | ||||||||
SP01 | 3.80 | 261.3 | 7.663 | 8.393 | 2.21 | 27,267.5 | 11,666.1 | 3628.4 | 3.22 |
SP02 | 3.50 | 290.4 | 7.074 | 7.086 | 2.02 | 23,731.7 | 9256.3 | 2441.9 | 3.79 |
SP03 | 4.10 | 364.2 | 6.958 | 8.26 | 2.01 | 36,666.7 | 14,361.3 | 4174.6 | 3.44 |
SP04 | 3.60 | 316.4 | 6.98 | 7.062 | 1.96 | 16,707.5 | 6614.2 | 2461.4 | 2.69 |
SP05 | 8.10 | 186.2 | 12.8 | 13.26 | 1.64 | 9561.5 | 7288.0 | 4904.3 | 1.49 |
SP06 | 5.80 | 190.0 | 9.398 | 9.463 | 1.63 | 9275.7 | 4968.2 | 2227.2 | 2.23 |
SP07 | 6.10 | 207.8 | 9.383 | 9.883 | 1.62 | 12,229.8 | 5834.7 | 2768.2 | 2.11 |
SP08 | 6.40 | 211.0 | 10.39 | 10.53 | 1.65 | 22,898.6 | 10,891.2 | 2956.7 | 3.68 |
SP09 | 6.70 | 270.3 | 9.945 | 10.02 | 1.50 | 30,690.4 | 12,343.1 | 3800.3 | 3.25 |
SP10 | 8.10 | 179.0 | 13.16 | 13.26 | 1.64 | 12,859.8 | 6529.8 | 2716.6 | 2.40 |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2025 by the author. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Lin, H.-B. Calculation of Ultimate Ductility Index Based on Hysteretic Energy Analysis of the Restoring Force Curve. Buildings 2025, 15, 3152. https://doi.org/10.3390/buildings15173152
Lin H-B. Calculation of Ultimate Ductility Index Based on Hysteretic Energy Analysis of the Restoring Force Curve. Buildings. 2025; 15(17):3152. https://doi.org/10.3390/buildings15173152
Chicago/Turabian StyleLin, Huang-Bin. 2025. "Calculation of Ultimate Ductility Index Based on Hysteretic Energy Analysis of the Restoring Force Curve" Buildings 15, no. 17: 3152. https://doi.org/10.3390/buildings15173152
APA StyleLin, H.-B. (2025). Calculation of Ultimate Ductility Index Based on Hysteretic Energy Analysis of the Restoring Force Curve. Buildings, 15(17), 3152. https://doi.org/10.3390/buildings15173152