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 /2360/CH6/EX6.7 | |
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 '2360/CH6/EX6.7')
-rwxr-xr-x | 2360/CH6/EX6.7/ex6_7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2360/CH6/EX6.7/ex6_7.sce b/2360/CH6/EX6.7/ex6_7.sce new file mode 100755 index 000000000..712585805 --- /dev/null +++ b/2360/CH6/EX6.7/ex6_7.sce @@ -0,0 +1,17 @@ +// Exa 6.7
+format('v',7);clc;clear;close;
+// Given data
+R1 = 5.1;// in k ohm
+R1 = R1 * 10^3;// in ohm
+R2 = 7.9;// in k ohm
+R2 = R2 * 10^3;// in ohm
+R3 = 790;// in ohm
+C1 = 2;// in µF
+C1 = C1 * 10^-6;// in F
+omega = 1000;// in rad/sec
+Rx = (((omega)^2)*R1*((C1)^2)*R2*R3)/( 1+(((omega)^2) * ((R1)^2)* ((C1)^2)) );// unknown resistance in ohm
+Rx = Rx * 10^-3;// in k ohm
+disp(Rx,"The value of unknown resistance in kΩ is");
+Lx = (R2*R3*C1)/( 1+(((omega)^2) * ((R1)^2)* ((C1)^2)) );// unknown inductance in H
+Lx = Lx * 10^3;// in mH
+disp(Lx,"The value of unknown inductance in mH is");
|