diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3673/CH1/EX1.a.14/Example_a_1_14.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3673/CH1/EX1.a.14/Example_a_1_14.sce')
-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)");
|