diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1850/CH5/EX5.9/exa_5_9.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1850/CH5/EX5.9/exa_5_9.sce')
-rwxr-xr-x | 1850/CH5/EX5.9/exa_5_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1850/CH5/EX5.9/exa_5_9.sce b/1850/CH5/EX5.9/exa_5_9.sce new file mode 100755 index 000000000..ea641d88c --- /dev/null +++ b/1850/CH5/EX5.9/exa_5_9.sce @@ -0,0 +1,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)")
+
+
|