Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
me3255_group5/problem2_plot.asv
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
95 lines (87 sloc)
2.34 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%For loop for six segments to find max deflection | |
n=0; | |
for q = [1,10,20,30,50] | |
i=n+1; | |
x=1/6; %splits up beam into six | |
b=0.1; %width of beam | |
E=70E9; %Young's modulus | |
h=0.01;%height of beam | |
I=(b*(h^3))/12; %Second MOI | |
z=((x.^4)*q)/(E*I); %differentiation used to solve for displacement | |
Seg6 =[5,-4,1,0,0; | |
-4,6,-4,1,0; | |
1,-4,6,-4,1; | |
0,1,-4,6,-4; | |
0,0,1,-4,5]; | |
Y=[z;z;z;z;z]; | |
B=Seg6/Y; | |
B_3=B; | |
max_def3=max(B_3); | |
X6(i) = max_def3; | |
end | |
%For loop for ten segments to find max deflection | |
n=0; | |
for q = [1,10,20,30,50] | |
i=n+1; | |
x=1/10; %splits up beam into ten | |
b=0.1; %width of beam | |
E=70E9; %Young's modulus | |
h=0.01;%height of beam | |
I=(b*(h^3))/12; %Second MOI | |
z=((x.^4)*q)/(E*I); %differentiation used to solve for displacement | |
Seg10= [5,-4,1,0,0,0,0,0,0; | |
-4,6,-4,1,0,0,0,0,0; | |
1,-4,6,-4,1,0,0,0,0; | |
0,1,-4,6,-4,1,0,0,0; | |
0,0,1,-4,6,-4,1,0,0; | |
0,0,0,1,-4,6,-4,1,0; | |
0,0,0,0,1,-4,6,-4,1; | |
0,0,0,0,0,1,-4,6,-4; | |
0,0,0,0,0,0,1,-4,5]; | |
Y=[z;z;z;z;z;z;z;z;z]; | |
B=Seg10/Y; | |
B_2=B; | |
max_def2=max(B_2); | |
X10(i)=max_def2; | |
end | |
%For loop for twenty segments to find max deflection | |
n=0; | |
for q = [1,10,20,30,50] | |
i=n+1; | |
x=1/20; %splits up beam into twenty | |
b=0.1; %width of beam | |
E=70E9; %Young's modulus | |
h=0.01;%height of beam | |
I=(b*(h^3))/12; %Second MOI | |
z=((x.^4)*q)/(E*I); %differentiation used to solve for displacement | |
Seg20= [5,-4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0; | |
-4,6,-4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0; | |
1,-4,6,-4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0; | |
0,1,-4,6,-4,1,0,0,0,0,0,0,0,0,0,0,0,0,0; | |
0,0,1,-4,6,-4,1,0,0,0,0,0,0,0,0,0,0,0,0; | |
0,0,0,1,-4,6,-4,1,0,0,0,0,0,0,0,0,0,0,0; | |
0,0,0,0,1,-4,6,-4,1,0,0,0,0,0,0,0,0,0,0; | |
0,0,0,0,0,1,-4,6,-4,1,0,0,0,0,0,0,0,0,0; | |
0,0,0,0,0,0,1,-4,6,-4,1,0,0,0,0,0,0,0,0; | |
0,0,0,0,0,0,0,1,-4,6,-4,1,0,0,0,0,0,0,0; | |
0,0,0,0,0,0,0,0,1,-4,6,-4,1,0,0,0,0,0,0; | |
0,0,0,0,0,0,0,0,0,1,-4,6,-4,1,0,0,0,0,0; | |
0,0,0,0,0,0,0,0,0,0,1,-4,6,-4,1,0,0,0,0; | |
0,0,0,0,0,0,0,0,0,0,0,1,-4,6,-4,1,0,0,0; | |
0,0,0,0,0,0,0,0,0,0,0,0,1,-4,6,-4,1,0,0; | |
0,0,0,0,0,0,0,0,0,0,0,0,0,1,-4,6,-4,1,0; | |
0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-4,6,-4,1; | |
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-4,6,-4; | |
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-4,5]; | |
Y=[z;z;z;z;z;z;z;z;z;z;z;z;z;z;z;z;z;z;z]; | |
B=Seg20/Y; | |
B_3=B; | |
max_def3=max(B_3); | |
X20(i) = max_def3; | |
end | |
%Plot q vs dx | |
setdefaults | |
Title ('Deflection vs Distributed Load') | |
xlabel('q (N/m)') | |
ylabel('dx') | |
hold on | |