diff options
Diffstat (limited to '620/CH10/EX10.10.a/example10_10a.sce')
-rw-r--r-- | 620/CH10/EX10.10.a/example10_10a.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/620/CH10/EX10.10.a/example10_10a.sce b/620/CH10/EX10.10.a/example10_10a.sce new file mode 100644 index 000000000..a63188dab --- /dev/null +++ b/620/CH10/EX10.10.a/example10_10a.sce @@ -0,0 +1,11 @@ +vb=13.2;
+vg=14.4;
+rb=0.3;
+rg=0.2;
+rl=0.68;
+in=vb/rb+vg/rg;
+rn=rb*rg/(rb+rg);
+i=in*rn/(rn+rl);
+disp("the load current (in A) is"); disp(i);
+v=i*rl;
+disp("the load vltage (in V) is"); disp(v);
\ No newline at end of file |