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 /1523/CH4/EX4.53/ex4_53.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 '1523/CH4/EX4.53/ex4_53.sce')
-rwxr-xr-x | 1523/CH4/EX4.53/ex4_53.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1523/CH4/EX4.53/ex4_53.sce b/1523/CH4/EX4.53/ex4_53.sce new file mode 100755 index 000000000..aea4ec0b6 --- /dev/null +++ b/1523/CH4/EX4.53/ex4_53.sce @@ -0,0 +1,9 @@ +//AC Circuits : example 4.53 :(pg 4.42)
+C=35*10^-6;
+f=50;
+XC=(1/(2*%pi*f*C));
+R=sqrt(3*(XC^2));
+R^2=(3*(XC^2));
+printf("\nC=35*10^-6 F \nf=50 Hz \nVC=1/2.V \nXC=1/(2*pi*f*C)=%.3f Ohm",XC);
+printf("\nVC=1/2.V \nXC.I=1/2.Z.I \nXC=1/2.Z \nZ=2.XC \nZ=sqrt((R^2)+(XC^2)) \n(2XC)^2=(R^2)+(XC^2) \n3XC^2=R^2");
+mprintf("\nR^2=3*XC^2=%.2f Ohm \nR=%.1f Ohm",R^2,R);
|