📄 bendanalysis.m
字号:
% 闭口截面受弯所产生的剪流分析及弯曲中心判定
% 输入产生弯矩的外力荷载和截面的惯性矩
Ny=input('Please input the y-direction load: ');
Ix=input('Please input the inertia constant to x-axis: ');
% 计算s/t的沿程积分值
tj=sum((L*I1)./(T*I1));
% 输入用于计算各回路剪流值的方程系数矩阵和值列
Af=input('Please input the matrix to calculate shear current: ');
bf=input('Please input the array to calculate shear current: ');
% 计算各回路剪流值
f0=Af\(-Ny*bf/Ix);
% 输入剪流沿程对某点取矩的积分值
fh=input('Please input the integral value of shear current: ');
% 计算弯曲中心的位置
xa=-(fh+2*Ac'*f0)/Ny;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -