Skip to main content

Earthquake Recurrence Law and the Weibull Distribution

  • Living reference work entry
  • First Online:
Encyclopedia of Earthquake Engineering
  • 514 Accesses

Synonyms

Earthquake; Weibull distribution

Introduction

Earthquakes are unpredictable given the difficulty of measuring the stresses and strains on a fault plane (Geller et al. 1997). The situation reflects the reality that recent catastrophic events went unpredicted, such as the 2008 Wenchuan earthquake in China and the 2011 Japan earthquake. Under the circumstances, a few alternatives for earthquake hazard mitigation are developed and practiced, including earthquake early warning, seismic hazard analysis, and earthquake statistics analysis (e.g., Hsiao et al. 2011; Chen et al. 2013; Wang et al. 2011, 2012a, b; Wu and Kanamori 2008).

With statistical models, earthquake probability can be best estimated accounting for the inevitable earthquake uncertainty in nature. One of the famous examples is the use of the Poisson model to estimate the earthquake probability with time. However, besides the support from mainly engineering judgments (earthquakes are rare), more tangible support was...

This is a preview of subscription content, log in via an institution to check access.

Access this chapter

Institutional subscriptions

References

  • Chen CH, Wang JP, Wu YM, Chan CH, Chang CH (2013) A study of earthquake inter-occurrence times distribution models in Taiwan. Nat Hazards. doi:10.1007/s11069-012-0496-7

    Google Scholar 

  • Devore JL (2008) Probability and statistics for engineering and the sciences, 8th ed. Brooks/Cole CENGAGE Learning, Independence, KY

    Google Scholar 

  • Geller RJ, Jackson DD, Kagan YY, Mulargia F (1997) Earthquakes cannot be predicted. Science 275:1616

    Article  Google Scholar 

  • Hsiao NC, Wu YM, Zhao L, Chen DY, Huang WT, Kuo KH, Shin TC, Leu PL (2011) A new prototype system for earthquake early warning in Taiwan. Soil Dyn Earthq Eng 31:201–208

    Article  Google Scholar 

  • McGuire RK, Arabasz WJ (1990) An introduction to probabilistic seismic hazard analysis. In: Ward SH (ed) Geotechnical and environmental geophysics, vol 1. Society of Exploration Geophysics, Tulsa, pp 333–353

    Google Scholar 

  • Wang JP, Chan CH, Wu YM (2011) The distribution of annual maximum earthquake magnitude around Taiwan and its application in the estimation of catastrophic earthquake recurrence probability. Nat Hazards 59:553–570

    Article  Google Scholar 

  • Wang JP, Chang SC, Wu YM, Xu Y (2012a) PGA distributions and seismic hazard evaluations in three cities in Taiwan. Nat Hazards 64:1373–1390

    Article  Google Scholar 

  • Wang JP, Huang D, Yang Z (2012b) The deterministic seismic hazard map for Taiwan developed using an in-house Excel-based program. Comput Geosci 48:111–116

    Article  Google Scholar 

  • Wang JP, Huang D, Chang SC, Wu YM (2014) New evidence and perspective to the Poisson process and earthquake temporal distribution from 55,000 events around Taiwan since 1900. Nat Hazards Rev ASCE 15:37–48

    Google Scholar 

  • Wu YM, Kanamori H (2008) Exploring the feasibility of on-site earthquake early warning using close-in records of the 2007 Noto Hanto earthquake. Earth Planets Space 60:155–160

    Google Scholar 

Download references

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Jui-Pin Wang .

Editor information

Editors and Affiliations

Appendix: VBA Scripts of the In-House Weibull Functions Calibrating Model Parameters

Appendix: VBA Scripts of the In-House Weibull Functions Calibrating Model Parameters

As mentioned, the two in-house functions are basically the same except for returning α or β. Therefore, the script for calculating α is only given in the following.

Public Function weibull_afa(mn, sd)

'**************************************

'This function to calculate afa of Weibull

'mn = mean value of X

'sd = standard deviation of X

'inc = increment of afa

'k0 = initial value of afa

'k and c = interim variables

'**************************************

inc = 0.005

k0 = 0.01

k = 0

Do

k = k + 1

afa1 = inc * k + k0

beta1 = mn / gamma_function(1 + 1 / afa1)

c1 = beta1 ^ 2 * (gamma_function(1 + 2 / afa1) - (gamma_function(1 + 1 / afa1)) ^ 2)

c1 = Abs(c1 - sd ^ 2)

afa2 = inc * (k + 1) + k0

beta2 = mn / gamma_function(1 + 1 / afa2)

c2 = beta2 ^ 2 * (gamma_function(1 + 2 / afa2) - (gamma_function(1 + 1 / afa2)) ^ 2)

c2 = Abs(c2 - sd ^ 2)

If c2 > c1 Then

Exit Do

End If

Loop

weibull_afa = afa1

End Function

Rights and permissions

Reprints and permissions

Copyright information

© 2014 Springer-Verlag Berlin Heidelberg

About this entry

Cite this entry

Wang, JP. (2014). Earthquake Recurrence Law and the Weibull Distribution. In: Beer, M., Kougioumtzoglou, I., Patelli, E., Au, IK. (eds) Encyclopedia of Earthquake Engineering. Springer, Berlin, Heidelberg. https://doi.org/10.1007/978-3-642-36197-5_98-1

Download citation

  • DOI: https://doi.org/10.1007/978-3-642-36197-5_98-1

  • Received:

  • Accepted:

  • Published:

  • Publisher Name: Springer, Berlin, Heidelberg

  • Online ISBN: 978-3-642-36197-5

  • eBook Packages: Springer Reference EngineeringReference Module Computer Science and Engineering

Publish with us

Policies and ethics