diff options
Diffstat (limited to '3507/CH15/EX15.1/Ex15_1.sce')
-rw-r--r-- | 3507/CH15/EX15.1/Ex15_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3507/CH15/EX15.1/Ex15_1.sce b/3507/CH15/EX15.1/Ex15_1.sce new file mode 100644 index 000000000..2f36b431e --- /dev/null +++ b/3507/CH15/EX15.1/Ex15_1.sce @@ -0,0 +1,11 @@ +//chapter15
+//example15.1
+//page321
+
+V=12 // V
+P=2 // W
+
+// since P=V*Ic we get
+Ic_max=P/V // in ampere
+
+printf("maximum collector current = %.3f mA \n",Ic_max*1000)
|