summaryrefslogtreecommitdiff
path: root/3840/CH8/EX8.17/Ex8_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '3840/CH8/EX8.17/Ex8_17.sce')
-rw-r--r--3840/CH8/EX8.17/Ex8_17.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3840/CH8/EX8.17/Ex8_17.sce b/3840/CH8/EX8.17/Ex8_17.sce
new file mode 100644
index 000000000..e978a115b
--- /dev/null
+++ b/3840/CH8/EX8.17/Ex8_17.sce
@@ -0,0 +1,18 @@
+clear
+//
+//
+//
+
+//Variable declaration
+Vm=20 //voltage(V)
+RL=500 //load resistance(ohm)
+rf=10 //forward resistance(ohm)
+VB=0.7 //bias voltage(V)
+
+//Calculation
+Im=(Vm-VB)*10**3/(rf+RL) //peak current(mA)
+Vo=Im*RL/10**3 //peak output voltage(V)
+
+//Result
+printf("\n peak current is %0.1f mA",Im)
+printf("\n peak output voltage is %0.1f V",Vo)