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/central_diff10.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (20 sloc)
660 Bytes
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
function B = central_diff10(q) | |
%This function of q uses central difference approximation to set up a system of | |
%equations while using numerical differentiation to determine the value of the end points. | |
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; |