diff options
Diffstat (limited to '3673/CH1/EX1.a.14')
-rw-r--r-- | 3673/CH1/EX1.a.14/Example_a_1_14.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3673/CH1/EX1.a.14/Example_a_1_14.sce b/3673/CH1/EX1.a.14/Example_a_1_14.sce new file mode 100644 index 000000000..08cb4011a --- /dev/null +++ b/3673/CH1/EX1.a.14/Example_a_1_14.sce @@ -0,0 +1,18 @@ +//Example 1_14 page no:31
+clc;
+I1=1;
+I2=5;
+Va=70;
+V=100;
+//calculating R1 and R2
+V5=5*60;
+Va=100-30;
+R2=(70-30)/I2;
+R1=(70-50)/I1;
+disp(R1,"the resistance R1 is (in ohm)");
+disp(R2,"the resistance R2 is (in ohm)");
+//calculating R2 when current in R1 is zero
+Va=50;
+I2=(100-Va)/5;
+R2=20/I2;
+disp(R2,"the resistance R2 when current flowing through R1 is zero (in ohm)");
|