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 /1523/CH1/EX1.5 | |
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 '1523/CH1/EX1.5')
-rwxr-xr-x | 1523/CH1/EX1.5/1_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1523/CH1/EX1.5/1_5.sce b/1523/CH1/EX1.5/1_5.sce new file mode 100755 index 000000000..c7da8df56 --- /dev/null +++ b/1523/CH1/EX1.5/1_5.sce @@ -0,0 +1,14 @@ +//Basic Circuit Concepts
+//pg no-1.12
+//example 1.5
+I1=2/5;
+printf("I1=2/5= %2f Ampere", I1)
+I2=4/8;
+printf("\nI2=4/8= %2f Ampere", I2)
+printf("\nPotential difference between points x and y = Vxy = Vx-Vy")
+printf("\nWriting KVL equations for the path x to y")//Writing KVL equation from x to y
+printf("\nVs+3*I1+4-3*I2-Vy=0")
+printf("\nVs+3*(0.4) + 4- 3*(0.5) -Vy = 0")
+printf("\nVs+3*I1+4-3*I2-Vy = 0")
+printf("\nVx-Vy = -3.7")
+printf("\nVxy = -3.7V")
\ No newline at end of file |