• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Matlab绘制剪切力和弯曲矩图

武飞扬头像
matlab科研助手
帮助1

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。

🍎个人主页:Matlab科研工作室

🍊个人信条:格物致知。

更多Matlab仿真内容点击👇

智能优化算法       神经网络预测       雷达通信      无线传感器        电力系统

信号处理              图像处理               路径规划       元胞自动机        无人机

⛄ 内容介绍

剪切力(Shear Force)和弯曲矩(Bending Moment)是结构力学中的两个重要概念。

剪切力是作用在结构横截面上的垂直于截面平面的力,它可以导致结构的横截面产生剪切变形。剪切力的方向沿结构轴线可以是正或负,取决于受力情况。

弯曲矩是作用在结构横截面上的力对结构轴线形成的弯曲力矩,它可以导致结构发生弯曲变形。弯曲矩的方向也可以是正或负,取决于受力情况。

剪切力和弯曲矩经常一起考虑,因为它们相互关联,共同影响结构的强度和稳定性。

在结构分析中,剪切力和弯曲表形式呈现,其坐标轴表示结构的位置,而纵轴则表示对应的剪切力和弯曲矩值。这样的图表可用来显示结构不同位置的受力情况,并帮助工程师评估结构的性能和设计合适的结构材料和尺寸。

⛄ 部分代码

%% Shear Force & Bending Moment Examples

%     This program calculates the shear force and bending moment profiles, 
%     draws the free body, shear force and bending moment diagrams of the 
%     problem.
% 
%     Under the free body diagram, the equations of each section is clearly 
%     written with Latex
% 
%% How to call the function
%     To use this program, you need to call the solve function on the instance 
%     of the SFBMProb object that has the complete problem description.
%     You first create the SFBMProb Object and then add the loads in no
%     partcular order. 
% 
%% How to create the SFBMProb object
%     create an instance of SFBMProb by calling "SFBMProb" with three
%     arguments. The first is the name of the problem. For instance, 
%     "Example 1", the second argument is Length of the beam, and the third
%     is locations of the supports. 
%
%     prob = SFBMProb(name, length, supports)
%%-   Cantilever
%       If the problem is a cantilever problem, then you have only one clamped 
%       support, at the beginning or end of the beam. In such a case, the number is
%       second argument contains 2 elements instead of three. 
%
%       For instance, for a cantilever of length 20m, supported at the beginning, 
%       prob = SFBMProb("Cantilever", 20, 0)
%       and if supported at the end, 
%       prob = SFBMProb("Cantilever", 20, 20)

%%-   Beam on the floor
%       Its possible to have a problem in which the body is lying on the floor 
%       without any point support. In such scenario, 
%       prob = SFBMProb("BeamOnFloor", 20, [])
%
%% Set Units
%     We have just two primary physical quantities here: Force and Legnth.
%     ForceUnit default is KN
%     LengthUnit default is m

%     but to set a preferred unit, use
%
%     prob.ForceUnit = "lb";
%     prob.LengthUnit = "inch";

%% Load Description
%     Loads can be Force: such point or distributed load, or Torque the we
%     call Moment here. In general Load would have value and location.
%     The sign of the value can indicate whether it is pointing upwards, or
%     downwards in the case of force, or clockwise/anticlockwise in case of
%     moment. While moment and point load have scalars for value and
%     location, distributed load have vector of value and location. 

%% How to add loads to the object.
%
%%-   Moment(Torque)
%         To add a clockwise moment of magnitude 3KN-m applied at point 5m
%         prob.AddMomentLoad(-3, 5);
%         For an anticlockwise moment of magnitude 7KN-m applied at point 8m
%         prob.AddMomentLoad(7, 8);
%
%%-   Concentrated Load(Force)
%         To add a downward point load of magnitude 0.8KN applied at point 3m
%         prob.AddPointLoad(-0.8, 3);
%         For an upward point load of magnitude 5KN-m applied at point 7m
%         prob.AddMomentLoad(5, 7);
%
%%-   Distributed Force
%         To add uniform upward distributed load of magnitude 2KN/m applied from point 3 to 5m 
%         prob.AddDistLoad([2, 2], [3, 5]);
%         For linearly increasing distributed load 2KN/m  to 5KN/m applied from point 3 to 5m 
%         prob.AddDistLoad([2, 5], [3, 5]);


