当前位置:网站首页>matlab simulink response spectrum calculation
matlab simulink response spectrum calculation
2022-08-10 04:00:00 【lijil168】
matlab simulinkResponse spectrum calculation
参考
A comparative study of several calculation methods for ship shock spectrum道客巴巴
Cui Jidong's response spectrum calculation softwareSPECTR
问题
用AbaqusThe results of the acceleration shock response for simulation calculations are compared with SPECTRPartially inconsistent,Try to find out why.
SPECTR计算结果
matlab simulinkResponse spectrum calculation results
结果与Abaqus仿真结果基本一致,Acceleration response from14HZ到18HzThere is a drop in the middle,而SPECTRIt keeps going up.
matlabControl codes and simulink模型
%RSget%
fn=[0,2.2,6,10,14,16,18,20];%Natural frequencies of a single degree of freedom system
wn=2*pi*fn;
k1=wn.^2;
m=1;
s_=0.05;
wd=sqrt(1-s_^2)*wn;
c1=2*s_*wn*m;
modelname=bdroot;%Get the currently active model name
stoptime=1;
Num=length(k1);%Response spectrum solution points
Color=[0.5,0,0;
1,0,0;
0,0.5,0;
0,1,0;
0,0,0.5;
0,0,1;
0.5,0.5,0;
0.5,0,0.5
0,0.5,0.5
0.5,05,0.5];
for i=1:Num
k=k1(i);
c=c1(i);
simout{
i}=sim(modelname,'StopTime',num2str(stoptime));%针对每组输入,Return the output separately % 仿真结束后,你可以利用simoutGet simulation results
%Get all output results
plot(simout{
i}.get('tout'),simout{
i}.get('yout'),'color',Color(i,:));
hold on;
RS_min(i)=min(simout{
i}.get('yout'));
RS_max(i)=max(simout{
i}.get('yout'));
end
figure;
plot(fn,[RS_min;RS_max;-RS_min])
边栏推荐
猜你喜欢
Dynamic Web Development Fundamentals
MySQL: Introduction to Logging System | Error Log | Query Log | Binary Log: Bin-log Data Recovery Practice | Slow Log Query
Embedded Sharing Collection 32
Excel Advanced Drawing Skills 100 Lectures (23) - Countdown Counting in Excel
charles的功能操作
Small program subcontracting and subcontracting pre-download
flink 12 源码编译及使用idea运行、debug
同样是初级测试,凭什么他比我薪资高 5000 块?
所谓软件测试工作能力强,其实就是这 5 点
流星加速器木马分析与处置方案
随机推荐
第三章 搜索与图论(二)
常用类以及接口
网页挖矿溯源?浏览器浏览历史查看工具Browsinghistoryview
中国人保为德科康材承保产品责任险,为消费者权益保驾护航!
How does a new tester do functional testing?Test thinking is really important
(十四)时间延时任务及定时任务
shell文本编辑awk
ARP Spoofing - Tutorial Details
MySQL: What MySQL optimizations have you done?
全面深入了解什么是反向代理和负载均衡
NFG电商系统在元宇宙趋势下做什么?
flutter异步
获取属性特性几种方法
PC摄像头设置 默认摄像头设置 win11 默认摄像头设置
uva1392
Mini Program Navigation and Navigation Parameters
小程序导航及导航传参
驱动程序开发:按键中断之异步通知
使用flink-sql写入mysql的时候,只指定插入的字段,但是会报错id字段错误,没有默认值,创
PostgreSQL相关语法及指令示例