资源简介
于群《MATLAB/Simulink电力系统建模与仿真》课本+仿真模型和代码+matpower及其使用手册
代码片段和文件信息
% --- 减法滤波器matlab辅助设计文件 ---
% 问题:滤波后相位发生了变化
clc;clear;close all;
%% ---- 根据传递函数绘出幅频特性 --- %%
% 设置减法滤波器的传递函数系数
a1=1; b1=[1 0 0 0 0 0 -1]; %传递函数 H(z)=1- z^(-6)
f=0:1:600; %频率范围
h1=abs(freqz(b1a1f1200));%返回在向量f范围内,采样频率为1200Hz下的幅频特性
% 由传递函数系数确定传递函数的幅频特性
H1=h1/max(h1); % 单位化,其实h1即是幅频特性
% 绘出幅频特性
figure;
plot(fH1);
xlabel(‘f/Hz‘); ylabel(‘H1‘);
%% ---- 滤波仿真效果 ---- %%
% 模拟输入参数
N=24;
t1=(0:0.02/N:0.04); %两个基频周期
m=size(t1); % m=[149] 1行49列
% 基波电压
Va=100*sin(2*pi*50*t1);
%叠加直流分量和48次谐波分量
Va1=35+100*sin(2*pi*50*t1)+30*sin(2*pi*200*t1)+10*sin(2*pi*400*t1);
%采用减法滤波器滤掉Va1的直流分量和48次谐波分量
Y=zeros(16);
for jj=7:m(2) %7:49 滤波器为6阶,故从7开始
Y(jj)=(Va1(jj)-Va1(jj-6))/1.414; % 为什么要除以sqrt(2)
%Y(jj)=(Va1(jj)-Va1(jj-6));
end
% 输出波形
figure;
plot(t1Va‘-ro‘
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 117 2014-08-18 21:13 Power System Modeling and Simulation\book1.txt
文件 35804 2014-08-14 16:31 Power System Modeling and Simulation\example5_1_three_fault.mdl
文件 42416 2014-08-18 21:23 Power System Modeling and Simulation\example5_2_Generator_fault.mdl
文件 63102 2014-08-14 19:45 Power System Modeling and Simulation\example5_3_1_Ground_fault.mdl
文件 65099 2014-08-14 19:50 Power System Modeling and Simulation\example5_3_2_Ground_fault.mdl
文件 1062 2014-08-15 11:03 Power System Modeling and Simulation\example7_1_minus_filter.m
文件 468 2014-10-18 13:13 Power System Modeling and Simulation\example7_2_frontier_amplitude.m
文件 1386 2014-08-18 08:53 Power System Modeling and Simulation\example7_2_frontier_method.m
文件 1247 2014-08-15 15:32 Power System Modeling and Simulation\example7_2_twopoints_method.m
文件 80175 2014-08-18 15:30 Power System Modeling and Simulation\example7_3_2_direction_relay.mdl
文件 74922 2014-08-18 15:30 Power System Modeling and Simulation\example7_3_direction_relay.mdl
文件 1047 2014-08-18 10:35 Power System Modeling and Simulation\example7_3_frontier_method.m
文件 50933 2014-08-18 17:00 Power System Modeling and Simulation\example7_4_1_transformer.mdl
文件 55165 2014-08-18 17:07 Power System Modeling and Simulation\example7_4_2_transformer.mdl
文件 46048 2014-08-18 21:23 Power System Modeling and Simulation\example7_4_transformer.mdl
文件 51568 2014-08-18 20:43 Power System Modeling and Simulation\example7_5_travelling_wave.mdl
文件 45653 2014-08-18 22:01 Power System Modeling and Simulation\example9_1_wind_turbine.mdl
文件 45495 2014-08-18 22:08 Power System Modeling and Simulation\example9_2_wind_turbine_fault.mdl
文件 528496 2014-08-19 09:25 Power System Modeling and Simulation\example9_3_two_wind_turbine.mdl
文件 23332292 2015-05-16 21:19 Power System Modeling and Simulation\MATLAB_Simuli
文件 2359500 2014-04-22 16:23 Power System Modeling and Simulation\matpower4.0b2.zip
文件 358798 2014-05-19 21:29 Power System Modeling and Simulation\MATPOWER手册(中文版).pdf
文件 968 2014-08-18 21:17 Power System Modeling and Simulation\xingbo.m
文件 594208 2014-08-18 19:45 Power System Modeling and Simulation\xingbo.mat
目录 0 2015-07-04 09:34 Power System Modeling and Simulation
----------- --------- ---------- ----- ----
27835969 25
相关资源
- HMMforspeechrecogntion 一个可执行的HMM语音
- popular-UCI-datasets 一些非常有用的数据
- GAPSO 这个算法是遗传算法和粒子群优
- synchronization 利用matlab仿真实现载波的
- Gabor Gabor小波变换的matlab实现
- 4 matlab区域填充的具体算法及演示
- MATLAB_image_process_with_PDE 运用偏微分方
- gabijiao 该程序通过实例(函数)
- SIFT2844912
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- EELM
- barcode 基于图像的条形码识别程序(识
-
myaudiopla
yer 使用Matlab GUI实现的音频 - B-spline-surface 在MATLAB-2008a环境下编写的
- NURBS-surface 在MATLAB-2008a环境下编写的
- ACO 用MATLAB编写的蚁群算法最短路径寻
- wavplay 基于matlab GUI界面的播放器
- allfns 是由牛津大学VGG开发的三维重建
- spectrogram_fft
- adaboost 基于adaboost的人脸识别程序
- 2 2课程报告要求:按照讲课内容
- gps GPS信号的捕获、处理程序
- fuzzynetme 模糊神经网络的MATLAB程序
- naive_bayes_numeric 利用matlab实现的朴素贝
- MFandMPF 计算肌电信号积分肌电值
- BM3D BM3D去噪算法的实现和相关文档
- BarrelDistortion 两个matlab程序
- Kalman 用卡尔曼滤波跟踪目标实例
- WSN-matlab-simulation
评论
共有 条评论