%%     Example(1)

%Problem Name
Name = 'Example 1';

%Length and Supports
Length = 10; Supports = [2, 10]; % length  = 10, supports at 2 and 10;
prob = SFBMProb(Name, Length, Supports);

%Set Unit
prob.ForceUnit = 'lb';
prob.LengthUnit = 'inch';

%Concetrated Loads
prob.AddPointLoad(-5, 0); % 5N downward at point 0
prob.AddPointLoad(-10, 8); % 10N downward at point 8

%Torques
prob.AddMoment(10, 3);  % ACW 10Nm at point 3
prob.AddMoment(-10, 7); % CW 10Nm at point 7

%Solve the problem
prob.Solve()

%%     Example(2)
%Problem Name
Name = 'Example 2';

%Length and Supports
Length = 20; Supports = 0; % length  = 20m, Cantilever supported at 0 m;
prob = SFBMProb(Name, Length, Supports);

%Concentrated Loads
prob.AddPointLoad(-5, 6);   % 5N downward at point 6
prob.AddPointLoad(-10, 13); % 10N downward at point 13

%Distributed Loads
prob.AddDistLoad([5,5],[1,3]);    % Constant 5N/m upwards from 1m to 3 m 
prob.AddDistLoad([-4,-4],[14,17]); % Constant 4N/m downwards from 14m to 17 m

%Solve the problem
prob.Solve()

%%     Example(3)
%Problem Name
Name = 'Example 3';
% Length and Supports
Length = 30; Supports = [0,20]; % length  = 30m, supports at 0m and 20m;
prob = SFBMProb(Name, Length, Supports);

% Concentrated Loads
prob.AddPointLoad(-20, 6);   % 20N downward at point 6
prob.AddPointLoad(-10, 13);  % 10N downward at point 13
prob.AddPointLoad(5, 27);    % 5N upward at point 27

% Torques
prob.AddMoment(50, 8);  % ACW 50Nm at point 8
prob.AddMoment(-45, 25); % CW 45Nm at point 25

% Distributed Loads
prob.AddDistLoad([7, 7], [1,3]);    % Constant 7N/m upwards from 1m to 3m 
prob.AddDistLoad([-5,-5], [12,18]); % Constant 5N/m downwards from 12m to 18m

% Solve the problem
prob.Solve()

%%     Example(4)
%Problem Name
Name = 'Example 4';
% Length and Supports
Length = 20; Supports = [5,20]; % length  = 20m, supports at 5m and 20m;
prob = SFBMProb(Name, Length, Supports);

% Concentrated Loads
prob.AddPointLoad(-2, 0);   % 2N downward at point 0

% Torques
prob.AddMoment(50, 8);  % ACW 50Nm at point 8
prob.AddMoment(-45, 15); % CW 45Nm at point 15

% Distributed Loads
prob.AddDistLoad([5, 5], [1,3]);    % Constant 7N/m upwards from 1m to 3m 
prob.AddDistLoad([-4, -4], [14, 17]); % Constant 5N/m downwards from 12m to 18m

% Solve the problem
prob.Solve()

%%     Example(4)
%Problem Name
Name = 'Example 4';
% Length and Supports
Length = 20; Supports = [6,20]; % length  = 20m, supports at 5m and 20m;
prob = SFBMProb(Name, Length, Supports);

% Concetrated Loads
prob.AddPointLoad(-2,0);  % 2N downward at point 0

% Torques
prob.AddMoment(10,8);   % ACW 10Nm at point 8
prob.AddMoment(-15,12); % CW 10Nm at point 12

