summaryrefslogtreecommitdiff
path: root/1850/CH5/EX5.9/exa_5_9.sce
blob: ea641d88ca24ad42e576dc557e379257a9e329aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Exa 5.9
clc;
clear;
close;
// Given data
R=50;// in k ohm
R=R*10^3;// in ohm
C=2;// in micro F
C=C*10^-6;// in F
f=2;// in kHz
f=f*10^3;// in Hz
Vrms= 10;// in mV
RC= R*C;
// v_out= -1/(RC)*integrate('sqrt(2)*10*sind(4000*%pi*t)','t',0,t)= 0.0113*(cosd(4000*t)-1) in mV
disp("Output voltage in mV is : 0.0113*(cosd(4000*t)-1)")