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 /1802/CH7/EX7.13 | |
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 '1802/CH7/EX7.13')
-rwxr-xr-x | 1802/CH7/EX7.13/Exa7_13.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1802/CH7/EX7.13/Exa7_13.sce b/1802/CH7/EX7.13/Exa7_13.sce new file mode 100755 index 000000000..11889dfb1 --- /dev/null +++ b/1802/CH7/EX7.13/Exa7_13.sce @@ -0,0 +1,17 @@ +//Exa 7.13
+clc;
+clear;
+close;
+//Given data :
+format('v',7);
+VL=240;//in volt
+Router=0.2;//in ohm
+I1=VL/5;//in Ampere
+I2=VL/6;//in Ampere
+Ineutral=I1-I2;//in Ampere
+//Applying KVL on +ve side
+V1=VL+I1*0.2+8*0.4;//in volt
+disp(V1,"Voltage at +ve side(in V): ");
+//Applying KVL on +ve side
+V2=VL-(8*0.4)+I2*0.2;//in volt
+disp(V2,"Voltage at -ve side(in V): ");
\ No newline at end of file |