质量 - 阻尼 - 弹簧系统的鲁棒控制分析
1. 不确定系统的频率分析
在分析不确定的质量 - 阻尼 - 弹簧系统时,我们可以通过特定的代码来构建系统模型并计算其频率响应。以下是用于定义系统的 sys_mds.m 文件代码:
m_nom = 3; c_nom = 1; k_nom = 2;
p_m = 0.4; p_c = 0.2; p_k = 0.3;
mat_mi = [-p_m 1/m_nom; -p_m 1/m_nom];
mat_c = [0 c_nom; p_c c_nom];
mat_k = [0 k_nom; p_k k_nom];
int1 = nd2sys([1],[1 0]);
int2 = nd2sys([1],[1 0]);
systemnames = 'mat_mi mat_c mat_k int1 int2';
sysoutname = 'G';
inputvar = '[um;uc;uk;u]';
input_to_mat_mi = '[um;u-mat_c(2)-mat_k(2)]';
input_to_mat_c = '[uc;int1]';
input_to_mat_k = '[uk;int2]';
input_to_int1 = '[mat_mi(2)]';
input_to_int2 = '[int1]';
outputvar = '[mat_mi(1);mat_c(1);mat_k(1);int2]';
sysic;
为了计算扰动开环系统的频率响应,我们可以使用 starp 命令。在
超级会员免费看
订阅专栏 解锁全文
787

被折叠的 条评论
为什么被折叠?



