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 /3487/CH6/EX6.1 | |
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 '3487/CH6/EX6.1')
-rw-r--r-- | 3487/CH6/EX6.1/Ex6_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3487/CH6/EX6.1/Ex6_1.sce b/3487/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..89cc90988 --- /dev/null +++ b/3487/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,18 @@ +//Chapter 6,Example 6.1 Page 198 +clc +clear +Cs = 106 // micro F +C2 = 0.35 // micro F +R2 = 318 // ohms +R1 = 130 // ohms +w = 314 +Rs = R1*(C2/Cs) +Cs1 = Cs*(R2/R1) +tang = w*Cs1*10^-6*Rs +cosp = tang +printf (" Rs = %f ohm \n ",Rs) +printf (" Cs = %f μF \n ",Cs1) +printf (" tan δ s = %f \n ",tang) +printf (" cos φ = %f \n ",cosp) + +//Answers may vary due to round off error |