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 /3369/CH12/EX12.4 | |
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 '3369/CH12/EX12.4')
-rwxr-xr-x | 3369/CH12/EX12.4/Ex12_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3369/CH12/EX12.4/Ex12_4.sce b/3369/CH12/EX12.4/Ex12_4.sce new file mode 100755 index 000000000..22c60b7b0 --- /dev/null +++ b/3369/CH12/EX12.4/Ex12_4.sce @@ -0,0 +1,13 @@ +//Chapter 12, Exmaple 4, page 406 +//Calculate resistivity +clear +clc +// Baased on Equation 12.1*10**2 +c4 = 0.5*10**2/10 // micro F +Ic = 2*10**4*2*%pi*5*50*10**-6/sqrt(3) +C = (sqrt(3)*10000*Ic)*(10**-9*10**6) +printf("\n C4 = %f mircoF ",c4) +printf("\n Line charging current = %f A ",Ic) +printf("\n Charging = %f kVA ",C) + +// Answers may vary due to round off error |