diff options
Diffstat (limited to '1514/CH18/EX18.5')
-rwxr-xr-x | 1514/CH18/EX18.5/18_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1514/CH18/EX18.5/18_5.sce b/1514/CH18/EX18.5/18_5.sce new file mode 100755 index 000000000..9e428f701 --- /dev/null +++ b/1514/CH18/EX18.5/18_5.sce @@ -0,0 +1,14 @@ +//chapter 18
+//example 18.5
+//page 576
+clear;
+clc ;
+//given
+VB1B2=30;
+etamin=0.55;
+etamax=0.82;//efficiency
+Vpmin=0.7+(etamin*30);
+Vpmax=0.7+(etamax*30);
+printf("\nDevice will fire at emitter voltage between %.1f V and %.1f V",Vpmin,Vpmax);
+
+
|