summaryrefslogtreecommitdiff
path: root/3809/CH16/EX16.4
diff options
context:
space:
mode:
Diffstat (limited to '3809/CH16/EX16.4')
-rw-r--r--3809/CH16/EX16.4/EX16_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3809/CH16/EX16.4/EX16_4.sce b/3809/CH16/EX16.4/EX16_4.sce
new file mode 100644
index 000000000..eef8ad7d1
--- /dev/null
+++ b/3809/CH16/EX16.4/EX16_4.sce
@@ -0,0 +1,15 @@
+//Chapter 16, Example 16.4
+
+clc
+//Initialisation
+i=0.2 //current in ampere
+c=0.01 //capacitance in farad
+t=20*10**-3 //time in sec
+
+//Calculation
+dv=i/c //change in voltage w.r.t time
+vc=t*dv //peak ripple voltage on capacitor
+
+//Results
+printf("Peak Ripple Voltage = %.1f V",vc)
+