summaryrefslogtreecommitdiff
path: root/3809/CH16/EX16.5/EX16_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3809/CH16/EX16.5/EX16_5.sce')
-rw-r--r--3809/CH16/EX16.5/EX16_5.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3809/CH16/EX16.5/EX16_5.sce b/3809/CH16/EX16.5/EX16_5.sce
new file mode 100644
index 000000000..06581c30a
--- /dev/null
+++ b/3809/CH16/EX16.5/EX16_5.sce
@@ -0,0 +1,13 @@
+//Chapter 16, Example 16.5
+
+clc
+//Initialisation
+dv=20 //change in voltage w.r.t time
+t=10*10**-3 //time in sec
+
+//Calculation
+vc=t*dv //peak ripple voltage on capacitor
+
+//Results
+printf("Peak Ripple Voltage = %.1f V",vc)
+