diff options
Diffstat (limited to '3673/CH3/EX3.10/Ex3_10.sce')
-rw-r--r-- | 3673/CH3/EX3.10/Ex3_10.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3673/CH3/EX3.10/Ex3_10.sce b/3673/CH3/EX3.10/Ex3_10.sce new file mode 100644 index 000000000..3f395e13c --- /dev/null +++ b/3673/CH3/EX3.10/Ex3_10.sce @@ -0,0 +1,10 @@ +//Example 3_10 page no:129
+clc
+V1=10;
+G1=1/2;
+V2=20;
+G2=1/5;
+V0=((V1*G1)+(V2*G2))/(G1+G2)
+R0=1/(G1+G2)
+I=V0/(3+R0)
+disp(I,"the current is (in ampere)")
|