summaryrefslogtreecommitdiff
path: root/2582/CH3/EX3.25/Ex3_25.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2582/CH3/EX3.25/Ex3_25.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2582/CH3/EX3.25/Ex3_25.sce')
-rwxr-xr-x2582/CH3/EX3.25/Ex3_25.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2582/CH3/EX3.25/Ex3_25.sce b/2582/CH3/EX3.25/Ex3_25.sce
new file mode 100755
index 000000000..13d96a0cf
--- /dev/null
+++ b/2582/CH3/EX3.25/Ex3_25.sce
@@ -0,0 +1,14 @@
+//Ex 3.25
+clc;clear;close;
+format('v',6);
+omega=10^4;//rad/s
+C=10;//nF
+fi1=-30;fi2=-90;fi3=-120;fi4=-150;//degree
+R1=tand(-fi1/2)/(C*10^-9*omega)/1000;//kohm
+R2=tand(-fi2/2)/(C*10^-9*omega)/1000;//kohm
+R3=tand(-fi3/2)/(C*10^-9*omega)/1000;//kohm
+R4=tand(-fi4/2)/(C*10^-9*omega)/1000;//kohm
+disp(R1,"For phase shift=-30 degree, Resistance(kohm) : ");
+disp(R2,"For phase shift=-90 degree, Resistance(kohm) : ");
+disp(R3,"For phase shift=-120 degree, Resistance(kohm) : ");
+disp(R4,"For phase shift=-150 degree, Resistance(kohm) : ");