summaryrefslogtreecommitdiff
path: root/2621/CH10/EX10.1/Ex10_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2621/CH10/EX10.1/Ex10_1.sce')
-rw-r--r--2621/CH10/EX10.1/Ex10_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2621/CH10/EX10.1/Ex10_1.sce b/2621/CH10/EX10.1/Ex10_1.sce
new file mode 100644
index 000000000..64cbfa63e
--- /dev/null
+++ b/2621/CH10/EX10.1/Ex10_1.sce
@@ -0,0 +1,17 @@
+// Example 10.1
+clc;
+clear;
+close;
+// Given data
+format('v',6);
+Idc= 300;// in mA
+C= 200;// in µF
+Vmax= 24;// in V
+Vrms= 2.4*Idc/C;//in V
+Vr_peak= sqrt(3)*Vrms;// in V
+Vdc= Vmax-Vr_peak;// in V
+disp(Vdc,"The minimum input voltage in volts is : ")
+
+
+
+