diff options
Diffstat (limited to '3754/CH17/EX17.3/17_3.sce')
-rw-r--r-- | 3754/CH17/EX17.3/17_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH17/EX17.3/17_3.sce b/3754/CH17/EX17.3/17_3.sce new file mode 100644 index 000000000..cb6a17bee --- /dev/null +++ b/3754/CH17/EX17.3/17_3.sce @@ -0,0 +1,15 @@ +clear//
+
+//Variables
+
+VD = 0.7 //Voltage (in volts)
+n = 0.75 //Intrinsic stand-off ratio
+VBB = 12 //Base Voltage (in volts)
+
+//Calculation
+
+VP = n * VBB + VD //Peak-point voltage (in volts)
+
+//Result
+
+printf("\n Peak - point voltage of the circuit is %0.3f V.",VP)
|