Skip to main content

Micro-vibration Measurement and Analysis of High-Tech Electronics Workshop in Guangzhou

  • Chapter
  • First Online:
Environmental Vibrations and Transportation Geodynamics (ISEV 2016)

Abstract

High-tech electronics workshop typically has stringent requirements for micro-vibration control, so as to ensure the proper operation of the installed vibration-sensitive facilities. Based on a micro-vibration measurement on a high-tech electronics workshop in Guangzhou, China, this paper reports the test data, presents a systematic and detailed summary of issues related to vibration data processing, and analyzes the transformation of the vibration characteristics when the anti-vibration techniques enhances. The results show that, the one-third octave band spectral has great advantages in representing vibration data of high-tech buildings. With the enhancement of the anti-vibration techniques, the vibration amplitudes in all of the three directions decrease both in time-history and one-third octave band spectral and finally become roughly the same; and the dominant high-frequency component disappears, while the relative low-frequency component takes the leading role in all the three directions.

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

Access this chapter

Chapter
USD 29.95
Price excludes VAT (USA)
  • Available as PDF
  • Read on any device
  • Instant download
  • Own it forever
eBook
USD 169.00
Price excludes VAT (USA)
  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever
Softcover Book
USD 219.99
Price excludes VAT (USA)
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info
Hardcover Book
USD 219.99
Price excludes VAT (USA)
  • Durable hardcover edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info

Tax calculation will be finalised at checkout

Purchases are for personal use only

Institutional subscriptions

References

  1. Cheng, K. J., Lee, S. L., Yang, J. Y. (2012). The simulation of ambient vibration signal of high-tech factory buildings ground base. Applied Mechanics and Materials, 170–173: 3672-3677.

    Google Scholar 

  2. Jaswal, H. (2007). Analysis of micro-vibration in buildings, technical report. Proceedings of 2007 Earthquake Engineering Symposium for Young Researchers, Seattle, vol9, pp 1–12.

    Google Scholar 

  3. Nishiyama, K., Taoda, K., Dyke, S.J. (1997). Temporary threshold shift of vibratory sensation induced by hand-arm vibration composed of four one-third octave band vibrations. Journal of Sound and Vibration, 200(5): 631–642.

    Google Scholar 

  4. GB 5107-2015. Technical code for anti-vibration engineering of electronics industry. China Planning Press, Beijing (in Chinese).

    Google Scholar 

  5. Gao, G.Y., He, Z.K., Feng, S.J. (2008). Analysis of ground random vibration response of clear workshop in medium-weathered granite area. Journal of Engineering Geology, 16(Suppl.): 477–482 (in Chinese).

    Google Scholar 

  6. Gao, G.Y., Li, N., Xiong, H., Fang, C.P. (2008). Micro-vibration measurement of electronics workshop. Journal of Disaster Prevention and Mitigation Engineering, 2008 (Suppl.): 94–100 (in Chinese).

    Google Scholar 

  7. Gao, G.Y., Zhang, B., Li, N., Li J. (2010). Micro-vibration test and analysis for high-tech electronic industrial workshop. Proceedings of the 11th national geo-mechanics and engineering conference, Wuhan, pp. 303–306 (in Chinese).

    Google Scholar 

  8. Gao, G.Y., Song, J., Chen, Q.S., Zhang, B., Li, N. (2011). Field measurement and analysis of micro-vibration for high-tech electronics workshop. Advances in Environmental Vibration, Fifth International Symposium on Environmental Vibration, Chengdu, pp. 173–178.

    Google Scholar 

  9. Gao, G.Y., Zhang, B., Li, N. (2011). Micro-vibration test and numerical analysis of electronics industrial workshop. Site Investigation Science and Technology Site Investigation Science and Technology, (3): 51–55(in Chinese).

    Google Scholar 

  10. Gao, G.Y., Li, J., Zhang, B., Chai, J.L. (2012). Test and analysis of environmental vibration for electronic industrial workshop. Journal of Guilin University of Technology, 32(3): 381–385 (in Chinese).

    Google Scholar 

  11. Jiang, Z., Gao, G.Y., Song, J., Zeng, L., Feng, S.J. (2013). Vibration test and analysis of a high-tech electronics plant in Suzhou. Advances in Environmental Vibration, Sixth International Symposium on Environmental Vibration: Prediction, Monitoring, Mitigation and Evaluation, Shanghai, pp. 254–259

    Google Scholar 

  12. Gao, G.Y., Nie, C.X., Li, S.Y. (2016). Test and finite element analysis of micro-vibration of electronic warehouse. Journal of Heifei University of Technology, 39(4): 518–522 (in Chinese).

    Google Scholar 

  13. Gordon, C. G. (1992). Generic criteria for vibration-sensitive equipment. Proceedings of SPIE - The International Society for Optical Engineering, San Mateo, vol.1619, pp. 71–85.

    Google Scholar 

  14. Gordon, C. G. (1999). Generic vibration criteria for vibration-sensitive equipment. Proceedings of SPIE - The International Society for Optical Engineering, San Mateo, vol.3786, pp. 22–33.

    Google Scholar 

  15. Romdhane, L. (1999). Design and analysis of a hybrid serial-parallel manipulator. Mechanism and Machine Theory, 34(7): 1037–1055.

    Google Scholar 

  16. Amick, H. (1997). On Generic Vibration Criteria for Advanced Technology Facilities. Journal of the IES, 40(5): 35–44.

    Google Scholar 

  17. Richard, G.L. (2012). Understanding digital signal processing. Publishing House of Electronics Industry, Beijing.

    Google Scholar 

