필터 지우기
필터 지우기

simulation

조회 수: 2 (최근 30일)
Murali Mohan
Murali Mohan 2011년 6월 10일
답변: swapna rani 2020년 9월 16일
Why the simulation time will not match with actual time; eg:pulse generator block time period is in Sec,the output which is not match the real time;
  댓글 수: 3
Murali Mohan
Murali Mohan 2011년 6월 15일
I mean,simulation runs faster than real time.what are steps can be taken for synchronoising with real time.Is there any disadvantages of model if i do synchronoising this?
Arnaud Miege
Arnaud Miege 2011년 6월 15일
The real question is why do you want your simulation to run in (pseudo) real-time?

댓글을 달려면 로그인하십시오.

채택된 답변

Arnaud Miege
Arnaud Miege 2011년 6월 10일
Are you asking why Simulink runs faster than real-time? If so, you may want to look at the following File Exchange entries:
HTH,
Arnaud

추가 답변 (1개)

swapna rani
swapna rani 2020년 9월 16일
clear all;
hfin=1;
tsi=20
W=2*hfin*tsi;
Vth=1;
Leff=180;
DIBL=1.127*(W\Leff);
vth=Vth-DIBL;
lambda=25*10^-5;
u=1360;
ld=0.1;
Ec=1.5*106;
Cox=60;
Vds=0:0.5:10;
vgs=input('ENTER THE Vgs in volts');
m=length(Vds);
for i=1:m
if vgs < Vth
current(1,i)=0;
current1(1,i)=0;
elseif Vds(i) >= (vgs - Vth)
current(1,i)=0.5* DIBL * ((vgs - Vth)^2)*(1+lambda*Vds(i));%Added DIBL
elseif Vds(i) < (vgs - Vth)
current(1,i)= DIBL*((vgs-Vth)*Vds(i) - 0.5*(Vds(i)^2))*(1+lambda*Vds(i)); %Simplified equation by approximation
end
end
plot(Vds,current(1,:),'b')
xlabel('Vds, V')
ylabel('Drain Current,A')
title('I-V Characteristics of a MOSFET')
end

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by