Newmark Sliding Block Analysis

Version 2.0.0.0 (2,87 ko) par Sumeet
Newmark Sliding Block Calculation for a given accelration time history and yield acceleration
297 téléchargements
Mise à jour 8 mai 2017

Afficher la licence

%Newmark Sliding Block Analysis (NewmarkSb)
%--------------------------------------------------------------------------
% Newmark Sliding Block analysis is a popular method in geotechnical engineering
% to calculate displacments assuiming rigid plastic behaviour under dynamic loading
%
% SYNTAX
% NewmarkSb (time,acc,ky)
%
% INPUT
% [tm] : time data [nx1]
% [acc]: Acceleration data in units of g [nx1]
% [ky]: yield acceleration in units of g [1x1]
%
% OUTPUT
% subplot 1: Input Acceleration Time History (Base Acceleration)
% subplot 2: Absolute Acceleration of the block
% subplot 3: Relative Acceleration of the block
% subplot 4: Relative Velocity of the block
% subplot 5: Relative Displacement of the block
%
%
% EXAMPLE
% - for a square pulse
% tm = [[0:0.0001:0.5],[0.5+0.0001:0.0001:0.7],[0.7+0.0001:0.0001:2]];
% acc = [linspace(0,0,(0.5/0.0001)),linspace(0.5,0.5,(0.2/0.0001)+1),linspace(0,0,(1.3/0.0001))];
% ky = 0.2;
% NewmarkSb (tm,acc,ky);
%
%==========================================================================
% 2016 By: Sumeet Kumar Sinha (sumeet.kumar507@gmail.com)

Citation pour cette source

Sumeet (2024). Newmark Sliding Block Analysis (https://www.mathworks.com/matlabcentral/fileexchange/57758-newmark-sliding-block-analysis), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2014a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Food Sciences dans Help Center et MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Publié le Notes de version
2.0.0.0

Newmark Sliding Block Analysis
Newmark Sliding Block Analysis
Some Minor formating change