Download references

Acknowledgements

The work described in this paper was supported by the National Science Foundation of China (Grant no. 51178342) and the Specialized Research Fund for the Doctoral Program of Higher Education, China (20130072110016).

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Guangyun Gao .

Editor information

Editors and Affiliations

Appendix 1: MATLAB Codes for rms Calculation

Appendix 1: MATLAB Codes for rms Calculation

Core Codes for rms Calculation in Frequency Domain Using Eq. (7)

f=[1.00 1.25 1.60 2.00 2.50 3.15 4.00 5.00 6.30 8.00]; fc=[f,10*f,100*f,1000*f,10000*f];           % set the value of the center frequency oc6=2^(1/6); a=fft(x,nfft);                                           % FFT on signal x for j=1:nc     fl=fc(j)/oc6;                                        % lower bound     fu=fc(j)*oc6;                                       % upper bound     nl=round(fl*nfft/sf+1);                         % position of the lower bound     nu=round(fu*nfft/sf+1);                       % position of the upper bound      if fu>sf/2         m=j-1; break;                           % the loop ended when the upper bound reaches      end                                              % half the sampling rate/cut-off frequency      yc(j)=norm(abs(a(nl:nu)))*sqrt(2)/n;    % Eq. (7) end

Core Codes for rms Calculation in Time Domain Using Eq. (5b)

f=[1.00 1.25 1.60 2.00 2.50 3.15 4.00 5.00 6.30 8.00]; fc=[f,10*f,100*f,1000*f,10000*f]; oc6=2^(1/6); a=fft(x,nfft); for j=1:nc     fl=fc(j)/oc6;        fu=fc(j)*oc6;        nl=round(fl*nfft/sf+1);       nu=round(fu*nfft/sf+1);       if fu>sf/2         m=j-1; break;     end     b=zeros(1,nfft);     b(nl:nu)=a(nl:nu);     b(nfft-nu+2:nfft-nl+2)=a(nfft-nu+2:nfft-nl+2);   % Filtering of desired bandwidth      c=ifft(b,nfft);                                                            % inverse FFT on the filtered signal     yc(j)=norm(real(c(1:n)))/sqrt(nfft);                    % Eq.(5b) end

Rights and permissions

Reprints and permissions

Copyright information

© 2018 Springer Nature Singapore Pte. Ltd. and Zhejiang University Press

About this chapter

Cite this chapter

Chen, J., Gao, G., Song, J., Zhang, W. (2018). Micro-vibration Measurement and Analysis of High-Tech Electronics Workshop in Guangzhou. In: Bian, X., Chen, Y., Ye, X. (eds) Environmental Vibrations and Transportation Geodynamics. ISEV 2016. Springer, Singapore. https://doi.org/10.1007/978-981-10-4508-0_24

Download citation

  • DOI: https://doi.org/10.1007/978-981-10-4508-0_24

  • Published:

  • Publisher Name: Springer, Singapore

  • Print ISBN: 978-981-10-4507-3

  • Online ISBN: 978-981-10-4508-0

  • eBook Packages: EngineeringEngineering (R0)

Publish with us

Policies and ethics