% Distributed Loads
prob.AddDistLoad([5, 2, 5], [1, 3, 5]);    % Quadratic profile distributed upwards force from 1m to 5m and 
prob.AddDistLoad([-4, -2, -4],[14, 16, 18]); % Quadratic profile distributed downwards force from 14m to 18m

% Solve the problem
prob.Solve()


%%     Example(5)
%Problem Name
Name = 'Example 5';
% Length and Supports
Length = 20; Supports = [6,20]; % length  = 20m, supports at 5m and 20m;
prob = SFBMProb(Name, Length, Supports);

% Concetrated Loads
prob.AddPointLoad(-2,0);  % 2N downward at point 0

% Torques
prob.AddMoment(10,8);   % ACW 10Nm at point 8
prob.AddMoment(-15,12); % CW 10Nm at point 12

% Distributed Loads
prob.AddDistLoad([5, 2], [1, 3]);    % Linear profile upwards from 1m to 3m and 
prob.AddDistLoad([2, 5], [3, 5]);    % Linear profile upwards from 3m to 5m and 
prob.AddDistLoad([-4, -2],[14, 16]); % Linear profile downwards from 14m to 16m
prob.AddDistLoad([-2, -4],[16, 18]); % Linear profile downwards from 16m to 18m

% Solve the problem
prob.Solve()

%%     Example(6)
%Problem Name
Name = 'Wikipedia';
Length = 50; Supports = 50;
prob = SFBMProb(Name, Length, Supports);
prob.Source = "https://en.wikipedia.org/wiki/Shear_and_moment_diagram#Calculating_shear_force_and_bending_moment";

%Set Units
prob.ForceUnit = 'k';
prob.LengthUnit = 'ft';

% Concetrated Loads
prob.AddPointLoad(-10,0); 
prob.AddPointLoad(25.3,10); 
prob.AddPointLoad(-3.5,25); 

% Torques
prob.AddMoment(-50,37.5); 

% Distributed Loads
prob.AddDistLoad([-1,-1], [10,25]);  

% Solve the problem
prob.Solve()

⛄ 运行结果

学新通

学新通

学新通

学新通

⛄ 参考文献

⛳️ 代码获取关注我

❤️部分理论引用网络文献,若有侵权联系博主删除
❤️ 关注我领取海量matlab电子书和数学建模资料

🍅 仿真咨询

1.卷积神经网络(CNN)、LSTM、支持向量机(SVM)、最小二乘支持向量机(LSSVM)、极限学习机(ELM)、核极限学习机(KELM)、BP、RBF、宽度学习、DBN、RF、RBF、DELM实现风电预测、光伏预测、电池寿命预测、辐射源识别、交通流预测、负荷预测、股价预测、PM2.5浓度预测、电池健康状态预测、水体光学参数反演、NLOS信号识别、地铁停车精准预测、变压器故障诊断
2.图像识别、图像分割、图像检测、图像隐藏、图像配准、图像拼接、图像融合、图像增强、图像压缩感知
3.旅行商问题(TSP)、车辆路径问题(VRP、MVRP、CVRP、VRPTW等)、无人机三维路径规划、无人机协同、无人机编队、机器人路径规划、栅格地图路径规划、多式联运运输问题、车辆协同无人机路径规划
4.无人机路径规划、无人机控制、无人机编队、无人机协同、无人机任务分配
5.传感器部署优化、通信协议优化、路由优化、目标定位
6.信号识别、信号加密、信号去噪、信号增强、雷达信号处理、信号水印嵌入提取、肌电信号、脑电信号
7.生产调度、经济调度、装配线调度、充电优化、车间调度、发车优化、水库调度、三维装箱、物流选址、货位优化
8.微电网优化、无功优化、配电网重构、储能配置
9.元胞自动机交通流 人群疏散 病毒扩散 晶体生长

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhiafaag
系列文章
更多 icon
同类精品
更多 icon
继续加载