summaryrefslogtreecommitdiff
path: root/620/CH10/EX10.10.b
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /620/CH10/EX10.10.b
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 '620/CH10/EX10.10.b')
-rw-r--r--620/CH10/EX10.10.b/example10_10b.sce13
-rw-r--r--620/CH10/EX10.10.b/example10_10b.txt9
2 files changed, 22 insertions, 0 deletions
diff --git a/620/CH10/EX10.10.b/example10_10b.sce b/620/CH10/EX10.10.b/example10_10b.sce
new file mode 100644
index 000000000..1d630a872
--- /dev/null
+++ b/620/CH10/EX10.10.b/example10_10b.sce
@@ -0,0 +1,13 @@
+vb=13.2;
+vg=14.4;
+rb=0.3;
+rg=0.2;
+rl=0.68;
+ib=vb/rb;
+ig=vg/rg;
+rn=rb*rg/(rb+rg);
+in=ib+ig;
+i=in*rn/(rn+rl);
+disp("the load current (in A) is"); disp(i);
+v=i*rl;
+disp("the load voltage (in V) is"); disp(v); \ No newline at end of file
diff --git a/620/CH10/EX10.10.b/example10_10b.txt b/620/CH10/EX10.10.b/example10_10b.txt
new file mode 100644
index 000000000..da4cd700f
--- /dev/null
+++ b/620/CH10/EX10.10.b/example10_10b.txt
@@ -0,0 +1,9 @@
+
+ the load current (in A) is
+
+ 17.4
+
+ the load voltage (in V) is
+
+ 11.832
+ \ No newline at end of file