summaryrefslogtreecommitdiff
path: root/147/CH2/EX2.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH2/EX2.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '147/CH2/EX2.2')
-rw-r--r--147/CH2/EX2.2/Example2_2.sce16
-rw-r--r--147/CH2/EX2.2/Result2_2.txt2
2 files changed, 18 insertions, 0 deletions
diff --git a/147/CH2/EX2.2/Example2_2.sce b/147/CH2/EX2.2/Example2_2.sce
new file mode 100644
index 000000000..528db7422
--- /dev/null
+++ b/147/CH2/EX2.2/Example2_2.sce
@@ -0,0 +1,16 @@
+//Resistances connected in parallel R, Source voltage V, Limiting voltage Vl
+close();
+clear;
+clc;
+R = 700;//ohm
+V = 210;//V
+Vl = 110;//V
+//Cureent through each 700 ohm resistor 'I1'
+I1 = Vl/R;
+//Total current drawn from source 'I'
+I = 3*I1;
+//Voltage across series resistor 'Vx'
+Vx = V - Vl;
+Rx = Vx/I;
+P = V*I;
+mprintf('Value of series resistor Rx = %0.1f ohm\nPower drawn from source P = %0.1f W',Rx,P); \ No newline at end of file
diff --git a/147/CH2/EX2.2/Result2_2.txt b/147/CH2/EX2.2/Result2_2.txt
new file mode 100644
index 000000000..fbf40fb1f
--- /dev/null
+++ b/147/CH2/EX2.2/Result2_2.txt
@@ -0,0 +1,2 @@
+Value of series resistor Rx = 212.1 ohm
+Power drawn from source P = 99.0 W \ No newline at end of file