Filter löschen
Filter löschen

How can i plot a cantilever beam with tip mass ?

2 Ansichten (letzte 30 Tage)
Mallouli Marwa
Mallouli Marwa am 21 Dez. 2016
Beantwortet: KSSV am 22 Dez. 2016
Hi
How can i plot a cantilever beam (fixed-free end) with tip mass on matlab ?
Please help me.

Antworten (1)

KSSV
KSSV am 22 Dez. 2016
clc; clear all;
%%cantilever beam with square tip mass
% cantilver dimensions
w = 0.2 ; % width
h = 1. ; % height
% make cooridnates
x = [0 w w 0] ;
y = [0 0 h h] ;
% square mass
wm = 0.6 ;
hm = 0.2 ;
% make mass coordinates
xm = [-0.2 0.4 0.4 -0.2] ;
ym = [h h h+hm h+hm] ;
% plot
figure
patch(x,y,'k') ;
hold on
patch(xm,ym,'k') ;
axis([-2 2 0 2]) ;
title('cantilver beam with square tip mass') ;
%%cantilever beam with circular mass
% cantilever dimensions
w = 0.2 ; % width
h = 1. ; % height
% make cooridnates
x = [0 w w 0] ;
y = [0 0 h h] ;
% circular mass
r = 0.2 ;
th = linspace(0,2*pi) ;
xm = 0.1+r*cos(th) ;
ym = 1.1+r*sin(th) ;
figure
patch(x,y,'k')
hold on
patch(xm,ym,'k')
axis([-2 2 0 2]) ;
title('cantilver beam with square tip mass') ;

Kategorien

Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by