%% 突入電流を計算する% https://ak1211.com% Copyright (c) 2015 Akihiro Yamamoto%%% This software is released under the MIT License.% http://opensource.org/licenses/mit-license.php%e=12;r=0.020;c=0.0082;t=linspace(0,0.001,1000);i=e/r*exp(-1/(r*c)*t);plot(t*1000,i,'cb-');gridon;holdon;xticks=get(gca(), "xtick");xticks=[xticks[0.164]];xticks=sort(xticks);set(gca(), "xtick",xticks);xlabel('time [ms]');ylabel('current [A]');legend('inrush current', "location",'north');d=(i(2)-i(1))/(t(2)-t(1));y=i(1)+d*t;y(y<0.0)=NA;plot(t*1000,y,'cm-');
クリックして展開し、詳細を表示
突入電流を抑制した場合にコンデンサーに流れる電流
E = 12V
R = 33 + ESR = 33.020Ω
C = 8200uF
の時
i(t)=33.02012e−33.020⋅0.00821t
時定数 ττ=RC=33.020⋅0.0082=270.76ms
最大突入電流(t=0の電流)
Ipeak=33.02012=363.42mA
MATLAB
%% 突入電流を計算する% https://ak1211.com% Copyright (c) 2015 Akihiro Yamamoto%%% This software is released under the MIT License.% http://opensource.org/licenses/mit-license.php%e=12;r=33+0.020;c=0.0082;t=linspace(0,1,1000);i=e/r*exp(-1/(r*c)*t);plot(t*1000,i,'cb-');gridon;holdon;xticks=get(gca(), "xtick");xticks=[xticks[270]];xticks=sort(xticks);set(gca(), "xtick",xticks);xlabel('time [ms]');ylabel('current [A]');legend('inrush current', "location",'north');d=(i(2)-i(1))/(t(2)-t(1));y=i(1)+d*t;y(y<0.0)=NA;plot(t*1000,y,'cm-');
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. Please attribute the source, use non-commercially, and maintain the same license.
コメント