summaryrefslogtreecommitdiff
path: root/3754/CH6/EX6.5/6_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH6/EX6.5/6_5.sce')
-rw-r--r--3754/CH6/EX6.5/6_5.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH6/EX6.5/6_5.sce b/3754/CH6/EX6.5/6_5.sce
new file mode 100644
index 000000000..2aae3a99d
--- /dev/null
+++ b/3754/CH6/EX6.5/6_5.sce
@@ -0,0 +1,14 @@
+clear//
+
+//Variables
+
+Vmax = 20.0 //Voltage (in milli-volts)
+
+//Calculation
+
+Vrms = 0.707 * Vmax //Rms Voltage (in milli-volts)
+Vdc = 0.637 * Vmax //Average value of signal (in milli-volts)
+
+//Result
+
+printf("\n RMS value is %0.3f mV.\nAverage value is %0.3f mV.",Vrms,Vdc)