当前位置:网站首页>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])
边栏推荐
猜你喜欢
随机推荐
C - The Battle of Chibi (dp加树状数组前缀和优化)
实测办公场景下,国产远程控制软件的表现力如何?(技术解析)
《天才基本法》:平行时空的第二次选择,小演员的表现意外出圈
“双枪”木马病毒的进化史
Instance 042: Variable scope
excel高级绘图技巧100讲(二十三)-Excel中实现倒计时计数
Take you to an in-depth understanding of the version update of 3.4.2, what does it bring to users?
使用注解实现限流
Kotlin协程:父子协程的绑定与传递
applet wxs
Embedded Sharing Collection 32
Example 046: Breaking the Cycle
网页挖矿溯源?浏览器浏览历史查看工具Browsinghistoryview
Day16 charles的基本使用
动态网页开发基础
如何使用腾讯字体,已经在什么场合下可以使用该字体?TTTGB-Medium
@Autowired注解 --required a single bean, but 2 were found出现的原因以及解决方法
Little rookie Hebei Unicom induction training essay
fastjson autoType is not support
IDEA自动生成serialVersionUID