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 /3035/CH6/EX6.1/Ex6_1.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 '3035/CH6/EX6.1/Ex6_1.sce')
-rwxr-xr-x | 3035/CH6/EX6.1/Ex6_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3035/CH6/EX6.1/Ex6_1.sce b/3035/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..a3c748f3c --- /dev/null +++ b/3035/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,14 @@ +// Variable Declaration +C_m = 0.28 //Capacitance b/w ant 2 cores(micro-F/km) +f = 50.0 //Frequency(Hz) +V_L = 11.0 //Line voltage(kV) + +// Calculation Section +C = 2*C_m //Capacitance b/w any conductor & shield(micro-F/km) +w = 2*%pi*f //Angular frequency +I_c = V_L*10**3*w*C*10**-6/3**0.5 //Charging current/phase/km(A) +Total = 3**0.5*I_c*V_L //Total charging kVAR/km + +// Result Section +printf('Charging current/phase/km , I_c = %.3f A' ,I_c) +printf('Total charging kVAR/km = %.2f ' ,Total) |