diff options
Diffstat (limited to '1859/CH8/EX8.7/exa_8_7.sce')
-rwxr-xr-x | 1859/CH8/EX8.7/exa_8_7.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1859/CH8/EX8.7/exa_8_7.sce b/1859/CH8/EX8.7/exa_8_7.sce new file mode 100755 index 000000000..5d0705ade --- /dev/null +++ b/1859/CH8/EX8.7/exa_8_7.sce @@ -0,0 +1,11 @@ +// Exa 8.7
+clc;
+clear;
+close;
+// Given data
+L=10;// trace length in cm
+DS= 5;// deflection sensitivity in V/cm
+V_peakTOpeak= L*DS;// in volt
+V_peak= V_peakTOpeak/2;// in volt
+RMS= V_peak/sqrt(2);// RMS value of unknown as voltage in volt
+disp(RMS,"AC voltage in volt")
|